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