Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * SPI Read/Write Utilities |
| 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 13 | #include <dm.h> |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 14 | #include <errno.h> |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 15 | #include <spi.h> |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 16 | |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 17 | /*----------------------------------------------------------------------- |
| 18 | * Definitions |
| 19 | */ |
| 20 | |
| 21 | #ifndef MAX_SPI_BYTES |
| 22 | # define MAX_SPI_BYTES 32 /* Maximum number of bytes we can handle */ |
| 23 | #endif |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 24 | |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 25 | /* |
| 26 | * Values from last command. |
| 27 | */ |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 28 | static unsigned int bus; |
| 29 | static unsigned int cs; |
| 30 | static unsigned int mode; |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 31 | static unsigned int freq; |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 32 | static int bitlen; |
| 33 | static uchar dout[MAX_SPI_BYTES]; |
| 34 | static uchar din[MAX_SPI_BYTES]; |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 35 | |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 36 | static int do_spi_xfer(int bus, int cs) |
| 37 | { |
| 38 | struct spi_slave *slave; |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 39 | int ret = 0; |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 40 | |
Lukasz Majewski | 56c4046 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 41 | #if CONFIG_IS_ENABLED(DM_SPI) |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 42 | char name[30], *str; |
| 43 | struct udevice *dev; |
| 44 | |
| 45 | snprintf(name, sizeof(name), "generic_%d:%d", bus, cs); |
| 46 | str = strdup(name); |
Peng Fan | 9caeb26 | 2016-03-20 21:21:36 +0800 | [diff] [blame] | 47 | if (!str) |
| 48 | return -ENOMEM; |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 49 | ret = spi_get_bus_and_cs(bus, cs, freq, mode, "spi_generic_drv", |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 50 | str, &dev, &slave); |
| 51 | if (ret) |
| 52 | return ret; |
| 53 | #else |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 54 | slave = spi_setup_slave(bus, cs, freq, mode); |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 55 | if (!slave) { |
| 56 | printf("Invalid device %d:%d\n", bus, cs); |
| 57 | return -EINVAL; |
| 58 | } |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 59 | #endif |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 60 | |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 61 | 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 Majewski | 56c4046 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 66 | #if !CONFIG_IS_ENABLED(DM_SPI) |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 67 | /* 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 Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 73 | } else { |
| 74 | int j; |
| 75 | |
| 76 | for (j = 0; j < ((bitlen + 7) / 8); j++) |
| 77 | printf("%02X", din[j]); |
| 78 | printf("\n"); |
| 79 | } |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 80 | done: |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 81 | spi_release_bus(slave); |
Lukasz Majewski | 56c4046 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 82 | #if !CONFIG_IS_ENABLED(DM_SPI) |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 83 | spi_free_slave(slave); |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 84 | #endif |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 85 | |
Simon Glass | 1157a16 | 2014-10-13 23:41:56 -0600 | [diff] [blame] | 86 | return ret; |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 87 | } |
| 88 | |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 89 | /* |
| 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 100 | int do_spi(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 101 | { |
| 102 | char *cp = 0; |
| 103 | uchar tmp; |
| 104 | int j; |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 105 | |
| 106 | /* |
| 107 | * We use the last specified parameters, unless new ones are |
| 108 | * entered. |
| 109 | */ |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 110 | if (freq == 0) |
| 111 | freq = 1000000; |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 112 | |
| 113 | if ((flag & CMD_FLAG_REPEAT) == 0) |
| 114 | { |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 115 | if (argc >= 2) { |
| 116 | mode = CONFIG_DEFAULT_SPI_MODE; |
| 117 | bus = simple_strtoul(argv[1], &cp, 10); |
| 118 | if (*cp == ':') { |
| 119 | cs = simple_strtoul(cp+1, &cp, 10); |
| 120 | } else { |
| 121 | cs = bus; |
| 122 | bus = CONFIG_DEFAULT_SPI_BUS; |
| 123 | } |
Marek Vasut | 2d5e7c7 | 2012-08-01 15:12:15 +0200 | [diff] [blame] | 124 | if (*cp == '.') |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 125 | mode = simple_strtoul(cp+1, &cp, 10); |
| 126 | if (*cp == '@') |
| 127 | freq = simple_strtoul(cp+1, &cp, 10); |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 128 | } |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 129 | if (argc >= 3) |
| 130 | bitlen = simple_strtoul(argv[2], NULL, 10); |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 131 | if (argc >= 4) { |
| 132 | cp = argv[3]; |
| 133 | for(j = 0; *cp; j++, cp++) { |
| 134 | tmp = *cp - '0'; |
| 135 | if(tmp > 9) |
| 136 | tmp -= ('A' - '0') - 10; |
| 137 | if(tmp > 15) |
| 138 | tmp -= ('a' - 'A'); |
| 139 | if(tmp > 15) { |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 140 | printf("Hex conversion error on %c\n", *cp); |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 141 | return 1; |
| 142 | } |
| 143 | if((j % 2) == 0) |
| 144 | dout[j / 2] = (tmp << 4); |
| 145 | else |
| 146 | dout[j / 2] |= tmp; |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 147 | } |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 148 | } |
| 149 | } |
| 150 | |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 151 | if ((bitlen < 0) || (bitlen > (MAX_SPI_BYTES * 8))) { |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 152 | printf("Invalid bitlen %d\n", bitlen); |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 153 | return 1; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 154 | } |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 155 | |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 156 | if (do_spi_xfer(bus, cs)) |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 157 | return 1; |
wdenk | eb9401e | 2002-11-11 02:11:37 +0000 | [diff] [blame] | 158 | |
Simon Glass | df3b23a | 2014-09-15 06:33:22 -0600 | [diff] [blame] | 159 | return 0; |
wdenk | e309309 | 2002-10-01 01:07:28 +0000 | [diff] [blame] | 160 | } |
| 161 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 162 | /***************************************************/ |
| 163 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 164 | U_BOOT_CMD( |
| 165 | sspi, 5, 1, do_spi, |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 166 | "SPI utility command", |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 167 | "[<bus>:]<cs>[.<mode>][@<freq>] <bit_len> <dout> - Send and receive bits\n" |
Reinhard Meyer | 21032b3 | 2010-08-26 10:57:27 +0200 | [diff] [blame] | 168 | "<bus> - Identifies the SPI bus\n" |
| 169 | "<cs> - Identifies the chip select\n" |
| 170 | "<mode> - Identifies the SPI mode to use\n" |
Marek Vasut | 6954756 | 2019-12-20 12:44:57 +0100 | [diff] [blame] | 171 | "<freq> - Identifies the SPI bus frequency in Hz\n" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 172 | "<bit_len> - Number of bits to send (base 10)\n" |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 173 | "<dout> - Hexadecimal string that gets sent" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 174 | ); |