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