On 12/09/2019, David Miller <da...@davemloft.net> wrote: > From: Vladimir Oltean <olte...@gmail.com> > Date: Thu, 12 Sep 2019 11:17:11 +0100 > >> Hi Dave, >> >> On 12/09/2019, David Miller <da...@davemloft.net> wrote: >>> From: Vladimir Oltean <olte...@gmail.com> >>> Date: Tue, 10 Sep 2019 04:34:57 +0300 >>> >>>> static int sja1105_ptp_adjfine(struct ptp_clock_info *ptp, long >>>> scaled_ppm) >>>> { >>>> struct sja1105_private *priv = ptp_to_sja1105(ptp); >>>> + const struct sja1105_regs *regs = priv->info->regs; >>>> s64 clkrate; >>>> + int rc; >>> .. >>>> -static int sja1105_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) >>>> -{ >>>> - struct sja1105_private *priv = ptp_to_sja1105(ptp); >>>> + rc = sja1105_spi_send_int(priv, SPI_WRITE, regs->ptpclkrate, >>>> + &clkrate, 4); >>> >>> You're sending an arbitrary 4 bytes of a 64-bit value. This works on >>> little >>> endian >>> but will not on big endian. >>> >>> Please properly copy this clkrate into a "u32" variable and pass that >>> into >>> sja1105_spi_send_int(). >>> >>> It also seems to suggest that you want to use abs() to perform that >>> weird >>> centering around 1 << 31 calculation. >>> >>> Thank you. >>> >> >> It looks 'wrong' but it isn't. The driver uses the 'packing' framework >> (lib/packing.c) which is endian-agnostic (converts between CPU and >> peripheral endianness) and operates on u64 as the CPU word size. On >> the contrary, u32 would not work with the 'packing' API in its current >> form, but I don't see yet any reasons to extend it (packing64, >> packing32 etc). > > That's extremely unintuitive and makes auditing patches next to impossible. >
Through static analysis maybe you're right - I don't yet grasp what it takes to prove an API is used correctly at build time, but I can look at how others are doing it. At runtime, there is sanity checking throughout and all the bugs I've had while calling packing() incorrectly I caught them right away. spi_send_int in particular is just a wrapper for packing an N byte sized word (which fits in u64) in bits [8*N-1, 0] of the buffer, as per peripheral memory ordering quirks. This is perhaps the trivial case that can be handled through other APIs as well, but there are times when I need to pack an u64 into a bit field that crosses even 64-bit boundaries. Combine that with weird byte ordering, and the sja1105 driver would have simply not existed if it had to open-code all of that. The API's high-level goal is for readers to be able to follow along smoothly with the register manual. All I'm saying is that I'm willing to make the packing API more sane/checkable, but at the moment I just don't see the better alternative. Thanks, -Vladimir