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