blob: ea55cdbc329187b3fe52a24af740d91d60cbd999 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -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
24#ifndef _SPI_H_
25#define _SPI_H_
26
27void spi_init(void);
28
29
30void spi_write8(int *data, int len);
31
32/* gpioÄ£Äâspi¹¦ÄÜ Æô¶¯ */
33void spi_gpio_mode_start(void);
34/* gpioÄ£Äâspi¹¦ÄÜ ½áÊø */
35void spi_gpio_mode_stop(void);
36/* gpioÄ£Äâspi¹¦ÄÜ Ð´Èë1¸ö×Ö½Ú */
37void spi_gpio_write_single8(unsigned char data);
38/* gpioÄ£Äâspi¹¦ÄÜ ¶ÁÈ¡1¸ö×Ö½Ú */
39unsigned char spi_gpio_read_single8(void);
40
41#if 0
42/* Controller-specific definitions: */
43
44/* SPI mode flags */
45#define SPI_CPHA 0x01 /* clock phase */
46#define SPI_CPOL 0x02 /* clock polarity */
47#define SPI_MODE_0 (0|0) /* (original MicroWire) */
48#define SPI_MODE_1 (0|SPI_CPHA)
49#define SPI_MODE_2 (SPI_CPOL|0)
50#define SPI_MODE_3 (SPI_CPOL|SPI_CPHA)
51#define SPI_CS_HIGH 0x04 /* CS active high */
52#define SPI_LSB_FIRST 0x08 /* per-word bits-on-wire */
53#define SPI_3WIRE 0x10 /* SI/SO signals shared */
54#define SPI_LOOP 0x20 /* loopback mode */
55
56/* SPI transfer flags */
57#define SPI_XFER_BEGIN 0x01 /* Assert CS before transfer */
58#define SPI_XFER_END 0x02 /* Deassert CS after transfer */
59
60/*-----------------------------------------------------------------------
61 * Representation of a SPI slave, i.e. what we're communicating with.
62 *
63 * Drivers are expected to extend this with controller-specific data.
64 *
65 * bus: ID of the bus that the slave is attached to.
66 * cs: ID of the chip select connected to the slave.
67 */
68struct spi_slave {
69 unsigned int bus;
70 unsigned int cs;
71};
72
73/*-----------------------------------------------------------------------
74 * Initialization, must be called once on start up.
75 *
76 * TODO: I don't think we really need this.
77 */
78void spi_init(void);
79
80/*-----------------------------------------------------------------------
81 * Set up communications parameters for a SPI slave.
82 *
83 * This must be called once for each slave. Note that this function
84 * usually doesn't touch any actual hardware, it only initializes the
85 * contents of spi_slave so that the hardware can be easily
86 * initialized later.
87 *
88 * bus: Bus ID of the slave chip.
89 * cs: Chip select ID of the slave chip on the specified bus.
90 * max_hz: Maximum SCK rate in Hz.
91 * mode: Clock polarity, clock phase and other parameters.
92 *
93 * Returns: A spi_slave reference that can be used in subsequent SPI
94 * calls, or NULL if one or more of the parameters are not supported.
95 */
96struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
97 unsigned int max_hz, unsigned int mode);
98
99/*-----------------------------------------------------------------------
100 * Free any memory associated with a SPI slave.
101 *
102 * slave: The SPI slave
103 */
104void spi_free_slave(struct spi_slave *slave);
105
106/*-----------------------------------------------------------------------
107 * Claim the bus and prepare it for communication with a given slave.
108 *
109 * This must be called before doing any transfers with a SPI slave. It
110 * will enable and initialize any SPI hardware as necessary, and make
111 * sure that the SCK line is in the correct idle state. It is not
112 * allowed to claim the same bus for several slaves without releasing
113 * the bus in between.
114 *
115 * slave: The SPI slave
116 *
117 * Returns: 0 if the bus was claimed successfully, or a negative value
118 * if it wasn't.
119 */
120int spi_claim_bus(struct spi_slave *slave);
121
122/*-----------------------------------------------------------------------
123 * Release the SPI bus
124 *
125 * This must be called once for every call to spi_claim_bus() after
126 * all transfers have finished. It may disable any SPI hardware as
127 * appropriate.
128 *
129 * slave: The SPI slave
130 */
131void spi_release_bus(struct spi_slave *slave);
132
133/*-----------------------------------------------------------------------
134 * SPI transfer
135 *
136 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
137 * "bitlen" bits in the SPI MISO port. That's just the way SPI works.
138 *
139 * The source of the outgoing bits is the "dout" parameter and the
140 * destination of the input bits is the "din" parameter. Note that "dout"
141 * and "din" can point to the same memory location, in which case the
142 * input data overwrites the output data (since both are buffered by
143 * temporary variables, this is OK).
144 *
145 * spi_xfer() interface:
146 * slave: The SPI slave which will be sending/receiving the data.
147 * bitlen: How many bits to write and read.
148 * dout: Pointer to a string of bits to send out. The bits are
149 * held in a byte array and are sent MSB first.
150 * din: Pointer to a string of bits that will be filled in.
151 * flags: A bitwise combination of SPI_XFER_* flags.
152 *
153 * Returns: 0 on success, not 0 on failure
154 */
155int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
156 void *din, unsigned long flags);
157
158/*-----------------------------------------------------------------------
159 * Determine if a SPI chipselect is valid.
160 * This function is provided by the board if the low-level SPI driver
161 * needs it to determine if a given chipselect is actually valid.
162 *
163 * Returns: 1 if bus:cs identifies a valid chip on this board, 0
164 * otherwise.
165 */
166int spi_cs_is_valid(unsigned int bus, unsigned int cs);
167
168/*-----------------------------------------------------------------------
169 * Activate a SPI chipselect.
170 * This function is provided by the board code when using a driver
171 * that can't control its chipselects automatically (e.g.
172 * common/soft_spi.c). When called, it should activate the chip select
173 * to the device identified by "slave".
174 */
175void spi_cs_activate(struct spi_slave *slave);
176
177/*-----------------------------------------------------------------------
178 * Deactivate a SPI chipselect.
179 * This function is provided by the board code when using a driver
180 * that can't control its chipselects automatically (e.g.
181 * common/soft_spi.c). When called, it should deactivate the chip
182 * select to the device identified by "slave".
183 */
184void spi_cs_deactivate(struct spi_slave *slave);
185
186/*-----------------------------------------------------------------------
187 * Set transfer speed.
188 * This sets a new speed to be applied for next spi_xfer().
189 * slave: The SPI slave
190 * hz: The transfer speed
191 */
192void spi_set_speed(struct spi_slave *slave, uint hz);
193
194/*-----------------------------------------------------------------------
195 * Write 8 bits, then read 8 bits.
196 * slave: The SPI slave we're communicating with
197 * byte: Byte to be written
198 *
199 * Returns: The value that was read, or a negative value on error.
200 *
201 * TODO: This function probably shouldn't be inlined.
202 */
203static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte)
204{
205 unsigned char dout[2];
206 unsigned char din[2];
207 int ret;
208
209 dout[0] = byte;
210 dout[1] = 0;
211
212 ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END);
213 return ret < 0 ? ret : din[1];
214}
215#endif
216#endif /* _SPI_H_ */