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