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