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