blob: f30018f33be81e0f7949f711aff02e9ce6beb3ec [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenke3093092002-10-01 01:07:28 +00002/*
3 * (C) Copyright 2002
4 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
wdenke3093092002-10-01 01:07:28 +00005 */
6
7/*
8 * SPI Read/Write Utilities
9 */
10
11#include <common.h>
12#include <command.h>
Simon Glass1157a162014-10-13 23:41:56 -060013#include <dm.h>
Simon Glassdf3b23a2014-09-15 06:33:22 -060014#include <errno.h>
wdenke3093092002-10-01 01:07:28 +000015#include <spi.h>
wdenke3093092002-10-01 01:07:28 +000016
wdenkeb9401e2002-11-11 02:11:37 +000017/*-----------------------------------------------------------------------
18 * Definitions
19 */
20
21#ifndef MAX_SPI_BYTES
22# define MAX_SPI_BYTES 32 /* Maximum number of bytes we can handle */
23#endif
wdenke3093092002-10-01 01:07:28 +000024
wdenke3093092002-10-01 01:07:28 +000025/*
26 * Values from last command.
27 */
Reinhard Meyer21032b32010-08-26 10:57:27 +020028static unsigned int bus;
29static unsigned int cs;
30static unsigned int mode;
Marek Vasut69547562019-12-20 12:44:57 +010031static unsigned int freq;
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020032static int bitlen;
33static uchar dout[MAX_SPI_BYTES];
34static uchar din[MAX_SPI_BYTES];
wdenke3093092002-10-01 01:07:28 +000035
Simon Glassdf3b23a2014-09-15 06:33:22 -060036static int do_spi_xfer(int bus, int cs)
37{
38 struct spi_slave *slave;
Simon Glass1157a162014-10-13 23:41:56 -060039 int ret = 0;
Simon Glassdf3b23a2014-09-15 06:33:22 -060040
Lukasz Majewski56c40462020-06-04 23:11:53 +080041#if CONFIG_IS_ENABLED(DM_SPI)
Simon Glass1157a162014-10-13 23:41:56 -060042 char name[30], *str;
43 struct udevice *dev;
44
45 snprintf(name, sizeof(name), "generic_%d:%d", bus, cs);
46 str = strdup(name);
Peng Fan9caeb262016-03-20 21:21:36 +080047 if (!str)
48 return -ENOMEM;
Patrice Chotard61708bb2022-03-30 09:33:13 +020049 ret = _spi_get_bus_and_cs(bus, cs, freq, mode, "spi_generic_drv",
50 str, &dev, &slave);
Simon Glass1157a162014-10-13 23:41:56 -060051 if (ret)
52 return ret;
53#else
Marek Vasut69547562019-12-20 12:44:57 +010054 slave = spi_setup_slave(bus, cs, freq, mode);
Simon Glassdf3b23a2014-09-15 06:33:22 -060055 if (!slave) {
56 printf("Invalid device %d:%d\n", bus, cs);
57 return -EINVAL;
58 }
Simon Glass1157a162014-10-13 23:41:56 -060059#endif
Simon Glassdf3b23a2014-09-15 06:33:22 -060060
Simon Glass1157a162014-10-13 23:41:56 -060061 ret = spi_claim_bus(slave);
62 if (ret)
63 goto done;
64 ret = spi_xfer(slave, bitlen, dout, din,
65 SPI_XFER_BEGIN | SPI_XFER_END);
Lukasz Majewski56c40462020-06-04 23:11:53 +080066#if !CONFIG_IS_ENABLED(DM_SPI)
Simon Glass1157a162014-10-13 23:41:56 -060067 /* We don't get an error code in this case */
68 if (ret)
69 ret = -EIO;
70#endif
71 if (ret) {
72 printf("Error %d during SPI transaction\n", ret);
Simon Glassdf3b23a2014-09-15 06:33:22 -060073 } else {
74 int j;
75
76 for (j = 0; j < ((bitlen + 7) / 8); j++)
77 printf("%02X", din[j]);
78 printf("\n");
79 }
Simon Glass1157a162014-10-13 23:41:56 -060080done:
Simon Glassdf3b23a2014-09-15 06:33:22 -060081 spi_release_bus(slave);
Lukasz Majewski56c40462020-06-04 23:11:53 +080082#if !CONFIG_IS_ENABLED(DM_SPI)
Simon Glassdf3b23a2014-09-15 06:33:22 -060083 spi_free_slave(slave);
Simon Glass1157a162014-10-13 23:41:56 -060084#endif
Simon Glassdf3b23a2014-09-15 06:33:22 -060085
Simon Glass1157a162014-10-13 23:41:56 -060086 return ret;
Simon Glassdf3b23a2014-09-15 06:33:22 -060087}
88
wdenke3093092002-10-01 01:07:28 +000089/*
90 * SPI read/write
91 *
92 * Syntax:
93 * spi {dev} {num_bits} {dout}
94 * {dev} is the device number for controlling chip select (see TBD)
95 * {num_bits} is the number of bits to send & receive (base 10)
96 * {dout} is a hexadecimal string of data to send
97 * The command prints out the hexadecimal string received via SPI.
98 */
99
Simon Glass09140112020-05-10 11:40:03 -0600100int do_spi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenke3093092002-10-01 01:07:28 +0000101{
102 char *cp = 0;
103 uchar tmp;
104 int j;
wdenke3093092002-10-01 01:07:28 +0000105
106 /*
107 * We use the last specified parameters, unless new ones are
108 * entered.
109 */
Marek Vasut69547562019-12-20 12:44:57 +0100110 if (freq == 0)
111 freq = 1000000;
wdenke3093092002-10-01 01:07:28 +0000112
113 if ((flag & CMD_FLAG_REPEAT) == 0)
114 {
chenzhipengc40e0212022-12-06 17:24:38 +0800115 if (argc < 2)
116 return CMD_RET_USAGE;
117
Reinhard Meyer21032b32010-08-26 10:57:27 +0200118 if (argc >= 2) {
119 mode = CONFIG_DEFAULT_SPI_MODE;
Simon Glass0b1284e2021-07-24 09:03:30 -0600120 bus = dectoul(argv[1], &cp);
Reinhard Meyer21032b32010-08-26 10:57:27 +0200121 if (*cp == ':') {
Simon Glass0b1284e2021-07-24 09:03:30 -0600122 cs = dectoul(cp + 1, &cp);
Reinhard Meyer21032b32010-08-26 10:57:27 +0200123 } else {
124 cs = bus;
125 bus = CONFIG_DEFAULT_SPI_BUS;
126 }
Marek Vasut2d5e7c72012-08-01 15:12:15 +0200127 if (*cp == '.')
Simon Glass0b1284e2021-07-24 09:03:30 -0600128 mode = dectoul(cp + 1, &cp);
Marek Vasut69547562019-12-20 12:44:57 +0100129 if (*cp == '@')
Simon Glass0b1284e2021-07-24 09:03:30 -0600130 freq = dectoul(cp + 1, &cp);
Reinhard Meyer21032b32010-08-26 10:57:27 +0200131 }
wdenke3093092002-10-01 01:07:28 +0000132 if (argc >= 3)
Simon Glass0b1284e2021-07-24 09:03:30 -0600133 bitlen = dectoul(argv[2], NULL);
wdenkeb9401e2002-11-11 02:11:37 +0000134 if (argc >= 4) {
135 cp = argv[3];
136 for(j = 0; *cp; j++, cp++) {
137 tmp = *cp - '0';
138 if(tmp > 9)
139 tmp -= ('A' - '0') - 10;
140 if(tmp > 15)
141 tmp -= ('a' - 'A');
142 if(tmp > 15) {
Reinhard Meyer21032b32010-08-26 10:57:27 +0200143 printf("Hex conversion error on %c\n", *cp);
wdenkeb9401e2002-11-11 02:11:37 +0000144 return 1;
145 }
146 if((j % 2) == 0)
147 dout[j / 2] = (tmp << 4);
148 else
149 dout[j / 2] |= tmp;
wdenke3093092002-10-01 01:07:28 +0000150 }
wdenke3093092002-10-01 01:07:28 +0000151 }
152 }
153
wdenkeb9401e2002-11-11 02:11:37 +0000154 if ((bitlen < 0) || (bitlen > (MAX_SPI_BYTES * 8))) {
Reinhard Meyer21032b32010-08-26 10:57:27 +0200155 printf("Invalid bitlen %d\n", bitlen);
wdenkeb9401e2002-11-11 02:11:37 +0000156 return 1;
wdenk8bde7f72003-06-27 21:31:46 +0000157 }
wdenkeb9401e2002-11-11 02:11:37 +0000158
Simon Glassdf3b23a2014-09-15 06:33:22 -0600159 if (do_spi_xfer(bus, cs))
Haavard Skinnemoend255bb02008-05-16 11:10:31 +0200160 return 1;
wdenkeb9401e2002-11-11 02:11:37 +0000161
Simon Glassdf3b23a2014-09-15 06:33:22 -0600162 return 0;
wdenke3093092002-10-01 01:07:28 +0000163}
164
wdenk8bde7f72003-06-27 21:31:46 +0000165/***************************************************/
166
wdenk0d498392003-07-01 21:06:45 +0000167U_BOOT_CMD(
168 sspi, 5, 1, do_spi,
Reinhard Meyer21032b32010-08-26 10:57:27 +0200169 "SPI utility command",
Marek Vasut69547562019-12-20 12:44:57 +0100170 "[<bus>:]<cs>[.<mode>][@<freq>] <bit_len> <dout> - Send and receive bits\n"
Reinhard Meyer21032b32010-08-26 10:57:27 +0200171 "<bus> - Identifies the SPI bus\n"
172 "<cs> - Identifies the chip select\n"
173 "<mode> - Identifies the SPI mode to use\n"
Marek Vasut69547562019-12-20 12:44:57 +0100174 "<freq> - Identifies the SPI bus frequency in Hz\n"
wdenk8bde7f72003-06-27 21:31:46 +0000175 "<bit_len> - Number of bits to send (base 10)\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200176 "<dout> - Hexadecimal string that gets sent"
wdenk8bde7f72003-06-27 21:31:46 +0000177);