Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 2 | /* |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 3 | * (C) Copyright 2009 |
| 4 | * Sergey Kubushyn, himself, ksi@koi8.net |
| 5 | * |
| 6 | * Changes for unified multibus/multiadapter I2C support. |
| 7 | * |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 8 | * (C) Copyright 2001 |
| 9 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com. |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* |
| 13 | * I2C Functions similar to the standard memory functions. |
| 14 | * |
| 15 | * There are several parameters in many of the commands that bear further |
| 16 | * explanations: |
| 17 | * |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 18 | * {i2c_chip} is the I2C chip address (the first byte sent on the bus). |
| 19 | * Each I2C chip on the bus has a unique address. On the I2C data bus, |
| 20 | * the address is the upper seven bits and the LSB is the "read/write" |
| 21 | * bit. Note that the {i2c_chip} address specified on the command |
| 22 | * line is not shifted up: e.g. a typical EEPROM memory chip may have |
| 23 | * an I2C address of 0x50, but the data put on the bus will be 0xA0 |
| 24 | * for write and 0xA1 for read. This "non shifted" address notation |
| 25 | * matches at least half of the data sheets :-/. |
| 26 | * |
| 27 | * {addr} is the address (or offset) within the chip. Small memory |
| 28 | * chips have 8 bit addresses. Large memory chips have 16 bit |
| 29 | * addresses. Other memory chips have 9, 10, or 11 bit addresses. |
| 30 | * Many non-memory chips have multiple registers and {addr} is used |
| 31 | * as the register index. Some non-memory chips have only one register |
| 32 | * and therefore don't need any {addr} parameter. |
| 33 | * |
| 34 | * The default {addr} parameter is one byte (.1) which works well for |
| 35 | * memories and registers with 8 bits of address space. |
| 36 | * |
| 37 | * You can specify the length of the {addr} field with the optional .0, |
| 38 | * .1, or .2 modifier (similar to the .b, .w, .l modifier). If you are |
| 39 | * manipulating a single register device which doesn't use an address |
| 40 | * field, use "0.0" for the address and the ".0" length field will |
| 41 | * suppress the address in the I2C data stream. This also works for |
| 42 | * successive reads using the I2C auto-incrementing memory pointer. |
| 43 | * |
| 44 | * If you are manipulating a large memory with 2-byte addresses, use |
| 45 | * the .2 address modifier, e.g. 210.2 addresses location 528 (decimal). |
| 46 | * |
| 47 | * Then there are the unfortunate memory chips that spill the most |
| 48 | * significant 1, 2, or 3 bits of address into the chip address byte. |
| 49 | * This effectively makes one chip (logically) look like 2, 4, or |
| 50 | * 8 chips. This is handled (awkwardly) by #defining |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | * CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 52 | * {addr} field (since .1 is the default, it doesn't actually have to |
| 53 | * be specified). Examples: given a memory chip at I2C chip address |
| 54 | * 0x50, the following would happen... |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 55 | * i2c md 50 0 10 display 16 bytes starting at 0x000 |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 56 | * On the bus: <S> A0 00 <E> <S> A1 <rd> ... <rd> |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 57 | * i2c md 50 100 10 display 16 bytes starting at 0x100 |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 58 | * On the bus: <S> A2 00 <E> <S> A3 <rd> ... <rd> |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 59 | * i2c md 50 210 10 display 16 bytes starting at 0x210 |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 60 | * On the bus: <S> A4 10 <E> <S> A5 <rd> ... <rd> |
| 61 | * This is awfully ugly. It would be nice if someone would think up |
| 62 | * a better way of handling this. |
| 63 | * |
| 64 | * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de). |
| 65 | */ |
| 66 | |
| 67 | #include <common.h> |
Simon Glass | 0098e17 | 2014-04-10 20:01:30 -0600 | [diff] [blame] | 68 | #include <bootretry.h> |
Simon Glass | 18d6653 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 69 | #include <cli.h> |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 70 | #include <command.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 71 | #include <console.h> |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 72 | #include <dm.h> |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 73 | #include <edid.h> |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 74 | #include <errno.h> |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 75 | #include <i2c.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 76 | #include <log.h> |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 77 | #include <malloc.h> |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 78 | #include <asm/byteorder.h> |
Marek Vasut | 2515d84 | 2012-11-12 14:34:25 +0000 | [diff] [blame] | 79 | #include <linux/compiler.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 80 | #include <linux/delay.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 81 | #include <u-boot/crc.h> |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 82 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 83 | /* Display values from last command. |
| 84 | * Memory modify remembered values are different from display memory. |
| 85 | */ |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 86 | static uint i2c_dp_last_chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 87 | static uint i2c_dp_last_addr; |
| 88 | static uint i2c_dp_last_alen; |
| 89 | static uint i2c_dp_last_length = 0x10; |
| 90 | |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 91 | static uint i2c_mm_last_chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 92 | static uint i2c_mm_last_addr; |
| 93 | static uint i2c_mm_last_alen; |
| 94 | |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 95 | /* If only one I2C bus is present, the list of devices to ignore when |
| 96 | * the probe command is issued is represented by a 1D array of addresses. |
| 97 | * When multiple buses are present, the list is an array of bus-address |
| 98 | * pairs. The following macros take care of this */ |
| 99 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | #if defined(CONFIG_SYS_I2C_NOPROBES) |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 101 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || defined(CONFIG_I2C_MULTI_BUS) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 102 | static struct |
| 103 | { |
| 104 | uchar bus; |
| 105 | uchar addr; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 106 | } i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 107 | #define GET_BUS_NUM i2c_get_bus_num() |
| 108 | #define COMPARE_BUS(b,i) (i2c_no_probes[(i)].bus == (b)) |
| 109 | #define COMPARE_ADDR(a,i) (i2c_no_probes[(i)].addr == (a)) |
| 110 | #define NO_PROBE_ADDR(i) i2c_no_probes[(i)].addr |
| 111 | #else /* single bus */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | static uchar i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 113 | #define GET_BUS_NUM 0 |
| 114 | #define COMPARE_BUS(b,i) ((b) == 0) /* Make compiler happy */ |
| 115 | #define COMPARE_ADDR(a,i) (i2c_no_probes[(i)] == (a)) |
| 116 | #define NO_PROBE_ADDR(i) i2c_no_probes[(i)] |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 117 | #endif /* CONFIG_IS_ENABLED(SYS_I2C_LEGACY) */ |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 118 | #endif |
| 119 | |
Frans Meulenbroeks | a266fe9 | 2010-03-26 09:46:40 +0100 | [diff] [blame] | 120 | #define DISP_LINE_LEN 16 |
| 121 | |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 122 | /* |
| 123 | * Default for driver model is to use the chip's existing address length. |
| 124 | * For legacy code, this is not stored, so we need to use a suitable |
| 125 | * default. |
| 126 | */ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 127 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 128 | #define DEFAULT_ADDR_LEN (-1) |
| 129 | #else |
| 130 | #define DEFAULT_ADDR_LEN 1 |
| 131 | #endif |
| 132 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 133 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 134 | static struct udevice *i2c_cur_bus; |
| 135 | |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 136 | static int cmd_i2c_set_bus_num(unsigned int busnum) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 137 | { |
| 138 | struct udevice *bus; |
| 139 | int ret; |
| 140 | |
| 141 | ret = uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus); |
| 142 | if (ret) { |
| 143 | debug("%s: No bus %d\n", __func__, busnum); |
| 144 | return ret; |
| 145 | } |
| 146 | i2c_cur_bus = bus; |
| 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static int i2c_get_cur_bus(struct udevice **busp) |
| 152 | { |
Lukasz Majewski | e46f8a3 | 2017-03-21 12:08:25 +0100 | [diff] [blame] | 153 | #ifdef CONFIG_I2C_SET_DEFAULT_BUS_NUM |
| 154 | if (!i2c_cur_bus) { |
| 155 | if (cmd_i2c_set_bus_num(CONFIG_I2C_DEFAULT_BUS_NUMBER)) { |
| 156 | printf("Default I2C bus %d not found\n", |
| 157 | CONFIG_I2C_DEFAULT_BUS_NUMBER); |
| 158 | return -ENODEV; |
| 159 | } |
| 160 | } |
| 161 | #endif |
| 162 | |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 163 | if (!i2c_cur_bus) { |
| 164 | puts("No I2C bus selected\n"); |
| 165 | return -ENODEV; |
| 166 | } |
| 167 | *busp = i2c_cur_bus; |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | static int i2c_get_cur_bus_chip(uint chip_addr, struct udevice **devp) |
| 173 | { |
| 174 | struct udevice *bus; |
| 175 | int ret; |
| 176 | |
| 177 | ret = i2c_get_cur_bus(&bus); |
| 178 | if (ret) |
| 179 | return ret; |
| 180 | |
Simon Glass | 25ab4b0 | 2015-01-25 08:26:55 -0700 | [diff] [blame] | 181 | return i2c_get_chip(bus, chip_addr, 1, devp); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | #endif |
| 185 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 186 | /** |
| 187 | * i2c_init_board() - Board-specific I2C bus init |
| 188 | * |
| 189 | * This function is the default no-op implementation of I2C bus |
Robert P. J. Day | 62a3b7d | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 190 | * initialization. This function can be overridden by board-specific |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 191 | * implementation if needed. |
| 192 | */ |
Marek Vasut | 2515d84 | 2012-11-12 14:34:25 +0000 | [diff] [blame] | 193 | __weak |
| 194 | void i2c_init_board(void) |
Stefan Bigler | c649dda | 2011-04-08 16:24:08 +0200 | [diff] [blame] | 195 | { |
Stefan Bigler | c649dda | 2011-04-08 16:24:08 +0200 | [diff] [blame] | 196 | } |
Stefan Bigler | c649dda | 2011-04-08 16:24:08 +0200 | [diff] [blame] | 197 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 198 | /** |
| 199 | * get_alen() - Small parser helper function to get address length |
| 200 | * |
| 201 | * Returns the address length. |
Frans Meulenbroeks | 2c0dc99 | 2010-03-26 09:46:41 +0100 | [diff] [blame] | 202 | */ |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 203 | static uint get_alen(char *arg, int default_len) |
Frans Meulenbroeks | 2c0dc99 | 2010-03-26 09:46:41 +0100 | [diff] [blame] | 204 | { |
| 205 | int j; |
| 206 | int alen; |
| 207 | |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 208 | alen = default_len; |
Frans Meulenbroeks | 2c0dc99 | 2010-03-26 09:46:41 +0100 | [diff] [blame] | 209 | for (j = 0; j < 8; j++) { |
| 210 | if (arg[j] == '.') { |
| 211 | alen = arg[j+1] - '0'; |
Frans Meulenbroeks | 2c0dc99 | 2010-03-26 09:46:41 +0100 | [diff] [blame] | 212 | break; |
| 213 | } else if (arg[j] == '\0') |
| 214 | break; |
| 215 | } |
| 216 | return alen; |
| 217 | } |
| 218 | |
Simon Glass | c1a6f37 | 2014-11-11 10:46:17 -0700 | [diff] [blame] | 219 | enum i2c_err_op { |
| 220 | I2C_ERR_READ, |
| 221 | I2C_ERR_WRITE, |
| 222 | }; |
| 223 | |
| 224 | static int i2c_report_err(int ret, enum i2c_err_op op) |
| 225 | { |
| 226 | printf("Error %s the chip: %d\n", |
| 227 | op == I2C_ERR_READ ? "reading" : "writing", ret); |
| 228 | |
| 229 | return CMD_RET_FAILURE; |
| 230 | } |
| 231 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 232 | /** |
| 233 | * do_i2c_read() - Handle the "i2c read" command-line command |
| 234 | * @cmdtp: Command data struct pointer |
| 235 | * @flag: Command flag |
| 236 | * @argc: Command-line argument count |
| 237 | * @argv: Array of command-line arguments |
| 238 | * |
| 239 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 240 | * on error. |
| 241 | * |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 242 | * Syntax: |
| 243 | * i2c read {i2c_chip} {devaddr}{.0, .1, .2} {len} {memaddr} |
| 244 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 245 | static int do_i2c_read(struct cmd_tbl *cmdtp, int flag, int argc, |
| 246 | char *const argv[]) |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 247 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 248 | uint chip; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 249 | uint devaddr, length; |
| 250 | int alen; |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 251 | u_char *memaddr; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 252 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 253 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 254 | struct udevice *dev; |
| 255 | #endif |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 256 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 257 | if (argc != 5) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 258 | return CMD_RET_USAGE; |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 259 | |
| 260 | /* |
| 261 | * I2C chip address |
| 262 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 263 | chip = hextoul(argv[1], NULL); |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 264 | |
| 265 | /* |
| 266 | * I2C data address within the chip. This can be 1 or |
| 267 | * 2 bytes long. Some day it might be 3 bytes long :-). |
| 268 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 269 | devaddr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 270 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 271 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 272 | return CMD_RET_USAGE; |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 273 | |
| 274 | /* |
| 275 | * Length is the number of objects, not number of bytes. |
| 276 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 277 | length = hextoul(argv[3], NULL); |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 278 | |
| 279 | /* |
| 280 | * memaddr is the address where to store things in memory |
| 281 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 282 | memaddr = (u_char *)hextoul(argv[4], NULL); |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 283 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 284 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 285 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 286 | if (!ret && alen != -1) |
| 287 | ret = i2c_set_chip_offset_len(dev, alen); |
| 288 | if (!ret) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 289 | ret = dm_i2c_read(dev, devaddr, memaddr, length); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 290 | #else |
| 291 | ret = i2c_read(chip, devaddr, alen, memaddr, length); |
| 292 | #endif |
| 293 | if (ret) |
| 294 | return i2c_report_err(ret, I2C_ERR_READ); |
| 295 | |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 296 | return 0; |
| 297 | } |
| 298 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 299 | static int do_i2c_write(struct cmd_tbl *cmdtp, int flag, int argc, |
| 300 | char *const argv[]) |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 301 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 302 | uint chip; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 303 | uint devaddr, length; |
| 304 | int alen; |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 305 | u_char *memaddr; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 306 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 307 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 308 | struct udevice *dev; |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 309 | struct dm_i2c_chip *i2c_chip; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 310 | #endif |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 311 | |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 312 | if ((argc < 5) || (argc > 6)) |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 313 | return cmd_usage(cmdtp); |
| 314 | |
| 315 | /* |
| 316 | * memaddr is the address where to store things in memory |
| 317 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 318 | memaddr = (u_char *)hextoul(argv[1], NULL); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 319 | |
| 320 | /* |
| 321 | * I2C chip address |
| 322 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 323 | chip = hextoul(argv[2], NULL); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 324 | |
| 325 | /* |
| 326 | * I2C data address within the chip. This can be 1 or |
| 327 | * 2 bytes long. Some day it might be 3 bytes long :-). |
| 328 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 329 | devaddr = hextoul(argv[3], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 330 | alen = get_alen(argv[3], DEFAULT_ADDR_LEN); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 331 | if (alen > 3) |
| 332 | return cmd_usage(cmdtp); |
| 333 | |
| 334 | /* |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 335 | * Length is the number of bytes. |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 336 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 337 | length = hextoul(argv[4], NULL); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 338 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 339 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 340 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 341 | if (!ret && alen != -1) |
| 342 | ret = i2c_set_chip_offset_len(dev, alen); |
| 343 | if (ret) |
| 344 | return i2c_report_err(ret, I2C_ERR_WRITE); |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 345 | i2c_chip = dev_get_parent_plat(dev); |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 346 | if (!i2c_chip) |
| 347 | return i2c_report_err(ret, I2C_ERR_WRITE); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 348 | #endif |
| 349 | |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 350 | if (argc == 6 && !strcmp(argv[5], "-s")) { |
| 351 | /* |
| 352 | * Write all bytes in a single I2C transaction. If the target |
| 353 | * device is an EEPROM, it is your responsibility to not cross |
| 354 | * a page boundary. No write delay upon completion, take this |
| 355 | * into account if linking commands. |
| 356 | */ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 357 | #if CONFIG_IS_ENABLED(DM_I2C) |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 358 | i2c_chip->flags &= ~DM_I2C_CHIP_WR_ADDRESS; |
| 359 | ret = dm_i2c_write(dev, devaddr, memaddr, length); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 360 | #else |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 361 | ret = i2c_write(chip, devaddr, alen, memaddr, length); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 362 | #endif |
| 363 | if (ret) |
| 364 | return i2c_report_err(ret, I2C_ERR_WRITE); |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 365 | } else { |
| 366 | /* |
| 367 | * Repeated addressing - perform <length> separate |
| 368 | * write transactions of one byte each |
| 369 | */ |
| 370 | while (length-- > 0) { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 371 | #if CONFIG_IS_ENABLED(DM_I2C) |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 372 | i2c_chip->flags |= DM_I2C_CHIP_WR_ADDRESS; |
| 373 | ret = dm_i2c_write(dev, devaddr++, memaddr++, 1); |
| 374 | #else |
| 375 | ret = i2c_write(chip, devaddr++, alen, memaddr++, 1); |
| 376 | #endif |
| 377 | if (ret) |
| 378 | return i2c_report_err(ret, I2C_ERR_WRITE); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 379 | /* |
| 380 | * No write delay with FRAM devices. |
| 381 | */ |
| 382 | #if !defined(CONFIG_SYS_I2C_FRAM) |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 383 | udelay(11000); |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 384 | #endif |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 385 | } |
York Sun | ff5d2dc | 2012-09-16 08:02:30 +0000 | [diff] [blame] | 386 | } |
| 387 | return 0; |
| 388 | } |
| 389 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 390 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 391 | static int do_i2c_flags(struct cmd_tbl *cmdtp, int flag, int argc, |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 392 | char *const argv[]) |
| 393 | { |
| 394 | struct udevice *dev; |
| 395 | uint flags; |
| 396 | int chip; |
| 397 | int ret; |
| 398 | |
| 399 | if (argc < 2) |
| 400 | return CMD_RET_USAGE; |
| 401 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 402 | chip = hextoul(argv[1], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 403 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 404 | if (ret) |
| 405 | return i2c_report_err(ret, I2C_ERR_READ); |
| 406 | |
| 407 | if (argc > 2) { |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 408 | flags = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 409 | ret = i2c_set_chip_flags(dev, flags); |
| 410 | } else { |
| 411 | ret = i2c_get_chip_flags(dev, &flags); |
| 412 | if (!ret) |
| 413 | printf("%x\n", flags); |
| 414 | } |
| 415 | if (ret) |
| 416 | return i2c_report_err(ret, I2C_ERR_READ); |
| 417 | |
| 418 | return 0; |
| 419 | } |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 420 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 421 | static int do_i2c_olen(struct cmd_tbl *cmdtp, int flag, int argc, |
| 422 | char *const argv[]) |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 423 | { |
| 424 | struct udevice *dev; |
| 425 | uint olen; |
| 426 | int chip; |
| 427 | int ret; |
| 428 | |
| 429 | if (argc < 2) |
| 430 | return CMD_RET_USAGE; |
| 431 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 432 | chip = hextoul(argv[1], NULL); |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 433 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 434 | if (ret) |
| 435 | return i2c_report_err(ret, I2C_ERR_READ); |
| 436 | |
| 437 | if (argc > 2) { |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 438 | olen = hextoul(argv[2], NULL); |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 439 | ret = i2c_set_chip_offset_len(dev, olen); |
| 440 | } else { |
| 441 | ret = i2c_get_chip_offset_len(dev); |
| 442 | if (ret >= 0) { |
| 443 | printf("%x\n", ret); |
| 444 | ret = 0; |
| 445 | } |
| 446 | } |
| 447 | if (ret) |
| 448 | return i2c_report_err(ret, I2C_ERR_READ); |
| 449 | |
| 450 | return 0; |
| 451 | } |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 452 | #endif |
| 453 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 454 | /** |
| 455 | * do_i2c_md() - Handle the "i2c md" command-line command |
| 456 | * @cmdtp: Command data struct pointer |
| 457 | * @flag: Command flag |
| 458 | * @argc: Command-line argument count |
| 459 | * @argv: Array of command-line arguments |
| 460 | * |
| 461 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 462 | * on error. |
| 463 | * |
Frans Meulenbroeks | 4a8cf33 | 2010-03-26 09:46:39 +0100 | [diff] [blame] | 464 | * Syntax: |
| 465 | * i2c md {i2c_chip} {addr}{.0, .1, .2} {len} |
| 466 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 467 | static int do_i2c_md(struct cmd_tbl *cmdtp, int flag, int argc, |
| 468 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 469 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 470 | uint chip; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 471 | uint addr, length; |
| 472 | int alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 473 | int j, nbytes, linebytes; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 474 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 475 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 476 | struct udevice *dev; |
| 477 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 478 | |
| 479 | /* We use the last specified parameters, unless new ones are |
| 480 | * entered. |
| 481 | */ |
| 482 | chip = i2c_dp_last_chip; |
| 483 | addr = i2c_dp_last_addr; |
| 484 | alen = i2c_dp_last_alen; |
| 485 | length = i2c_dp_last_length; |
| 486 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 487 | if (argc < 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 488 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 489 | |
| 490 | if ((flag & CMD_FLAG_REPEAT) == 0) { |
| 491 | /* |
| 492 | * New command specified. |
| 493 | */ |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 494 | |
| 495 | /* |
| 496 | * I2C chip address |
| 497 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 498 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 499 | |
| 500 | /* |
| 501 | * I2C data address within the chip. This can be 1 or |
| 502 | * 2 bytes long. Some day it might be 3 bytes long :-). |
| 503 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 504 | addr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 505 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 506 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 507 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 508 | |
| 509 | /* |
| 510 | * If another parameter, it is the length to display. |
| 511 | * Length is the number of objects, not number of bytes. |
| 512 | */ |
| 513 | if (argc > 3) |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 514 | length = hextoul(argv[3], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 517 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 518 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 519 | if (!ret && alen != -1) |
| 520 | ret = i2c_set_chip_offset_len(dev, alen); |
| 521 | if (ret) |
| 522 | return i2c_report_err(ret, I2C_ERR_READ); |
| 523 | #endif |
| 524 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 525 | /* |
| 526 | * Print the lines. |
| 527 | * |
| 528 | * We buffer all read data, so we can make sure data is read only |
| 529 | * once. |
| 530 | */ |
| 531 | nbytes = length; |
| 532 | do { |
| 533 | unsigned char linebuf[DISP_LINE_LEN]; |
| 534 | unsigned char *cp; |
| 535 | |
| 536 | linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes; |
| 537 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 538 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 539 | ret = dm_i2c_read(dev, addr, linebuf, linebytes); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 540 | #else |
| 541 | ret = i2c_read(chip, addr, alen, linebuf, linebytes); |
| 542 | #endif |
| 543 | if (ret) |
Masahiro Yamada | 9e533cb | 2015-02-05 13:50:26 +0900 | [diff] [blame] | 544 | return i2c_report_err(ret, I2C_ERR_READ); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 545 | else { |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 546 | printf("%04x:", addr); |
| 547 | cp = linebuf; |
| 548 | for (j=0; j<linebytes; j++) { |
| 549 | printf(" %02x", *cp++); |
| 550 | addr++; |
| 551 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 552 | puts (" "); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 553 | cp = linebuf; |
| 554 | for (j=0; j<linebytes; j++) { |
| 555 | if ((*cp < 0x20) || (*cp > 0x7e)) |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 556 | puts ("."); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 557 | else |
| 558 | printf("%c", *cp); |
| 559 | cp++; |
| 560 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 561 | putc ('\n'); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 562 | } |
| 563 | nbytes -= linebytes; |
| 564 | } while (nbytes > 0); |
| 565 | |
| 566 | i2c_dp_last_chip = chip; |
| 567 | i2c_dp_last_addr = addr; |
| 568 | i2c_dp_last_alen = alen; |
| 569 | i2c_dp_last_length = length; |
| 570 | |
| 571 | return 0; |
| 572 | } |
| 573 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 574 | /** |
| 575 | * do_i2c_mw() - Handle the "i2c mw" command-line command |
| 576 | * @cmdtp: Command data struct pointer |
| 577 | * @flag: Command flag |
| 578 | * @argc: Command-line argument count |
| 579 | * @argv: Array of command-line arguments |
| 580 | * |
| 581 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 582 | * on error. |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 583 | * |
| 584 | * Syntax: |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 585 | * i2c mw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}] |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 586 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 587 | static int do_i2c_mw(struct cmd_tbl *cmdtp, int flag, int argc, |
| 588 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 589 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 590 | uint chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 591 | ulong addr; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 592 | int alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 593 | uchar byte; |
| 594 | int count; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 595 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 596 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 597 | struct udevice *dev; |
| 598 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 599 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 600 | if ((argc < 4) || (argc > 5)) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 601 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 602 | |
| 603 | /* |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 604 | * Chip is always specified. |
| 605 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 606 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 607 | |
| 608 | /* |
| 609 | * Address is always specified. |
| 610 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 611 | addr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 612 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 613 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 614 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 615 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 616 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 617 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 618 | if (!ret && alen != -1) |
| 619 | ret = i2c_set_chip_offset_len(dev, alen); |
| 620 | if (ret) |
| 621 | return i2c_report_err(ret, I2C_ERR_WRITE); |
| 622 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 623 | /* |
| 624 | * Value to write is always specified. |
| 625 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 626 | byte = hextoul(argv[3], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 627 | |
| 628 | /* |
| 629 | * Optional count |
| 630 | */ |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 631 | if (argc == 5) |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 632 | count = hextoul(argv[4], NULL); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 633 | else |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 634 | count = 1; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 635 | |
| 636 | while (count-- > 0) { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 637 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 638 | ret = dm_i2c_write(dev, addr++, &byte, 1); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 639 | #else |
| 640 | ret = i2c_write(chip, addr++, alen, &byte, 1); |
| 641 | #endif |
| 642 | if (ret) |
Masahiro Yamada | 9e533cb | 2015-02-05 13:50:26 +0900 | [diff] [blame] | 643 | return i2c_report_err(ret, I2C_ERR_WRITE); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 644 | /* |
| 645 | * Wait for the write to complete. The write can take |
| 646 | * up to 10mSec (we allow a little more time). |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 647 | */ |
| d4f5c72 | 2005-08-12 21:16:13 +0200 | [diff] [blame] | 648 | /* |
| 649 | * No write delay with FRAM devices. |
| 650 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 651 | #if !defined(CONFIG_SYS_I2C_FRAM) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 652 | udelay(11000); |
| d4f5c72 | 2005-08-12 21:16:13 +0200 | [diff] [blame] | 653 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 654 | } |
| 655 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 656 | return 0; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 659 | /** |
| 660 | * do_i2c_crc() - Handle the "i2c crc32" command-line command |
| 661 | * @cmdtp: Command data struct pointer |
| 662 | * @flag: Command flag |
| 663 | * @argc: Command-line argument count |
| 664 | * @argv: Array of command-line arguments |
| 665 | * |
| 666 | * Calculate a CRC on memory |
| 667 | * |
| 668 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 669 | * on error. |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 670 | * |
| 671 | * Syntax: |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 672 | * i2c crc32 {i2c_chip} {addr}{.0, .1, .2} {count} |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 673 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 674 | static int do_i2c_crc(struct cmd_tbl *cmdtp, int flag, int argc, |
| 675 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 676 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 677 | uint chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 678 | ulong addr; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 679 | int alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 680 | int count; |
| 681 | uchar byte; |
| 682 | ulong crc; |
| 683 | ulong err; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 684 | int ret = 0; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 685 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 686 | struct udevice *dev; |
| 687 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 688 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 689 | if (argc < 4) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 690 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 691 | |
| 692 | /* |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 693 | * Chip is always specified. |
| 694 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 695 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 696 | |
| 697 | /* |
| 698 | * Address is always specified. |
| 699 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 700 | addr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 701 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 702 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 703 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 704 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 705 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 706 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 707 | if (!ret && alen != -1) |
| 708 | ret = i2c_set_chip_offset_len(dev, alen); |
| 709 | if (ret) |
| 710 | return i2c_report_err(ret, I2C_ERR_READ); |
| 711 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 712 | /* |
| 713 | * Count is always specified |
| 714 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 715 | count = hextoul(argv[3], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 716 | |
| 717 | printf ("CRC32 for %08lx ... %08lx ==> ", addr, addr + count - 1); |
| 718 | /* |
| 719 | * CRC a byte at a time. This is going to be slooow, but hey, the |
| 720 | * memories are small and slow too so hopefully nobody notices. |
| 721 | */ |
| 722 | crc = 0; |
| 723 | err = 0; |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 724 | while (count-- > 0) { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 725 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 726 | ret = dm_i2c_read(dev, addr, &byte, 1); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 727 | #else |
| 728 | ret = i2c_read(chip, addr, alen, &byte, 1); |
| 729 | #endif |
| 730 | if (ret) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 731 | err++; |
Simon Glass | b2ea91b | 2019-11-14 12:57:15 -0700 | [diff] [blame] | 732 | crc = crc32(crc, &byte, 1); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 733 | addr++; |
| 734 | } |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 735 | if (err > 0) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 736 | i2c_report_err(ret, I2C_ERR_READ); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 737 | else |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 738 | printf ("%08lx\n", crc); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 739 | |
| 740 | return 0; |
| 741 | } |
| 742 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 743 | /** |
| 744 | * mod_i2c_mem() - Handle the "i2c mm" and "i2c nm" command-line command |
| 745 | * @cmdtp: Command data struct pointer |
| 746 | * @flag: Command flag |
| 747 | * @argc: Command-line argument count |
| 748 | * @argv: Array of command-line arguments |
| 749 | * |
| 750 | * Modify memory. |
| 751 | * |
| 752 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 753 | * on error. |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 754 | * |
| 755 | * Syntax: |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 756 | * i2c mm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2} |
| 757 | * i2c nm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2} |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 758 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 759 | static int mod_i2c_mem(struct cmd_tbl *cmdtp, int incrflag, int flag, int argc, |
| 760 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 761 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 762 | uint chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 763 | ulong addr; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 764 | int alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 765 | ulong data; |
| 766 | int size = 1; |
| 767 | int nbytes; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 768 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 769 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 770 | struct udevice *dev; |
| 771 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 772 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 773 | if (argc != 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 774 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 775 | |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 776 | bootretry_reset_cmd_timeout(); /* got a good command to get here */ |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 777 | /* |
| 778 | * We use the last specified parameters, unless new ones are |
| 779 | * entered. |
| 780 | */ |
| 781 | chip = i2c_mm_last_chip; |
| 782 | addr = i2c_mm_last_addr; |
| 783 | alen = i2c_mm_last_alen; |
| 784 | |
| 785 | if ((flag & CMD_FLAG_REPEAT) == 0) { |
| 786 | /* |
| 787 | * New command specified. Check for a size specification. |
| 788 | * Defaults to byte if no or incorrect specification. |
| 789 | */ |
| 790 | size = cmd_get_data_size(argv[0], 1); |
| 791 | |
| 792 | /* |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 793 | * Chip is always specified. |
| 794 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 795 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 796 | |
| 797 | /* |
| 798 | * Address is always specified. |
| 799 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 800 | addr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 801 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 802 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 803 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 806 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 807 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 808 | if (!ret && alen != -1) |
| 809 | ret = i2c_set_chip_offset_len(dev, alen); |
| 810 | if (ret) |
| 811 | return i2c_report_err(ret, I2C_ERR_WRITE); |
| 812 | #endif |
| 813 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 814 | /* |
| 815 | * Print the address, followed by value. Then accept input for |
| 816 | * the next value. A non-converted value exits. |
| 817 | */ |
| 818 | do { |
| 819 | printf("%08lx:", addr); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 820 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 821 | ret = dm_i2c_read(dev, addr, (uchar *)&data, size); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 822 | #else |
| 823 | ret = i2c_read(chip, addr, alen, (uchar *)&data, size); |
| 824 | #endif |
| 825 | if (ret) |
Masahiro Yamada | 9e533cb | 2015-02-05 13:50:26 +0900 | [diff] [blame] | 826 | return i2c_report_err(ret, I2C_ERR_READ); |
| 827 | |
| 828 | data = cpu_to_be32(data); |
| 829 | if (size == 1) |
| 830 | printf(" %02lx", (data >> 24) & 0x000000FF); |
| 831 | else if (size == 2) |
| 832 | printf(" %04lx", (data >> 16) & 0x0000FFFF); |
| 833 | else |
| 834 | printf(" %08lx", data); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 835 | |
Simon Glass | e1bf824 | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 836 | nbytes = cli_readline(" ? "); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 837 | if (nbytes == 0) { |
| 838 | /* |
| 839 | * <CR> pressed as only input, don't modify current |
| 840 | * location and move to next. |
| 841 | */ |
| 842 | if (incrflag) |
| 843 | addr += size; |
| 844 | nbytes = size; |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 845 | /* good enough to not time out */ |
| 846 | bootretry_reset_cmd_timeout(); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 847 | } |
| 848 | #ifdef CONFIG_BOOT_RETRY_TIME |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 849 | else if (nbytes == -2) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 850 | break; /* timed out, exit the command */ |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 851 | #endif |
| 852 | else { |
| 853 | char *endp; |
| 854 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 855 | data = hextoul(console_buffer, &endp); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 856 | if (size == 1) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 857 | data = data << 24; |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 858 | else if (size == 2) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 859 | data = data << 16; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 860 | data = be32_to_cpu(data); |
| 861 | nbytes = endp - console_buffer; |
| 862 | if (nbytes) { |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 863 | /* |
| 864 | * good enough to not time out |
| 865 | */ |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 866 | bootretry_reset_cmd_timeout(); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 867 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 868 | ret = dm_i2c_write(dev, addr, (uchar *)&data, |
| 869 | size); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 870 | #else |
| 871 | ret = i2c_write(chip, addr, alen, |
| 872 | (uchar *)&data, size); |
| 873 | #endif |
| 874 | if (ret) |
Masahiro Yamada | 9e533cb | 2015-02-05 13:50:26 +0900 | [diff] [blame] | 875 | return i2c_report_err(ret, |
| 876 | I2C_ERR_WRITE); |
Tom Rini | 88cd7d0 | 2021-08-17 17:59:45 -0400 | [diff] [blame] | 877 | #if CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS > 0 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 878 | udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000); |
wdenk | 2535d60 | 2003-07-17 23:16:40 +0000 | [diff] [blame] | 879 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 880 | if (incrflag) |
| 881 | addr += size; |
| 882 | } |
| 883 | } |
| 884 | } while (nbytes); |
| 885 | |
Peter Tyser | 0800707 | 2008-08-15 14:36:32 -0500 | [diff] [blame] | 886 | i2c_mm_last_chip = chip; |
| 887 | i2c_mm_last_addr = addr; |
| 888 | i2c_mm_last_alen = alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 889 | |
| 890 | return 0; |
| 891 | } |
| 892 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 893 | /** |
| 894 | * do_i2c_probe() - Handle the "i2c probe" command-line command |
| 895 | * @cmdtp: Command data struct pointer |
| 896 | * @flag: Command flag |
| 897 | * @argc: Command-line argument count |
| 898 | * @argv: Array of command-line arguments |
| 899 | * |
| 900 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 901 | * on error. |
| 902 | * |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 903 | * Syntax: |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 904 | * i2c probe {addr} |
| 905 | * |
| 906 | * Returns zero (success) if one or more I2C devices was found |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 907 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 908 | static int do_i2c_probe(struct cmd_tbl *cmdtp, int flag, int argc, |
| 909 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 910 | { |
| 911 | int j; |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 912 | int addr = -1; |
| 913 | int found = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 914 | #if defined(CONFIG_SYS_I2C_NOPROBES) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 915 | int k, skip; |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 916 | unsigned int bus = GET_BUS_NUM; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 917 | #endif /* NOPROBES */ |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 918 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 919 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 920 | struct udevice *bus, *dev; |
| 921 | |
| 922 | if (i2c_get_cur_bus(&bus)) |
| 923 | return CMD_RET_FAILURE; |
| 924 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 925 | |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 926 | if (argc == 2) |
| 927 | addr = simple_strtol(argv[1], 0, 16); |
| 928 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 929 | puts ("Valid chip addresses:"); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 930 | for (j = 0; j < 128; j++) { |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 931 | if ((0 <= addr) && (j != addr)) |
| 932 | continue; |
| 933 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 934 | #if defined(CONFIG_SYS_I2C_NOPROBES) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 935 | skip = 0; |
Axel Lin | cfb25cc | 2013-06-22 21:56:35 +0800 | [diff] [blame] | 936 | for (k = 0; k < ARRAY_SIZE(i2c_no_probes); k++) { |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 937 | if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) { |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 938 | skip = 1; |
| 939 | break; |
| 940 | } |
| 941 | } |
| 942 | if (skip) |
| 943 | continue; |
| 944 | #endif |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 945 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 946 | ret = dm_i2c_probe(bus, j, 0, &dev); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 947 | #else |
| 948 | ret = i2c_probe(j); |
| 949 | #endif |
| 950 | if (ret == 0) { |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 951 | printf(" %02X", j); |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 952 | found++; |
| 953 | } |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 954 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 955 | putc ('\n'); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 956 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 957 | #if defined(CONFIG_SYS_I2C_NOPROBES) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 958 | puts ("Excluded chip addresses:"); |
Axel Lin | cfb25cc | 2013-06-22 21:56:35 +0800 | [diff] [blame] | 959 | for (k = 0; k < ARRAY_SIZE(i2c_no_probes); k++) { |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 960 | if (COMPARE_BUS(bus,k)) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 961 | printf(" %02X", NO_PROBE_ADDR(k)); |
| 962 | } |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 963 | putc ('\n'); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 964 | #endif |
| 965 | |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 966 | return (0 == found); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 969 | /** |
| 970 | * do_i2c_loop() - Handle the "i2c loop" command-line command |
| 971 | * @cmdtp: Command data struct pointer |
| 972 | * @flag: Command flag |
| 973 | * @argc: Command-line argument count |
| 974 | * @argv: Array of command-line arguments |
| 975 | * |
| 976 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 977 | * on error. |
| 978 | * |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 979 | * Syntax: |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 980 | * i2c loop {i2c_chip} {addr}{.0, .1, .2} [{length}] [{delay}] |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 981 | * {length} - Number of bytes to read |
| 982 | * {delay} - A DECIMAL number and defaults to 1000 uSec |
| 983 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 984 | static int do_i2c_loop(struct cmd_tbl *cmdtp, int flag, int argc, |
| 985 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 986 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 987 | uint chip; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 988 | int alen; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 989 | uint addr; |
| 990 | uint length; |
| 991 | u_char bytes[16]; |
| 992 | int delay; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 993 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 994 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 995 | struct udevice *dev; |
| 996 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 997 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 998 | if (argc < 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 999 | return CMD_RET_USAGE; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1000 | |
| 1001 | /* |
| 1002 | * Chip is always specified. |
| 1003 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1004 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1005 | |
| 1006 | /* |
| 1007 | * Address is always specified. |
| 1008 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1009 | addr = hextoul(argv[2], NULL); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1010 | alen = get_alen(argv[2], DEFAULT_ADDR_LEN); |
Reinhard Meyer | 7a92e53 | 2010-08-25 14:41:16 +0200 | [diff] [blame] | 1011 | if (alen > 3) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1012 | return CMD_RET_USAGE; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1013 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1014 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 1015 | if (!ret && alen != -1) |
| 1016 | ret = i2c_set_chip_offset_len(dev, alen); |
| 1017 | if (ret) |
| 1018 | return i2c_report_err(ret, I2C_ERR_WRITE); |
| 1019 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1020 | |
| 1021 | /* |
| 1022 | * Length is the number of objects, not number of bytes. |
| 1023 | */ |
| 1024 | length = 1; |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1025 | length = hextoul(argv[3], NULL); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1026 | if (length > sizeof(bytes)) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1027 | length = sizeof(bytes); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1028 | |
| 1029 | /* |
| 1030 | * The delay time (uSec) is optional. |
| 1031 | */ |
| 1032 | delay = 1000; |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1033 | if (argc > 3) |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 1034 | delay = dectoul(argv[4], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1035 | /* |
| 1036 | * Run the loop... |
| 1037 | */ |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1038 | while (1) { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1039 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 1040 | ret = dm_i2c_read(dev, addr, bytes, length); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1041 | #else |
| 1042 | ret = i2c_read(chip, addr, alen, bytes, length); |
| 1043 | #endif |
| 1044 | if (ret) |
| 1045 | i2c_report_err(ret, I2C_ERR_READ); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1046 | udelay(delay); |
| 1047 | } |
| 1048 | |
| 1049 | /* NOTREACHED */ |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1053 | /* |
| 1054 | * The SDRAM command is separately configured because many |
| 1055 | * (most?) embedded boards don't use SDRAM DIMMs. |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1056 | * |
| 1057 | * FIXME: Document and probably move elsewhere! |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1058 | */ |
Jon Loeliger | c76fe47 | 2007-07-08 18:02:23 -0500 | [diff] [blame] | 1059 | #if defined(CONFIG_CMD_SDRAM) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1060 | static void print_ddr2_tcyc (u_char const b) |
| 1061 | { |
| 1062 | printf ("%d.", (b >> 4) & 0x0F); |
| 1063 | switch (b & 0x0F) { |
| 1064 | case 0x0: |
| 1065 | case 0x1: |
| 1066 | case 0x2: |
| 1067 | case 0x3: |
| 1068 | case 0x4: |
| 1069 | case 0x5: |
| 1070 | case 0x6: |
| 1071 | case 0x7: |
| 1072 | case 0x8: |
| 1073 | case 0x9: |
| 1074 | printf ("%d ns\n", b & 0x0F); |
| 1075 | break; |
| 1076 | case 0xA: |
| 1077 | puts ("25 ns\n"); |
| 1078 | break; |
| 1079 | case 0xB: |
| 1080 | puts ("33 ns\n"); |
| 1081 | break; |
| 1082 | case 0xC: |
| 1083 | puts ("66 ns\n"); |
| 1084 | break; |
| 1085 | case 0xD: |
| 1086 | puts ("75 ns\n"); |
| 1087 | break; |
| 1088 | default: |
| 1089 | puts ("?? ns\n"); |
| 1090 | break; |
| 1091 | } |
| 1092 | } |
| 1093 | |
| 1094 | static void decode_bits (u_char const b, char const *str[], int const do_once) |
| 1095 | { |
| 1096 | u_char mask; |
| 1097 | |
| 1098 | for (mask = 0x80; mask != 0x00; mask >>= 1, ++str) { |
| 1099 | if (b & mask) { |
| 1100 | puts (*str); |
| 1101 | if (do_once) |
| 1102 | return; |
| 1103 | } |
| 1104 | } |
| 1105 | } |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1106 | |
| 1107 | /* |
| 1108 | * Syntax: |
Peter Tyser | 0f89c54 | 2009-04-18 22:34:03 -0500 | [diff] [blame] | 1109 | * i2c sdram {i2c_chip} |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1110 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1111 | static int do_sdram(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1112 | char *const argv[]) |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1113 | { |
Michal Simek | 18c4e7f | 2016-02-15 11:58:37 +0100 | [diff] [blame] | 1114 | enum { unknown, EDO, SDRAM, DDR, DDR2, DDR3, DDR4 } type; |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1115 | |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 1116 | uint chip; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1117 | u_char data[128]; |
| 1118 | u_char cksum; |
Nobuhiro Iwamatsu | 28df8ed | 2017-12-01 14:39:40 +0900 | [diff] [blame] | 1119 | int j, ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1120 | #if CONFIG_IS_ENABLED(DM_I2C) |
Nobuhiro Iwamatsu | 28df8ed | 2017-12-01 14:39:40 +0900 | [diff] [blame] | 1121 | struct udevice *dev; |
| 1122 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1123 | |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1124 | static const char *decode_CAS_DDR2[] = { |
| 1125 | " TBD", " 6", " 5", " 4", " 3", " 2", " TBD", " TBD" |
| 1126 | }; |
| 1127 | |
| 1128 | static const char *decode_CAS_default[] = { |
| 1129 | " TBD", " 7", " 6", " 5", " 4", " 3", " 2", " 1" |
| 1130 | }; |
| 1131 | |
| 1132 | static const char *decode_CS_WE_default[] = { |
| 1133 | " TBD", " 6", " 5", " 4", " 3", " 2", " 1", " 0" |
| 1134 | }; |
| 1135 | |
| 1136 | static const char *decode_byte21_default[] = { |
| 1137 | " TBD (bit 7)\n", |
| 1138 | " Redundant row address\n", |
| 1139 | " Differential clock input\n", |
| 1140 | " Registerd DQMB inputs\n", |
| 1141 | " Buffered DQMB inputs\n", |
| 1142 | " On-card PLL\n", |
| 1143 | " Registered address/control lines\n", |
| 1144 | " Buffered address/control lines\n" |
| 1145 | }; |
| 1146 | |
| 1147 | static const char *decode_byte22_DDR2[] = { |
| 1148 | " TBD (bit 7)\n", |
| 1149 | " TBD (bit 6)\n", |
| 1150 | " TBD (bit 5)\n", |
| 1151 | " TBD (bit 4)\n", |
| 1152 | " TBD (bit 3)\n", |
| 1153 | " Supports partial array self refresh\n", |
| 1154 | " Supports 50 ohm ODT\n", |
| 1155 | " Supports weak driver\n" |
| 1156 | }; |
| 1157 | |
| 1158 | static const char *decode_row_density_DDR2[] = { |
| 1159 | "512 MiB", "256 MiB", "128 MiB", "16 GiB", |
| 1160 | "8 GiB", "4 GiB", "2 GiB", "1 GiB" |
| 1161 | }; |
| 1162 | |
| 1163 | static const char *decode_row_density_default[] = { |
| 1164 | "512 MiB", "256 MiB", "128 MiB", "64 MiB", |
| 1165 | "32 MiB", "16 MiB", "8 MiB", "4 MiB" |
| 1166 | }; |
| 1167 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 1168 | if (argc < 2) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1169 | return CMD_RET_USAGE; |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 1170 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1171 | /* |
| 1172 | * Chip is always specified. |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1173 | */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1174 | chip = hextoul(argv[1], NULL); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1175 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1176 | #if CONFIG_IS_ENABLED(DM_I2C) |
Nobuhiro Iwamatsu | 28df8ed | 2017-12-01 14:39:40 +0900 | [diff] [blame] | 1177 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 1178 | if (!ret) |
| 1179 | ret = dm_i2c_read(dev, 0, data, sizeof(data)); |
| 1180 | #else |
| 1181 | ret = i2c_read(chip, 0, 1, data, sizeof(data)); |
| 1182 | #endif |
| 1183 | if (ret) { |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1184 | puts ("No SDRAM Serial Presence Detect found.\n"); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1185 | return 1; |
| 1186 | } |
| 1187 | |
| 1188 | cksum = 0; |
| 1189 | for (j = 0; j < 63; j++) { |
| 1190 | cksum += data[j]; |
| 1191 | } |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1192 | if (cksum != data[63]) { |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1193 | printf ("WARNING: Configuration data checksum failure:\n" |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1194 | " is 0x%02x, calculated 0x%02x\n", data[63], cksum); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1195 | } |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1196 | printf ("SPD data revision %d.%d\n", |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1197 | (data[62] >> 4) & 0x0F, data[62] & 0x0F); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1198 | printf ("Bytes used 0x%02X\n", data[0]); |
| 1199 | printf ("Serial memory size 0x%02X\n", 1 << data[1]); |
| 1200 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1201 | puts ("Memory type "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1202 | switch (data[2]) { |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1203 | case 2: |
| 1204 | type = EDO; |
| 1205 | puts ("EDO\n"); |
| 1206 | break; |
| 1207 | case 4: |
| 1208 | type = SDRAM; |
| 1209 | puts ("SDRAM\n"); |
| 1210 | break; |
Michal Simek | 18c4e7f | 2016-02-15 11:58:37 +0100 | [diff] [blame] | 1211 | case 7: |
| 1212 | type = DDR; |
| 1213 | puts("DDR\n"); |
| 1214 | break; |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1215 | case 8: |
| 1216 | type = DDR2; |
| 1217 | puts ("DDR2\n"); |
| 1218 | break; |
Michal Simek | 18c4e7f | 2016-02-15 11:58:37 +0100 | [diff] [blame] | 1219 | case 11: |
| 1220 | type = DDR3; |
| 1221 | puts("DDR3\n"); |
| 1222 | break; |
| 1223 | case 12: |
| 1224 | type = DDR4; |
| 1225 | puts("DDR4\n"); |
| 1226 | break; |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1227 | default: |
| 1228 | type = unknown; |
| 1229 | puts ("unknown\n"); |
| 1230 | break; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1231 | } |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1232 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1233 | puts ("Row address bits "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1234 | if ((data[3] & 0x00F0) == 0) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1235 | printf ("%d\n", data[3] & 0x0F); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1236 | else |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1237 | printf ("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F); |
| 1238 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1239 | puts ("Column address bits "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1240 | if ((data[4] & 0x00F0) == 0) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1241 | printf ("%d\n", data[4] & 0x0F); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1242 | else |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1243 | printf ("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1244 | |
| 1245 | switch (type) { |
| 1246 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1247 | printf ("Number of ranks %d\n", |
| 1248 | (data[5] & 0x07) + 1); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1249 | break; |
| 1250 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1251 | printf ("Module rows %d\n", data[5]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1252 | break; |
| 1253 | } |
| 1254 | |
| 1255 | switch (type) { |
| 1256 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1257 | printf ("Module data width %d bits\n", data[6]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1258 | break; |
| 1259 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1260 | printf ("Module data width %d bits\n", |
| 1261 | (data[7] << 8) | data[6]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1262 | break; |
| 1263 | } |
| 1264 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1265 | puts ("Interface signal levels "); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1266 | switch(data[8]) { |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1267 | case 0: puts ("TTL 5.0 V\n"); break; |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1268 | case 1: puts ("LVTTL\n"); break; |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1269 | case 2: puts ("HSTL 1.5 V\n"); break; |
| 1270 | case 3: puts ("SSTL 3.3 V\n"); break; |
| 1271 | case 4: puts ("SSTL 2.5 V\n"); break; |
| 1272 | case 5: puts ("SSTL 1.8 V\n"); break; |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1273 | default: puts ("unknown\n"); break; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1274 | } |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1275 | |
| 1276 | switch (type) { |
| 1277 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1278 | printf ("SDRAM cycle time "); |
| 1279 | print_ddr2_tcyc (data[9]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1280 | break; |
| 1281 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1282 | printf ("SDRAM cycle time %d.%d ns\n", |
| 1283 | (data[9] >> 4) & 0x0F, data[9] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1284 | break; |
| 1285 | } |
| 1286 | |
| 1287 | switch (type) { |
| 1288 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1289 | printf ("SDRAM access time 0.%d%d ns\n", |
| 1290 | (data[10] >> 4) & 0x0F, data[10] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1291 | break; |
| 1292 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1293 | printf ("SDRAM access time %d.%d ns\n", |
| 1294 | (data[10] >> 4) & 0x0F, data[10] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1295 | break; |
| 1296 | } |
| 1297 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1298 | puts ("EDC configuration "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1299 | switch (data[11]) { |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1300 | case 0: puts ("None\n"); break; |
| 1301 | case 1: puts ("Parity\n"); break; |
| 1302 | case 2: puts ("ECC\n"); break; |
| 1303 | default: puts ("unknown\n"); break; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1304 | } |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1305 | |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1306 | if ((data[12] & 0x80) == 0) |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1307 | puts ("No self refresh, rate "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1308 | else |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1309 | puts ("Self refresh, rate "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1310 | |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1311 | switch(data[12] & 0x7F) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1312 | case 0: puts ("15.625 us\n"); break; |
| 1313 | case 1: puts ("3.9 us\n"); break; |
| 1314 | case 2: puts ("7.8 us\n"); break; |
| 1315 | case 3: puts ("31.3 us\n"); break; |
| 1316 | case 4: puts ("62.5 us\n"); break; |
| 1317 | case 5: puts ("125 us\n"); break; |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1318 | default: puts ("unknown\n"); break; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1319 | } |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1320 | |
| 1321 | switch (type) { |
| 1322 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1323 | printf ("SDRAM width (primary) %d\n", data[13]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1324 | break; |
| 1325 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1326 | printf ("SDRAM width (primary) %d\n", data[13] & 0x7F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1327 | if ((data[13] & 0x80) != 0) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1328 | printf (" (second bank) %d\n", |
| 1329 | 2 * (data[13] & 0x7F)); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1330 | } |
| 1331 | break; |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1332 | } |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1333 | |
| 1334 | switch (type) { |
| 1335 | case DDR2: |
| 1336 | if (data[14] != 0) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1337 | printf ("EDC width %d\n", data[14]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1338 | break; |
| 1339 | default: |
| 1340 | if (data[14] != 0) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1341 | printf ("EDC width %d\n", |
| 1342 | data[14] & 0x7F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1343 | |
| 1344 | if ((data[14] & 0x80) != 0) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1345 | printf (" (second bank) %d\n", |
| 1346 | 2 * (data[14] & 0x7F)); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1347 | } |
| 1348 | } |
| 1349 | break; |
| 1350 | } |
| 1351 | |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1352 | if (DDR2 != type) { |
| 1353 | printf ("Min clock delay, back-to-back random column addresses " |
| 1354 | "%d\n", data[15]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1355 | } |
| 1356 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1357 | puts ("Burst length(s) "); |
| 1358 | if (data[16] & 0x80) puts (" Page"); |
| 1359 | if (data[16] & 0x08) puts (" 8"); |
| 1360 | if (data[16] & 0x04) puts (" 4"); |
| 1361 | if (data[16] & 0x02) puts (" 2"); |
| 1362 | if (data[16] & 0x01) puts (" 1"); |
| 1363 | putc ('\n'); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1364 | printf ("Number of banks %d\n", data[17]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1365 | |
| 1366 | switch (type) { |
| 1367 | case DDR2: |
| 1368 | puts ("CAS latency(s) "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1369 | decode_bits (data[18], decode_CAS_DDR2, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1370 | putc ('\n'); |
| 1371 | break; |
| 1372 | default: |
| 1373 | puts ("CAS latency(s) "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1374 | decode_bits (data[18], decode_CAS_default, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1375 | putc ('\n'); |
| 1376 | break; |
| 1377 | } |
| 1378 | |
| 1379 | if (DDR2 != type) { |
| 1380 | puts ("CS latency(s) "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1381 | decode_bits (data[19], decode_CS_WE_default, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1382 | putc ('\n'); |
| 1383 | } |
| 1384 | |
| 1385 | if (DDR2 != type) { |
| 1386 | puts ("WE latency(s) "); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1387 | decode_bits (data[20], decode_CS_WE_default, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1388 | putc ('\n'); |
| 1389 | } |
| 1390 | |
| 1391 | switch (type) { |
| 1392 | case DDR2: |
| 1393 | puts ("Module attributes:\n"); |
| 1394 | if (data[21] & 0x80) |
| 1395 | puts (" TBD (bit 7)\n"); |
| 1396 | if (data[21] & 0x40) |
| 1397 | puts (" Analysis probe installed\n"); |
| 1398 | if (data[21] & 0x20) |
| 1399 | puts (" TBD (bit 5)\n"); |
| 1400 | if (data[21] & 0x10) |
| 1401 | puts (" FET switch external enable\n"); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1402 | printf (" %d PLLs on DIMM\n", (data[21] >> 2) & 0x03); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1403 | if (data[20] & 0x11) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1404 | printf (" %d active registers on DIMM\n", |
| 1405 | (data[21] & 0x03) + 1); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1406 | } |
| 1407 | break; |
| 1408 | default: |
| 1409 | puts ("Module attributes:\n"); |
| 1410 | if (!data[21]) |
| 1411 | puts (" (none)\n"); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1412 | else |
| 1413 | decode_bits (data[21], decode_byte21_default, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1414 | break; |
| 1415 | } |
| 1416 | |
| 1417 | switch (type) { |
| 1418 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1419 | decode_bits (data[22], decode_byte22_DDR2, 0); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1420 | break; |
| 1421 | default: |
| 1422 | puts ("Device attributes:\n"); |
| 1423 | if (data[22] & 0x80) puts (" TBD (bit 7)\n"); |
| 1424 | if (data[22] & 0x40) puts (" TBD (bit 6)\n"); |
| 1425 | if (data[22] & 0x20) puts (" Upper Vcc tolerance 5%\n"); |
| 1426 | else puts (" Upper Vcc tolerance 10%\n"); |
| 1427 | if (data[22] & 0x10) puts (" Lower Vcc tolerance 5%\n"); |
| 1428 | else puts (" Lower Vcc tolerance 10%\n"); |
| 1429 | if (data[22] & 0x08) puts (" Supports write1/read burst\n"); |
| 1430 | if (data[22] & 0x04) puts (" Supports precharge all\n"); |
| 1431 | if (data[22] & 0x02) puts (" Supports auto precharge\n"); |
| 1432 | if (data[22] & 0x01) puts (" Supports early RAS# precharge\n"); |
| 1433 | break; |
| 1434 | } |
| 1435 | |
| 1436 | switch (type) { |
| 1437 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1438 | printf ("SDRAM cycle time (2nd highest CAS latency) "); |
| 1439 | print_ddr2_tcyc (data[23]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1440 | break; |
| 1441 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1442 | printf ("SDRAM cycle time (2nd highest CAS latency) %d." |
| 1443 | "%d ns\n", (data[23] >> 4) & 0x0F, data[23] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1444 | break; |
| 1445 | } |
| 1446 | |
| 1447 | switch (type) { |
| 1448 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1449 | printf ("SDRAM access from clock (2nd highest CAS latency) 0." |
| 1450 | "%d%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1451 | break; |
| 1452 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1453 | printf ("SDRAM access from clock (2nd highest CAS latency) %d." |
| 1454 | "%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1455 | break; |
| 1456 | } |
| 1457 | |
| 1458 | switch (type) { |
| 1459 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1460 | printf ("SDRAM cycle time (3rd highest CAS latency) "); |
| 1461 | print_ddr2_tcyc (data[25]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1462 | break; |
| 1463 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1464 | printf ("SDRAM cycle time (3rd highest CAS latency) %d." |
| 1465 | "%d ns\n", (data[25] >> 4) & 0x0F, data[25] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1466 | break; |
| 1467 | } |
| 1468 | |
| 1469 | switch (type) { |
| 1470 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1471 | printf ("SDRAM access from clock (3rd highest CAS latency) 0." |
| 1472 | "%d%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1473 | break; |
| 1474 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1475 | printf ("SDRAM access from clock (3rd highest CAS latency) %d." |
| 1476 | "%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1477 | break; |
| 1478 | } |
| 1479 | |
| 1480 | switch (type) { |
| 1481 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1482 | printf ("Minimum row precharge %d.%02d ns\n", |
| 1483 | (data[27] >> 2) & 0x3F, 25 * (data[27] & 0x03)); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1484 | break; |
| 1485 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1486 | printf ("Minimum row precharge %d ns\n", data[27]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1487 | break; |
| 1488 | } |
| 1489 | |
| 1490 | switch (type) { |
| 1491 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1492 | printf ("Row active to row active min %d.%02d ns\n", |
| 1493 | (data[28] >> 2) & 0x3F, 25 * (data[28] & 0x03)); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1494 | break; |
| 1495 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1496 | printf ("Row active to row active min %d ns\n", data[28]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1497 | break; |
| 1498 | } |
| 1499 | |
| 1500 | switch (type) { |
| 1501 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1502 | printf ("RAS to CAS delay min %d.%02d ns\n", |
| 1503 | (data[29] >> 2) & 0x3F, 25 * (data[29] & 0x03)); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1504 | break; |
| 1505 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1506 | printf ("RAS to CAS delay min %d ns\n", data[29]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1507 | break; |
| 1508 | } |
| 1509 | |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1510 | printf ("Minimum RAS pulse width %d ns\n", data[30]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1511 | |
| 1512 | switch (type) { |
| 1513 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1514 | puts ("Density of each row "); |
| 1515 | decode_bits (data[31], decode_row_density_DDR2, 1); |
| 1516 | putc ('\n'); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1517 | break; |
| 1518 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1519 | puts ("Density of each row "); |
| 1520 | decode_bits (data[31], decode_row_density_default, 1); |
| 1521 | putc ('\n'); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1522 | break; |
| 1523 | } |
| 1524 | |
| 1525 | switch (type) { |
| 1526 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1527 | puts ("Command and Address setup "); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1528 | if (data[32] >= 0xA0) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1529 | printf ("1.%d%d ns\n", |
| 1530 | ((data[32] >> 4) & 0x0F) - 10, data[32] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1531 | } else { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1532 | printf ("0.%d%d ns\n", |
| 1533 | ((data[32] >> 4) & 0x0F), data[32] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1534 | } |
| 1535 | break; |
| 1536 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1537 | printf ("Command and Address setup %c%d.%d ns\n", |
| 1538 | (data[32] & 0x80) ? '-' : '+', |
| 1539 | (data[32] >> 4) & 0x07, data[32] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1540 | break; |
| 1541 | } |
| 1542 | |
| 1543 | switch (type) { |
| 1544 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1545 | puts ("Command and Address hold "); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1546 | if (data[33] >= 0xA0) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1547 | printf ("1.%d%d ns\n", |
| 1548 | ((data[33] >> 4) & 0x0F) - 10, data[33] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1549 | } else { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1550 | printf ("0.%d%d ns\n", |
| 1551 | ((data[33] >> 4) & 0x0F), data[33] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1552 | } |
| 1553 | break; |
| 1554 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1555 | printf ("Command and Address hold %c%d.%d ns\n", |
| 1556 | (data[33] & 0x80) ? '-' : '+', |
| 1557 | (data[33] >> 4) & 0x07, data[33] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1558 | break; |
| 1559 | } |
| 1560 | |
| 1561 | switch (type) { |
| 1562 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1563 | printf ("Data signal input setup 0.%d%d ns\n", |
| 1564 | (data[34] >> 4) & 0x0F, data[34] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1565 | break; |
| 1566 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1567 | printf ("Data signal input setup %c%d.%d ns\n", |
| 1568 | (data[34] & 0x80) ? '-' : '+', |
| 1569 | (data[34] >> 4) & 0x07, data[34] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1570 | break; |
| 1571 | } |
| 1572 | |
| 1573 | switch (type) { |
| 1574 | case DDR2: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1575 | printf ("Data signal input hold 0.%d%d ns\n", |
| 1576 | (data[35] >> 4) & 0x0F, data[35] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1577 | break; |
| 1578 | default: |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1579 | printf ("Data signal input hold %c%d.%d ns\n", |
| 1580 | (data[35] & 0x80) ? '-' : '+', |
| 1581 | (data[35] >> 4) & 0x07, data[35] & 0x0F); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1582 | break; |
| 1583 | } |
| 1584 | |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1585 | puts ("Manufacturer's JEDEC ID "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1586 | for (j = 64; j <= 71; j++) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1587 | printf ("%02X ", data[j]); |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1588 | putc ('\n'); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1589 | printf ("Manufacturing Location %02X\n", data[72]); |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1590 | puts ("Manufacturer's Part Number "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1591 | for (j = 73; j <= 90; j++) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1592 | printf ("%02X ", data[j]); |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1593 | putc ('\n'); |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1594 | printf ("Revision Code %02X %02X\n", data[91], data[92]); |
| 1595 | printf ("Manufacturing Date %02X %02X\n", data[93], data[94]); |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1596 | puts ("Assembly Serial Number "); |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1597 | for (j = 95; j <= 98; j++) |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1598 | printf ("%02X ", data[j]); |
wdenk | 4b9206e | 2004-03-23 22:14:11 +0000 | [diff] [blame] | 1599 | putc ('\n'); |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1600 | |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1601 | if (DDR2 != type) { |
Larry Johnson | 632de06 | 2008-01-11 23:26:18 -0500 | [diff] [blame] | 1602 | printf ("Speed rating PC%d\n", |
| 1603 | data[126] == 0x66 ? 66 : data[126]); |
Larry Johnson | 0df6b84 | 2008-01-10 22:23:39 -0500 | [diff] [blame] | 1604 | } |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1605 | return 0; |
| 1606 | } |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 1607 | #endif |
wdenk | 81a8824 | 2002-10-26 15:22:42 +0000 | [diff] [blame] | 1608 | |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1609 | /* |
| 1610 | * Syntax: |
| 1611 | * i2c edid {i2c_chip} |
| 1612 | */ |
| 1613 | #if defined(CONFIG_I2C_EDID) |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1614 | int do_edid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1615 | { |
Masahiro Yamada | 5468461 | 2014-12-20 03:34:23 +0900 | [diff] [blame] | 1616 | uint chip; |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1617 | struct edid1_info edid; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1618 | int ret; |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1619 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1620 | struct udevice *dev; |
| 1621 | #endif |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1622 | |
| 1623 | if (argc < 2) { |
| 1624 | cmd_usage(cmdtp); |
| 1625 | return 1; |
| 1626 | } |
| 1627 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1628 | chip = hextoul(argv[1], NULL); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1629 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1630 | ret = i2c_get_cur_bus_chip(chip, &dev); |
| 1631 | if (!ret) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 1632 | ret = dm_i2c_read(dev, 0, (uchar *)&edid, sizeof(edid)); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1633 | #else |
| 1634 | ret = i2c_read(chip, 0, 1, (uchar *)&edid, sizeof(edid)); |
| 1635 | #endif |
| 1636 | if (ret) |
| 1637 | return i2c_report_err(ret, I2C_ERR_READ); |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1638 | |
| 1639 | if (edid_check_info(&edid)) { |
| 1640 | puts("Content isn't valid EDID.\n"); |
| 1641 | return 1; |
| 1642 | } |
| 1643 | |
| 1644 | edid_print_info(&edid); |
| 1645 | return 0; |
| 1646 | |
| 1647 | } |
| 1648 | #endif /* CONFIG_I2C_EDID */ |
| 1649 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1650 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1651 | static void show_bus(struct udevice *bus) |
| 1652 | { |
| 1653 | struct udevice *dev; |
| 1654 | |
Simon Glass | 36c03d1 | 2020-12-16 21:20:31 -0700 | [diff] [blame] | 1655 | printf("Bus %d:\t%s", dev_seq(bus), bus->name); |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1656 | if (device_active(bus)) |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1657 | printf(" (active %d)", dev_seq(bus)); |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1658 | printf("\n"); |
| 1659 | for (device_find_first_child(bus, &dev); |
| 1660 | dev; |
| 1661 | device_find_next_child(&dev)) { |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1662 | struct dm_i2c_chip *chip = dev_get_parent_plat(dev); |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1663 | |
| 1664 | printf(" %02x: %s, offset len %x, flags %x\n", |
| 1665 | chip->chip_addr, dev->name, chip->offset_len, |
| 1666 | chip->flags); |
| 1667 | } |
| 1668 | } |
| 1669 | #endif |
| 1670 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1671 | /** |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1672 | * do_i2c_show_bus() - Handle the "i2c bus" command-line command |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1673 | * @cmdtp: Command data struct pointer |
| 1674 | * @flag: Command flag |
| 1675 | * @argc: Command-line argument count |
| 1676 | * @argv: Array of command-line arguments |
| 1677 | * |
| 1678 | * Returns zero always. |
| 1679 | */ |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1680 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1681 | static int do_i2c_show_bus(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1682 | char *const argv[]) |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1683 | { |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1684 | if (argc == 1) { |
| 1685 | /* show all busses */ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1686 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1687 | struct udevice *bus; |
| 1688 | struct uclass *uc; |
| 1689 | int ret; |
| 1690 | |
| 1691 | ret = uclass_get(UCLASS_I2C, &uc); |
| 1692 | if (ret) |
| 1693 | return CMD_RET_FAILURE; |
| 1694 | uclass_foreach_dev(bus, uc) |
| 1695 | show_bus(bus); |
| 1696 | #else |
| 1697 | int i; |
| 1698 | |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1699 | for (i = 0; i < CONFIG_SYS_NUM_I2C_BUSES; i++) { |
| 1700 | printf("Bus %d:\t%s", i, I2C_ADAP_NR(i)->name); |
| 1701 | #ifndef CONFIG_SYS_I2C_DIRECT_BUS |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1702 | int j; |
| 1703 | |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1704 | for (j = 0; j < CONFIG_SYS_I2C_MAX_HOPS; j++) { |
| 1705 | if (i2c_bus[i].next_hop[j].chip == 0) |
| 1706 | break; |
| 1707 | printf("->%s@0x%2x:%d", |
| 1708 | i2c_bus[i].next_hop[j].mux.name, |
| 1709 | i2c_bus[i].next_hop[j].chip, |
| 1710 | i2c_bus[i].next_hop[j].channel); |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1711 | } |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1712 | #endif |
| 1713 | printf("\n"); |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1714 | } |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1715 | #endif |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1716 | } else { |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1717 | int i; |
| 1718 | |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1719 | /* show specific bus */ |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 1720 | i = dectoul(argv[1], NULL); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1721 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1722 | struct udevice *bus; |
| 1723 | int ret; |
| 1724 | |
| 1725 | ret = uclass_get_device_by_seq(UCLASS_I2C, i, &bus); |
| 1726 | if (ret) { |
| 1727 | printf("Invalid bus %d: err=%d\n", i, ret); |
| 1728 | return CMD_RET_FAILURE; |
| 1729 | } |
| 1730 | show_bus(bus); |
| 1731 | #else |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1732 | if (i >= CONFIG_SYS_NUM_I2C_BUSES) { |
| 1733 | printf("Invalid bus %d\n", i); |
| 1734 | return -1; |
| 1735 | } |
| 1736 | printf("Bus %d:\t%s", i, I2C_ADAP_NR(i)->name); |
| 1737 | #ifndef CONFIG_SYS_I2C_DIRECT_BUS |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1738 | int j; |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1739 | for (j = 0; j < CONFIG_SYS_I2C_MAX_HOPS; j++) { |
| 1740 | if (i2c_bus[i].next_hop[j].chip == 0) |
| 1741 | break; |
| 1742 | printf("->%s@0x%2x:%d", |
| 1743 | i2c_bus[i].next_hop[j].mux.name, |
| 1744 | i2c_bus[i].next_hop[j].chip, |
| 1745 | i2c_bus[i].next_hop[j].channel); |
| 1746 | } |
| 1747 | #endif |
| 1748 | printf("\n"); |
Simon Glass | 59aa9df | 2015-05-04 11:30:57 -0600 | [diff] [blame] | 1749 | #endif |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1750 | } |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 1751 | |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1752 | return 0; |
| 1753 | } |
| 1754 | #endif |
| 1755 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1756 | /** |
| 1757 | * do_i2c_bus_num() - Handle the "i2c dev" command-line command |
| 1758 | * @cmdtp: Command data struct pointer |
| 1759 | * @flag: Command flag |
| 1760 | * @argc: Command-line argument count |
| 1761 | * @argv: Array of command-line arguments |
| 1762 | * |
| 1763 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 1764 | * on error. |
| 1765 | */ |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1766 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || defined(CONFIG_I2C_MULTI_BUS) || \ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1767 | CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1768 | static int do_i2c_bus_num(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1769 | char *const argv[]) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1770 | { |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1771 | int ret = 0; |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1772 | int bus_no; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1773 | |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1774 | if (argc == 1) { |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1775 | /* querying current setting */ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1776 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1777 | struct udevice *bus; |
| 1778 | |
| 1779 | if (!i2c_get_cur_bus(&bus)) |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 1780 | bus_no = dev_seq(bus); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1781 | else |
| 1782 | bus_no = -1; |
| 1783 | #else |
| 1784 | bus_no = i2c_get_bus_num(); |
| 1785 | #endif |
| 1786 | printf("Current bus is %d\n", bus_no); |
| 1787 | } else { |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 1788 | bus_no = dectoul(argv[1], NULL); |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1789 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1790 | if (bus_no >= CONFIG_SYS_NUM_I2C_BUSES) { |
| 1791 | printf("Invalid bus %d\n", bus_no); |
| 1792 | return -1; |
| 1793 | } |
Heiko Schocher | 880a412 | 2013-08-23 09:39:16 +0200 | [diff] [blame] | 1794 | #endif |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1795 | printf("Setting bus to %d\n", bus_no); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1796 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 1797 | ret = cmd_i2c_set_bus_num(bus_no); |
| 1798 | #else |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1799 | ret = i2c_set_bus_num(bus_no); |
Simon Glass | f9a4c2d | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 1800 | #endif |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1801 | if (ret) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1802 | printf("Failure changing bus number (%d)\n", ret); |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1803 | } |
Simon Glass | 4fbd258 | 2015-12-29 05:22:50 -0700 | [diff] [blame] | 1804 | |
| 1805 | return ret ? CMD_RET_FAILURE : 0; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1806 | } |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1807 | #endif /* CONFIG_IS_ENABLED(SYS_I2C_LEGACY) */ |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1808 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1809 | /** |
| 1810 | * do_i2c_bus_speed() - Handle the "i2c speed" command-line command |
| 1811 | * @cmdtp: Command data struct pointer |
| 1812 | * @flag: Command flag |
| 1813 | * @argc: Command-line argument count |
| 1814 | * @argv: Array of command-line arguments |
| 1815 | * |
| 1816 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 1817 | * on error. |
| 1818 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1819 | static int do_i2c_bus_speed(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1820 | char *const argv[]) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1821 | { |
| 1822 | int speed, ret=0; |
| 1823 | |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1824 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1825 | struct udevice *bus; |
| 1826 | |
| 1827 | if (i2c_get_cur_bus(&bus)) |
| 1828 | return 1; |
| 1829 | #endif |
| 1830 | if (argc == 1) { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1831 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | ca88b9b | 2015-02-05 21:41:32 -0700 | [diff] [blame] | 1832 | speed = dm_i2c_get_bus_speed(bus); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1833 | #else |
| 1834 | speed = i2c_get_bus_speed(); |
| 1835 | #endif |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1836 | /* querying current speed */ |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1837 | printf("Current bus speed=%d\n", speed); |
| 1838 | } else { |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 1839 | speed = dectoul(argv[1], NULL); |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1840 | printf("Setting bus speed to %d Hz\n", speed); |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1841 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | ca88b9b | 2015-02-05 21:41:32 -0700 | [diff] [blame] | 1842 | ret = dm_i2c_set_bus_speed(bus, speed); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1843 | #else |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1844 | ret = i2c_set_bus_speed(speed); |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1845 | #endif |
Timur Tabi | e857a5b | 2006-11-28 12:09:35 -0600 | [diff] [blame] | 1846 | if (ret) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1847 | printf("Failure changing bus speed (%d)\n", ret); |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1848 | } |
Simon Glass | 4fbd258 | 2015-12-29 05:22:50 -0700 | [diff] [blame] | 1849 | |
| 1850 | return ret ? CMD_RET_FAILURE : 0; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1851 | } |
| 1852 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1853 | /** |
| 1854 | * do_i2c_mm() - Handle the "i2c mm" command-line command |
| 1855 | * @cmdtp: Command data struct pointer |
| 1856 | * @flag: Command flag |
| 1857 | * @argc: Command-line argument count |
| 1858 | * @argv: Array of command-line arguments |
| 1859 | * |
| 1860 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 1861 | * on error. |
| 1862 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1863 | static int do_i2c_mm(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1864 | char *const argv[]) |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1865 | { |
| 1866 | return mod_i2c_mem (cmdtp, 1, flag, argc, argv); |
| 1867 | } |
| 1868 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1869 | /** |
| 1870 | * do_i2c_nm() - Handle the "i2c nm" command-line command |
| 1871 | * @cmdtp: Command data struct pointer |
| 1872 | * @flag: Command flag |
| 1873 | * @argc: Command-line argument count |
| 1874 | * @argv: Array of command-line arguments |
| 1875 | * |
| 1876 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 1877 | * on error. |
| 1878 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1879 | static int do_i2c_nm(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1880 | char *const argv[]) |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1881 | { |
| 1882 | return mod_i2c_mem (cmdtp, 0, flag, argc, argv); |
| 1883 | } |
| 1884 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1885 | /** |
| 1886 | * do_i2c_reset() - Handle the "i2c reset" command-line command |
| 1887 | * @cmdtp: Command data struct pointer |
| 1888 | * @flag: Command flag |
| 1889 | * @argc: Command-line argument count |
| 1890 | * @argv: Array of command-line arguments |
| 1891 | * |
| 1892 | * Returns zero always. |
| 1893 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1894 | static int do_i2c_reset(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1895 | char *const argv[]) |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1896 | { |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1897 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1898 | struct udevice *bus; |
| 1899 | |
| 1900 | if (i2c_get_cur_bus(&bus)) |
| 1901 | return CMD_RET_FAILURE; |
| 1902 | if (i2c_deblock(bus)) { |
| 1903 | printf("Error: Not supported by the driver\n"); |
| 1904 | return CMD_RET_FAILURE; |
| 1905 | } |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1906 | #elif CONFIG_IS_ENABLED(SYS_I2C_LEGACY) |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1907 | i2c_init(I2C_ADAP->speed, I2C_ADAP->slaveaddr); |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1908 | #endif |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1909 | return 0; |
| 1910 | } |
| 1911 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1912 | static struct cmd_tbl cmd_i2c_sub[] = { |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1913 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || CONFIG_IS_ENABLED(DM_I2C) |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1914 | U_BOOT_CMD_MKENT(bus, 1, 1, do_i2c_show_bus, "", ""), |
Heiko Schocher | 9a2accb | 2012-10-25 10:32:14 +0200 | [diff] [blame] | 1915 | #endif |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1916 | U_BOOT_CMD_MKENT(crc32, 3, 1, do_i2c_crc, "", ""), |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1917 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || \ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1918 | defined(CONFIG_I2C_MULTI_BUS) || CONFIG_IS_ENABLED(DM_I2C) |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1919 | U_BOOT_CMD_MKENT(dev, 1, 1, do_i2c_bus_num, "", ""), |
| 1920 | #endif /* CONFIG_I2C_MULTI_BUS */ |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1921 | #if defined(CONFIG_I2C_EDID) |
| 1922 | U_BOOT_CMD_MKENT(edid, 1, 1, do_edid, "", ""), |
| 1923 | #endif /* CONFIG_I2C_EDID */ |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1924 | U_BOOT_CMD_MKENT(loop, 3, 1, do_i2c_loop, "", ""), |
| 1925 | U_BOOT_CMD_MKENT(md, 3, 1, do_i2c_md, "", ""), |
| 1926 | U_BOOT_CMD_MKENT(mm, 2, 1, do_i2c_mm, "", ""), |
| 1927 | U_BOOT_CMD_MKENT(mw, 3, 1, do_i2c_mw, "", ""), |
| 1928 | U_BOOT_CMD_MKENT(nm, 2, 1, do_i2c_nm, "", ""), |
| 1929 | U_BOOT_CMD_MKENT(probe, 0, 1, do_i2c_probe, "", ""), |
Frans Meulenbroeks | 652e535 | 2010-02-25 10:12:16 +0100 | [diff] [blame] | 1930 | U_BOOT_CMD_MKENT(read, 5, 1, do_i2c_read, "", ""), |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 1931 | U_BOOT_CMD_MKENT(write, 6, 0, do_i2c_write, "", ""), |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1932 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1933 | U_BOOT_CMD_MKENT(flags, 2, 1, do_i2c_flags, "", ""), |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 1934 | U_BOOT_CMD_MKENT(olen, 2, 1, do_i2c_olen, "", ""), |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 1935 | #endif |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1936 | U_BOOT_CMD_MKENT(reset, 0, 1, do_i2c_reset, "", ""), |
| 1937 | #if defined(CONFIG_CMD_SDRAM) |
| 1938 | U_BOOT_CMD_MKENT(sdram, 1, 1, do_sdram, "", ""), |
| 1939 | #endif |
| 1940 | U_BOOT_CMD_MKENT(speed, 1, 1, do_i2c_bus_speed, "", ""), |
| 1941 | }; |
| 1942 | |
Michal Simek | e4099c8 | 2015-12-04 16:56:57 +0100 | [diff] [blame] | 1943 | static __maybe_unused void i2c_reloc(void) |
| 1944 | { |
| 1945 | static int relocated; |
| 1946 | |
| 1947 | if (!relocated) { |
| 1948 | fixup_cmdtable(cmd_i2c_sub, ARRAY_SIZE(cmd_i2c_sub)); |
| 1949 | relocated = 1; |
| 1950 | }; |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 1951 | } |
Heiko Schocher | f1d2b31 | 2010-09-17 13:10:39 +0200 | [diff] [blame] | 1952 | |
Marek Vasut | 06afa38 | 2012-11-12 14:34:27 +0000 | [diff] [blame] | 1953 | /** |
| 1954 | * do_i2c() - Handle the "i2c" command-line command |
| 1955 | * @cmdtp: Command data struct pointer |
| 1956 | * @flag: Command flag |
| 1957 | * @argc: Command-line argument count |
| 1958 | * @argv: Array of command-line arguments |
| 1959 | * |
| 1960 | * Returns zero on success, CMD_RET_USAGE in case of misuse and negative |
| 1961 | * on error. |
| 1962 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1963 | static int do_i2c(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1964 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1965 | struct cmd_tbl *c; |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1966 | |
Michal Simek | e4099c8 | 2015-12-04 16:56:57 +0100 | [diff] [blame] | 1967 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
| 1968 | i2c_reloc(); |
| 1969 | #endif |
| 1970 | |
Heiko Schocher | 4444b22 | 2010-09-17 13:10:35 +0200 | [diff] [blame] | 1971 | if (argc < 2) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1972 | return CMD_RET_USAGE; |
Heiko Schocher | 4444b22 | 2010-09-17 13:10:35 +0200 | [diff] [blame] | 1973 | |
Peter Tyser | e96ad5d | 2009-04-18 22:34:04 -0500 | [diff] [blame] | 1974 | /* Strip off leading 'i2c' command argument */ |
| 1975 | argc--; |
| 1976 | argv++; |
| 1977 | |
Frans Meulenbroeks | bfc3b77 | 2010-02-25 10:12:14 +0100 | [diff] [blame] | 1978 | c = find_cmd_tbl(argv[0], &cmd_i2c_sub[0], ARRAY_SIZE(cmd_i2c_sub)); |
| 1979 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 1980 | if (c) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1981 | return c->cmd(cmdtp, flag, argc, argv); |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 1982 | else |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1983 | return CMD_RET_USAGE; |
Ben Warren | bb99ad6 | 2006-09-07 16:50:54 -0400 | [diff] [blame] | 1984 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 1985 | |
| 1986 | /***************************************************/ |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 1987 | #ifdef CONFIG_SYS_LONGHELP |
| 1988 | static char i2c_help_text[] = |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1989 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || CONFIG_IS_ENABLED(DM_I2C) |
Heiko Schocher | 3f4978c | 2012-01-16 21:12:24 +0000 | [diff] [blame] | 1990 | "bus [muxtype:muxaddr:muxchannel] - show I2C bus info\n" |
Christoph Muellner | 19f8c4d | 2018-12-04 11:27:18 +0100 | [diff] [blame] | 1991 | "i2c " /* That's the prefix for the crc32 command below. */ |
Heiko Schocher | 9a2accb | 2012-10-25 10:32:14 +0200 | [diff] [blame] | 1992 | #endif |
Frans Meulenbroeks | fb0070e | 2010-02-25 10:12:15 +0100 | [diff] [blame] | 1993 | "crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n" |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 1994 | #if CONFIG_IS_ENABLED(SYS_I2C_LEGACY) || \ |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 1995 | defined(CONFIG_I2C_MULTI_BUS) || CONFIG_IS_ENABLED(DM_I2C) |
Peter Tyser | 9bc2e4e | 2008-10-01 12:25:04 -0500 | [diff] [blame] | 1996 | "i2c dev [dev] - show or set current I2C bus\n" |
Matthias Fuchs | d9fc703 | 2007-03-08 16:25:47 +0100 | [diff] [blame] | 1997 | #endif /* CONFIG_I2C_MULTI_BUS */ |
Tom Wai-Hong Tam | 735987c | 2012-12-05 14:46:40 +0000 | [diff] [blame] | 1998 | #if defined(CONFIG_I2C_EDID) |
| 1999 | "i2c edid chip - print EDID configuration information\n" |
| 2000 | #endif /* CONFIG_I2C_EDID */ |
Frans Meulenbroeks | fb0070e | 2010-02-25 10:12:15 +0100 | [diff] [blame] | 2001 | "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n" |
Matthias Fuchs | d9fc703 | 2007-03-08 16:25:47 +0100 | [diff] [blame] | 2002 | "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n" |
| 2003 | "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n" |
| 2004 | "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n" |
| 2005 | "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n" |
Eric Nelson | 54b99e5 | 2012-09-23 10:12:56 +0000 | [diff] [blame] | 2006 | "i2c probe [address] - test for and show device(s) on the I2C bus\n" |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 2007 | "i2c read chip address[.0, .1, .2] length memaddress - read to memory\n" |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 2008 | "i2c write memaddress chip address[.0, .1, .2] length [-s] - write memory\n" |
| 2009 | " to I2C; the -s option selects bulk write in a single transaction\n" |
Igor Opaniuk | 2147a16 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 2010 | #if CONFIG_IS_ENABLED(DM_I2C) |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 2011 | "i2c flags chip [flags] - set or get chip flags\n" |
Simon Glass | c10c8e3 | 2015-08-22 18:31:33 -0600 | [diff] [blame] | 2012 | "i2c olen chip [offset_length] - set or get chip offset length\n" |
Simon Glass | 63656b7 | 2014-12-10 08:55:48 -0700 | [diff] [blame] | 2013 | #endif |
Heiko Schocher | e43a27c | 2008-10-15 09:33:30 +0200 | [diff] [blame] | 2014 | "i2c reset - re-init the I2C Controller\n" |
Jon Loeliger | c76fe47 | 2007-07-08 18:02:23 -0500 | [diff] [blame] | 2015 | #if defined(CONFIG_CMD_SDRAM) |
Frans Meulenbroeks | fb0070e | 2010-02-25 10:12:15 +0100 | [diff] [blame] | 2016 | "i2c sdram chip - print SDRAM configuration information\n" |
Jon Loeliger | 9025317 | 2007-07-10 11:02:44 -0500 | [diff] [blame] | 2017 | #endif |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 2018 | "i2c speed [speed] - show or set I2C bus speed"; |
| 2019 | #endif |
| 2020 | |
| 2021 | U_BOOT_CMD( |
Lubomir Popov | ed16f14 | 2015-01-30 19:56:04 +0200 | [diff] [blame] | 2022 | i2c, 7, 1, do_i2c, |
Kim Phillips | 088f1b1 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 2023 | "I2C sub-system", |
| 2024 | i2c_help_text |
Matthias Fuchs | d9fc703 | 2007-03-08 16:25:47 +0100 | [diff] [blame] | 2025 | ); |