spi.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. /* SPI mode flags */
  26. #define SPI_CPHA 0x01 /* clock phase */
  27. #define SPI_CPOL 0x02 /* clock polarity */
  28. #define SPI_MODE_0 (0|0) /* (original MicroWire) */
  29. #define SPI_MODE_1 (0|SPI_CPHA)
  30. #define SPI_MODE_2 (SPI_CPOL|0)
  31. #define SPI_MODE_3 (SPI_CPOL|SPI_CPHA)
  32. #define SPI_CS_HIGH 0x04 /* CS active high */
  33. #define SPI_LSB_FIRST 0x08 /* per-word bits-on-wire */
  34. #define SPI_3WIRE 0x10 /* SI/SO signals shared */
  35. #define SPI_LOOP 0x20 /* loopback mode */
  36. /* SPI transfer flags */
  37. #define SPI_XFER_BEGIN 0x01 /* Assert CS before transfer */
  38. #define SPI_XFER_END 0x02 /* Deassert CS after transfer */
  39. /*-----------------------------------------------------------------------
  40. * Representation of a SPI slave, i.e. what we're communicating with.
  41. *
  42. * Drivers are expected to extend this with controller-specific data.
  43. *
  44. * bus: ID of the bus that the slave is attached to.
  45. * cs: ID of the chip select connected to the slave.
  46. */
  47. struct spi_slave {
  48. unsigned int bus;
  49. unsigned int cs;
  50. };
  51. /*-----------------------------------------------------------------------
  52. * Initialization, must be called once on start up.
  53. *
  54. * TODO: I don't think we really need this.
  55. */
  56. void spi_init(void);
  57. /*-----------------------------------------------------------------------
  58. * Set up communications parameters for a SPI slave.
  59. *
  60. * This must be called once for each slave. Note that this function
  61. * usually doesn't touch any actual hardware, it only initializes the
  62. * contents of spi_slave so that the hardware can be easily
  63. * initialized later.
  64. *
  65. * bus: Bus ID of the slave chip.
  66. * cs: Chip select ID of the slave chip on the specified bus.
  67. * max_hz: Maximum SCK rate in Hz.
  68. * mode: Clock polarity, clock phase and other parameters.
  69. *
  70. * Returns: A spi_slave reference that can be used in subsequent SPI
  71. * calls, or NULL if one or more of the parameters are not supported.
  72. */
  73. struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
  74. unsigned int max_hz, unsigned int mode);
  75. /*-----------------------------------------------------------------------
  76. * Free any memory associated with a SPI slave.
  77. *
  78. * slave: The SPI slave
  79. */
  80. void spi_free_slave(struct spi_slave *slave);
  81. /*-----------------------------------------------------------------------
  82. * Claim the bus and prepare it for communication with a given slave.
  83. *
  84. * This must be called before doing any transfers with a SPI slave. It
  85. * will enable and initialize any SPI hardware as necessary, and make
  86. * sure that the SCK line is in the correct idle state. It is not
  87. * allowed to claim the same bus for several slaves without releasing
  88. * the bus in between.
  89. *
  90. * slave: The SPI slave
  91. *
  92. * Returns: 0 if the bus was claimed successfully, or a negative value
  93. * if it wasn't.
  94. */
  95. int spi_claim_bus(struct spi_slave *slave);
  96. /*-----------------------------------------------------------------------
  97. * Release the SPI bus
  98. *
  99. * This must be called once for every call to spi_claim_bus() after
  100. * all transfers have finished. It may disable any SPI hardware as
  101. * appropriate.
  102. *
  103. * slave: The SPI slave
  104. */
  105. void spi_release_bus(struct spi_slave *slave);
  106. /*-----------------------------------------------------------------------
  107. * SPI transfer
  108. *
  109. * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
  110. * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
  111. *
  112. * The source of the outgoing bits is the "dout" parameter and the
  113. * destination of the input bits is the "din" parameter. Note that "dout"
  114. * and "din" can point to the same memory location, in which case the
  115. * input data overwrites the output data (since both are buffered by
  116. * temporary variables, this is OK).
  117. *
  118. * spi_xfer() interface:
  119. * slave: The SPI slave which will be sending/receiving the data.
  120. * bitlen: How many bits to write and read.
  121. * dout: Pointer to a string of bits to send out. The bits are
  122. * held in a byte array and are sent MSB first.
  123. * din: Pointer to a string of bits that will be filled in.
  124. * flags: A bitwise combination of SPI_XFER_* flags.
  125. *
  126. * Returns: 0 on success, not 0 on failure
  127. */
  128. int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
  129. void *din, unsigned long flags);
  130. /*-----------------------------------------------------------------------
  131. * Determine if a SPI chipselect is valid.
  132. * This function is provided by the board if the low-level SPI driver
  133. * needs it to determine if a given chipselect is actually valid.
  134. *
  135. * Returns: 1 if bus:cs identifies a valid chip on this board, 0
  136. * otherwise.
  137. */
  138. int spi_cs_is_valid(unsigned int bus, unsigned int cs);
  139. /*-----------------------------------------------------------------------
  140. * Activate a SPI chipselect.
  141. * This function is provided by the board code when using a driver
  142. * that can't control its chipselects automatically (e.g.
  143. * common/soft_spi.c). When called, it should activate the chip select
  144. * to the device identified by "slave".
  145. */
  146. void spi_cs_activate(struct spi_slave *slave);
  147. /*-----------------------------------------------------------------------
  148. * Deactivate a SPI chipselect.
  149. * This function is provided by the board code when using a driver
  150. * that can't control its chipselects automatically (e.g.
  151. * common/soft_spi.c). When called, it should deactivate the chip
  152. * select to the device identified by "slave".
  153. */
  154. void spi_cs_deactivate(struct spi_slave *slave);
  155. /*-----------------------------------------------------------------------
  156. * Write 8 bits, then read 8 bits.
  157. * slave: The SPI slave we're communicating with
  158. * byte: Byte to be written
  159. *
  160. * Returns: The value that was read, or a negative value on error.
  161. *
  162. * TODO: This function probably shouldn't be inlined.
  163. */
  164. static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
  165. {
  166. unsigned char dout[2];
  167. unsigned char din[2];
  168. int ret;
  169. dout[0] = byte;
  170. dout[1] = 0;
  171. ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
  172. return ret < 0 ? ret : din[1];
  173. }
  174. #endif /* _SPI_H_ */