Lines Matching defs:word
72 uint32_t word = 0;
82 word = *spi_st->tx_ptr++;
84 word = *spi_st->tx_ptr++;
85 word = *spi_st->tx_ptr++ | (word << 8);
88 writel_relaxed(word, spi_st->base + SSC_TBUF);
96 uint32_t word = 0;
104 word = readl_relaxed(spi_st->base + SSC_RBUF);
108 *spi_st->rx_ptr++ = (uint8_t)word;
110 *spi_st->rx_ptr++ = (word >> 8);
111 *spi_st->rx_ptr++ = word & 0xff;
130 * Anything greater than 8 bits-per-word requires 2
131 * bytes-per-word in the RX/TX buffers
138 * If transfer is even-length, and 8 bits-per-word, then
139 * implement as half-length 16 bits-per-word transfer
144 /* Set SSC_CTL to 16 bits-per-word */