blob: d214d82923997ea86d5cc3975d0b7c5b8e6d2701 [file] [log] [blame]
wdenk77f85582002-09-26 02:01:47 +00001/*
Jagannadha Sutradharudu Teki469146c2013-10-10 22:14:09 +05302 * Common SPI Interface: Controller-specific definitions
3 *
wdenk77f85582002-09-26 02:01:47 +00004 * (C) Copyright 2001
5 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenk77f85582002-09-26 02:01:47 +00008 */
9
10#ifndef _SPI_H_
11#define _SPI_H_
12
Guennadi Liakhovetski38254f42008-04-15 14:14:25 +020013/* SPI mode flags */
14#define SPI_CPHA 0x01 /* clock phase */
15#define SPI_CPOL 0x02 /* clock polarity */
16#define SPI_MODE_0 (0|0) /* (original MicroWire) */
17#define SPI_MODE_1 (0|SPI_CPHA)
18#define SPI_MODE_2 (SPI_CPOL|0)
19#define SPI_MODE_3 (SPI_CPOL|SPI_CPHA)
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020020#define SPI_CS_HIGH 0x04 /* CS active high */
Guennadi Liakhovetski38254f42008-04-15 14:14:25 +020021#define SPI_LSB_FIRST 0x08 /* per-word bits-on-wire */
22#define SPI_3WIRE 0x10 /* SI/SO signals shared */
23#define SPI_LOOP 0x20 /* loopback mode */
Rajeshwari Shindebb786b82013-05-28 20:10:37 +000024#define SPI_SLAVE 0x40 /* slave mode */
25#define SPI_PREAMBLE 0x80 /* Skip preamble bytes */
Guennadi Liakhovetski38254f42008-04-15 14:14:25 +020026
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020027/* SPI transfer flags */
Jagannadha Sutradharudu Tekice22b922013-10-07 19:34:56 +053028#define SPI_XFER_BEGIN 0x01 /* Assert CS before transfer */
29#define SPI_XFER_END 0x02 /* Deassert CS after transfer */
30#define SPI_XFER_MMAP 0x08 /* Memory Mapped start */
31#define SPI_XFER_MMAP_END 0x10 /* Memory Mapped End */
Nikita Kiryanov47002192013-10-16 17:23:26 +030032#define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END)
Jagannadha Sutradharudu Tekif77f4692014-01-12 21:40:11 +053033#define SPI_XFER_U_PAGE (1 << 5)
wdenk77f85582002-09-26 02:01:47 +000034
Jagannadha Sutradharudu Teki3163aaa2014-01-11 15:13:11 +053035/* SPI TX operation modes */
36#define SPI_OPM_TX_QPP 1 << 0
37
Jagannadha Sutradharudu Teki4e09cc12014-01-11 15:10:28 +053038/* SPI RX operation modes */
39#define SPI_OPM_RX_AS 1 << 0
40#define SPI_OPM_RX_DOUT 1 << 1
41#define SPI_OPM_RX_DIO 1 << 2
Jagannadha Sutradharudu Teki3163aaa2014-01-11 15:13:11 +053042#define SPI_OPM_RX_QOF 1 << 3
Jagannadha Sutradharudu Tekic4ba0d82013-12-24 15:24:31 +053043#define SPI_OPM_RX_QIOF 1 << 4
Jagannadha Sutradharudu Teki3163aaa2014-01-11 15:13:11 +053044#define SPI_OPM_RX_EXTN SPI_OPM_RX_AS | SPI_OPM_RX_DOUT | \
Jagannadha Sutradharudu Tekic4ba0d82013-12-24 15:24:31 +053045 SPI_OPM_RX_DIO | SPI_OPM_RX_QOF | \
46 SPI_OPM_RX_QIOF
Jagannadha Sutradharudu Teki4e09cc12014-01-11 15:10:28 +053047
Jagannadha Sutradharudu Tekif77f4692014-01-12 21:40:11 +053048/* SPI bus connection options */
49#define SPI_CONN_DUAL_SHARED 1 << 0
50
Rajeshwari Shindebb786b82013-05-28 20:10:37 +000051/* Header byte that marks the start of the message */
Jagannadha Sutradharudu Tekice22b922013-10-07 19:34:56 +053052#define SPI_PREAMBLE_END_BYTE 0xec
Rajeshwari Shindebb786b82013-05-28 20:10:37 +000053
Nikita Kiryanov5753d092013-10-16 17:23:25 +030054#define SPI_DEFAULT_WORDLEN 8
55
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053056/**
Jagannadha Sutradharudu Tekice22b922013-10-07 19:34:56 +053057 * struct spi_slave - Representation of a SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020058 *
59 * Drivers are expected to extend this with controller-specific data.
60 *
Jagannadha Sutradharudu Tekice22b922013-10-07 19:34:56 +053061 * @bus: ID of the bus that the slave is attached to.
62 * @cs: ID of the chip select connected to the slave.
Jagannadha Sutradharudu Teki4e09cc12014-01-11 15:10:28 +053063 * @op_mode_rx: SPI RX operation mode.
Jagannadha Sutradharudu Teki3163aaa2014-01-11 15:13:11 +053064 * @op_mode_tx: SPI TX operation mode.
Nikita Kiryanov5753d092013-10-16 17:23:25 +030065 * @wordlen: Size of SPI word in number of bits
Jagannadha Sutradharudu Tekice22b922013-10-07 19:34:56 +053066 * @max_write_size: If non-zero, the maximum number of bytes which can
67 * be written at once, excluding command bytes.
68 * @memory_map: Address of read-only SPI flash access.
Jagannadha Sutradharudu Tekif77f4692014-01-12 21:40:11 +053069 * @option: Varies SPI bus options - separate bus.
70 * @flags: Indication of SPI flags.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020071 */
72struct spi_slave {
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053073 unsigned int bus;
74 unsigned int cs;
Jagannadha Sutradharudu Teki4e09cc12014-01-11 15:10:28 +053075 u8 op_mode_rx;
Jagannadha Sutradharudu Teki3163aaa2014-01-11 15:13:11 +053076 u8 op_mode_tx;
Nikita Kiryanov5753d092013-10-16 17:23:25 +030077 unsigned int wordlen;
Simon Glass0c456ce2013-03-11 06:08:05 +000078 unsigned int max_write_size;
Poddar, Sourav004f15b2013-10-07 15:53:01 +053079 void *memory_map;
Jagannadha Sutradharudu Tekif77f4692014-01-12 21:40:11 +053080 u8 option;
81 u8 flags;
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020082};
wdenk77f85582002-09-26 02:01:47 +000083
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053084/**
wdenk77f85582002-09-26 02:01:47 +000085 * Initialization, must be called once on start up.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020086 *
87 * TODO: I don't think we really need this.
wdenk77f85582002-09-26 02:01:47 +000088 */
89void spi_init(void);
90
Simon Glassba6c3ce2013-03-11 06:08:00 +000091/**
92 * spi_do_alloc_slave - Allocate a new SPI slave (internal)
93 *
94 * Allocate and zero all fields in the spi slave, and set the bus/chip
95 * select. Use the helper macro spi_alloc_slave() to call this.
96 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053097 * @offset: Offset of struct spi_slave within slave structure.
98 * @size: Size of slave structure.
99 * @bus: Bus ID of the slave chip.
100 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +0000101 */
102void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
103 unsigned int cs);
104
105/**
106 * spi_alloc_slave - Allocate a new SPI slave
107 *
108 * Allocate and zero all fields in the spi slave, and set the bus/chip
109 * select.
110 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530111 * @_struct: Name of structure to allocate (e.g. struct tegra_spi).
112 * This structure must contain a member 'struct spi_slave *slave'.
113 * @bus: Bus ID of the slave chip.
114 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +0000115 */
116#define spi_alloc_slave(_struct, bus, cs) \
117 spi_do_alloc_slave(offsetof(_struct, slave), \
118 sizeof(_struct), bus, cs)
119
120/**
121 * spi_alloc_slave_base - Allocate a new SPI slave with no private data
122 *
123 * Allocate and zero all fields in the spi slave, and set the bus/chip
124 * select.
125 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530126 * @bus: Bus ID of the slave chip.
127 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +0000128 */
129#define spi_alloc_slave_base(bus, cs) \
130 spi_do_alloc_slave(0, sizeof(struct spi_slave), bus, cs)
131
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530132/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200133 * Set up communications parameters for a SPI slave.
134 *
135 * This must be called once for each slave. Note that this function
136 * usually doesn't touch any actual hardware, it only initializes the
137 * contents of spi_slave so that the hardware can be easily
138 * initialized later.
139 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530140 * @bus: Bus ID of the slave chip.
141 * @cs: Chip select ID of the slave chip on the specified bus.
142 * @max_hz: Maximum SCK rate in Hz.
143 * @mode: Clock polarity, clock phase and other parameters.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200144 *
145 * Returns: A spi_slave reference that can be used in subsequent SPI
146 * calls, or NULL if one or more of the parameters are not supported.
147 */
148struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
149 unsigned int max_hz, unsigned int mode);
150
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530151/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200152 * Free any memory associated with a SPI slave.
153 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530154 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200155 */
156void spi_free_slave(struct spi_slave *slave);
157
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530158/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200159 * Claim the bus and prepare it for communication with a given slave.
160 *
161 * This must be called before doing any transfers with a SPI slave. It
162 * will enable and initialize any SPI hardware as necessary, and make
163 * sure that the SCK line is in the correct idle state. It is not
164 * allowed to claim the same bus for several slaves without releasing
165 * the bus in between.
166 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530167 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200168 *
169 * Returns: 0 if the bus was claimed successfully, or a negative value
170 * if it wasn't.
171 */
172int spi_claim_bus(struct spi_slave *slave);
173
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530174/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200175 * Release the SPI bus
176 *
177 * This must be called once for every call to spi_claim_bus() after
178 * all transfers have finished. It may disable any SPI hardware as
179 * appropriate.
180 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530181 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200182 */
183void spi_release_bus(struct spi_slave *slave);
wdenk77f85582002-09-26 02:01:47 +0000184
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530185/**
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300186 * Set the word length for SPI transactions
187 *
188 * Set the word length (number of bits per word) for SPI transactions.
189 *
190 * @slave: The SPI slave
191 * @wordlen: The number of bits in a word
192 *
193 * Returns: 0 on success, -1 on failure.
194 */
195int spi_set_wordlen(struct spi_slave *slave, unsigned int wordlen);
196
197/**
wdenk77f85582002-09-26 02:01:47 +0000198 * SPI transfer
199 *
200 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
201 * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
202 *
203 * The source of the outgoing bits is the "dout" parameter and the
204 * destination of the input bits is the "din" parameter. Note that "dout"
205 * and "din" can point to the same memory location, in which case the
206 * input data overwrites the output data (since both are buffered by
207 * temporary variables, this is OK).
208 *
wdenk77f85582002-09-26 02:01:47 +0000209 * spi_xfer() interface:
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530210 * @slave: The SPI slave which will be sending/receiving the data.
211 * @bitlen: How many bits to write and read.
212 * @dout: Pointer to a string of bits to send out. The bits are
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200213 * held in a byte array and are sent MSB first.
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530214 * @din: Pointer to a string of bits that will be filled in.
215 * @flags: A bitwise combination of SPI_XFER_* flags.
wdenk77f85582002-09-26 02:01:47 +0000216 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530217 * Returns: 0 on success, not 0 on failure
wdenk77f85582002-09-26 02:01:47 +0000218 */
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200219int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
220 void *din, unsigned long flags);
Guennadi Liakhovetski38254f42008-04-15 14:14:25 +0200221
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530222/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200223 * Determine if a SPI chipselect is valid.
224 * This function is provided by the board if the low-level SPI driver
225 * needs it to determine if a given chipselect is actually valid.
226 *
227 * Returns: 1 if bus:cs identifies a valid chip on this board, 0
228 * otherwise.
229 */
230int spi_cs_is_valid(unsigned int bus, unsigned int cs);
231
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530232/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200233 * Activate a SPI chipselect.
234 * This function is provided by the board code when using a driver
235 * that can't control its chipselects automatically (e.g.
236 * common/soft_spi.c). When called, it should activate the chip select
237 * to the device identified by "slave".
238 */
239void spi_cs_activate(struct spi_slave *slave);
240
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530241/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200242 * Deactivate a SPI chipselect.
243 * This function is provided by the board code when using a driver
244 * that can't control its chipselects automatically (e.g.
245 * common/soft_spi.c). When called, it should deactivate the chip
246 * select to the device identified by "slave".
247 */
248void spi_cs_deactivate(struct spi_slave *slave);
249
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530250/**
Thomas Choufa1423e2010-12-24 15:16:07 +0800251 * Set transfer speed.
252 * This sets a new speed to be applied for next spi_xfer().
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530253 * @slave: The SPI slave
254 * @hz: The transfer speed
Thomas Choufa1423e2010-12-24 15:16:07 +0800255 */
256void spi_set_speed(struct spi_slave *slave, uint hz);
257
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530258/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200259 * Write 8 bits, then read 8 bits.
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530260 * @slave: The SPI slave we're communicating with
261 * @byte: Byte to be written
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200262 *
263 * Returns: The value that was read, or a negative value on error.
264 *
265 * TODO: This function probably shouldn't be inlined.
266 */
267static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
268{
269 unsigned char dout[2];
270 unsigned char din[2];
271 int ret;
272
273 dout[0] = byte;
274 dout[1] = 0;
275
276 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
277 return ret < 0 ? ret : din[1];
278}
wdenk77f85582002-09-26 02:01:47 +0000279
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800280/**
281 * Set up a SPI slave for a particular device tree node
282 *
283 * This calls spi_setup_slave() with the correct bus number. Call
284 * spi_free_slave() to free it later.
285 *
Jagannadha Sutradharudu Teki469146c2013-10-10 22:14:09 +0530286 * @param blob: Device tree blob
Simon Glass0efc0242013-12-03 16:43:24 -0700287 * @param slave_node: Slave node to use
288 * @param spi_node: SPI peripheral node to use
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800289 * @return pointer to new spi_slave structure
290 */
Simon Glass0efc0242013-12-03 16:43:24 -0700291struct spi_slave *spi_setup_slave_fdt(const void *blob, int slave_node,
292 int spi_node);
293
294/**
295 * spi_base_setup_slave_fdt() - helper function to set up a SPI slace
296 *
297 * This decodes SPI properties from the slave node to determine the
298 * chip select and SPI parameters.
299 *
300 * @blob: Device tree blob
301 * @busnum: Bus number to use
302 * @node: Device tree node for the SPI bus
303 */
304struct spi_slave *spi_base_setup_slave_fdt(const void *blob, int busnum,
305 int node);
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800306
wdenk77f85582002-09-26 02:01:47 +0000307#endif /* _SPI_H_ */