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