blob: c44ebe88740ce11f01d44ae2e019c56af2446d6e [file] [log] [blame]
wdenk77f85582002-09-26 02:01:47 +00001/*
2 * (C) Copyright 2001
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk77f85582002-09-26 02:01:47 +00006 */
7
8#ifndef _SPI_H_
9#define _SPI_H_
10
Ben Warrenf8cc3122008-06-08 23:28:33 -070011/* Controller-specific definitions: */
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 */
28#define SPI_XFER_BEGIN 0x01 /* Assert CS before transfer */
29#define SPI_XFER_END 0x02 /* Deassert CS after transfer */
wdenk77f85582002-09-26 02:01:47 +000030
Rajeshwari Shindebb786b82013-05-28 20:10:37 +000031/* Header byte that marks the start of the message */
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053032#define SPI_PREAMBLE_END_BYTE 0xec
Rajeshwari Shindebb786b82013-05-28 20:10:37 +000033
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053034/**
35 * struct spi_slave: Representation of a SPI slave,
36 * i.e. what we're communicating with.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020037 *
38 * Drivers are expected to extend this with controller-specific data.
39 *
40 * bus: ID of the bus that the slave is attached to.
41 * cs: ID of the chip select connected to the slave.
Simon Glass0c456ce2013-03-11 06:08:05 +000042 * max_write_size: If non-zero, the maximum number of bytes which can
43 * be written at once, excluding command bytes.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020044 */
45struct spi_slave {
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053046 unsigned int bus;
47 unsigned int cs;
Simon Glass0c456ce2013-03-11 06:08:05 +000048 unsigned int max_write_size;
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020049};
wdenk77f85582002-09-26 02:01:47 +000050
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053051/**
wdenk77f85582002-09-26 02:01:47 +000052 * Initialization, must be called once on start up.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +020053 *
54 * TODO: I don't think we really need this.
wdenk77f85582002-09-26 02:01:47 +000055 */
56void spi_init(void);
57
Simon Glassba6c3ce2013-03-11 06:08:00 +000058/**
59 * spi_do_alloc_slave - Allocate a new SPI slave (internal)
60 *
61 * Allocate and zero all fields in the spi slave, and set the bus/chip
62 * select. Use the helper macro spi_alloc_slave() to call this.
63 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053064 * @offset: Offset of struct spi_slave within slave structure.
65 * @size: Size of slave structure.
66 * @bus: Bus ID of the slave chip.
67 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +000068 */
69void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
70 unsigned int cs);
71
72/**
73 * spi_alloc_slave - Allocate a new SPI slave
74 *
75 * Allocate and zero all fields in the spi slave, and set the bus/chip
76 * select.
77 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053078 * @_struct: Name of structure to allocate (e.g. struct tegra_spi).
79 * This structure must contain a member 'struct spi_slave *slave'.
80 * @bus: Bus ID of the slave chip.
81 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +000082 */
83#define spi_alloc_slave(_struct, bus, cs) \
84 spi_do_alloc_slave(offsetof(_struct, slave), \
85 sizeof(_struct), bus, cs)
86
87/**
88 * spi_alloc_slave_base - Allocate a new SPI slave with no private data
89 *
90 * Allocate and zero all fields in the spi slave, and set the bus/chip
91 * select.
92 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053093 * @bus: Bus ID of the slave chip.
94 * @cs: Chip select ID of the slave chip on the specified bus.
Simon Glassba6c3ce2013-03-11 06:08:00 +000095 */
96#define spi_alloc_slave_base(bus, cs) \
97 spi_do_alloc_slave(0, sizeof(struct spi_slave), bus, cs)
98
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +053099/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200100 * Set up communications parameters for a SPI slave.
101 *
102 * This must be called once for each slave. Note that this function
103 * usually doesn't touch any actual hardware, it only initializes the
104 * contents of spi_slave so that the hardware can be easily
105 * initialized later.
106 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530107 * @bus: Bus ID of the slave chip.
108 * @cs: Chip select ID of the slave chip on the specified bus.
109 * @max_hz: Maximum SCK rate in Hz.
110 * @mode: Clock polarity, clock phase and other parameters.
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200111 *
112 * Returns: A spi_slave reference that can be used in subsequent SPI
113 * calls, or NULL if one or more of the parameters are not supported.
114 */
115struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
116 unsigned int max_hz, unsigned int mode);
117
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530118/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200119 * Free any memory associated with a SPI slave.
120 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530121 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200122 */
123void spi_free_slave(struct spi_slave *slave);
124
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530125/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200126 * Claim the bus and prepare it for communication with a given slave.
127 *
128 * This must be called before doing any transfers with a SPI slave. It
129 * will enable and initialize any SPI hardware as necessary, and make
130 * sure that the SCK line is in the correct idle state. It is not
131 * allowed to claim the same bus for several slaves without releasing
132 * the bus in between.
133 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530134 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200135 *
136 * Returns: 0 if the bus was claimed successfully, or a negative value
137 * if it wasn't.
138 */
139int spi_claim_bus(struct spi_slave *slave);
140
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530141/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200142 * Release the SPI bus
143 *
144 * This must be called once for every call to spi_claim_bus() after
145 * all transfers have finished. It may disable any SPI hardware as
146 * appropriate.
147 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530148 * @slave: The SPI slave
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200149 */
150void spi_release_bus(struct spi_slave *slave);
wdenk77f85582002-09-26 02:01:47 +0000151
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530152/**
wdenk77f85582002-09-26 02:01:47 +0000153 * SPI transfer
154 *
155 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
156 * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
157 *
158 * The source of the outgoing bits is the "dout" parameter and the
159 * destination of the input bits is the "din" parameter. Note that "dout"
160 * and "din" can point to the same memory location, in which case the
161 * input data overwrites the output data (since both are buffered by
162 * temporary variables, this is OK).
163 *
wdenk77f85582002-09-26 02:01:47 +0000164 * spi_xfer() interface:
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530165 * @slave: The SPI slave which will be sending/receiving the data.
166 * @bitlen: How many bits to write and read.
167 * @dout: Pointer to a string of bits to send out. The bits are
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200168 * held in a byte array and are sent MSB first.
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530169 * @din: Pointer to a string of bits that will be filled in.
170 * @flags: A bitwise combination of SPI_XFER_* flags.
wdenk77f85582002-09-26 02:01:47 +0000171 *
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530172 * Returns: 0 on success, not 0 on failure
wdenk77f85582002-09-26 02:01:47 +0000173 */
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200174int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
175 void *din, unsigned long flags);
Guennadi Liakhovetski38254f42008-04-15 14:14:25 +0200176
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530177/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200178 * Determine if a SPI chipselect is valid.
179 * This function is provided by the board if the low-level SPI driver
180 * needs it to determine if a given chipselect is actually valid.
181 *
182 * Returns: 1 if bus:cs identifies a valid chip on this board, 0
183 * otherwise.
184 */
185int spi_cs_is_valid(unsigned int bus, unsigned int cs);
186
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530187/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200188 * Activate a SPI chipselect.
189 * This function is provided by the board code when using a driver
190 * that can't control its chipselects automatically (e.g.
191 * common/soft_spi.c). When called, it should activate the chip select
192 * to the device identified by "slave".
193 */
194void spi_cs_activate(struct spi_slave *slave);
195
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530196/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200197 * Deactivate a SPI chipselect.
198 * This function is provided by the board code when using a driver
199 * that can't control its chipselects automatically (e.g.
200 * common/soft_spi.c). When called, it should deactivate the chip
201 * select to the device identified by "slave".
202 */
203void spi_cs_deactivate(struct spi_slave *slave);
204
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530205/**
Thomas Choufa1423e2010-12-24 15:16:07 +0800206 * Set transfer speed.
207 * This sets a new speed to be applied for next spi_xfer().
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530208 * @slave: The SPI slave
209 * @hz: The transfer speed
Thomas Choufa1423e2010-12-24 15:16:07 +0800210 */
211void spi_set_speed(struct spi_slave *slave, uint hz);
212
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530213/**
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200214 * Write 8 bits, then read 8 bits.
Jagannadha Sutradharudu Teki1b1bd9a2013-09-25 15:47:36 +0530215 * @slave: The SPI slave we're communicating with
216 * @byte: Byte to be written
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200217 *
218 * Returns: The value that was read, or a negative value on error.
219 *
220 * TODO: This function probably shouldn't be inlined.
221 */
222static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
223{
224 unsigned char dout[2];
225 unsigned char din[2];
226 int ret;
227
228 dout[0] = byte;
229 dout[1] = 0;
230
231 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
232 return ret < 0 ? ret : din[1];
233}
wdenk77f85582002-09-26 02:01:47 +0000234
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800235/**
236 * Set up a SPI slave for a particular device tree node
237 *
238 * This calls spi_setup_slave() with the correct bus number. Call
239 * spi_free_slave() to free it later.
240 *
241 * @param blob Device tree blob
242 * @param node SPI peripheral node to use
243 * @param cs Chip select to use
244 * @param max_hz Maximum SCK rate in Hz (0 for default)
245 * @param mode Clock polarity, clock phase and other parameters
246 * @return pointer to new spi_slave structure
247 */
248struct spi_slave *spi_setup_slave_fdt(const void *blob, int node,
249 unsigned int cs, unsigned int max_hz, unsigned int mode);
250
wdenk77f85582002-09-26 02:01:47 +0000251#endif /* _SPI_H_ */