1 // SPDX-License-Identifier: GPL-2.0+
4 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
8 * SPI Read/Write Utilities
17 /*-----------------------------------------------------------------------
22 # define MAX_SPI_BYTES 32 /* Maximum number of bytes we can handle */
26 * Values from last command.
28 static unsigned int bus;
29 static unsigned int cs;
30 static unsigned int mode;
32 static uchar dout[MAX_SPI_BYTES];
33 static uchar din[MAX_SPI_BYTES];
35 static int do_spi_xfer(int bus, int cs)
37 struct spi_slave *slave;
44 snprintf(name, sizeof(name), "generic_%d:%d", bus, cs);
48 ret = spi_get_bus_and_cs(bus, cs, 1000000, mode, "spi_generic_drv",
53 slave = spi_setup_slave(bus, cs, 1000000, mode);
55 printf("Invalid device %d:%d\n", bus, cs);
60 ret = spi_claim_bus(slave);
63 ret = spi_xfer(slave, bitlen, dout, din,
64 SPI_XFER_BEGIN | SPI_XFER_END);
66 /* We don't get an error code in this case */
71 printf("Error %d during SPI transaction\n", ret);
75 for (j = 0; j < ((bitlen + 7) / 8); j++)
76 printf("%02X", din[j]);
80 spi_release_bus(slave);
82 spi_free_slave(slave);
92 * spi {dev} {num_bits} {dout}
93 * {dev} is the device number for controlling chip select (see TBD)
94 * {num_bits} is the number of bits to send & receive (base 10)
95 * {dout} is a hexadecimal string of data to send
96 * The command prints out the hexadecimal string received via SPI.
99 int do_spi (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
106 * We use the last specified parameters, unless new ones are
110 if ((flag & CMD_FLAG_REPEAT) == 0)
113 mode = CONFIG_DEFAULT_SPI_MODE;
114 bus = simple_strtoul(argv[1], &cp, 10);
116 cs = simple_strtoul(cp+1, &cp, 10);
119 bus = CONFIG_DEFAULT_SPI_BUS;
122 mode = simple_strtoul(cp+1, NULL, 10);
125 bitlen = simple_strtoul(argv[2], NULL, 10);
128 for(j = 0; *cp; j++, cp++) {
131 tmp -= ('A' - '0') - 10;
135 printf("Hex conversion error on %c\n", *cp);
139 dout[j / 2] = (tmp << 4);
146 if ((bitlen < 0) || (bitlen > (MAX_SPI_BYTES * 8))) {
147 printf("Invalid bitlen %d\n", bitlen);
151 if (do_spi_xfer(bus, cs))
157 /***************************************************/
161 "SPI utility command",
162 "[<bus>:]<cs>[.<mode>] <bit_len> <dout> - Send and receive bits\n"
163 "<bus> - Identifies the SPI bus\n"
164 "<cs> - Identifies the chip select\n"
165 "<mode> - Identifies the SPI mode to use\n"
166 "<bit_len> - Number of bits to send (base 10)\n"
167 "<dout> - Hexadecimal string that gets sent"