Re: [PATCH v4 4/5] iio: fxas21002c: add ODR/Scale support

From: Jonathan Cameron
Date: Sun Sep 16 2018 - 07:51:01 EST


On Fri, 14 Sep 2018 23:00:58 +0530
Himanshu Jha <himanshujha199640@xxxxxxxxx> wrote:

> On Fri, Sep 14, 2018 at 04:26:44PM +0100, Afonso Bordado wrote:
> > Hi,
> >
> > Thanks for your help with this.
> >
> > > And I suspect it may be originating from your code snippet:
> > >
> > > #define FXAS21002C_SCALE(scale) (IIO_DEGREE_TO_RAD(62500U >>
> > > (scale)))
> > >
> > > and looking at the implementation:
> > >
> > > include/linux/iio/iio.h
> > > /**
> > > * IIO_DEGREE_TO_RAD() - Convert degree to rad
> > > * @deg: A value in degree
> > > *
> > > * Returns the given value converted from degree to rad
> > > */
> > > #define IIO_DEGREE_TO_RAD(deg) (((deg) * 314159ULL + 9000000ULL) /
> > > 18000000ULL)
> > >
> > > This '/' operator might be the culprit!
> > >
> > > Just for checking that the error, remove the macro declaration
> > > `FXAS21002C_SCALE`
> > > plus its usage and re-cross compile using `make ARCH=i386`.
> > >
> > > In my case I used the `div64_s64` function handles builds for both
> > > 32/64
> > > arch accordingly.
> >
> > Yes, this is indeed the culprit. If `div64_s64` works the same way, I
> > wonder if the best option is to change the macro definition.
>
> "....works the same way" ?
>
> Let us assume that the problem arises due to the 64 bit division, in
> which gcc places the __divdi3() runtime function to promote the
> "freestanding" environment implementation. And then linking fails
> due to unavailability of definitions/declarations of the aforementioned
> function.
>
> With `div64_s64` usgae the linker binds the definition present at lib/div64.c
> and the build completes successfully whether building for 32/64 bit
> environment.
>
> But then why didn't this error showed up in the past, in the rest
> of the drivers ?
>
> I see its wide usage in IIO without bug reports:
>
> himanshu@himanshu-Vostro-3559:~/linux-next$ git grep -w "IIO_DEGREE_TO_RAD" drivers/iio/ | wc -l
> 34
>
> And that concludes, that there is some problem within your code!
>
> In the meantime, you can try to look the disassembly of the function
> where this macro is actually used and search for __divdi3/__udivdi3
> function referenced in the plt.
>
> I might be wrong though...
>
> Wait a while for the experts to join in!
>
The reason it's not usually a problem is because it is a compile time
constant for all the other drivers and GCC is more than happy to do
it on 32 bit platforms.

Now whilst it looks like you are doing something that needs to be dynamic
there are actually only a few possible values so this is something we
'want' to do at compile time rather than runtime. Just add a look up
table for those 4 values instead of computing the conversion every
time.

Thanks,

Jonathan