Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 2 | /* |
Jagannadha Sutradharudu Teki | 84fb863 | 2013-10-10 22:14:09 +0530 | [diff] [blame] | 3 | * Common SPI Interface: Controller-specific definitions |
| 4 | * |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 5 | * (C) Copyright 2001 |
| 6 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com. |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _SPI_H_ |
| 10 | #define _SPI_H_ |
| 11 | |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 12 | #include <linux/bitops.h> |
Boris Brezillon | 32473fe | 2018-08-16 17:30:11 +0200 | [diff] [blame] | 13 | |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 14 | /* SPI mode flags */ |
Simon Glass | 711fd98 | 2020-07-07 13:11:49 -0600 | [diff] [blame] | 15 | #define SPI_CPHA BIT(0) /* clock phase (1 = SPI_CLOCK_PHASE_SECOND) */ |
| 16 | #define SPI_CPOL BIT(1) /* clock polarity (1 = SPI_POLARITY_HIGH) */ |
Jagan Teki | ac7b7df | 2015-12-29 12:12:30 +0530 | [diff] [blame] | 17 | #define SPI_MODE_0 (0|0) /* (original MicroWire) */ |
| 18 | #define SPI_MODE_1 (0|SPI_CPHA) |
| 19 | #define SPI_MODE_2 (SPI_CPOL|0) |
| 20 | #define SPI_MODE_3 (SPI_CPOL|SPI_CPHA) |
| 21 | #define SPI_CS_HIGH BIT(2) /* CS active high */ |
| 22 | #define SPI_LSB_FIRST BIT(3) /* per-word bits-on-wire */ |
| 23 | #define SPI_3WIRE BIT(4) /* SI/SO signals shared */ |
| 24 | #define SPI_LOOP BIT(5) /* loopback mode */ |
| 25 | #define SPI_SLAVE BIT(6) /* slave mode */ |
| 26 | #define SPI_PREAMBLE BIT(7) /* Skip preamble bytes */ |
Jagan Teki | cc79edf | 2015-12-28 22:24:08 +0530 | [diff] [blame] | 27 | #define SPI_TX_BYTE BIT(8) /* transmit with 1 wire byte */ |
Jagan Teki | d8feb0c | 2015-12-28 22:55:50 +0530 | [diff] [blame] | 28 | #define SPI_TX_DUAL BIT(9) /* transmit with 2 wires */ |
| 29 | #define SPI_TX_QUAD BIT(10) /* transmit with 4 wires */ |
Jagan Teki | 96536b1 | 2016-08-08 17:12:12 +0530 | [diff] [blame] | 30 | #define SPI_RX_SLOW BIT(11) /* receive with 1 wire slow */ |
Jagan Teki | f8c4087 | 2016-08-10 20:48:14 +0530 | [diff] [blame] | 31 | #define SPI_RX_DUAL BIT(12) /* receive with 2 wires */ |
| 32 | #define SPI_RX_QUAD BIT(13) /* receive with 4 wires */ |
Vignesh Raghavendra | c063ee3 | 2019-12-05 15:46:05 +0530 | [diff] [blame] | 33 | #define SPI_TX_OCTAL BIT(14) /* transmit with 8 wires */ |
| 34 | #define SPI_RX_OCTAL BIT(15) /* receive with 8 wires */ |
Jagannadha Sutradharudu Teki | 02eee9a | 2014-01-11 15:10:28 +0530 | [diff] [blame] | 35 | |
Rajeshwari Shinde | 9367741 | 2013-05-28 20:10:37 +0000 | [diff] [blame] | 36 | /* Header byte that marks the start of the message */ |
Jagannadha Sutradharudu Teki | f3b2dd8 | 2013-10-07 19:34:56 +0530 | [diff] [blame] | 37 | #define SPI_PREAMBLE_END_BYTE 0xec |
Rajeshwari Shinde | 9367741 | 2013-05-28 20:10:37 +0000 | [diff] [blame] | 38 | |
Jagan Teki | 7943612 | 2015-06-27 00:51:30 +0530 | [diff] [blame] | 39 | #define SPI_DEFAULT_WORDLEN 8 |
Nikita Kiryanov | 18dd07c | 2013-10-16 17:23:25 +0300 | [diff] [blame] | 40 | |
Venkatesh Yadav Abbarapu | f0b9d77 | 2024-09-26 10:25:06 +0530 | [diff] [blame] | 41 | #define SPI_3BYTE_MODE 0x0 |
| 42 | #define SPI_4BYTE_MODE 0x1 |
| 43 | |
Venkatesh Yadav Abbarapu | bc8c88b | 2024-09-26 10:25:02 +0530 | [diff] [blame] | 44 | /* SPI transfer flags */ |
| 45 | #define SPI_XFER_STRIPE (1 << 6) |
| 46 | #define SPI_XFER_MASK (3 << 8) |
| 47 | #define SPI_XFER_LOWER (1 << 8) |
| 48 | #define SPI_XFER_UPPER (2 << 8) |
| 49 | |
| 50 | /* Max no. of CS supported per spi device */ |
| 51 | #define SPI_CS_CNT_MAX 2 |
| 52 | |
Ovidiu Panait | 40dcee1 | 2020-12-14 19:06:50 +0200 | [diff] [blame] | 53 | /** |
| 54 | * struct dm_spi_bus - SPI bus info |
| 55 | * |
| 56 | * This contains information about a SPI bus. To obtain this structure, use |
| 57 | * dev_get_uclass_priv(bus) where bus is the SPI bus udevice. |
| 58 | * |
| 59 | * @max_hz: Maximum speed that the bus can tolerate. |
| 60 | * @speed: Current bus speed. This is 0 until the bus is first claimed. |
| 61 | * @mode: Current bus mode. This is 0 until the bus is first claimed. |
| 62 | * |
| 63 | * TODO(sjg@chromium.org): Remove this and use max_hz from struct spi_slave. |
| 64 | */ |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 65 | struct dm_spi_bus { |
| 66 | uint max_hz; |
Ovidiu Panait | 40dcee1 | 2020-12-14 19:06:50 +0200 | [diff] [blame] | 67 | uint speed; |
| 68 | uint mode; |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 69 | }; |
| 70 | |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 71 | /** |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 72 | * struct dm_spi_plat - platform data for all SPI slaves |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 73 | * |
| 74 | * This describes a SPI slave, a child device of the SPI bus. To obtain this |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 75 | * struct from a spi_slave, use dev_get_parent_plat(dev) or |
| 76 | * dev_get_parent_plat(slave->dev). |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 77 | * |
Sean Anderson | 2c9b8e3 | 2020-08-07 13:13:34 -0400 | [diff] [blame] | 78 | * This data is immutable. Each time the device is probed, @max_hz and @mode |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 79 | * will be copied to struct spi_slave. |
| 80 | * |
| 81 | * @cs: Chip select number (0..n-1) |
| 82 | * @max_hz: Maximum bus speed that this slave can tolerate |
| 83 | * @mode: SPI mode to use for this device (see SPI mode flags) |
| 84 | */ |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 85 | struct dm_spi_slave_plat { |
Venkatesh Yadav Abbarapu | 91b9e37 | 2024-09-26 10:25:05 +0530 | [diff] [blame] | 86 | unsigned int cs[SPI_CS_CNT_MAX]; |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 87 | uint max_hz; |
| 88 | uint mode; |
| 89 | }; |
| 90 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 91 | /** |
Simon Glass | ac5e9e7 | 2020-04-08 16:57:21 -0600 | [diff] [blame] | 92 | * enum spi_clock_phase - indicates the clock phase to use for SPI (CPHA) |
| 93 | * |
| 94 | * @SPI_CLOCK_PHASE_FIRST: Data sampled on the first phase |
| 95 | * @SPI_CLOCK_PHASE_SECOND: Data sampled on the second phase |
| 96 | */ |
| 97 | enum spi_clock_phase { |
| 98 | SPI_CLOCK_PHASE_FIRST, |
| 99 | SPI_CLOCK_PHASE_SECOND, |
| 100 | }; |
| 101 | |
| 102 | /** |
| 103 | * enum spi_wire_mode - indicates the number of wires used for SPI |
| 104 | * |
| 105 | * @SPI_4_WIRE_MODE: Normal bidirectional mode with MOSI and MISO |
| 106 | * @SPI_3_WIRE_MODE: Unidirectional version with a single data line SISO |
| 107 | */ |
| 108 | enum spi_wire_mode { |
| 109 | SPI_4_WIRE_MODE, |
| 110 | SPI_3_WIRE_MODE, |
| 111 | }; |
| 112 | |
| 113 | /** |
| 114 | * enum spi_polarity - indicates the polarity of the SPI bus (CPOL) |
| 115 | * |
| 116 | * @SPI_POLARITY_LOW: Clock is low in idle state |
| 117 | * @SPI_POLARITY_HIGH: Clock is high in idle state |
| 118 | */ |
| 119 | enum spi_polarity { |
| 120 | SPI_POLARITY_LOW, |
| 121 | SPI_POLARITY_HIGH, |
| 122 | }; |
| 123 | |
| 124 | /** |
Jagannadha Sutradharudu Teki | f3b2dd8 | 2013-10-07 19:34:56 +0530 | [diff] [blame] | 125 | * struct spi_slave - Representation of a SPI slave |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 126 | * |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 127 | * For driver model this is the per-child data used by the SPI bus. It can |
Simon Glass | de44acf | 2015-09-28 23:32:01 -0600 | [diff] [blame] | 128 | * be accessed using dev_get_parent_priv() on the slave device. The SPI uclass |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 129 | * sets up per_child_auto to sizeof(struct spi_slave), and the |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 130 | * driver should not override it. Two platform data fields (max_hz and mode) |
| 131 | * are copied into this structure to provide an initial value. This allows |
| 132 | * them to be changed, since we should never change platform data in drivers. |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 133 | * |
| 134 | * If not using driver model, drivers are expected to extend this with |
| 135 | * controller-specific data. |
| 136 | * |
| 137 | * @dev: SPI slave device |
| 138 | * @max_hz: Maximum speed for this slave |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 139 | * @bus: ID of the bus that the slave is attached to. For |
| 140 | * driver model this is the sequence number of the SPI |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 141 | * bus (dev_seq(bus)) so does not need to be stored |
Jagannadha Sutradharudu Teki | f3b2dd8 | 2013-10-07 19:34:56 +0530 | [diff] [blame] | 142 | * @cs: ID of the chip select connected to the slave. |
Jagan Teki | 1d0c949 | 2015-12-14 12:15:17 +0530 | [diff] [blame] | 143 | * @mode: SPI mode to use for this slave (see SPI mode flags) |
Nikita Kiryanov | 18dd07c | 2013-10-16 17:23:25 +0300 | [diff] [blame] | 144 | * @wordlen: Size of SPI word in number of bits |
Álvaro Fernández Rojas | afb36cd | 2018-01-23 17:14:56 +0100 | [diff] [blame] | 145 | * @max_read_size: If non-zero, the maximum number of bytes which can |
| 146 | * be read at once. |
Jagannadha Sutradharudu Teki | f3b2dd8 | 2013-10-07 19:34:56 +0530 | [diff] [blame] | 147 | * @max_write_size: If non-zero, the maximum number of bytes which can |
Álvaro Fernández Rojas | f2fb3a8 | 2018-01-23 17:14:57 +0100 | [diff] [blame] | 148 | * be written at once. |
Jagannadha Sutradharudu Teki | f3b2dd8 | 2013-10-07 19:34:56 +0530 | [diff] [blame] | 149 | * @memory_map: Address of read-only SPI flash access. |
Jagannadha Sutradharudu Teki | e84b4f6 | 2014-01-12 21:40:11 +0530 | [diff] [blame] | 150 | * @flags: Indication of SPI flags. |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 151 | */ |
| 152 | struct spi_slave { |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 153 | #if CONFIG_IS_ENABLED(DM_SPI) |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 154 | struct udevice *dev; /* struct spi_slave is dev->parentdata */ |
| 155 | uint max_hz; |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 156 | #else |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 157 | unsigned int bus; |
| 158 | unsigned int cs; |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 159 | #endif |
Jagan Teki | 1d0c949 | 2015-12-14 12:15:17 +0530 | [diff] [blame] | 160 | uint mode; |
Nikita Kiryanov | 18dd07c | 2013-10-16 17:23:25 +0300 | [diff] [blame] | 161 | unsigned int wordlen; |
Álvaro Fernández Rojas | afb36cd | 2018-01-23 17:14:56 +0100 | [diff] [blame] | 162 | unsigned int max_read_size; |
Simon Glass | d3ace8c | 2013-03-11 06:08:05 +0000 | [diff] [blame] | 163 | unsigned int max_write_size; |
Poddar, Sourav | dbbe68d | 2013-10-07 15:53:01 +0530 | [diff] [blame] | 164 | void *memory_map; |
Jagan Teki | 7109a57 | 2015-12-28 22:23:14 +0530 | [diff] [blame] | 165 | |
Jagannadha Sutradharudu Teki | e84b4f6 | 2014-01-12 21:40:11 +0530 | [diff] [blame] | 166 | u8 flags; |
Jagan Teki | cc79edf | 2015-12-28 22:24:08 +0530 | [diff] [blame] | 167 | #define SPI_XFER_BEGIN BIT(0) /* Assert CS before transfer */ |
| 168 | #define SPI_XFER_END BIT(1) /* Deassert CS after transfer */ |
Jagan Teki | 7109a57 | 2015-12-28 22:23:14 +0530 | [diff] [blame] | 169 | #define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END) |
Venkatesh Yadav Abbarapu | bc8c88b | 2024-09-26 10:25:02 +0530 | [diff] [blame] | 170 | #define SPI_XFER_U_PAGE BIT(4) |
| 171 | #define SPI_XFER_STACKED BIT(5) |
Venkatesh Yadav Abbarapu | 91b9e37 | 2024-09-26 10:25:05 +0530 | [diff] [blame] | 172 | /* |
| 173 | * Flag indicating that the spi-controller has multi chip select |
| 174 | * capability and can assert/de-assert more than one chip select |
| 175 | * at once. |
| 176 | */ |
| 177 | bool multi_cs_cap; |
Venkatesh Yadav Abbarapu | f0b9d77 | 2024-09-26 10:25:06 +0530 | [diff] [blame] | 178 | u32 bytemode; |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 179 | }; |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 180 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 181 | /** |
Simon Glass | aaca776 | 2013-03-11 06:08:00 +0000 | [diff] [blame] | 182 | * spi_do_alloc_slave - Allocate a new SPI slave (internal) |
| 183 | * |
| 184 | * Allocate and zero all fields in the spi slave, and set the bus/chip |
| 185 | * select. Use the helper macro spi_alloc_slave() to call this. |
| 186 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 187 | * @offset: Offset of struct spi_slave within slave structure. |
| 188 | * @size: Size of slave structure. |
| 189 | * @bus: Bus ID of the slave chip. |
| 190 | * @cs: Chip select ID of the slave chip on the specified bus. |
Simon Glass | aaca776 | 2013-03-11 06:08:00 +0000 | [diff] [blame] | 191 | */ |
| 192 | void *spi_do_alloc_slave(int offset, int size, unsigned int bus, |
| 193 | unsigned int cs); |
| 194 | |
| 195 | /** |
| 196 | * spi_alloc_slave - Allocate a new SPI slave |
| 197 | * |
| 198 | * Allocate and zero all fields in the spi slave, and set the bus/chip |
| 199 | * select. |
| 200 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 201 | * @_struct: Name of structure to allocate (e.g. struct tegra_spi). |
| 202 | * This structure must contain a member 'struct spi_slave *slave'. |
| 203 | * @bus: Bus ID of the slave chip. |
| 204 | * @cs: Chip select ID of the slave chip on the specified bus. |
Simon Glass | aaca776 | 2013-03-11 06:08:00 +0000 | [diff] [blame] | 205 | */ |
| 206 | #define spi_alloc_slave(_struct, bus, cs) \ |
| 207 | spi_do_alloc_slave(offsetof(_struct, slave), \ |
| 208 | sizeof(_struct), bus, cs) |
| 209 | |
| 210 | /** |
| 211 | * spi_alloc_slave_base - Allocate a new SPI slave with no private data |
| 212 | * |
| 213 | * Allocate and zero all fields in the spi slave, and set the bus/chip |
| 214 | * select. |
| 215 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 216 | * @bus: Bus ID of the slave chip. |
| 217 | * @cs: Chip select ID of the slave chip on the specified bus. |
Simon Glass | aaca776 | 2013-03-11 06:08:00 +0000 | [diff] [blame] | 218 | */ |
| 219 | #define spi_alloc_slave_base(bus, cs) \ |
| 220 | spi_do_alloc_slave(0, sizeof(struct spi_slave), bus, cs) |
| 221 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 222 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 223 | * Set up communications parameters for a SPI slave. |
| 224 | * |
| 225 | * This must be called once for each slave. Note that this function |
| 226 | * usually doesn't touch any actual hardware, it only initializes the |
| 227 | * contents of spi_slave so that the hardware can be easily |
| 228 | * initialized later. |
| 229 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 230 | * @bus: Bus ID of the slave chip. |
| 231 | * @cs: Chip select ID of the slave chip on the specified bus. |
| 232 | * @max_hz: Maximum SCK rate in Hz. |
| 233 | * @mode: Clock polarity, clock phase and other parameters. |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 234 | * |
| 235 | * Returns: A spi_slave reference that can be used in subsequent SPI |
| 236 | * calls, or NULL if one or more of the parameters are not supported. |
| 237 | */ |
| 238 | struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, |
| 239 | unsigned int max_hz, unsigned int mode); |
| 240 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 241 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 242 | * Free any memory associated with a SPI slave. |
| 243 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 244 | * @slave: The SPI slave |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 245 | */ |
| 246 | void spi_free_slave(struct spi_slave *slave); |
| 247 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 248 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 249 | * Claim the bus and prepare it for communication with a given slave. |
| 250 | * |
| 251 | * This must be called before doing any transfers with a SPI slave. It |
| 252 | * will enable and initialize any SPI hardware as necessary, and make |
| 253 | * sure that the SCK line is in the correct idle state. It is not |
| 254 | * allowed to claim the same bus for several slaves without releasing |
| 255 | * the bus in between. |
| 256 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 257 | * @slave: The SPI slave |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 258 | * |
| 259 | * Returns: 0 if the bus was claimed successfully, or a negative value |
| 260 | * if it wasn't. |
| 261 | */ |
| 262 | int spi_claim_bus(struct spi_slave *slave); |
| 263 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 264 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 265 | * Release the SPI bus |
| 266 | * |
| 267 | * This must be called once for every call to spi_claim_bus() after |
| 268 | * all transfers have finished. It may disable any SPI hardware as |
| 269 | * appropriate. |
| 270 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 271 | * @slave: The SPI slave |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 272 | */ |
| 273 | void spi_release_bus(struct spi_slave *slave); |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 274 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 275 | /** |
Nikita Kiryanov | 18dd07c | 2013-10-16 17:23:25 +0300 | [diff] [blame] | 276 | * Set the word length for SPI transactions |
| 277 | * |
| 278 | * Set the word length (number of bits per word) for SPI transactions. |
| 279 | * |
| 280 | * @slave: The SPI slave |
| 281 | * @wordlen: The number of bits in a word |
| 282 | * |
| 283 | * Returns: 0 on success, -1 on failure. |
| 284 | */ |
| 285 | int spi_set_wordlen(struct spi_slave *slave, unsigned int wordlen); |
| 286 | |
| 287 | /** |
Simon Glass | 2d2e860 | 2019-12-06 21:42:35 -0700 | [diff] [blame] | 288 | * SPI transfer (optional if mem_ops is used) |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 289 | * |
| 290 | * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks |
| 291 | * "bitlen" bits in the SPI MISO port. That's just the way SPI works. |
| 292 | * |
| 293 | * The source of the outgoing bits is the "dout" parameter and the |
| 294 | * destination of the input bits is the "din" parameter. Note that "dout" |
| 295 | * and "din" can point to the same memory location, in which case the |
| 296 | * input data overwrites the output data (since both are buffered by |
| 297 | * temporary variables, this is OK). |
| 298 | * |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 299 | * spi_xfer() interface: |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 300 | * @slave: The SPI slave which will be sending/receiving the data. |
| 301 | * @bitlen: How many bits to write and read. |
| 302 | * @dout: Pointer to a string of bits to send out. The bits are |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 303 | * held in a byte array and are sent MSB first. |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 304 | * @din: Pointer to a string of bits that will be filled in. |
| 305 | * @flags: A bitwise combination of SPI_XFER_* flags. |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 306 | * |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 307 | * Returns: 0 on success, not 0 on failure |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 308 | */ |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 309 | int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout, |
| 310 | void *din, unsigned long flags); |
| 311 | |
Jagan Teki | 7cc71fd | 2019-07-22 17:22:56 +0530 | [diff] [blame] | 312 | /** |
| 313 | * spi_write_then_read - SPI synchronous write followed by read |
| 314 | * |
| 315 | * This performs a half duplex transaction in which the first transaction |
| 316 | * is to send the opcode and if the length of buf is non-zero then it start |
| 317 | * the second transaction as tx or rx based on the need from respective slave. |
| 318 | * |
| 319 | * @slave: The SPI slave device with which opcode/data will be exchanged |
| 320 | * @opcode: opcode used for specific transfer |
| 321 | * @n_opcode: size of opcode, in bytes |
| 322 | * @txbuf: buffer into which data to be written |
| 323 | * @rxbuf: buffer into which data will be read |
| 324 | * @n_buf: size of buf (whether it's [tx|rx]buf), in bytes |
| 325 | * |
| 326 | * Returns: 0 on success, not 0 on failure |
| 327 | */ |
| 328 | int spi_write_then_read(struct spi_slave *slave, const u8 *opcode, |
| 329 | size_t n_opcode, const u8 *txbuf, u8 *rxbuf, |
| 330 | size_t n_buf); |
| 331 | |
Tom Rini | 4fe4470 | 2015-08-17 13:29:54 +0530 | [diff] [blame] | 332 | /* Copy memory mapped data */ |
| 333 | void spi_flash_copy_mmap(void *data, void *offset, size_t len); |
| 334 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 335 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 336 | * Determine if a SPI chipselect is valid. |
| 337 | * This function is provided by the board if the low-level SPI driver |
| 338 | * needs it to determine if a given chipselect is actually valid. |
| 339 | * |
| 340 | * Returns: 1 if bus:cs identifies a valid chip on this board, 0 |
| 341 | * otherwise. |
| 342 | */ |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 343 | int spi_cs_is_valid(unsigned int bus, unsigned int cs); |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 344 | |
Simon Glass | 757f4f1 | 2020-07-08 09:02:14 -0600 | [diff] [blame] | 345 | /* |
| 346 | * These names are used in several drivers and these declarations will be |
| 347 | * removed soon as part of the SPI DM migration. Drop them if driver model is |
| 348 | * enabled for SPI. |
| 349 | */ |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 350 | #if !CONFIG_IS_ENABLED(DM_SPI) |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 351 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 352 | * Activate a SPI chipselect. |
| 353 | * This function is provided by the board code when using a driver |
| 354 | * that can't control its chipselects automatically (e.g. |
| 355 | * common/soft_spi.c). When called, it should activate the chip select |
| 356 | * to the device identified by "slave". |
| 357 | */ |
| 358 | void spi_cs_activate(struct spi_slave *slave); |
| 359 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 360 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 361 | * Deactivate a SPI chipselect. |
| 362 | * This function is provided by the board code when using a driver |
| 363 | * that can't control its chipselects automatically (e.g. |
| 364 | * common/soft_spi.c). When called, it should deactivate the chip |
| 365 | * select to the device identified by "slave". |
| 366 | */ |
| 367 | void spi_cs_deactivate(struct spi_slave *slave); |
Simon Glass | 757f4f1 | 2020-07-08 09:02:14 -0600 | [diff] [blame] | 368 | #endif |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 369 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 370 | /** |
Thomas Chou | 3813fad | 2010-12-24 15:16:07 +0800 | [diff] [blame] | 371 | * Set transfer speed. |
| 372 | * This sets a new speed to be applied for next spi_xfer(). |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 373 | * @slave: The SPI slave |
| 374 | * @hz: The transfer speed |
Paul Barker | dbb689f | 2022-10-05 13:18:34 +0100 | [diff] [blame] | 375 | * |
| 376 | * Returns: 0 on success, or a negative value on error. |
Thomas Chou | 3813fad | 2010-12-24 15:16:07 +0800 | [diff] [blame] | 377 | */ |
Paul Barker | dbb689f | 2022-10-05 13:18:34 +0100 | [diff] [blame] | 378 | int spi_set_speed(struct spi_slave *slave, uint hz); |
Thomas Chou | 3813fad | 2010-12-24 15:16:07 +0800 | [diff] [blame] | 379 | |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 380 | /** |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 381 | * Write 8 bits, then read 8 bits. |
Jagannadha Sutradharudu Teki | 65d5476 | 2013-09-25 15:47:36 +0530 | [diff] [blame] | 382 | * @slave: The SPI slave we're communicating with |
| 383 | * @byte: Byte to be written |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 384 | * |
| 385 | * Returns: The value that was read, or a negative value on error. |
| 386 | * |
| 387 | * TODO: This function probably shouldn't be inlined. |
| 388 | */ |
| 389 | static inline int spi_w8r8(struct spi_slave *slave, unsigned char byte) |
| 390 | { |
| 391 | unsigned char dout[2]; |
| 392 | unsigned char din[2]; |
| 393 | int ret; |
| 394 | |
| 395 | dout[0] = byte; |
| 396 | dout[1] = 0; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 397 | |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 398 | ret = spi_xfer(slave, 16, dout, din, SPI_XFER_BEGIN | SPI_XFER_END); |
| 399 | return ret < 0 ? ret : din[1]; |
| 400 | } |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 401 | |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 402 | /** |
| 403 | * struct spi_cs_info - Information about a bus chip select |
| 404 | * |
| 405 | * @dev: Connected device, or NULL if none |
| 406 | */ |
| 407 | struct spi_cs_info { |
| 408 | struct udevice *dev; |
| 409 | }; |
| 410 | |
| 411 | /** |
| 412 | * struct struct dm_spi_ops - Driver model SPI operations |
| 413 | * |
| 414 | * The uclass interface is implemented by all SPI devices which use |
| 415 | * driver model. |
| 416 | */ |
| 417 | struct dm_spi_ops { |
| 418 | /** |
| 419 | * Claim the bus and prepare it for communication. |
| 420 | * |
| 421 | * The device provided is the slave device. It's parent controller |
| 422 | * will be used to provide the communication. |
| 423 | * |
| 424 | * This must be called before doing any transfers with a SPI slave. It |
| 425 | * will enable and initialize any SPI hardware as necessary, and make |
| 426 | * sure that the SCK line is in the correct idle state. It is not |
| 427 | * allowed to claim the same bus for several slaves without releasing |
| 428 | * the bus in between. |
| 429 | * |
Simon Glass | 5c74fba | 2015-04-19 09:05:40 -0600 | [diff] [blame] | 430 | * @dev: The SPI slave |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 431 | * |
| 432 | * Returns: 0 if the bus was claimed successfully, or a negative value |
| 433 | * if it wasn't. |
| 434 | */ |
Simon Glass | 5c74fba | 2015-04-19 09:05:40 -0600 | [diff] [blame] | 435 | int (*claim_bus)(struct udevice *dev); |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 436 | |
| 437 | /** |
| 438 | * Release the SPI bus |
| 439 | * |
| 440 | * This must be called once for every call to spi_claim_bus() after |
| 441 | * all transfers have finished. It may disable any SPI hardware as |
| 442 | * appropriate. |
| 443 | * |
Simon Glass | 5c74fba | 2015-04-19 09:05:40 -0600 | [diff] [blame] | 444 | * @dev: The SPI slave |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 445 | */ |
Simon Glass | 5c74fba | 2015-04-19 09:05:40 -0600 | [diff] [blame] | 446 | int (*release_bus)(struct udevice *dev); |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 447 | |
| 448 | /** |
| 449 | * Set the word length for SPI transactions |
| 450 | * |
| 451 | * Set the word length (number of bits per word) for SPI transactions. |
| 452 | * |
| 453 | * @bus: The SPI slave |
| 454 | * @wordlen: The number of bits in a word |
| 455 | * |
| 456 | * Returns: 0 on success, -ve on failure. |
| 457 | */ |
Simon Glass | 5c74fba | 2015-04-19 09:05:40 -0600 | [diff] [blame] | 458 | int (*set_wordlen)(struct udevice *dev, unsigned int wordlen); |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 459 | |
| 460 | /** |
| 461 | * SPI transfer |
| 462 | * |
| 463 | * This writes "bitlen" bits out the SPI MOSI port and simultaneously |
| 464 | * clocks "bitlen" bits in the SPI MISO port. That's just the way SPI |
| 465 | * works. |
| 466 | * |
| 467 | * The source of the outgoing bits is the "dout" parameter and the |
| 468 | * destination of the input bits is the "din" parameter. Note that |
| 469 | * "dout" and "din" can point to the same memory location, in which |
| 470 | * case the input data overwrites the output data (since both are |
| 471 | * buffered by temporary variables, this is OK). |
| 472 | * |
| 473 | * spi_xfer() interface: |
| 474 | * @dev: The slave device to communicate with |
| 475 | * @bitlen: How many bits to write and read. |
| 476 | * @dout: Pointer to a string of bits to send out. The bits are |
| 477 | * held in a byte array and are sent MSB first. |
| 478 | * @din: Pointer to a string of bits that will be filled in. |
| 479 | * @flags: A bitwise combination of SPI_XFER_* flags. |
| 480 | * |
| 481 | * Returns: 0 on success, not -1 on failure |
| 482 | */ |
| 483 | int (*xfer)(struct udevice *dev, unsigned int bitlen, const void *dout, |
| 484 | void *din, unsigned long flags); |
| 485 | |
| 486 | /** |
Boris Brezillon | 32473fe | 2018-08-16 17:30:11 +0200 | [diff] [blame] | 487 | * Optimized handlers for SPI memory-like operations. |
| 488 | * |
| 489 | * Optimized/dedicated operations for interactions with SPI memory. This |
| 490 | * field is optional and should only be implemented if the controller |
| 491 | * has native support for memory like operations. |
| 492 | */ |
| 493 | const struct spi_controller_mem_ops *mem_ops; |
| 494 | |
| 495 | /** |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 496 | * Set transfer speed. |
| 497 | * This sets a new speed to be applied for next spi_xfer(). |
| 498 | * @bus: The SPI bus |
| 499 | * @hz: The transfer speed |
| 500 | * @return 0 if OK, -ve on error |
| 501 | */ |
| 502 | int (*set_speed)(struct udevice *bus, uint hz); |
| 503 | |
| 504 | /** |
| 505 | * Set the SPI mode/flags |
| 506 | * |
| 507 | * It is unclear if we want to set speed and mode together instead |
| 508 | * of separately. |
| 509 | * |
| 510 | * @bus: The SPI bus |
| 511 | * @mode: Requested SPI mode (SPI_... flags) |
| 512 | * @return 0 if OK, -ve on error |
| 513 | */ |
| 514 | int (*set_mode)(struct udevice *bus, uint mode); |
| 515 | |
| 516 | /** |
| 517 | * Get information on a chip select |
| 518 | * |
| 519 | * This is only called when the SPI uclass does not know about a |
| 520 | * chip select, i.e. it has no attached device. It gives the driver |
| 521 | * a chance to allow activity on that chip select even so. |
| 522 | * |
| 523 | * @bus: The SPI bus |
| 524 | * @cs: The chip select (0..n-1) |
| 525 | * @info: Returns information about the chip select, if valid. |
| 526 | * On entry info->dev is NULL |
Bin Meng | f8586f6 | 2019-09-09 06:00:01 -0700 | [diff] [blame] | 527 | * @return 0 if OK (and @info is set up), -EINVAL if the chip select |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 528 | * is invalid, other -ve value on error |
| 529 | */ |
| 530 | int (*cs_info)(struct udevice *bus, uint cs, struct spi_cs_info *info); |
Simon Glass | 37ad0fe | 2019-10-20 21:31:47 -0600 | [diff] [blame] | 531 | |
| 532 | /** |
| 533 | * get_mmap() - Get memory-mapped SPI |
| 534 | * |
| 535 | * @dev: The SPI flash slave device |
| 536 | * @map_basep: Returns base memory address for mapped SPI |
| 537 | * @map_sizep: Returns size of mapped SPI |
| 538 | * @offsetp: Returns start offset of SPI flash where the map works |
| 539 | * correctly (offsets before this are not visible) |
| 540 | * @return 0 if OK, -EFAULT if memory mapping is not available |
| 541 | */ |
| 542 | int (*get_mmap)(struct udevice *dev, ulong *map_basep, |
| 543 | uint *map_sizep, uint *offsetp); |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 544 | }; |
| 545 | |
Simon Glass | 10a4a33 | 2014-10-13 23:41:53 -0600 | [diff] [blame] | 546 | struct dm_spi_emul_ops { |
| 547 | /** |
| 548 | * SPI transfer |
| 549 | * |
| 550 | * This writes "bitlen" bits out the SPI MOSI port and simultaneously |
| 551 | * clocks "bitlen" bits in the SPI MISO port. That's just the way SPI |
| 552 | * works. Here the device is a slave. |
| 553 | * |
| 554 | * The source of the outgoing bits is the "dout" parameter and the |
| 555 | * destination of the input bits is the "din" parameter. Note that |
| 556 | * "dout" and "din" can point to the same memory location, in which |
| 557 | * case the input data overwrites the output data (since both are |
| 558 | * buffered by temporary variables, this is OK). |
| 559 | * |
| 560 | * spi_xfer() interface: |
| 561 | * @slave: The SPI slave which will be sending/receiving the data. |
| 562 | * @bitlen: How many bits to write and read. |
| 563 | * @dout: Pointer to a string of bits sent to the device. The |
| 564 | * bits are held in a byte array and are sent MSB first. |
| 565 | * @din: Pointer to a string of bits that will be sent back to |
| 566 | * the master. |
| 567 | * @flags: A bitwise combination of SPI_XFER_* flags. |
| 568 | * |
| 569 | * Returns: 0 on success, not -1 on failure |
| 570 | */ |
| 571 | int (*xfer)(struct udevice *slave, unsigned int bitlen, |
| 572 | const void *dout, void *din, unsigned long flags); |
| 573 | }; |
| 574 | |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 575 | /** |
| 576 | * spi_find_bus_and_cs() - Find bus and slave devices by number |
| 577 | * |
| 578 | * Given a bus number and chip select, this finds the corresponding bus |
| 579 | * device and slave device. Neither device is activated by this function, |
| 580 | * although they may have been activated previously. |
| 581 | * |
| 582 | * @busnum: SPI bus number |
| 583 | * @cs: Chip select to look for |
| 584 | * @busp: Returns bus device |
| 585 | * @devp: Return slave device |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 586 | * Return: 0 if found, -ENODEV on error |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 587 | */ |
| 588 | int spi_find_bus_and_cs(int busnum, int cs, struct udevice **busp, |
| 589 | struct udevice **devp); |
| 590 | |
| 591 | /** |
| 592 | * spi_get_bus_and_cs() - Find and activate bus and slave devices by number |
| 593 | * |
| 594 | * Given a bus number and chip select, this finds the corresponding bus |
| 595 | * device and slave device. |
| 596 | * |
Patrice Chotard | 86e06ae | 2022-03-30 09:33:13 +0200 | [diff] [blame] | 597 | * @busnum: SPI bus number |
| 598 | * @cs: Chip select to look for |
| 599 | * @busp: Returns bus device |
| 600 | * @devp: Return slave device |
| 601 | * @return 0 if found, -ve on error |
| 602 | */ |
| 603 | int spi_get_bus_and_cs(int busnum, int cs, |
| 604 | struct udevice **busp, struct spi_slave **devp); |
| 605 | |
| 606 | /** |
| 607 | * _spi_get_bus_and_cs() - Find and activate bus and slave devices by number |
| 608 | * As spi_flash_probe(), This is an old-style function. We should remove |
| 609 | * it when all SPI flash drivers use dm |
| 610 | * |
| 611 | * Given a bus number and chip select, this finds the corresponding bus |
| 612 | * device and slave device. |
| 613 | * |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 614 | * If no such slave exists, and drv_name is not NULL, then a new slave device |
Patrick Delaunay | fa19c65 | 2019-02-27 15:36:44 +0100 | [diff] [blame] | 615 | * is automatically bound on this chip select with requested speed and mode. |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 616 | * |
Patrick Delaunay | fa19c65 | 2019-02-27 15:36:44 +0100 | [diff] [blame] | 617 | * Ths new slave device is probed ready for use with the speed and mode |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 618 | * from plat when available or the requested values. |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 619 | * |
| 620 | * @busnum: SPI bus number |
| 621 | * @cs: Chip select to look for |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 622 | * @speed: SPI speed to use for this slave when not available in plat |
| 623 | * @mode: SPI mode to use for this slave when not available in plat |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 624 | * @drv_name: Name of driver to attach to this chip select |
| 625 | * @dev_name: Name of the new device thus created |
| 626 | * @busp: Returns bus device |
| 627 | * @devp: Return slave device |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 628 | * Return: 0 if found, -ve on error |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 629 | */ |
Patrice Chotard | 86e06ae | 2022-03-30 09:33:13 +0200 | [diff] [blame] | 630 | int _spi_get_bus_and_cs(int busnum, int cs, int speed, int mode, |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 631 | const char *drv_name, const char *dev_name, |
| 632 | struct udevice **busp, struct spi_slave **devp); |
| 633 | |
| 634 | /** |
| 635 | * spi_chip_select() - Get the chip select for a slave |
| 636 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 637 | * Return: the chip select this slave is attached to |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 638 | */ |
| 639 | int spi_chip_select(struct udevice *slave); |
| 640 | |
| 641 | /** |
Simon Glass | 5ef36f2 | 2014-11-11 10:46:22 -0700 | [diff] [blame] | 642 | * spi_find_chip_select() - Find the slave attached to chip select |
| 643 | * |
| 644 | * @bus: SPI bus to search |
| 645 | * @cs: Chip select to look for |
| 646 | * @devp: Returns the slave device if found |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 647 | * Return: 0 if found, -EINVAL if cs is invalid, -ENODEV if no device attached, |
Bin Meng | 9741e73 | 2019-09-09 06:00:02 -0700 | [diff] [blame] | 648 | * other -ve value on error |
Simon Glass | 5ef36f2 | 2014-11-11 10:46:22 -0700 | [diff] [blame] | 649 | */ |
| 650 | int spi_find_chip_select(struct udevice *bus, int cs, struct udevice **devp); |
| 651 | |
| 652 | /** |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 653 | * spi_slave_of_to_plat() - decode standard SPI platform data |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 654 | * |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 655 | * This decodes the speed and mode for a slave from a device tree node |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 656 | * |
| 657 | * @blob: Device tree blob |
| 658 | * @node: Node offset to read from |
Simon Glass | 5d2ee05 | 2015-01-25 08:27:12 -0700 | [diff] [blame] | 659 | * @plat: Place to put the decoded information |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 660 | */ |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 661 | int spi_slave_of_to_plat(struct udevice *dev, struct dm_spi_slave_plat *plat); |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 662 | |
| 663 | /** |
| 664 | * spi_cs_info() - Check information on a chip select |
| 665 | * |
| 666 | * This checks a particular chip select on a bus to see if it has a device |
| 667 | * attached, or is even valid. |
| 668 | * |
| 669 | * @bus: The SPI bus |
| 670 | * @cs: The chip select (0..n-1) |
| 671 | * @info: Returns information about the chip select, if valid |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 672 | * Return: 0 if OK (and @info is set up), -ENODEV if the chip select |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 673 | * is invalid, other -ve value on error |
| 674 | */ |
| 675 | int spi_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info); |
| 676 | |
| 677 | struct sandbox_state; |
Simon Glass | 10a4a33 | 2014-10-13 23:41:53 -0600 | [diff] [blame] | 678 | |
| 679 | /** |
| 680 | * sandbox_spi_get_emul() - get an emulator for a SPI slave |
| 681 | * |
| 682 | * This provides a way to attach an emulated SPI device to a particular SPI |
| 683 | * slave, so that xfer() operations on the slave will be handled by the |
| 684 | * emulator. If a emulator already exists on that chip select it is returned. |
| 685 | * Otherwise one is created. |
| 686 | * |
| 687 | * @state: Sandbox state |
| 688 | * @bus: SPI bus requesting the emulator |
| 689 | * @slave: SPI slave device requesting the emulator |
| 690 | * @emuip: Returns pointer to emulator |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 691 | * Return: 0 if OK, -ve on error |
Simon Glass | 10a4a33 | 2014-10-13 23:41:53 -0600 | [diff] [blame] | 692 | */ |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 693 | int sandbox_spi_get_emul(struct sandbox_state *state, |
| 694 | struct udevice *bus, struct udevice *slave, |
| 695 | struct udevice **emulp); |
| 696 | |
Peng Fan | fdd88a3 | 2016-05-03 10:02:22 +0800 | [diff] [blame] | 697 | /** |
| 698 | * Claim the bus and prepare it for communication with a given slave. |
| 699 | * |
| 700 | * This must be called before doing any transfers with a SPI slave. It |
| 701 | * will enable and initialize any SPI hardware as necessary, and make |
| 702 | * sure that the SCK line is in the correct idle state. It is not |
| 703 | * allowed to claim the same bus for several slaves without releasing |
| 704 | * the bus in between. |
| 705 | * |
| 706 | * @dev: The SPI slave device |
| 707 | * |
| 708 | * Returns: 0 if the bus was claimed successfully, or a negative value |
| 709 | * if it wasn't. |
| 710 | */ |
| 711 | int dm_spi_claim_bus(struct udevice *dev); |
| 712 | |
| 713 | /** |
| 714 | * Release the SPI bus |
| 715 | * |
| 716 | * This must be called once for every call to dm_spi_claim_bus() after |
| 717 | * all transfers have finished. It may disable any SPI hardware as |
| 718 | * appropriate. |
| 719 | * |
| 720 | * @slave: The SPI slave device |
| 721 | */ |
| 722 | void dm_spi_release_bus(struct udevice *dev); |
| 723 | |
| 724 | /** |
| 725 | * SPI transfer |
| 726 | * |
| 727 | * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks |
| 728 | * "bitlen" bits in the SPI MISO port. That's just the way SPI works. |
| 729 | * |
| 730 | * The source of the outgoing bits is the "dout" parameter and the |
| 731 | * destination of the input bits is the "din" parameter. Note that "dout" |
| 732 | * and "din" can point to the same memory location, in which case the |
| 733 | * input data overwrites the output data (since both are buffered by |
| 734 | * temporary variables, this is OK). |
| 735 | * |
| 736 | * dm_spi_xfer() interface: |
| 737 | * @dev: The SPI slave device which will be sending/receiving the data. |
| 738 | * @bitlen: How many bits to write and read. |
| 739 | * @dout: Pointer to a string of bits to send out. The bits are |
| 740 | * held in a byte array and are sent MSB first. |
| 741 | * @din: Pointer to a string of bits that will be filled in. |
| 742 | * @flags: A bitwise combination of SPI_XFER_* flags. |
| 743 | * |
| 744 | * Returns: 0 on success, not 0 on failure |
| 745 | */ |
| 746 | int dm_spi_xfer(struct udevice *dev, unsigned int bitlen, |
| 747 | const void *dout, void *din, unsigned long flags); |
| 748 | |
Simon Glass | 37ad0fe | 2019-10-20 21:31:47 -0600 | [diff] [blame] | 749 | /** |
| 750 | * spi_get_mmap() - Get memory-mapped SPI |
| 751 | * |
| 752 | * @dev: SPI slave device to check |
| 753 | * @map_basep: Returns base memory address for mapped SPI |
| 754 | * @map_sizep: Returns size of mapped SPI |
| 755 | * @offsetp: Returns start offset of SPI flash where the map works |
| 756 | * correctly (offsets before this are not visible) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 757 | * Return: 0 if OK, -ENOSYS if no operation, -EFAULT if memory mapping is not |
Simon Glass | 37ad0fe | 2019-10-20 21:31:47 -0600 | [diff] [blame] | 758 | * available |
| 759 | */ |
| 760 | int dm_spi_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep, |
| 761 | uint *offsetp); |
| 762 | |
Simon Glass | dfda30f | 2015-04-20 12:37:12 -0600 | [diff] [blame] | 763 | /* Access the operations for a SPI device */ |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 764 | #define spi_get_ops(dev) ((struct dm_spi_ops *)(dev)->driver->ops) |
Simon Glass | 10a4a33 | 2014-10-13 23:41:53 -0600 | [diff] [blame] | 765 | #define spi_emul_get_ops(dev) ((struct dm_spi_emul_ops *)(dev)->driver->ops) |
Simon Glass | dd82d44 | 2014-10-13 23:41:52 -0600 | [diff] [blame] | 766 | |
Venkatesh Yadav Abbarapu | e5d34db | 2024-06-14 18:18:10 +0530 | [diff] [blame] | 767 | int spi_get_env_dev(void); |
| 768 | |
wdenk | 77f8558 | 2002-09-26 02:01:47 +0000 | [diff] [blame] | 769 | #endif /* _SPI_H_ */ |