blob: 30228867fcf462f98498a3017fcd85628f7c4ccf [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 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070014 */
15
Patrick Georgibc64cae2013-02-11 22:12:55 +010016#ifndef _SPI_GENERIC_H_
17#define _SPI_GENERIC_H_
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070018
Uwe Poeche7724ceb2019-07-15 11:15:36 +020019/* Common parameters -- kind of high, but they should only occur when there
20 * is a problem (and well your system already is broken), so err on the side
21 * of caution in case we're dealing with slower SPI buses and/or processors.
22 */
Uwe Poeche17362be2019-07-17 14:27:13 +020023#define SPI_FLASH_PROG_TIMEOUT_MS 200
24#define SPI_FLASH_PAGE_ERASE_TIMEOUT_MS 500
Uwe Poeche7724ceb2019-07-15 11:15:36 +020025
Aaron Durbin10d65b02017-12-14 14:34:47 -070026#include <commonlib/region.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070027#include <stdint.h>
Furquan Shaikh0dba0252016-11-30 04:34:22 -080028#include <stddef.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070029
Richard Spiegel563b8692019-09-03 11:54:55 -070030/* SPI vendor IDs */
31#define VENDOR_ID_ADESTO 0x1f
32#define VENDOR_ID_AMIC 0x37
33#define VENDOR_ID_ATMEL 0x1f
34#define VENDOR_ID_EON 0x1c
35#define VENDOR_ID_GIGADEVICE 0xc8
36#define VENDOR_ID_MACRONIX 0xc2
37#define VENDOR_ID_SPANSION 0x01
38#define VENDOR_ID_SST 0xbf
39#define VENDOR_ID_STMICRO 0x20
Richard Spiegel563b8692019-09-03 11:54:55 -070040#define VENDOR_ID_WINBOND 0xef
41
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070042/* Controller-specific definitions: */
43
Furquan Shaikh94f86992016-12-01 07:12:32 -080044struct spi_ctrlr;
45
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070046/*-----------------------------------------------------------------------
47 * Representation of a SPI slave, i.e. what we're communicating with.
48 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070049 * bus: ID of the bus that the slave is attached to.
50 * cs: ID of the chip select connected to the slave.
Furquan Shaikh94f86992016-12-01 07:12:32 -080051 * ctrlr: Pointer to SPI controller structure.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070052 */
53struct spi_slave {
54 unsigned int bus;
55 unsigned int cs;
Furquan Shaikh94f86992016-12-01 07:12:32 -080056 const struct spi_ctrlr *ctrlr;
57};
58
Furquan Shaikhc2973d12016-11-29 22:07:42 -080059/* Representation of SPI operation status. */
60enum spi_op_status {
61 SPI_OP_NOT_EXECUTED = 0,
62 SPI_OP_SUCCESS = 1,
63 SPI_OP_FAILURE = 2,
64};
65
66/*
67 * Representation of a SPI operation.
68 *
69 * dout: Pointer to data to send.
70 * bytesout: Count of data in bytes to send.
71 * din: Pointer to store received data.
72 * bytesin: Count of data in bytes to receive.
73 */
74struct spi_op {
75 const void *dout;
76 size_t bytesout;
77 void *din;
78 size_t bytesin;
79 enum spi_op_status status;
80};
81
Furquan Shaikh3e01b632017-01-08 13:32:30 -080082enum spi_clock_phase {
83 SPI_CLOCK_PHASE_FIRST,
84 SPI_CLOCK_PHASE_SECOND
85};
86
87enum spi_wire_mode {
88 SPI_4_WIRE_MODE,
89 SPI_3_WIRE_MODE
90};
91
92enum spi_polarity {
93 SPI_POLARITY_LOW,
94 SPI_POLARITY_HIGH
95};
96
97struct spi_cfg {
98 /* CLK phase - 0: Phase first, 1: Phase second */
99 enum spi_clock_phase clk_phase;
100 /* CLK polarity - 0: Low, 1: High */
101 enum spi_polarity clk_polarity;
102 /* CS polarity - 0: Low, 1: High */
103 enum spi_polarity cs_polarity;
104 /* Wire mode - 0: 4-wire, 1: 3-wire */
105 enum spi_wire_mode wire_mode;
106 /* Data bit length. */
107 unsigned int data_bit_length;
108};
109
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700110/*
111 * If there is no limit on the maximum transfer size for the controller,
112 * max_xfer_size can be set to SPI_CTRLR_DEFAULT_MAX_XFER_SIZE which is equal to
113 * UINT32_MAX.
114 */
115#define SPI_CTRLR_DEFAULT_MAX_XFER_SIZE (UINT32_MAX)
116
Furquan Shaikha1491572017-05-17 19:14:06 -0700117struct spi_flash;
118
Rizwan Qureshif9f50932018-12-31 15:19:16 +0530119enum ctrlr_prot_type {
120 READ_PROTECT = 1,
121 WRITE_PROTECT = 2,
122 READ_WRITE_PROTECT = 3,
123};
124
Aaron Durbin1fcc9f32018-01-29 11:30:17 -0700125enum {
126 /* Deduct the command length from the spi_crop_chunk() calculation for
127 sizing a transaction. */
128 SPI_CNTRLR_DEDUCT_CMD_LEN = 1 << 0,
129 /* Remove the opcode size from the command length used in the
130 spi_crop_chunk() calculation. Controllers which have a dedicated
131 register for the command byte would set this flag which would
132 allow the use of the maximum transfer size. */
133 SPI_CNTRLR_DEDUCT_OPCODE_LEN = 1 << 1,
134};
135
Furquan Shaikh94f86992016-12-01 07:12:32 -0800136/*-----------------------------------------------------------------------
Aaron Durbin851dde82018-04-19 21:15:25 -0600137 * Representation of a SPI controller. Note the xfer() and xfer_vector()
138 * callbacks are meant to process full duplex transactions. If the
139 * controller cannot handle these transactions then return an error when
140 * din and dout are both set. See spi_xfer() below for more details.
Furquan Shaikh94f86992016-12-01 07:12:32 -0800141 *
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700142 * claim_bus: Claim SPI bus and prepare for communication.
143 * release_bus: Release SPI bus.
144 * setup: Setup given SPI device bus.
145 * xfer: Perform one SPI transfer operation.
146 * xfer_vector: Vector of SPI transfer operations.
Julius Werner99e45ce2019-06-06 17:03:44 -0700147 * xfer_dual: (optional) Perform one SPI transfer in Dual SPI mode.
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700148 * max_xfer_size: Maximum transfer size supported by the controller
149 * (0 = invalid,
150 * SPI_CTRLR_DEFAULT_MAX_XFER_SIZE = unlimited)
Aaron Durbin1fcc9f32018-01-29 11:30:17 -0700151 * flags: See SPI_CNTRLR_* enums above.
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700152 *
Furquan Shaikha1491572017-05-17 19:14:06 -0700153 * Following member is provided by specialized SPI controllers that are
154 * actually SPI flash controllers.
155 *
156 * flash_probe: Specialized probe function provided by SPI flash
157 * controllers.
Aaron Durbin10d65b02017-12-14 14:34:47 -0700158 * flash_protect: Protect a region of flash using the SPI flash controller.
Furquan Shaikh94f86992016-12-01 07:12:32 -0800159 */
160struct spi_ctrlr {
161 int (*claim_bus)(const struct spi_slave *slave);
162 void (*release_bus)(const struct spi_slave *slave);
Furquan Shaikhc2973d12016-11-29 22:07:42 -0800163 int (*setup)(const struct spi_slave *slave);
Furquan Shaikh94f86992016-12-01 07:12:32 -0800164 int (*xfer)(const struct spi_slave *slave, const void *dout,
165 size_t bytesout, void *din, size_t bytesin);
Furquan Shaikhc2973d12016-11-29 22:07:42 -0800166 int (*xfer_vector)(const struct spi_slave *slave,
167 struct spi_op vectors[], size_t count);
Julius Werner99e45ce2019-06-06 17:03:44 -0700168 int (*xfer_dual)(const struct spi_slave *slave, const void *dout,
169 size_t bytesout, void *din, size_t bytesin);
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700170 uint32_t max_xfer_size;
Aaron Durbin1fcc9f32018-01-29 11:30:17 -0700171 uint32_t flags;
Furquan Shaikha1491572017-05-17 19:14:06 -0700172 int (*flash_probe)(const struct spi_slave *slave,
173 struct spi_flash *flash);
Aaron Durbin10d65b02017-12-14 14:34:47 -0700174 int (*flash_protect)(const struct spi_flash *flash,
Rizwan Qureshif9f50932018-12-31 15:19:16 +0530175 const struct region *region,
176 const enum ctrlr_prot_type type);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700177};
178
179/*-----------------------------------------------------------------------
Furquan Shaikhb5d41cb2016-12-01 07:25:31 -0800180 * Structure defining mapping of SPI buses to controller.
181 *
182 * ctrlr: Pointer to controller structure managing the given SPI buses.
183 * bus_start: Start bus number managed by the controller.
184 * bus_end: End bus number manager by the controller.
185 */
186struct spi_ctrlr_buses {
187 const struct spi_ctrlr *ctrlr;
188 unsigned int bus_start;
189 unsigned int bus_end;
190};
191
192/* Mapping of SPI buses to controllers - should be defined by platform. */
193extern const struct spi_ctrlr_buses spi_ctrlr_bus_map[];
194extern const size_t spi_ctrlr_bus_map_count;
195
196/*-----------------------------------------------------------------------
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700197 * Initialization, must be called once on start up.
198 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700199 */
200void spi_init(void);
201
Furquan Shaikh3e01b632017-01-08 13:32:30 -0800202/*
203 * Get configuration of SPI bus.
204 *
205 * slave: Pointer to slave structure.
206 * cfg: Pointer to SPI configuration that needs to be filled.
207 *
208 * Returns:
209 * 0 on success, -1 on error
210 */
211int spi_get_config(const struct spi_slave *slave, struct spi_cfg *cfg);
212
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700213/*-----------------------------------------------------------------------
214 * Set up communications parameters for a SPI slave.
215 *
216 * This must be called once for each slave. Note that this function
217 * usually doesn't touch any actual hardware, it only initializes the
218 * contents of spi_slave so that the hardware can be easily
219 * initialized later.
220 *
221 * bus: Bus ID of the slave chip.
222 * cs: Chip select ID of the slave chip on the specified bus.
Furquan Shaikh36b81af2016-12-01 01:02:44 -0800223 * slave: Pointer to slave structure that needs to be initialized.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700224 *
Furquan Shaikh36b81af2016-12-01 01:02:44 -0800225 * Returns:
226 * 0 on success, -1 on error
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700227 */
Furquan Shaikh36b81af2016-12-01 01:02:44 -0800228int spi_setup_slave(unsigned int bus, unsigned int cs, struct spi_slave *slave);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700229
230/*-----------------------------------------------------------------------
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700231 * Claim the bus and prepare it for communication with a given slave.
232 *
233 * This must be called before doing any transfers with a SPI slave. It
234 * will enable and initialize any SPI hardware as necessary, and make
235 * sure that the SCK line is in the correct idle state. It is not
236 * allowed to claim the same bus for several slaves without releasing
237 * the bus in between.
238 *
239 * slave: The SPI slave
240 *
241 * Returns: 0 if the bus was claimed successfully, or a negative value
242 * if it wasn't.
243 */
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800244int spi_claim_bus(const struct spi_slave *slave);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700245
246/*-----------------------------------------------------------------------
247 * Release the SPI bus
248 *
249 * This must be called once for every call to spi_claim_bus() after
250 * all transfers have finished. It may disable any SPI hardware as
251 * appropriate.
252 *
253 * slave: The SPI slave
254 */
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800255void spi_release_bus(const struct spi_slave *slave);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700256
257/*-----------------------------------------------------------------------
258 * SPI transfer
259 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700260 * spi_xfer() interface:
261 * slave: The SPI slave which will be sending/receiving the data.
Gabe Black93d9f922014-03-27 21:52:43 -0700262 * dout: Pointer to a string of bytes to send out.
263 * bytesout: How many bytes to write.
264 * din: Pointer to a string of bytes that will be filled in.
265 * bytesin: How many bytes to read.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700266 *
Elyes HAOUAS5f73e222020-01-15 21:13:45 +0100267 * Note that din and dout are transferred simultaneously in a full duplex
Aaron Durbin851dde82018-04-19 21:15:25 -0600268 * transaction. The number of clocks within one transaction is calculated
269 * as: MAX(bytesout*8, bytesin*8).
270 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700271 * Returns: 0 on success, not 0 on failure
272 */
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800273int spi_xfer(const struct spi_slave *slave, const void *dout, size_t bytesout,
274 void *din, size_t bytesin);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700275
Furquan Shaikhc2973d12016-11-29 22:07:42 -0800276/*-----------------------------------------------------------------------
277 * Vector of SPI transfer operations
278 *
279 * spi_xfer_vector() interface:
280 * slave: The SPI slave which will be sending/receiving the data.
281 * vectors: Array of SPI op structures.
282 * count: Number of SPI op vectors.
283 *
284 * Returns: 0 on success, not 0 on failure
285 */
286int spi_xfer_vector(const struct spi_slave *slave,
287 struct spi_op vectors[], size_t count);
288
Furquan Shaikhde705fa2017-04-19 19:27:28 -0700289/*-----------------------------------------------------------------------
290 * Given command length and length of remaining data, return the maximum data
291 * that can be transferred in next spi_xfer.
292 *
293 * Returns: 0 on error, non-zero data size that can be xfered on success.
294 */
295unsigned int spi_crop_chunk(const struct spi_slave *slave, unsigned int cmd_len,
296 unsigned int buf_len);
Kyösti Mälkki11104952014-06-29 16:17:33 +0300297
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700298/*-----------------------------------------------------------------------
299 * Write 8 bits, then read 8 bits.
300 * slave: The SPI slave we're communicating with
301 * byte: Byte to be written
302 *
303 * Returns: The value that was read, or a negative value on error.
304 *
305 * TODO: This function probably shouldn't be inlined.
306 */
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800307static inline int spi_w8r8(const struct spi_slave *slave, unsigned char byte)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700308{
309 unsigned char dout[2];
310 unsigned char din[2];
311 int ret;
312
313 dout[0] = byte;
314 dout[1] = 0;
315
Gabe Black93d9f922014-03-27 21:52:43 -0700316 ret = spi_xfer(slave, dout, 2, din, 2);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700317 return ret < 0 ? ret : din[1];
318}
319
Patrick Georgibc64cae2013-02-11 22:12:55 +0100320#endif /* _SPI_GENERIC_H_ */