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