spi.h 8.6 KB

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