spi.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /*
  2. * Common SPI Interface: Controller-specific definitions
  3. *
  4. * (C) Copyright 2001
  5. * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef _SPI_H_
  10. #define _SPI_H_
  11. /* SPI mode flags */
  12. #define SPI_CPHA 0x01 /* clock phase */
  13. #define SPI_CPOL 0x02 /* clock polarity */
  14. #define SPI_MODE_0 (0|0) /* (original MicroWire) */
  15. #define SPI_MODE_1 (0|SPI_CPHA)
  16. #define SPI_MODE_2 (SPI_CPOL|0)
  17. #define SPI_MODE_3 (SPI_CPOL|SPI_CPHA)
  18. #define SPI_CS_HIGH 0x04 /* CS active high */
  19. #define SPI_LSB_FIRST 0x08 /* per-word bits-on-wire */
  20. #define SPI_3WIRE 0x10 /* SI/SO signals shared */
  21. #define SPI_LOOP 0x20 /* loopback mode */
  22. #define SPI_SLAVE 0x40 /* slave mode */
  23. #define SPI_PREAMBLE 0x80 /* Skip preamble bytes */
  24. /* SPI transfer flags */
  25. #define SPI_XFER_BEGIN 0x01 /* Assert CS before transfer */
  26. #define SPI_XFER_END 0x02 /* Deassert CS after transfer */
  27. #define SPI_XFER_MMAP 0x08 /* Memory Mapped start */
  28. #define SPI_XFER_MMAP_END 0x10 /* Memory Mapped End */
  29. #define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END)
  30. #define SPI_XFER_U_PAGE (1 << 5)
  31. /* SPI TX operation modes */
  32. #define SPI_OPM_TX_QPP 1 << 0
  33. /* SPI RX operation modes */
  34. #define SPI_OPM_RX_AS 1 << 0
  35. #define SPI_OPM_RX_DOUT 1 << 1
  36. #define SPI_OPM_RX_DIO 1 << 2
  37. #define SPI_OPM_RX_QOF 1 << 3
  38. #define SPI_OPM_RX_QIOF 1 << 4
  39. #define SPI_OPM_RX_EXTN SPI_OPM_RX_AS | SPI_OPM_RX_DOUT | \
  40. SPI_OPM_RX_DIO | SPI_OPM_RX_QOF | \
  41. SPI_OPM_RX_QIOF
  42. /* SPI bus connection options */
  43. #define SPI_CONN_DUAL_SHARED 1 << 0
  44. #define SPI_CONN_DUAL_SEPARATED 1 << 1
  45. /* Header byte that marks the start of the message */
  46. #define SPI_PREAMBLE_END_BYTE 0xec
  47. #define SPI_DEFAULT_WORDLEN 8
  48. /**
  49. * struct spi_slave - Representation of a SPI slave
  50. *
  51. * Drivers are expected to extend this with controller-specific data.
  52. *
  53. * @bus: ID of the bus that the slave is attached to.
  54. * @cs: ID of the chip select connected to the slave.
  55. * @op_mode_rx: SPI RX operation mode.
  56. * @op_mode_tx: SPI TX operation mode.
  57. * @wordlen: Size of SPI word in number of bits
  58. * @max_write_size: If non-zero, the maximum number of bytes which can
  59. * be written at once, excluding command bytes.
  60. * @memory_map: Address of read-only SPI flash access.
  61. * @option: Varies SPI bus options - separate, shared bus.
  62. * @flags: Indication of SPI flags.
  63. */
  64. struct spi_slave {
  65. unsigned int bus;
  66. unsigned int cs;
  67. u8 op_mode_rx;
  68. u8 op_mode_tx;
  69. unsigned int wordlen;
  70. unsigned int max_write_size;
  71. void *memory_map;
  72. u8 option;
  73. u8 flags;
  74. };
  75. /**
  76. * Initialization, must be called once on start up.
  77. *
  78. * TODO: I don't think we really need this.
  79. */
  80. void spi_init(void);
  81. /**
  82. * spi_do_alloc_slave - Allocate a new SPI slave (internal)
  83. *
  84. * Allocate and zero all fields in the spi slave, and set the bus/chip
  85. * select. Use the helper macro spi_alloc_slave() to call this.
  86. *
  87. * @offset: Offset of struct spi_slave within slave structure.
  88. * @size: Size of slave structure.
  89. * @bus: Bus ID of the slave chip.
  90. * @cs: Chip select ID of the slave chip on the specified bus.
  91. */
  92. void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
  93. unsigned int cs);
  94. /**
  95. * spi_alloc_slave - Allocate a new SPI slave
  96. *
  97. * Allocate and zero all fields in the spi slave, and set the bus/chip
  98. * select.
  99. *
  100. * @_struct: Name of structure to allocate (e.g. struct tegra_spi).
  101. * This structure must contain a member 'struct spi_slave *slave'.
  102. * @bus: Bus ID of the slave chip.
  103. * @cs: Chip select ID of the slave chip on the specified bus.
  104. */
  105. #define spi_alloc_slave(_struct, bus, cs) \
  106. spi_do_alloc_slave(offsetof(_struct, slave), \
  107. sizeof(_struct), bus, cs)
  108. /**
  109. * spi_alloc_slave_base - Allocate a new SPI slave with no private data
  110. *
  111. * Allocate and zero all fields in the spi slave, and set the bus/chip
  112. * select.
  113. *
  114. * @bus: Bus ID of the slave chip.
  115. * @cs: Chip select ID of the slave chip on the specified bus.
  116. */
  117. #define spi_alloc_slave_base(bus, cs) \
  118. spi_do_alloc_slave(0, sizeof(struct spi_slave), bus, cs)
  119. /**
  120. * Set up communications parameters for a SPI slave.
  121. *
  122. * This must be called once for each slave. Note that this function
  123. * usually doesn't touch any actual hardware, it only initializes the
  124. * contents of spi_slave so that the hardware can be easily
  125. * initialized later.
  126. *
  127. * @bus: Bus ID of the slave chip.
  128. * @cs: Chip select ID of the slave chip on the specified bus.
  129. * @max_hz: Maximum SCK rate in Hz.
  130. * @mode: Clock polarity, clock phase and other parameters.
  131. *
  132. * Returns: A spi_slave reference that can be used in subsequent SPI
  133. * calls, or NULL if one or more of the parameters are not supported.
  134. */
  135. struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
  136. unsigned int max_hz, unsigned int mode);
  137. /**
  138. * Free any memory associated with a SPI slave.
  139. *
  140. * @slave: The SPI slave
  141. */
  142. void spi_free_slave(struct spi_slave *slave);
  143. /**
  144. * Claim the bus and prepare it for communication with a given slave.
  145. *
  146. * This must be called before doing any transfers with a SPI slave. It
  147. * will enable and initialize any SPI hardware as necessary, and make
  148. * sure that the SCK line is in the correct idle state. It is not
  149. * allowed to claim the same bus for several slaves without releasing
  150. * the bus in between.
  151. *
  152. * @slave: The SPI slave
  153. *
  154. * Returns: 0 if the bus was claimed successfully, or a negative value
  155. * if it wasn't.
  156. */
  157. int spi_claim_bus(struct spi_slave *slave);
  158. /**
  159. * Release the SPI bus
  160. *
  161. * This must be called once for every call to spi_claim_bus() after
  162. * all transfers have finished. It may disable any SPI hardware as
  163. * appropriate.
  164. *
  165. * @slave: The SPI slave
  166. */
  167. void spi_release_bus(struct spi_slave *slave);
  168. /**
  169. * Set the word length for SPI transactions
  170. *
  171. * Set the word length (number of bits per word) for SPI transactions.
  172. *
  173. * @slave: The SPI slave
  174. * @wordlen: The number of bits in a word
  175. *
  176. * Returns: 0 on success, -1 on failure.
  177. */
  178. int spi_set_wordlen(struct spi_slave *slave, unsigned int wordlen);
  179. /**
  180. * SPI transfer
  181. *
  182. * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
  183. * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
  184. *
  185. * The source of the outgoing bits is the "dout" parameter and the
  186. * destination of the input bits is the "din" parameter. Note that "dout"
  187. * and "din" can point to the same memory location, in which case the
  188. * input data overwrites the output data (since both are buffered by
  189. * temporary variables, this is OK).
  190. *
  191. * spi_xfer() interface:
  192. * @slave: The SPI slave which will be sending/receiving the data.
  193. * @bitlen: How many bits to write and read.
  194. * @dout: Pointer to a string of bits to send out. The bits are
  195. * held in a byte array and are sent MSB first.
  196. * @din: Pointer to a string of bits that will be filled in.
  197. * @flags: A bitwise combination of SPI_XFER_* flags.
  198. *
  199. * Returns: 0 on success, not 0 on failure
  200. */
  201. int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
  202. void *din, unsigned long flags);
  203. /**
  204. * Determine if a SPI chipselect is valid.
  205. * This function is provided by the board if the low-level SPI driver
  206. * needs it to determine if a given chipselect is actually valid.
  207. *
  208. * Returns: 1 if bus:cs identifies a valid chip on this board, 0
  209. * otherwise.
  210. */
  211. int spi_cs_is_valid(unsigned int bus, unsigned int cs);
  212. /**
  213. * Activate a SPI chipselect.
  214. * This function is provided by the board code when using a driver
  215. * that can't control its chipselects automatically (e.g.
  216. * common/soft_spi.c). When called, it should activate the chip select
  217. * to the device identified by "slave".
  218. */
  219. void spi_cs_activate(struct spi_slave *slave);
  220. /**
  221. * Deactivate a SPI chipselect.
  222. * This function is provided by the board code when using a driver
  223. * that can't control its chipselects automatically (e.g.
  224. * common/soft_spi.c). When called, it should deactivate the chip
  225. * select to the device identified by "slave".
  226. */
  227. void spi_cs_deactivate(struct spi_slave *slave);
  228. /**
  229. * Set transfer speed.
  230. * This sets a new speed to be applied for next spi_xfer().
  231. * @slave: The SPI slave
  232. * @hz: The transfer speed
  233. */
  234. void spi_set_speed(struct spi_slave *slave, uint hz);
  235. /**
  236. * Write 8 bits, then read 8 bits.
  237. * @slave: The SPI slave we're communicating with
  238. * @byte: Byte to be written
  239. *
  240. * Returns: The value that was read, or a negative value on error.
  241. *
  242. * TODO: This function probably shouldn't be inlined.
  243. */
  244. static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
  245. {
  246. unsigned char dout[2];
  247. unsigned char din[2];
  248. int ret;
  249. dout[0] = byte;
  250. dout[1] = 0;
  251. ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
  252. return ret < 0 ? ret : din[1];
  253. }
  254. /**
  255. * Set up a SPI slave for a particular device tree node
  256. *
  257. * This calls spi_setup_slave() with the correct bus number. Call
  258. * spi_free_slave() to free it later.
  259. *
  260. * @param blob: Device tree blob
  261. * @param slave_node: Slave node to use
  262. * @param spi_node: SPI peripheral node to use
  263. * @return pointer to new spi_slave structure
  264. */
  265. struct spi_slave *spi_setup_slave_fdt(const void *blob, int slave_node,
  266. int spi_node);
  267. /**
  268. * spi_base_setup_slave_fdt() - helper function to set up a SPI slace
  269. *
  270. * This decodes SPI properties from the slave node to determine the
  271. * chip select and SPI parameters.
  272. *
  273. * @blob: Device tree blob
  274. * @busnum: Bus number to use
  275. * @node: Device tree node for the SPI bus
  276. */
  277. struct spi_slave *spi_base_setup_slave_fdt(const void *blob, int busnum,
  278. int node);
  279. #endif /* _SPI_H_ */