]>
Commit | Line | Data |
---|---|---|
e3093091 WD |
1 | /* |
2 | * (C) Copyright 2002 | |
3 | * Gerald Van Baren, Custom IDEAS, [email protected] | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
e3093091 WD |
6 | */ |
7 | ||
8 | /* | |
9 | * SPI Read/Write Utilities | |
10 | */ | |
11 | ||
12 | #include <common.h> | |
13 | #include <command.h> | |
1157a161 | 14 | #include <dm.h> |
df3b23ae | 15 | #include <errno.h> |
e3093091 | 16 | #include <spi.h> |
e3093091 | 17 | |
eb9401e3 WD |
18 | /*----------------------------------------------------------------------- |
19 | * Definitions | |
20 | */ | |
21 | ||
22 | #ifndef MAX_SPI_BYTES | |
23 | # define MAX_SPI_BYTES 32 /* Maximum number of bytes we can handle */ | |
24 | #endif | |
e3093091 | 25 | |
d255bb0e HS |
26 | #ifndef CONFIG_DEFAULT_SPI_BUS |
27 | # define CONFIG_DEFAULT_SPI_BUS 0 | |
28 | #endif | |
29 | #ifndef CONFIG_DEFAULT_SPI_MODE | |
30 | # define CONFIG_DEFAULT_SPI_MODE SPI_MODE_0 | |
31 | #endif | |
e3093091 WD |
32 | |
33 | /* | |
34 | * Values from last command. | |
35 | */ | |
21032b35 RM |
36 | static unsigned int bus; |
37 | static unsigned int cs; | |
38 | static unsigned int mode; | |
d255bb0e HS |
39 | static int bitlen; |
40 | static uchar dout[MAX_SPI_BYTES]; | |
41 | static uchar din[MAX_SPI_BYTES]; | |
e3093091 | 42 | |
df3b23ae SG |
43 | static int do_spi_xfer(int bus, int cs) |
44 | { | |
45 | struct spi_slave *slave; | |
1157a161 | 46 | int ret = 0; |
df3b23ae | 47 | |
1157a161 SG |
48 | #ifdef CONFIG_DM_SPI |
49 | char name[30], *str; | |
50 | struct udevice *dev; | |
51 | ||
52 | snprintf(name, sizeof(name), "generic_%d:%d", bus, cs); | |
53 | str = strdup(name); | |
9caeb26c PF |
54 | if (!str) |
55 | return -ENOMEM; | |
1157a161 SG |
56 | ret = spi_get_bus_and_cs(bus, cs, 1000000, mode, "spi_generic_drv", |
57 | str, &dev, &slave); | |
58 | if (ret) | |
59 | return ret; | |
60 | #else | |
df3b23ae SG |
61 | slave = spi_setup_slave(bus, cs, 1000000, mode); |
62 | if (!slave) { | |
63 | printf("Invalid device %d:%d\n", bus, cs); | |
64 | return -EINVAL; | |
65 | } | |
1157a161 | 66 | #endif |
df3b23ae | 67 | |
1157a161 SG |
68 | ret = spi_claim_bus(slave); |
69 | if (ret) | |
70 | goto done; | |
71 | ret = spi_xfer(slave, bitlen, dout, din, | |
72 | SPI_XFER_BEGIN | SPI_XFER_END); | |
73 | #ifndef CONFIG_DM_SPI | |
74 | /* We don't get an error code in this case */ | |
75 | if (ret) | |
76 | ret = -EIO; | |
77 | #endif | |
78 | if (ret) { | |
79 | printf("Error %d during SPI transaction\n", ret); | |
df3b23ae SG |
80 | } else { |
81 | int j; | |
82 | ||
83 | for (j = 0; j < ((bitlen + 7) / 8); j++) | |
84 | printf("%02X", din[j]); | |
85 | printf("\n"); | |
86 | } | |
1157a161 | 87 | done: |
df3b23ae | 88 | spi_release_bus(slave); |
1157a161 | 89 | #ifndef CONFIG_DM_SPI |
df3b23ae | 90 | spi_free_slave(slave); |
1157a161 | 91 | #endif |
df3b23ae | 92 | |
1157a161 | 93 | return ret; |
df3b23ae SG |
94 | } |
95 | ||
e3093091 WD |
96 | /* |
97 | * SPI read/write | |
98 | * | |
99 | * Syntax: | |
100 | * spi {dev} {num_bits} {dout} | |
101 | * {dev} is the device number for controlling chip select (see TBD) | |
102 | * {num_bits} is the number of bits to send & receive (base 10) | |
103 | * {dout} is a hexadecimal string of data to send | |
104 | * The command prints out the hexadecimal string received via SPI. | |
105 | */ | |
106 | ||
54841ab5 | 107 | int do_spi (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
e3093091 WD |
108 | { |
109 | char *cp = 0; | |
110 | uchar tmp; | |
111 | int j; | |
e3093091 WD |
112 | |
113 | /* | |
114 | * We use the last specified parameters, unless new ones are | |
115 | * entered. | |
116 | */ | |
117 | ||
118 | if ((flag & CMD_FLAG_REPEAT) == 0) | |
119 | { | |
21032b35 RM |
120 | if (argc >= 2) { |
121 | mode = CONFIG_DEFAULT_SPI_MODE; | |
122 | bus = simple_strtoul(argv[1], &cp, 10); | |
123 | if (*cp == ':') { | |
124 | cs = simple_strtoul(cp+1, &cp, 10); | |
125 | } else { | |
126 | cs = bus; | |
127 | bus = CONFIG_DEFAULT_SPI_BUS; | |
128 | } | |
2d5e7c7a | 129 | if (*cp == '.') |
21032b35 RM |
130 | mode = simple_strtoul(cp+1, NULL, 10); |
131 | } | |
e3093091 WD |
132 | if (argc >= 3) |
133 | bitlen = simple_strtoul(argv[2], NULL, 10); | |
eb9401e3 WD |
134 | 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) { | |
21032b35 | 143 | printf("Hex conversion error on %c\n", *cp); |
eb9401e3 WD |
144 | return 1; |
145 | } | |
146 | if((j % 2) == 0) | |
147 | dout[j / 2] = (tmp << 4); | |
148 | else | |
149 | dout[j / 2] |= tmp; | |
e3093091 | 150 | } |
e3093091 WD |
151 | } |
152 | } | |
153 | ||
eb9401e3 | 154 | if ((bitlen < 0) || (bitlen > (MAX_SPI_BYTES * 8))) { |
21032b35 | 155 | printf("Invalid bitlen %d\n", bitlen); |
eb9401e3 | 156 | return 1; |
8bde7f77 | 157 | } |
eb9401e3 | 158 | |
df3b23ae | 159 | if (do_spi_xfer(bus, cs)) |
d255bb0e | 160 | return 1; |
e3093091 | 161 | |
df3b23ae | 162 | return 0; |
e3093091 WD |
163 | } |
164 | ||
8bde7f77 WD |
165 | /***************************************************/ |
166 | ||
0d498393 WD |
167 | U_BOOT_CMD( |
168 | sspi, 5, 1, do_spi, | |
21032b35 RM |
169 | "SPI utility command", |
170 | "[<bus>:]<cs>[.<mode>] <bit_len> <dout> - Send and receive bits\n" | |
171 | "<bus> - Identifies the SPI bus\n" | |
172 | "<cs> - Identifies the chip select\n" | |
173 | "<mode> - Identifies the SPI mode to use\n" | |
8bde7f77 | 174 | "<bit_len> - Number of bits to send (base 10)\n" |
a89c33db | 175 | "<dout> - Hexadecimal string that gets sent" |
8bde7f77 | 176 | ); |