spi.h 7.8 KB

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