blob: 6c62de6d1dd3cce2fbfcd4d2df682d9cec8ba8b6 [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.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070087 *
88 * Returns: A spi_slave reference that can be used in subsequent SPI
89 * calls, or NULL if one or more of the parameters are not supported.
90 */
Gabe Black1e187352014-03-27 20:37:03 -070091struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070092
93/*-----------------------------------------------------------------------
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070094 * 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 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700123 * spi_xfer() interface:
124 * slave: The SPI slave which will be sending/receiving the data.
Gabe Black93d9f922014-03-27 21:52:43 -0700125 * dout: Pointer to a string of bytes to send out.
126 * bytesout: How many bytes to write.
127 * din: Pointer to a string of bytes that will be filled in.
128 * bytesin: How many bytes to read.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700129 *
130 * Returns: 0 on success, not 0 on failure
131 */
Gabe Black93d9f922014-03-27 21:52:43 -0700132int spi_xfer(struct spi_slave *slave, const void *dout, unsigned int bytesout,
133 void *din, unsigned int bytesin);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700134
135/*-----------------------------------------------------------------------
136 * Determine if a SPI chipselect is valid.
137 * This function is provided by the board if the low-level SPI driver
138 * needs it to determine if a given chipselect is actually valid.
139 *
140 * Returns: 1 if bus:cs identifies a valid chip on this board, 0
141 * otherwise.
142 */
143int spi_cs_is_valid(unsigned int bus, unsigned int cs);
144
145/*-----------------------------------------------------------------------
146 * Activate a SPI chipselect.
147 * This function is provided by the board code when using a driver
148 * that can't control its chipselects automatically (e.g.
149 * common/soft_spi.c). When called, it should activate the chip select
150 * to the device identified by "slave".
151 */
152void spi_cs_activate(struct spi_slave *slave);
153
154/*-----------------------------------------------------------------------
155 * Deactivate a SPI chipselect.
156 * This function is provided by the board code when using a driver
157 * that can't control its chipselects automatically (e.g.
158 * common/soft_spi.c). When called, it should deactivate the chip
159 * select to the device identified by "slave".
160 */
161void spi_cs_deactivate(struct spi_slave *slave);
162
163/*-----------------------------------------------------------------------
164 * Set transfer speed.
165 * This sets a new speed to be applied for next spi_xfer().
166 * slave: The SPI slave
167 * hz: The transfer speed
168 */
169void spi_set_speed(struct spi_slave *slave, uint32_t hz);
170
171/*-----------------------------------------------------------------------
172 * Write 8 bits, then read 8 bits.
173 * slave: The SPI slave we're communicating with
174 * byte: Byte to be written
175 *
176 * Returns: The value that was read, or a negative value on error.
177 *
178 * TODO: This function probably shouldn't be inlined.
179 */
180static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
181{
182 unsigned char dout[2];
183 unsigned char din[2];
184 int ret;
185
186 dout[0] = byte;
187 dout[1] = 0;
188
Gabe Black93d9f922014-03-27 21:52:43 -0700189 ret = spi_xfer(slave, dout, 2, din, 2);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700190 return ret < 0 ? ret : din[1];
191}
192
Patrick Georgibc64cae2013-02-11 22:12:55 +0100193#endif /* _SPI_GENERIC_H_ */