On Thu, Jul 16, 2020 at 06:42:52PM +0800, Xu Yilun wrote: > This patch add support for regmap API that is intended to be used by > the drivers of some SPI slave chips which integrate the "SPI slave to > Avalon Master Bridge" (spi-avmm) IP. At a very high level this looks far too complicated. Some of that is due to the protocol it's implementing which looks awfully like you've got a microcontroller in there trying to proxy a bus of some kind but there looks to be a lot of abstraction layers simply within the software here which make things hard to follow. At the very least there doesn't seem to be any interaction with this other than proxying stuff. As things stand this would be the largest regmap bus implementation by an order of magnitude. It is not clear to me that this is really a generic thing that will have multiple users and that it shouldn't be implemented as reg_read() and reg_write() operations in the driver that uses it. > +config REGMAP_SPI_AVMM > + tristate > + depends on SPI Note that for selected symbols dependencies don't take effect. > @@ -0,0 +1,932 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * Driver for Intel SPI Slave to AVMM Bus Bridge Please make the entire comment a C++ one so things look omre intentional. > + * Reference Documents could be found at: > + * https://www.intel.com/content/www/us/en/programmable/documentation/ > + * sfo1400787952932.html Please don't corrupt links like this, that makes them harder to use. > + * The main function of the physical layer is the use of PHY_IDLE (4a). Host > + * issues SCLK to query data from slave, but if slave is not ready to submit > + * data yet, it will repeat PHY_IDLE until data is prepared. > + * Because of this special char, it also needs an ESCAPE char (4d), to help > + * represent data "4a". The escape rule is "4d first, following 4a ^ 20". > + * So "4d, 6a" for data "4a", and "4d, 6d" for data "4d". > + * The packet layer defines the boundary of a whole packet. It defines the > + * Start Of Packet (SOP, 7a) char and End Of Packet (EOP, 7b) char. Please > + * note that the non-special byte after EOP is the last byte of the packet. > + * The packet layer also defines a Channel char (7c) + Channel number for > + * multiple channel transfer. This not currently supported by this driver. So > + * host will always send "7c, 00" when needed, and will drop the packet if > + * "7c, non-zero" is received. > + * Finally, a packet layer ESCAPE char (7d) is also needed to represent a > + * data value that is the same as the special chars. The escape rule is the > + * same. The escape rule should be used if the last byte requires it. So if a > + * packet ends up with data 7a, the last bytes should be "7b, 7d, 5a". This comment is not particularly intelligable. I assume all these number/letter combinations are references to something - it'd be good to say what. > +/* slave's register addr is 32 bits */ > +#define REG_SIZE 4UL > +/* slave's register value is 32 bits */ > +#define VAL_SIZE 4UL These and many of the other constants are liable to conflict with something, namespacing would be good. > +struct trans_header { > + u8 trans_code; > + u8 rsvd; > + __be16 size; > + __be32 addr; > +}; > + > +struct trans_response { > + u8 r_trans_code; > + u8 rsvd; > + __be16 size; > +}; Do these need to be packed? > +/* No additional chars are in transaction layer RX, just read out data */ > +#define TRANS_RX_MAX (VAL_SIZE * MAX_RX_CNT) > +/* Blank line before the comment. > +#define TRANS_BUF_SIZE ((TRANS_TX_MAX > TRANS_RX_MAX) ? \ > + TRANS_TX_MAX : TRANS_RX_MAX) This could be more simply written using max() couldn't it (which IIRC can also be evaluated at compile time)? > +/* Format a transaction layer byte stream for tx_buf */ > +static void trans_tx_prepare(bool is_read, u32 reg, u16 count, u32 *wr_val, > + char *tx_buf, unsigned int *tx_len) > +{ > + struct trans_header *header; > + u8 trans_code; > + __le32 *data; > + int i; > + > + trans_code = is_read ? > + (count == 1 ? TRANS_CODE_READ : TRANS_CODE_SEQ_READ) : > + (count == 1 ? TRANS_CODE_WRITE : TRANS_CODE_SEQ_WRITE); Please write this using normal conditional statements for legibility. > + header = (struct trans_header *)tx_buf; No need to cast away from char *. > +/* > + * The input is a transaction layer byte stream in rx_buf, the output is read > + * out data. > + */ > +static int trans_rx_parse(bool is_read, char *rx_buf, unsigned int rx_len, > + u16 expected_count, u32 *rd_val) > +{ > + unsigned int expected_len = expected_count * VAL_SIZE; > + > + if (is_read) { > + if (expected_len != rx_len) > + return -EINVAL; > + > + return rd_trans_rx_parse(rx_buf, rx_len, rd_val); > + } > + > + return wr_trans_rx_parse(rx_buf, rx_len, expected_len); > +} Please write the is_read check as an if/else, it'd be clearer. > +/* Packet Layer & Physical Layer */ > +/* The input is a trans stream in trans_buf, format a phy stream in phy_buf. */ > +static void pkt_phy_tx_prepare(char *trans_buf, unsigned int trans_len, > + char *phy_buf, unsigned int *phy_len) > +{ > + unsigned int i; > + char *b, *p; > + > + b = trans_buf; > + p = phy_buf; I'm not seeing any bounds checking on the size of an operation in this function and I think I'd expect some, similarly for a lot of the other I/O operations. > + poll_timeout = jiffies + SPI_AVMM_XFER_TIMEOUT; > + for (;;) { Please rewrite this loop so it's clear that it terminates, usually that'd mean a do { } while (!timeout) type construction. The extra effort involved in doing one more check after timeout could just as well be a slightly longer timeout and it'd be clearer. > + /* > + * We timeout when rx is invalid for some time. But > + * it is possible we are scheduled out for long time > + * after a spi_read. So when we are scheduled in, a SW > + * timeout happens. But actually HW may have worked fine and > + * has been ready long time ago. So we need to do an extra > + * read, if we get a valid word we return a valid rx word, > + * otherwise real a HW issue happens. > + */ > + if (time_after(jiffies, poll_timeout)) > + last_try = true; If the system is that heavily loaded I fear there's bigger problems, you could also express the timeout in terms of number of times you poll with a delay (at the minute this will busy wait which doesn't seem ideal either). > +static void br_tx_prepare(struct spi_avmm_bridge *br, bool is_read, u32 reg, > + u16 count, u32 *wr_val) > +{ > + unsigned int tx_len; > + > + trans_tx_prepare(is_read, reg, count, wr_val, > + br->trans_buf, &tx_len); > + pkt_phy_tx_prepare(br->trans_buf, tx_len, > + br->phy_buf, &tx_len); > + phy_tx_pad(br->word_len, br->phy_buf, tx_len, &tx_len); > + > + br->phy_len = tx_len; > +} This is the sort of thing I'm looking at when I say this code has too many abstraction layers, this function and all of the functions it calls have exactly one caller spread out all over the code and I can't help but think that some of them could be usefully inlined. As things stand it's really hard to tell what any individual bit of code is supposed to be doing or if it's doing it correctly. > + ret = ret ? : (eop ? 0 : -EINVAL); > + if (ret) { > + dev_err(&br->spi->dev, "%s br txrx err %d\n", __func__, ret); > + print_hex_dump(KERN_DEBUG, "phy rx:", DUMP_PREFIX_OFFSET, > + 16, 1, br->phy_buf, rx_len, true); > + } Please write normal conditional statements for legibility. > + > +#define do_reg_read(_ctx, _reg, _value, _count) \ > + do_reg_access(_ctx, true, _reg, _value, _count) > +#define do_reg_write(_ctx, _reg, _value, _count) \ > + do_reg_access(_ctx, false, _reg, _value, _count) Please write these as proper functions so that the compiler can check things more thoroughly. > +static int regmap_spi_avmm_gather_write(void *context, > + const void *reg_buf, size_t reg_len, > + const void *val_buf, size_t val_len) > +{ > + if (reg_len != REG_SIZE) > + return -EINVAL; > + > + return do_reg_write(context, *(u32 *)reg_buf, (u32 *)val_buf, > + (u16)(val_len / VAL_SIZE)); > +} The cast on the length looks worrying... > + /* Only support BPW == 8 or 32 now */ > + if (spi->bits_per_word != 8 && spi->bits_per_word != 32) > + return ERR_PTR(-EINVAL); Most controllers support configurable bits per word (and modes) - you shouldn't be rejecting things based on whatever the default happens to be. > +static const struct regmap_bus regmap_spi_avmm_bus = { > + .write = regmap_spi_avmm_write, > + .gather_write = regmap_spi_avmm_gather_write, > + .read = regmap_spi_avmm_read, > + .reg_format_endian_default = REGMAP_ENDIAN_NATIVE, > + .val_format_endian_default = REGMAP_ENDIAN_NATIVE, > + .max_raw_read = VAL_SIZE * MAX_RX_CNT, > + .max_raw_write = VAL_SIZE * MAX_TX_CNT, > + > + .reg_write = regmap_spi_avmm_reg_write, > + .reg_read = regmap_spi_avmm_reg_read, > + > + .free_context = spi_avmm_bridge_ctx_free, > +}; This seems confused, you shouldn't have both unformatted I/O operations and register I/O operations. Either the hardware implements a byte stream and the core will handle formatting register operations into that byte stream or the hardware understands registers and values in which case there shouldn't be unformatted operations. A combination of the two is not going to work well.