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