Home
last modified time | relevance | path

Searched refs:txw (Results 1 – 7 of 7) sorted by relevance

/openbmc/u-boot/drivers/spi/
H A Ddesignware_spi.c326 u16 txw = 0; in dw_writer() local
332 txw = *(u8 *)(priv->tx); in dw_writer()
334 txw = *(u16 *)(priv->tx); in dw_writer()
336 dw_write(priv, DW_SPI_DR, txw); in dw_writer()
337 debug("%s: tx=0x%02x\n", __func__, txw); in dw_writer()
/openbmc/linux/drivers/spi/
H A Dspi-hisi-kunpeng.c253 u32 txw = 0; in hisi_spi_writer() local
260 txw = *(u8 *)(hs->tx); in hisi_spi_writer()
263 txw = *(u16 *)(hs->tx); in hisi_spi_writer()
266 txw = *(u32 *)(hs->tx); in hisi_spi_writer()
271 writel(txw, hs->regs + HISI_SPI_DIN); in hisi_spi_writer()
H A Dspi-dw-core.c136 u32 txw = 0; in dw_writer() local
141 txw = *(u8 *)(dws->tx); in dw_writer()
143 txw = *(u16 *)(dws->tx); in dw_writer()
145 txw = *(u32 *)(dws->tx); in dw_writer()
149 dw_write_io_reg(dws, DW_SPI_DR, txw); in dw_writer()
H A Dspi-rockchip.c303 u32 txw; in rockchip_spi_pio_writer() local
306 txw = *(u8 *)rs->tx; in rockchip_spi_pio_writer()
308 txw = *(u16 *)rs->tx; in rockchip_spi_pio_writer()
310 writel_relaxed(txw, rs->regs + ROCKCHIP_SPI_TXDR); in rockchip_spi_pio_writer()
/openbmc/u-boot/drivers/net/
H A Dks8851_mll.c39 __le16 txw[2]; member
517 ks->txh.txw[0] = 0; in ks_write_qmu()
518 ks->txh.txw[1] = cpu_to_le16(len); in ks_write_qmu()
524 ks_outblk(dev, ks->txh.txw, 4); in ks_write_qmu()
/openbmc/linux/drivers/net/ethernet/micrel/
H A Dks8851_spi.c272 ks->txh.txw[1] = cpu_to_le16(fid); in ks8851_wrfifo_spi()
273 ks->txh.txw[2] = cpu_to_le16(txp->len); in ks8851_wrfifo_spi()
H A Dks8851.h338 __le16 txw[3]; member