/third_party/uboot/u-boot-2020.01/drivers/spi/ |
D | bcmstb_spi.c | 282 if (flags & SPI_XFER_END) { in bcmstb_spi_xfer() 298 if (flags & ~(SPI_XFER_BEGIN | SPI_XFER_END)) { in bcmstb_spi_xfer() 312 if (out_bytes && !(flags & SPI_XFER_END)) { in bcmstb_spi_xfer() 326 if (!(flags & (SPI_XFER_BEGIN | SPI_XFER_END))) { in bcmstb_spi_xfer() 369 SPI_XFER_END)) == SPI_XFER_BEGIN); in bcmstb_spi_xfer() 372 (flags & (SPI_XFER_BEGIN | SPI_XFER_END)) == SPI_XFER_BEGIN) in bcmstb_spi_xfer() 398 if (flags & SPI_XFER_END) { in bcmstb_spi_xfer()
|
D | davinci_spi.c | 174 if (flags & SPI_XFER_END) in davinci_spi_read() 207 if (flags & SPI_XFER_END) in davinci_spi_write() 235 if (flags & SPI_XFER_END) in davinci_spi_read_write() 322 flags |= SPI_XFER_END; in __davinci_spi_xfer() 336 flags |= SPI_XFER_END; in __davinci_spi_xfer() 339 if (flags & SPI_XFER_END) { in __davinci_spi_xfer()
|
D | sh_spi.c | 155 flags |= SPI_XFER_END; in sh_spi_send() 168 if (flags & SPI_XFER_END) { in sh_spi_send() 221 if (flags & SPI_XFER_END) { in spi_xfer()
|
D | atmel_spi.c | 158 flags |= SPI_XFER_END; in spi_xfer() 204 if (flags & SPI_XFER_END) { in spi_xfer() 342 flags |= SPI_XFER_END; in atmel_spi_xfer() 390 if (flags & SPI_XFER_END) { in atmel_spi_xfer()
|
D | spi-mem-nodm.c | 52 flag |= SPI_XFER_END; in spi_mem_exec_op() 61 rx_buf, SPI_XFER_END); in spi_mem_exec_op()
|
D | sh_qspi.c | 156 if (flags & SPI_XFER_END) in sh_qspi_xfer_common() 175 if (flags & SPI_XFER_END) in sh_qspi_xfer_common() 219 if (flags & SPI_XFER_END) in sh_qspi_xfer_common()
|
D | cadence_qspi.c | 218 if (flags == (SPI_XFER_BEGIN | SPI_XFER_END)) { in cadence_spi_xfer() 230 if ((flags & SPI_XFER_END) || (flags == 0)) { in cadence_spi_xfer() 284 if (flags & SPI_XFER_END) { in cadence_spi_xfer()
|
D | altera_spi.c | 105 flags |= SPI_XFER_END; in altera_spi_xfer() 144 if (flags & SPI_XFER_END) in altera_spi_xfer()
|
D | renesas_rpc_spi.c | 260 if (!(flags & SPI_XFER_END)) in rpc_spi_xfer() 270 if (wlen && flags == SPI_XFER_END) in rpc_spi_xfer() 304 if (wlen && flags == SPI_XFER_END) { in rpc_spi_xfer()
|
D | omap3_spi.c | 183 if (flags & SPI_XFER_END) { in omap3_spi_write() 236 if (flags & SPI_XFER_END) { in omap3_spi_read() 306 if (flags & SPI_XFER_END) { in omap3_spi_txrx() 338 if (flags & SPI_XFER_END) { in _spi_xfer()
|
D | mxs_spi.c | 114 if ((flags & SPI_XFER_END) && !length) 252 if (flags & SPI_XFER_END) { 309 if (flags & SPI_XFER_END) {
|
D | soft_spi_legacy.c | 164 if (flags & SPI_XFER_END) in spi_xfer()
|
D | bcm63xx_spi.c | 211 if (!(flags & SPI_XFER_END)) { in bcm63xx_spi_xfer() 236 if (flags & SPI_XFER_END) { in bcm63xx_spi_xfer()
|
D | xilinx_spi.c | 266 flags |= SPI_XFER_END; in xilinx_spi_xfer() 305 if (flags & SPI_XFER_END) in xilinx_spi_xfer()
|
D | fsl_espi.c | 265 case SPI_XFER_END: in spi_xfer() 282 case SPI_XFER_BEGIN | SPI_XFER_END: in spi_xfer()
|
D | atcspi200_spi.c | 212 case SPI_XFER_END: in __atcspi200_spi_xfer() 221 case SPI_XFER_BEGIN | SPI_XFER_END: in __atcspi200_spi_xfer()
|
/third_party/uboot/u-boot-2020.01/drivers/rtc/ |
D | m41t94.c | 63 ret = spi_xfer(slave, 64, buf, NULL, SPI_XFER_BEGIN | SPI_XFER_END); in rtc_set() 89 spi_xfer(slave, 16, buf, NULL, SPI_XFER_BEGIN | SPI_XFER_END); in rtc_get() 99 spi_xfer(slave, 16, buf, NULL, SPI_XFER_BEGIN | SPI_XFER_END); in rtc_get()
|
/third_party/uboot/u-boot-2020.01/board/work-microwave/work_92105/ |
D | work_92105_display.c | 96 spi_xfer(slave, 16, dout, dout, SPI_XFER_BEGIN | SPI_XFER_END); in max6957aax_write() 119 spi_xfer(slave, 16, dout, dout, SPI_XFER_BEGIN | SPI_XFER_END); in max6957aax_read() 127 spi_xfer(slave, 16, din, din, SPI_XFER_BEGIN | SPI_XFER_END); in max6957aax_read()
|
/third_party/uboot/u-boot-2020.01/include/ |
D | spi.h | 114 #define SPI_XFER_END BIT(1) /* Deassert CS after transfer */ macro 115 #define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END) 330 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END); in spi_w8r8()
|
/third_party/uboot/u-boot-2020.01/drivers/misc/ |
D | cros_ec_spi.c | 53 spi_xfer(slave, 0, NULL, NULL, SPI_XFER_END); in cros_ec_spi_packet() 139 SPI_XFER_BEGIN | SPI_XFER_END); in cros_ec_spi_command()
|
/third_party/uboot/u-boot-2020.01/drivers/power/ |
D | power_fsl.c | 46 p->hw.spi.flags = SPI_XFER_BEGIN | SPI_XFER_END; in pmic_init()
|
/third_party/uboot/u-boot-2020.01/drivers/fpga/ |
D | stratixv.c | 31 SPI_XFER_BEGIN | SPI_XFER_END); in program_write()
|
/third_party/uboot/u-boot-2020.01/drivers/video/ |
D | lg4573.c | 19 flags |= SPI_XFER_END; in lb043wv_spi_write_u16()
|
/third_party/uboot/u-boot-2020.01/cmd/ |
D | spi.c | 64 SPI_XFER_BEGIN | SPI_XFER_END); in do_spi_xfer()
|
/third_party/uboot/u-boot-2020.01/examples/standalone/ |
D | atmel_df_pow2.c | 20 return spi_xfer(slave, 8 * len, buf, buf, SPI_XFER_BEGIN | SPI_XFER_END); in flash_cmd()
|