blob: c8990ef522dc3e80b2709a692e5a1672f60a6e0d [file] [log] [blame]
wdenk81a88242002-10-26 15:22:42 +00001/*
2 * (C) Copyright 2001
3 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * I2C Functions similar to the standard memory functions.
26 *
27 * There are several parameters in many of the commands that bear further
28 * explanations:
29 *
wdenk81a88242002-10-26 15:22:42 +000030 * {i2c_chip} is the I2C chip address (the first byte sent on the bus).
31 * Each I2C chip on the bus has a unique address. On the I2C data bus,
32 * the address is the upper seven bits and the LSB is the "read/write"
33 * bit. Note that the {i2c_chip} address specified on the command
34 * line is not shifted up: e.g. a typical EEPROM memory chip may have
35 * an I2C address of 0x50, but the data put on the bus will be 0xA0
36 * for write and 0xA1 for read. This "non shifted" address notation
37 * matches at least half of the data sheets :-/.
38 *
39 * {addr} is the address (or offset) within the chip. Small memory
40 * chips have 8 bit addresses. Large memory chips have 16 bit
41 * addresses. Other memory chips have 9, 10, or 11 bit addresses.
42 * Many non-memory chips have multiple registers and {addr} is used
43 * as the register index. Some non-memory chips have only one register
44 * and therefore don't need any {addr} parameter.
45 *
46 * The default {addr} parameter is one byte (.1) which works well for
47 * memories and registers with 8 bits of address space.
48 *
49 * You can specify the length of the {addr} field with the optional .0,
50 * .1, or .2 modifier (similar to the .b, .w, .l modifier). If you are
51 * manipulating a single register device which doesn't use an address
52 * field, use "0.0" for the address and the ".0" length field will
53 * suppress the address in the I2C data stream. This also works for
54 * successive reads using the I2C auto-incrementing memory pointer.
55 *
56 * If you are manipulating a large memory with 2-byte addresses, use
57 * the .2 address modifier, e.g. 210.2 addresses location 528 (decimal).
58 *
59 * Then there are the unfortunate memory chips that spill the most
60 * significant 1, 2, or 3 bits of address into the chip address byte.
61 * This effectively makes one chip (logically) look like 2, 4, or
62 * 8 chips. This is handled (awkwardly) by #defining
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 * CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW and using the .1 modifier on the
wdenk81a88242002-10-26 15:22:42 +000064 * {addr} field (since .1 is the default, it doesn't actually have to
65 * be specified). Examples: given a memory chip at I2C chip address
66 * 0x50, the following would happen...
Peter Tyser0f89c542009-04-18 22:34:03 -050067 * i2c md 50 0 10 display 16 bytes starting at 0x000
wdenk81a88242002-10-26 15:22:42 +000068 * On the bus: <S> A0 00 <E> <S> A1 <rd> ... <rd>
Peter Tyser0f89c542009-04-18 22:34:03 -050069 * i2c md 50 100 10 display 16 bytes starting at 0x100
wdenk81a88242002-10-26 15:22:42 +000070 * On the bus: <S> A2 00 <E> <S> A3 <rd> ... <rd>
Peter Tyser0f89c542009-04-18 22:34:03 -050071 * i2c md 50 210 10 display 16 bytes starting at 0x210
wdenk81a88242002-10-26 15:22:42 +000072 * On the bus: <S> A4 10 <E> <S> A5 <rd> ... <rd>
73 * This is awfully ugly. It would be nice if someone would think up
74 * a better way of handling this.
75 *
76 * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de).
77 */
78
79#include <common.h>
80#include <command.h>
Heiko Schocher67b23a32008-10-15 09:39:47 +020081#include <environment.h>
wdenk81a88242002-10-26 15:22:42 +000082#include <i2c.h>
Heiko Schocher67b23a32008-10-15 09:39:47 +020083#include <malloc.h>
wdenk81a88242002-10-26 15:22:42 +000084#include <asm/byteorder.h>
Marek Vasut2515d842012-11-12 14:34:25 +000085#include <linux/compiler.h>
wdenk81a88242002-10-26 15:22:42 +000086
wdenk81a88242002-10-26 15:22:42 +000087/* Display values from last command.
88 * Memory modify remembered values are different from display memory.
89 */
90static uchar i2c_dp_last_chip;
91static uint i2c_dp_last_addr;
92static uint i2c_dp_last_alen;
93static uint i2c_dp_last_length = 0x10;
94
95static uchar i2c_mm_last_chip;
96static uint i2c_mm_last_addr;
97static uint i2c_mm_last_alen;
98
Ben Warrenbb99ad62006-09-07 16:50:54 -040099/* If only one I2C bus is present, the list of devices to ignore when
100 * the probe command is issued is represented by a 1D array of addresses.
101 * When multiple buses are present, the list is an array of bus-address
102 * pairs. The following macros take care of this */
103
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#if defined(CONFIG_SYS_I2C_NOPROBES)
Ben Warrenbb99ad62006-09-07 16:50:54 -0400105#if defined(CONFIG_I2C_MULTI_BUS)
106static struct
107{
108 uchar bus;
109 uchar addr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110} i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;
Ben Warrenbb99ad62006-09-07 16:50:54 -0400111#define GET_BUS_NUM i2c_get_bus_num()
112#define COMPARE_BUS(b,i) (i2c_no_probes[(i)].bus == (b))
113#define COMPARE_ADDR(a,i) (i2c_no_probes[(i)].addr == (a))
114#define NO_PROBE_ADDR(i) i2c_no_probes[(i)].addr
115#else /* single bus */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116static uchar i2c_no_probes[] = CONFIG_SYS_I2C_NOPROBES;
Ben Warrenbb99ad62006-09-07 16:50:54 -0400117#define GET_BUS_NUM 0
118#define COMPARE_BUS(b,i) ((b) == 0) /* Make compiler happy */
119#define COMPARE_ADDR(a,i) (i2c_no_probes[(i)] == (a))
120#define NO_PROBE_ADDR(i) i2c_no_probes[(i)]
121#endif /* CONFIG_MULTI_BUS */
122
123#define NUM_ELEMENTS_NOPROBE (sizeof(i2c_no_probes)/sizeof(i2c_no_probes[0]))
wdenk81a88242002-10-26 15:22:42 +0000124#endif
125
Heiko Schocher67b23a32008-10-15 09:39:47 +0200126#if defined(CONFIG_I2C_MUX)
127static I2C_MUX_DEVICE *i2c_mux_devices = NULL;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200128static int i2c_mux_busid = CONFIG_SYS_MAX_I2C_BUS;
Heiko Schocher67b23a32008-10-15 09:39:47 +0200129
130DECLARE_GLOBAL_DATA_PTR;
131
132#endif
133
Frans Meulenbroeksa266fe92010-03-26 09:46:40 +0100134#define DISP_LINE_LEN 16
135
Stefan Biglerc649dda2011-04-08 16:24:08 +0200136/* implement possible board specific board init */
Marek Vasut2515d842012-11-12 14:34:25 +0000137__weak
138void i2c_init_board(void)
Stefan Biglerc649dda2011-04-08 16:24:08 +0200139{
140 return;
141}
Stefan Biglerc649dda2011-04-08 16:24:08 +0200142
Peter Tyser655b34a2009-04-18 22:34:01 -0500143/* TODO: Implement architecture-specific get/set functions */
Marek Vasut2515d842012-11-12 14:34:25 +0000144__weak
145unsigned int i2c_get_bus_speed(void)
Peter Tyser655b34a2009-04-18 22:34:01 -0500146{
147 return CONFIG_SYS_I2C_SPEED;
148}
Peter Tyser655b34a2009-04-18 22:34:01 -0500149
Marek Vasut2515d842012-11-12 14:34:25 +0000150__weak
151int i2c_set_bus_speed(unsigned int speed)
Peter Tyser655b34a2009-04-18 22:34:01 -0500152{
153 if (speed != CONFIG_SYS_I2C_SPEED)
154 return -1;
155
156 return 0;
157}
Peter Tyser655b34a2009-04-18 22:34:01 -0500158
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100159/*
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100160 * get_alen: small parser helper function to get address length
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200161 * returns the address length
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100162 */
163static uint get_alen(char *arg)
164{
165 int j;
166 int alen;
167
168 alen = 1;
169 for (j = 0; j < 8; j++) {
170 if (arg[j] == '.') {
171 alen = arg[j+1] - '0';
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100172 break;
173 } else if (arg[j] == '\0')
174 break;
175 }
176 return alen;
177}
178
179/*
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100180 * Syntax:
181 * i2c read {i2c_chip} {devaddr}{.0, .1, .2} {len} {memaddr}
182 */
183
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200184static int do_i2c_read ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100185{
186 u_char chip;
187 uint devaddr, alen, length;
188 u_char *memaddr;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100189
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200190 if (argc != 5)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000191 return CMD_RET_USAGE;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100192
193 /*
194 * I2C chip address
195 */
196 chip = simple_strtoul(argv[1], NULL, 16);
197
198 /*
199 * I2C data address within the chip. This can be 1 or
200 * 2 bytes long. Some day it might be 3 bytes long :-).
201 */
202 devaddr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100203 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200204 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000205 return CMD_RET_USAGE;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100206
207 /*
208 * Length is the number of objects, not number of bytes.
209 */
210 length = simple_strtoul(argv[3], NULL, 16);
211
212 /*
213 * memaddr is the address where to store things in memory
214 */
215 memaddr = (u_char *)simple_strtoul(argv[4], NULL, 16);
216
217 if (i2c_read(chip, devaddr, alen, memaddr, length) != 0) {
218 puts ("Error reading the chip.\n");
219 return 1;
220 }
221 return 0;
222}
223
York Sunff5d2dc2012-09-16 08:02:30 +0000224static int do_i2c_write(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
225{
226 u_char chip;
227 uint devaddr, alen, length;
228 u_char *memaddr;
229
230 if (argc != 5)
231 return cmd_usage(cmdtp);
232
233 /*
234 * memaddr is the address where to store things in memory
235 */
236 memaddr = (u_char *)simple_strtoul(argv[1], NULL, 16);
237
238 /*
239 * I2C chip address
240 */
241 chip = simple_strtoul(argv[2], NULL, 16);
242
243 /*
244 * I2C data address within the chip. This can be 1 or
245 * 2 bytes long. Some day it might be 3 bytes long :-).
246 */
247 devaddr = simple_strtoul(argv[3], NULL, 16);
248 alen = get_alen(argv[3]);
249 if (alen > 3)
250 return cmd_usage(cmdtp);
251
252 /*
253 * Length is the number of objects, not number of bytes.
254 */
255 length = simple_strtoul(argv[4], NULL, 16);
256
257 while (length-- > 0) {
258 if (i2c_write(chip, devaddr++, alen, memaddr++, 1) != 0) {
259 puts("Error writing to the chip.\n");
260 return 1;
261 }
262/*
263 * No write delay with FRAM devices.
264 */
265#if !defined(CONFIG_SYS_I2C_FRAM)
266 udelay(11000);
267#endif
268 }
269 return 0;
270}
271
Frans Meulenbroeks4a8cf332010-03-26 09:46:39 +0100272/*
273 * Syntax:
274 * i2c md {i2c_chip} {addr}{.0, .1, .2} {len}
275 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200276static int do_i2c_md ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000277{
278 u_char chip;
279 uint addr, alen, length;
280 int j, nbytes, linebytes;
281
282 /* We use the last specified parameters, unless new ones are
283 * entered.
284 */
285 chip = i2c_dp_last_chip;
286 addr = i2c_dp_last_addr;
287 alen = i2c_dp_last_alen;
288 length = i2c_dp_last_length;
289
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200290 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000291 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000292
293 if ((flag & CMD_FLAG_REPEAT) == 0) {
294 /*
295 * New command specified.
296 */
wdenk81a88242002-10-26 15:22:42 +0000297
298 /*
299 * I2C chip address
300 */
301 chip = simple_strtoul(argv[1], NULL, 16);
302
303 /*
304 * I2C data address within the chip. This can be 1 or
305 * 2 bytes long. Some day it might be 3 bytes long :-).
306 */
307 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100308 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200309 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000310 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000311
312 /*
313 * If another parameter, it is the length to display.
314 * Length is the number of objects, not number of bytes.
315 */
316 if (argc > 3)
317 length = simple_strtoul(argv[3], NULL, 16);
318 }
319
320 /*
321 * Print the lines.
322 *
323 * We buffer all read data, so we can make sure data is read only
324 * once.
325 */
326 nbytes = length;
327 do {
328 unsigned char linebuf[DISP_LINE_LEN];
329 unsigned char *cp;
330
331 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
332
Timur Tabie857a5b2006-11-28 12:09:35 -0600333 if (i2c_read(chip, addr, alen, linebuf, linebytes) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000334 puts ("Error reading the chip.\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600335 else {
wdenk81a88242002-10-26 15:22:42 +0000336 printf("%04x:", addr);
337 cp = linebuf;
338 for (j=0; j<linebytes; j++) {
339 printf(" %02x", *cp++);
340 addr++;
341 }
wdenk4b9206e2004-03-23 22:14:11 +0000342 puts (" ");
wdenk81a88242002-10-26 15:22:42 +0000343 cp = linebuf;
344 for (j=0; j<linebytes; j++) {
345 if ((*cp < 0x20) || (*cp > 0x7e))
wdenk4b9206e2004-03-23 22:14:11 +0000346 puts (".");
wdenk81a88242002-10-26 15:22:42 +0000347 else
348 printf("%c", *cp);
349 cp++;
350 }
wdenk4b9206e2004-03-23 22:14:11 +0000351 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000352 }
353 nbytes -= linebytes;
354 } while (nbytes > 0);
355
356 i2c_dp_last_chip = chip;
357 i2c_dp_last_addr = addr;
358 i2c_dp_last_alen = alen;
359 i2c_dp_last_length = length;
360
361 return 0;
362}
363
wdenk81a88242002-10-26 15:22:42 +0000364
365/* Write (fill) memory
366 *
367 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500368 * i2c mw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}]
wdenk81a88242002-10-26 15:22:42 +0000369 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200370static int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000371{
372 uchar chip;
373 ulong addr;
374 uint alen;
375 uchar byte;
376 int count;
wdenk81a88242002-10-26 15:22:42 +0000377
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200378 if ((argc < 4) || (argc > 5))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000379 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000380
381 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200382 * Chip is always specified.
383 */
wdenk81a88242002-10-26 15:22:42 +0000384 chip = simple_strtoul(argv[1], NULL, 16);
385
386 /*
387 * Address is always specified.
388 */
389 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100390 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200391 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000392 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000393
394 /*
395 * Value to write is always specified.
396 */
397 byte = simple_strtoul(argv[3], NULL, 16);
398
399 /*
400 * Optional count
401 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600402 if (argc == 5)
wdenk81a88242002-10-26 15:22:42 +0000403 count = simple_strtoul(argv[4], NULL, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600404 else
wdenk81a88242002-10-26 15:22:42 +0000405 count = 1;
wdenk81a88242002-10-26 15:22:42 +0000406
407 while (count-- > 0) {
Timur Tabie857a5b2006-11-28 12:09:35 -0600408 if (i2c_write(chip, addr++, alen, &byte, 1) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000409 puts ("Error writing the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000410 /*
411 * Wait for the write to complete. The write can take
412 * up to 10mSec (we allow a little more time).
wdenk81a88242002-10-26 15:22:42 +0000413 */
d4f5c722005-08-12 21:16:13 +0200414/*
415 * No write delay with FRAM devices.
416 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200417#if !defined(CONFIG_SYS_I2C_FRAM)
wdenk81a88242002-10-26 15:22:42 +0000418 udelay(11000);
d4f5c722005-08-12 21:16:13 +0200419#endif
wdenk81a88242002-10-26 15:22:42 +0000420 }
421
422 return (0);
423}
424
wdenk81a88242002-10-26 15:22:42 +0000425/* Calculate a CRC on memory
426 *
427 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500428 * i2c crc32 {i2c_chip} {addr}{.0, .1, .2} {count}
wdenk81a88242002-10-26 15:22:42 +0000429 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200430static int do_i2c_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000431{
432 uchar chip;
433 ulong addr;
434 uint alen;
435 int count;
436 uchar byte;
437 ulong crc;
438 ulong err;
wdenk81a88242002-10-26 15:22:42 +0000439
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200440 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000441 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000442
443 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200444 * Chip is always specified.
445 */
wdenk81a88242002-10-26 15:22:42 +0000446 chip = simple_strtoul(argv[1], NULL, 16);
447
448 /*
449 * Address is always specified.
450 */
451 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100452 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200453 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000454 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000455
456 /*
457 * Count is always specified
458 */
459 count = simple_strtoul(argv[3], NULL, 16);
460
461 printf ("CRC32 for %08lx ... %08lx ==> ", addr, addr + count - 1);
462 /*
463 * CRC a byte at a time. This is going to be slooow, but hey, the
464 * memories are small and slow too so hopefully nobody notices.
465 */
466 crc = 0;
467 err = 0;
Timur Tabie857a5b2006-11-28 12:09:35 -0600468 while (count-- > 0) {
469 if (i2c_read(chip, addr, alen, &byte, 1) != 0)
wdenk81a88242002-10-26 15:22:42 +0000470 err++;
wdenk81a88242002-10-26 15:22:42 +0000471 crc = crc32 (crc, &byte, 1);
472 addr++;
473 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600474 if (err > 0)
wdenk4b9206e2004-03-23 22:14:11 +0000475 puts ("Error reading the chip,\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600476 else
wdenk81a88242002-10-26 15:22:42 +0000477 printf ("%08lx\n", crc);
wdenk81a88242002-10-26 15:22:42 +0000478
479 return 0;
480}
481
wdenk81a88242002-10-26 15:22:42 +0000482/* Modify memory.
483 *
484 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500485 * i2c mm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
486 * i2c nm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
wdenk81a88242002-10-26 15:22:42 +0000487 */
488
489static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200490mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000491{
492 uchar chip;
493 ulong addr;
494 uint alen;
495 ulong data;
496 int size = 1;
497 int nbytes;
wdenk81a88242002-10-26 15:22:42 +0000498
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200499 if (argc != 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000500 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000501
502#ifdef CONFIG_BOOT_RETRY_TIME
503 reset_cmd_timeout(); /* got a good command to get here */
504#endif
505 /*
506 * We use the last specified parameters, unless new ones are
507 * entered.
508 */
509 chip = i2c_mm_last_chip;
510 addr = i2c_mm_last_addr;
511 alen = i2c_mm_last_alen;
512
513 if ((flag & CMD_FLAG_REPEAT) == 0) {
514 /*
515 * New command specified. Check for a size specification.
516 * Defaults to byte if no or incorrect specification.
517 */
518 size = cmd_get_data_size(argv[0], 1);
519
520 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200521 * Chip is always specified.
522 */
wdenk81a88242002-10-26 15:22:42 +0000523 chip = simple_strtoul(argv[1], NULL, 16);
524
525 /*
526 * Address is always specified.
527 */
528 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100529 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200530 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000531 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000532 }
533
534 /*
535 * Print the address, followed by value. Then accept input for
536 * the next value. A non-converted value exits.
537 */
538 do {
539 printf("%08lx:", addr);
Timur Tabie857a5b2006-11-28 12:09:35 -0600540 if (i2c_read(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000541 puts ("\nError reading the chip,\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600542 else {
wdenk81a88242002-10-26 15:22:42 +0000543 data = cpu_to_be32(data);
Timur Tabie857a5b2006-11-28 12:09:35 -0600544 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000545 printf(" %02lx", (data >> 24) & 0x000000FF);
Timur Tabie857a5b2006-11-28 12:09:35 -0600546 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000547 printf(" %04lx", (data >> 16) & 0x0000FFFF);
Timur Tabie857a5b2006-11-28 12:09:35 -0600548 else
wdenk81a88242002-10-26 15:22:42 +0000549 printf(" %08lx", data);
wdenk81a88242002-10-26 15:22:42 +0000550 }
551
552 nbytes = readline (" ? ");
553 if (nbytes == 0) {
554 /*
555 * <CR> pressed as only input, don't modify current
556 * location and move to next.
557 */
558 if (incrflag)
559 addr += size;
560 nbytes = size;
561#ifdef CONFIG_BOOT_RETRY_TIME
562 reset_cmd_timeout(); /* good enough to not time out */
563#endif
564 }
565#ifdef CONFIG_BOOT_RETRY_TIME
Timur Tabie857a5b2006-11-28 12:09:35 -0600566 else if (nbytes == -2)
wdenk81a88242002-10-26 15:22:42 +0000567 break; /* timed out, exit the command */
wdenk81a88242002-10-26 15:22:42 +0000568#endif
569 else {
570 char *endp;
571
572 data = simple_strtoul(console_buffer, &endp, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600573 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000574 data = data << 24;
Timur Tabie857a5b2006-11-28 12:09:35 -0600575 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000576 data = data << 16;
wdenk81a88242002-10-26 15:22:42 +0000577 data = be32_to_cpu(data);
578 nbytes = endp - console_buffer;
579 if (nbytes) {
580#ifdef CONFIG_BOOT_RETRY_TIME
581 /*
582 * good enough to not time out
583 */
584 reset_cmd_timeout();
585#endif
Timur Tabie857a5b2006-11-28 12:09:35 -0600586 if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000587 puts ("Error writing the chip.\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200588#ifdef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
589 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
wdenk2535d602003-07-17 23:16:40 +0000590#endif
wdenk81a88242002-10-26 15:22:42 +0000591 if (incrflag)
592 addr += size;
593 }
594 }
595 } while (nbytes);
596
Peter Tyser08007072008-08-15 14:36:32 -0500597 i2c_mm_last_chip = chip;
598 i2c_mm_last_addr = addr;
599 i2c_mm_last_alen = alen;
wdenk81a88242002-10-26 15:22:42 +0000600
601 return 0;
602}
603
604/*
605 * Syntax:
Eric Nelson54b99e52012-09-23 10:12:56 +0000606 * i2c probe {addr}
607 *
608 * Returns zero (success) if one or more I2C devices was found
wdenk81a88242002-10-26 15:22:42 +0000609 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200610static int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000611{
612 int j;
Eric Nelson54b99e52012-09-23 10:12:56 +0000613 int addr = -1;
614 int found = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200615#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000616 int k, skip;
Ben Warrenbb99ad62006-09-07 16:50:54 -0400617 uchar bus = GET_BUS_NUM;
618#endif /* NOPROBES */
wdenk81a88242002-10-26 15:22:42 +0000619
Eric Nelson54b99e52012-09-23 10:12:56 +0000620 if (argc == 2)
621 addr = simple_strtol(argv[1], 0, 16);
622
wdenk4b9206e2004-03-23 22:14:11 +0000623 puts ("Valid chip addresses:");
Timur Tabie857a5b2006-11-28 12:09:35 -0600624 for (j = 0; j < 128; j++) {
Eric Nelson54b99e52012-09-23 10:12:56 +0000625 if ((0 <= addr) && (j != addr))
626 continue;
627
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200628#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000629 skip = 0;
Timur Tabie857a5b2006-11-28 12:09:35 -0600630 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
631 if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
wdenk81a88242002-10-26 15:22:42 +0000632 skip = 1;
633 break;
634 }
635 }
636 if (skip)
637 continue;
638#endif
Eric Nelson54b99e52012-09-23 10:12:56 +0000639 if (i2c_probe(j) == 0) {
wdenk81a88242002-10-26 15:22:42 +0000640 printf(" %02X", j);
Eric Nelson54b99e52012-09-23 10:12:56 +0000641 found++;
642 }
wdenk81a88242002-10-26 15:22:42 +0000643 }
wdenk4b9206e2004-03-23 22:14:11 +0000644 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000645
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200646#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000647 puts ("Excluded chip addresses:");
Timur Tabie857a5b2006-11-28 12:09:35 -0600648 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
649 if (COMPARE_BUS(bus,k))
Ben Warrenbb99ad62006-09-07 16:50:54 -0400650 printf(" %02X", NO_PROBE_ADDR(k));
651 }
wdenk4b9206e2004-03-23 22:14:11 +0000652 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000653#endif
654
Eric Nelson54b99e52012-09-23 10:12:56 +0000655 return (0 == found);
wdenk81a88242002-10-26 15:22:42 +0000656}
657
wdenk81a88242002-10-26 15:22:42 +0000658/*
659 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500660 * i2c loop {i2c_chip} {addr}{.0, .1, .2} [{length}] [{delay}]
wdenk81a88242002-10-26 15:22:42 +0000661 * {length} - Number of bytes to read
662 * {delay} - A DECIMAL number and defaults to 1000 uSec
663 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200664static int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000665{
666 u_char chip;
667 ulong alen;
668 uint addr;
669 uint length;
670 u_char bytes[16];
671 int delay;
wdenk81a88242002-10-26 15:22:42 +0000672
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200673 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000674 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000675
676 /*
677 * Chip is always specified.
678 */
679 chip = simple_strtoul(argv[1], NULL, 16);
680
681 /*
682 * Address is always specified.
683 */
684 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100685 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200686 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000687 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000688
689 /*
690 * Length is the number of objects, not number of bytes.
691 */
692 length = 1;
693 length = simple_strtoul(argv[3], NULL, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600694 if (length > sizeof(bytes))
wdenk81a88242002-10-26 15:22:42 +0000695 length = sizeof(bytes);
wdenk81a88242002-10-26 15:22:42 +0000696
697 /*
698 * The delay time (uSec) is optional.
699 */
700 delay = 1000;
Timur Tabie857a5b2006-11-28 12:09:35 -0600701 if (argc > 3)
wdenk81a88242002-10-26 15:22:42 +0000702 delay = simple_strtoul(argv[4], NULL, 10);
wdenk81a88242002-10-26 15:22:42 +0000703 /*
704 * Run the loop...
705 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600706 while (1) {
707 if (i2c_read(chip, addr, alen, bytes, length) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000708 puts ("Error reading the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000709 udelay(delay);
710 }
711
712 /* NOTREACHED */
713 return 0;
714}
715
wdenk81a88242002-10-26 15:22:42 +0000716/*
717 * The SDRAM command is separately configured because many
718 * (most?) embedded boards don't use SDRAM DIMMs.
719 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500720#if defined(CONFIG_CMD_SDRAM)
Larry Johnson632de062008-01-11 23:26:18 -0500721static void print_ddr2_tcyc (u_char const b)
722{
723 printf ("%d.", (b >> 4) & 0x0F);
724 switch (b & 0x0F) {
725 case 0x0:
726 case 0x1:
727 case 0x2:
728 case 0x3:
729 case 0x4:
730 case 0x5:
731 case 0x6:
732 case 0x7:
733 case 0x8:
734 case 0x9:
735 printf ("%d ns\n", b & 0x0F);
736 break;
737 case 0xA:
738 puts ("25 ns\n");
739 break;
740 case 0xB:
741 puts ("33 ns\n");
742 break;
743 case 0xC:
744 puts ("66 ns\n");
745 break;
746 case 0xD:
747 puts ("75 ns\n");
748 break;
749 default:
750 puts ("?? ns\n");
751 break;
752 }
753}
754
755static void decode_bits (u_char const b, char const *str[], int const do_once)
756{
757 u_char mask;
758
759 for (mask = 0x80; mask != 0x00; mask >>= 1, ++str) {
760 if (b & mask) {
761 puts (*str);
762 if (do_once)
763 return;
764 }
765 }
766}
wdenk81a88242002-10-26 15:22:42 +0000767
768/*
769 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500770 * i2c sdram {i2c_chip}
wdenk81a88242002-10-26 15:22:42 +0000771 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200772static int do_sdram (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000773{
Larry Johnson632de062008-01-11 23:26:18 -0500774 enum { unknown, EDO, SDRAM, DDR2 } type;
775
wdenk81a88242002-10-26 15:22:42 +0000776 u_char chip;
777 u_char data[128];
778 u_char cksum;
779 int j;
780
Larry Johnson632de062008-01-11 23:26:18 -0500781 static const char *decode_CAS_DDR2[] = {
782 " TBD", " 6", " 5", " 4", " 3", " 2", " TBD", " TBD"
783 };
784
785 static const char *decode_CAS_default[] = {
786 " TBD", " 7", " 6", " 5", " 4", " 3", " 2", " 1"
787 };
788
789 static const char *decode_CS_WE_default[] = {
790 " TBD", " 6", " 5", " 4", " 3", " 2", " 1", " 0"
791 };
792
793 static const char *decode_byte21_default[] = {
794 " TBD (bit 7)\n",
795 " Redundant row address\n",
796 " Differential clock input\n",
797 " Registerd DQMB inputs\n",
798 " Buffered DQMB inputs\n",
799 " On-card PLL\n",
800 " Registered address/control lines\n",
801 " Buffered address/control lines\n"
802 };
803
804 static const char *decode_byte22_DDR2[] = {
805 " TBD (bit 7)\n",
806 " TBD (bit 6)\n",
807 " TBD (bit 5)\n",
808 " TBD (bit 4)\n",
809 " TBD (bit 3)\n",
810 " Supports partial array self refresh\n",
811 " Supports 50 ohm ODT\n",
812 " Supports weak driver\n"
813 };
814
815 static const char *decode_row_density_DDR2[] = {
816 "512 MiB", "256 MiB", "128 MiB", "16 GiB",
817 "8 GiB", "4 GiB", "2 GiB", "1 GiB"
818 };
819
820 static const char *decode_row_density_default[] = {
821 "512 MiB", "256 MiB", "128 MiB", "64 MiB",
822 "32 MiB", "16 MiB", "8 MiB", "4 MiB"
823 };
824
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200825 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000826 return CMD_RET_USAGE;
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200827
wdenk81a88242002-10-26 15:22:42 +0000828 /*
829 * Chip is always specified.
Larry Johnson632de062008-01-11 23:26:18 -0500830 */
831 chip = simple_strtoul (argv[1], NULL, 16);
wdenk81a88242002-10-26 15:22:42 +0000832
Larry Johnson632de062008-01-11 23:26:18 -0500833 if (i2c_read (chip, 0, 1, data, sizeof (data)) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000834 puts ("No SDRAM Serial Presence Detect found.\n");
wdenk81a88242002-10-26 15:22:42 +0000835 return 1;
836 }
837
838 cksum = 0;
839 for (j = 0; j < 63; j++) {
840 cksum += data[j];
841 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600842 if (cksum != data[63]) {
wdenk81a88242002-10-26 15:22:42 +0000843 printf ("WARNING: Configuration data checksum failure:\n"
Larry Johnson632de062008-01-11 23:26:18 -0500844 " is 0x%02x, calculated 0x%02x\n", data[63], cksum);
wdenk81a88242002-10-26 15:22:42 +0000845 }
Larry Johnson632de062008-01-11 23:26:18 -0500846 printf ("SPD data revision %d.%d\n",
wdenk81a88242002-10-26 15:22:42 +0000847 (data[62] >> 4) & 0x0F, data[62] & 0x0F);
Larry Johnson632de062008-01-11 23:26:18 -0500848 printf ("Bytes used 0x%02X\n", data[0]);
849 printf ("Serial memory size 0x%02X\n", 1 << data[1]);
850
wdenk4b9206e2004-03-23 22:14:11 +0000851 puts ("Memory type ");
Larry Johnson632de062008-01-11 23:26:18 -0500852 switch (data[2]) {
Larry Johnson0df6b842008-01-10 22:23:39 -0500853 case 2:
854 type = EDO;
855 puts ("EDO\n");
856 break;
857 case 4:
858 type = SDRAM;
859 puts ("SDRAM\n");
860 break;
861 case 8:
862 type = DDR2;
863 puts ("DDR2\n");
864 break;
865 default:
866 type = unknown;
867 puts ("unknown\n");
868 break;
wdenk81a88242002-10-26 15:22:42 +0000869 }
Larry Johnson632de062008-01-11 23:26:18 -0500870
wdenk4b9206e2004-03-23 22:14:11 +0000871 puts ("Row address bits ");
Timur Tabie857a5b2006-11-28 12:09:35 -0600872 if ((data[3] & 0x00F0) == 0)
Larry Johnson632de062008-01-11 23:26:18 -0500873 printf ("%d\n", data[3] & 0x0F);
Timur Tabie857a5b2006-11-28 12:09:35 -0600874 else
Larry Johnson632de062008-01-11 23:26:18 -0500875 printf ("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F);
876
wdenk4b9206e2004-03-23 22:14:11 +0000877 puts ("Column address bits ");
Timur Tabie857a5b2006-11-28 12:09:35 -0600878 if ((data[4] & 0x00F0) == 0)
Larry Johnson632de062008-01-11 23:26:18 -0500879 printf ("%d\n", data[4] & 0x0F);
Timur Tabie857a5b2006-11-28 12:09:35 -0600880 else
Larry Johnson632de062008-01-11 23:26:18 -0500881 printf ("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500882
883 switch (type) {
884 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500885 printf ("Number of ranks %d\n",
886 (data[5] & 0x07) + 1);
Larry Johnson0df6b842008-01-10 22:23:39 -0500887 break;
888 default:
Larry Johnson632de062008-01-11 23:26:18 -0500889 printf ("Module rows %d\n", data[5]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500890 break;
891 }
892
893 switch (type) {
894 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500895 printf ("Module data width %d bits\n", data[6]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500896 break;
897 default:
Larry Johnson632de062008-01-11 23:26:18 -0500898 printf ("Module data width %d bits\n",
899 (data[7] << 8) | data[6]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500900 break;
901 }
902
wdenk4b9206e2004-03-23 22:14:11 +0000903 puts ("Interface signal levels ");
wdenk81a88242002-10-26 15:22:42 +0000904 switch(data[8]) {
Larry Johnson0df6b842008-01-10 22:23:39 -0500905 case 0: puts ("TTL 5.0 V\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +0000906 case 1: puts ("LVTTL\n"); break;
Larry Johnson0df6b842008-01-10 22:23:39 -0500907 case 2: puts ("HSTL 1.5 V\n"); break;
908 case 3: puts ("SSTL 3.3 V\n"); break;
909 case 4: puts ("SSTL 2.5 V\n"); break;
910 case 5: puts ("SSTL 1.8 V\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +0000911 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000912 }
Larry Johnson0df6b842008-01-10 22:23:39 -0500913
914 switch (type) {
915 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500916 printf ("SDRAM cycle time ");
917 print_ddr2_tcyc (data[9]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500918 break;
919 default:
Larry Johnson632de062008-01-11 23:26:18 -0500920 printf ("SDRAM cycle time %d.%d ns\n",
921 (data[9] >> 4) & 0x0F, data[9] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500922 break;
923 }
924
925 switch (type) {
926 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500927 printf ("SDRAM access time 0.%d%d ns\n",
928 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500929 break;
930 default:
Larry Johnson632de062008-01-11 23:26:18 -0500931 printf ("SDRAM access time %d.%d ns\n",
932 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500933 break;
934 }
935
wdenk4b9206e2004-03-23 22:14:11 +0000936 puts ("EDC configuration ");
Larry Johnson632de062008-01-11 23:26:18 -0500937 switch (data[11]) {
wdenk4b9206e2004-03-23 22:14:11 +0000938 case 0: puts ("None\n"); break;
939 case 1: puts ("Parity\n"); break;
940 case 2: puts ("ECC\n"); break;
941 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000942 }
Larry Johnson632de062008-01-11 23:26:18 -0500943
Timur Tabie857a5b2006-11-28 12:09:35 -0600944 if ((data[12] & 0x80) == 0)
wdenk4b9206e2004-03-23 22:14:11 +0000945 puts ("No self refresh, rate ");
Timur Tabie857a5b2006-11-28 12:09:35 -0600946 else
wdenk4b9206e2004-03-23 22:14:11 +0000947 puts ("Self refresh, rate ");
Larry Johnson632de062008-01-11 23:26:18 -0500948
wdenk81a88242002-10-26 15:22:42 +0000949 switch(data[12] & 0x7F) {
Larry Johnson632de062008-01-11 23:26:18 -0500950 case 0: puts ("15.625 us\n"); break;
951 case 1: puts ("3.9 us\n"); break;
952 case 2: puts ("7.8 us\n"); break;
953 case 3: puts ("31.3 us\n"); break;
954 case 4: puts ("62.5 us\n"); break;
955 case 5: puts ("125 us\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +0000956 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +0000957 }
Larry Johnson0df6b842008-01-10 22:23:39 -0500958
959 switch (type) {
960 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500961 printf ("SDRAM width (primary) %d\n", data[13]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500962 break;
963 default:
Larry Johnson632de062008-01-11 23:26:18 -0500964 printf ("SDRAM width (primary) %d\n", data[13] & 0x7F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500965 if ((data[13] & 0x80) != 0) {
Larry Johnson632de062008-01-11 23:26:18 -0500966 printf (" (second bank) %d\n",
967 2 * (data[13] & 0x7F));
Larry Johnson0df6b842008-01-10 22:23:39 -0500968 }
969 break;
wdenk81a88242002-10-26 15:22:42 +0000970 }
Larry Johnson0df6b842008-01-10 22:23:39 -0500971
972 switch (type) {
973 case DDR2:
974 if (data[14] != 0)
Larry Johnson632de062008-01-11 23:26:18 -0500975 printf ("EDC width %d\n", data[14]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500976 break;
977 default:
978 if (data[14] != 0) {
Larry Johnson632de062008-01-11 23:26:18 -0500979 printf ("EDC width %d\n",
980 data[14] & 0x7F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500981
982 if ((data[14] & 0x80) != 0) {
Larry Johnson632de062008-01-11 23:26:18 -0500983 printf (" (second bank) %d\n",
984 2 * (data[14] & 0x7F));
Larry Johnson0df6b842008-01-10 22:23:39 -0500985 }
986 }
987 break;
988 }
989
Larry Johnson632de062008-01-11 23:26:18 -0500990 if (DDR2 != type) {
991 printf ("Min clock delay, back-to-back random column addresses "
992 "%d\n", data[15]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500993 }
994
wdenk4b9206e2004-03-23 22:14:11 +0000995 puts ("Burst length(s) ");
996 if (data[16] & 0x80) puts (" Page");
997 if (data[16] & 0x08) puts (" 8");
998 if (data[16] & 0x04) puts (" 4");
999 if (data[16] & 0x02) puts (" 2");
1000 if (data[16] & 0x01) puts (" 1");
1001 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001002 printf ("Number of banks %d\n", data[17]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001003
1004 switch (type) {
1005 case DDR2:
1006 puts ("CAS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001007 decode_bits (data[18], decode_CAS_DDR2, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001008 putc ('\n');
1009 break;
1010 default:
1011 puts ("CAS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001012 decode_bits (data[18], decode_CAS_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001013 putc ('\n');
1014 break;
1015 }
1016
1017 if (DDR2 != type) {
1018 puts ("CS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001019 decode_bits (data[19], decode_CS_WE_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001020 putc ('\n');
1021 }
1022
1023 if (DDR2 != type) {
1024 puts ("WE latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001025 decode_bits (data[20], decode_CS_WE_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001026 putc ('\n');
1027 }
1028
1029 switch (type) {
1030 case DDR2:
1031 puts ("Module attributes:\n");
1032 if (data[21] & 0x80)
1033 puts (" TBD (bit 7)\n");
1034 if (data[21] & 0x40)
1035 puts (" Analysis probe installed\n");
1036 if (data[21] & 0x20)
1037 puts (" TBD (bit 5)\n");
1038 if (data[21] & 0x10)
1039 puts (" FET switch external enable\n");
Larry Johnson632de062008-01-11 23:26:18 -05001040 printf (" %d PLLs on DIMM\n", (data[21] >> 2) & 0x03);
Larry Johnson0df6b842008-01-10 22:23:39 -05001041 if (data[20] & 0x11) {
Larry Johnson632de062008-01-11 23:26:18 -05001042 printf (" %d active registers on DIMM\n",
1043 (data[21] & 0x03) + 1);
Larry Johnson0df6b842008-01-10 22:23:39 -05001044 }
1045 break;
1046 default:
1047 puts ("Module attributes:\n");
1048 if (!data[21])
1049 puts (" (none)\n");
Larry Johnson632de062008-01-11 23:26:18 -05001050 else
1051 decode_bits (data[21], decode_byte21_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001052 break;
1053 }
1054
1055 switch (type) {
1056 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001057 decode_bits (data[22], decode_byte22_DDR2, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001058 break;
1059 default:
1060 puts ("Device attributes:\n");
1061 if (data[22] & 0x80) puts (" TBD (bit 7)\n");
1062 if (data[22] & 0x40) puts (" TBD (bit 6)\n");
1063 if (data[22] & 0x20) puts (" Upper Vcc tolerance 5%\n");
1064 else puts (" Upper Vcc tolerance 10%\n");
1065 if (data[22] & 0x10) puts (" Lower Vcc tolerance 5%\n");
1066 else puts (" Lower Vcc tolerance 10%\n");
1067 if (data[22] & 0x08) puts (" Supports write1/read burst\n");
1068 if (data[22] & 0x04) puts (" Supports precharge all\n");
1069 if (data[22] & 0x02) puts (" Supports auto precharge\n");
1070 if (data[22] & 0x01) puts (" Supports early RAS# precharge\n");
1071 break;
1072 }
1073
1074 switch (type) {
1075 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001076 printf ("SDRAM cycle time (2nd highest CAS latency) ");
1077 print_ddr2_tcyc (data[23]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001078 break;
1079 default:
Larry Johnson632de062008-01-11 23:26:18 -05001080 printf ("SDRAM cycle time (2nd highest CAS latency) %d."
1081 "%d ns\n", (data[23] >> 4) & 0x0F, data[23] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001082 break;
1083 }
1084
1085 switch (type) {
1086 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001087 printf ("SDRAM access from clock (2nd highest CAS latency) 0."
1088 "%d%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001089 break;
1090 default:
Larry Johnson632de062008-01-11 23:26:18 -05001091 printf ("SDRAM access from clock (2nd highest CAS latency) %d."
1092 "%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001093 break;
1094 }
1095
1096 switch (type) {
1097 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001098 printf ("SDRAM cycle time (3rd highest CAS latency) ");
1099 print_ddr2_tcyc (data[25]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001100 break;
1101 default:
Larry Johnson632de062008-01-11 23:26:18 -05001102 printf ("SDRAM cycle time (3rd highest CAS latency) %d."
1103 "%d ns\n", (data[25] >> 4) & 0x0F, data[25] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001104 break;
1105 }
1106
1107 switch (type) {
1108 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001109 printf ("SDRAM access from clock (3rd highest CAS latency) 0."
1110 "%d%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001111 break;
1112 default:
Larry Johnson632de062008-01-11 23:26:18 -05001113 printf ("SDRAM access from clock (3rd highest CAS latency) %d."
1114 "%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001115 break;
1116 }
1117
1118 switch (type) {
1119 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001120 printf ("Minimum row precharge %d.%02d ns\n",
1121 (data[27] >> 2) & 0x3F, 25 * (data[27] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001122 break;
1123 default:
Larry Johnson632de062008-01-11 23:26:18 -05001124 printf ("Minimum row precharge %d ns\n", data[27]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001125 break;
1126 }
1127
1128 switch (type) {
1129 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001130 printf ("Row active to row active min %d.%02d ns\n",
1131 (data[28] >> 2) & 0x3F, 25 * (data[28] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001132 break;
1133 default:
Larry Johnson632de062008-01-11 23:26:18 -05001134 printf ("Row active to row active min %d ns\n", data[28]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001135 break;
1136 }
1137
1138 switch (type) {
1139 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001140 printf ("RAS to CAS delay min %d.%02d ns\n",
1141 (data[29] >> 2) & 0x3F, 25 * (data[29] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001142 break;
1143 default:
Larry Johnson632de062008-01-11 23:26:18 -05001144 printf ("RAS to CAS delay min %d ns\n", data[29]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001145 break;
1146 }
1147
Larry Johnson632de062008-01-11 23:26:18 -05001148 printf ("Minimum RAS pulse width %d ns\n", data[30]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001149
1150 switch (type) {
1151 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001152 puts ("Density of each row ");
1153 decode_bits (data[31], decode_row_density_DDR2, 1);
1154 putc ('\n');
Larry Johnson0df6b842008-01-10 22:23:39 -05001155 break;
1156 default:
Larry Johnson632de062008-01-11 23:26:18 -05001157 puts ("Density of each row ");
1158 decode_bits (data[31], decode_row_density_default, 1);
1159 putc ('\n');
Larry Johnson0df6b842008-01-10 22:23:39 -05001160 break;
1161 }
1162
1163 switch (type) {
1164 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001165 puts ("Command and Address setup ");
Larry Johnson0df6b842008-01-10 22:23:39 -05001166 if (data[32] >= 0xA0) {
Larry Johnson632de062008-01-11 23:26:18 -05001167 printf ("1.%d%d ns\n",
1168 ((data[32] >> 4) & 0x0F) - 10, data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001169 } else {
Larry Johnson632de062008-01-11 23:26:18 -05001170 printf ("0.%d%d ns\n",
1171 ((data[32] >> 4) & 0x0F), data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001172 }
1173 break;
1174 default:
Larry Johnson632de062008-01-11 23:26:18 -05001175 printf ("Command and Address setup %c%d.%d ns\n",
1176 (data[32] & 0x80) ? '-' : '+',
1177 (data[32] >> 4) & 0x07, data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001178 break;
1179 }
1180
1181 switch (type) {
1182 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001183 puts ("Command and Address hold ");
Larry Johnson0df6b842008-01-10 22:23:39 -05001184 if (data[33] >= 0xA0) {
Larry Johnson632de062008-01-11 23:26:18 -05001185 printf ("1.%d%d ns\n",
1186 ((data[33] >> 4) & 0x0F) - 10, data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001187 } else {
Larry Johnson632de062008-01-11 23:26:18 -05001188 printf ("0.%d%d ns\n",
1189 ((data[33] >> 4) & 0x0F), data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001190 }
1191 break;
1192 default:
Larry Johnson632de062008-01-11 23:26:18 -05001193 printf ("Command and Address hold %c%d.%d ns\n",
1194 (data[33] & 0x80) ? '-' : '+',
1195 (data[33] >> 4) & 0x07, data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001196 break;
1197 }
1198
1199 switch (type) {
1200 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001201 printf ("Data signal input setup 0.%d%d ns\n",
1202 (data[34] >> 4) & 0x0F, data[34] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001203 break;
1204 default:
Larry Johnson632de062008-01-11 23:26:18 -05001205 printf ("Data signal input setup %c%d.%d ns\n",
1206 (data[34] & 0x80) ? '-' : '+',
1207 (data[34] >> 4) & 0x07, data[34] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001208 break;
1209 }
1210
1211 switch (type) {
1212 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001213 printf ("Data signal input hold 0.%d%d ns\n",
1214 (data[35] >> 4) & 0x0F, data[35] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001215 break;
1216 default:
Larry Johnson632de062008-01-11 23:26:18 -05001217 printf ("Data signal input hold %c%d.%d ns\n",
1218 (data[35] & 0x80) ? '-' : '+',
1219 (data[35] >> 4) & 0x07, data[35] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001220 break;
1221 }
1222
wdenk4b9206e2004-03-23 22:14:11 +00001223 puts ("Manufacturer's JEDEC ID ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001224 for (j = 64; j <= 71; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001225 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001226 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001227 printf ("Manufacturing Location %02X\n", data[72]);
wdenk4b9206e2004-03-23 22:14:11 +00001228 puts ("Manufacturer's Part Number ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001229 for (j = 73; j <= 90; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001230 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001231 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001232 printf ("Revision Code %02X %02X\n", data[91], data[92]);
1233 printf ("Manufacturing Date %02X %02X\n", data[93], data[94]);
wdenk4b9206e2004-03-23 22:14:11 +00001234 puts ("Assembly Serial Number ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001235 for (j = 95; j <= 98; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001236 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001237 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +00001238
Larry Johnson0df6b842008-01-10 22:23:39 -05001239 if (DDR2 != type) {
Larry Johnson632de062008-01-11 23:26:18 -05001240 printf ("Speed rating PC%d\n",
1241 data[126] == 0x66 ? 66 : data[126]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001242 }
wdenk81a88242002-10-26 15:22:42 +00001243 return 0;
1244}
Jon Loeliger90253172007-07-10 11:02:44 -05001245#endif
wdenk81a88242002-10-26 15:22:42 +00001246
Heiko Schocher67b23a32008-10-15 09:39:47 +02001247#if defined(CONFIG_I2C_MUX)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001248static int do_i2c_add_bus(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Heiko Schocher67b23a32008-10-15 09:39:47 +02001249{
1250 int ret=0;
1251
1252 if (argc == 1) {
1253 /* show all busses */
1254 I2C_MUX *mux;
1255 I2C_MUX_DEVICE *device = i2c_mux_devices;
1256
1257 printf ("Busses reached over muxes:\n");
1258 while (device != NULL) {
1259 printf ("Bus ID: %x\n", device->busid);
1260 printf (" reached over Mux(es):\n");
1261 mux = device->mux;
1262 while (mux != NULL) {
1263 printf (" %s@%x ch: %x\n", mux->name, mux->chip, mux->channel);
1264 mux = mux->next;
1265 }
1266 device = device->next;
1267 }
1268 } else {
Wolfgang Denke8260cb2011-11-04 15:55:54 +00001269 (void)i2c_mux_ident_muxstring ((uchar *)argv[1]);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001270 ret = 0;
1271 }
1272 return ret;
1273}
1274#endif /* CONFIG_I2C_MUX */
1275
Ben Warrenbb99ad62006-09-07 16:50:54 -04001276#if defined(CONFIG_I2C_MULTI_BUS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001277static int do_i2c_bus_num(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001278{
1279 int bus_idx, ret=0;
1280
Timur Tabie857a5b2006-11-28 12:09:35 -06001281 if (argc == 1)
1282 /* querying current setting */
Ben Warrenbb99ad62006-09-07 16:50:54 -04001283 printf("Current bus is %d\n", i2c_get_bus_num());
Timur Tabie857a5b2006-11-28 12:09:35 -06001284 else {
Ben Warrenbb99ad62006-09-07 16:50:54 -04001285 bus_idx = simple_strtoul(argv[1], NULL, 10);
1286 printf("Setting bus to %d\n", bus_idx);
1287 ret = i2c_set_bus_num(bus_idx);
Timur Tabie857a5b2006-11-28 12:09:35 -06001288 if (ret)
Ben Warrenbb99ad62006-09-07 16:50:54 -04001289 printf("Failure changing bus number (%d)\n", ret);
Ben Warrenbb99ad62006-09-07 16:50:54 -04001290 }
1291 return ret;
1292}
1293#endif /* CONFIG_I2C_MULTI_BUS */
1294
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001295static int do_i2c_bus_speed(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001296{
1297 int speed, ret=0;
1298
Timur Tabie857a5b2006-11-28 12:09:35 -06001299 if (argc == 1)
1300 /* querying current speed */
Ben Warrenbb99ad62006-09-07 16:50:54 -04001301 printf("Current bus speed=%d\n", i2c_get_bus_speed());
Timur Tabie857a5b2006-11-28 12:09:35 -06001302 else {
Ben Warrenbb99ad62006-09-07 16:50:54 -04001303 speed = simple_strtoul(argv[1], NULL, 10);
1304 printf("Setting bus speed to %d Hz\n", speed);
1305 ret = i2c_set_bus_speed(speed);
Timur Tabie857a5b2006-11-28 12:09:35 -06001306 if (ret)
Ben Warrenbb99ad62006-09-07 16:50:54 -04001307 printf("Failure changing bus speed (%d)\n", ret);
Ben Warrenbb99ad62006-09-07 16:50:54 -04001308 }
1309 return ret;
1310}
1311
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001312static int do_i2c_mm(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001313{
1314 return mod_i2c_mem (cmdtp, 1, flag, argc, argv);
1315}
1316
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001317static int do_i2c_nm(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001318{
1319 return mod_i2c_mem (cmdtp, 0, flag, argc, argv);
1320}
1321
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001322static int do_i2c_reset(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001323{
1324 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
1325 return 0;
1326}
1327
1328static cmd_tbl_t cmd_i2c_sub[] = {
1329#if defined(CONFIG_I2C_MUX)
1330 U_BOOT_CMD_MKENT(bus, 1, 1, do_i2c_add_bus, "", ""),
1331#endif /* CONFIG_I2C_MUX */
1332 U_BOOT_CMD_MKENT(crc32, 3, 1, do_i2c_crc, "", ""),
1333#if defined(CONFIG_I2C_MULTI_BUS)
1334 U_BOOT_CMD_MKENT(dev, 1, 1, do_i2c_bus_num, "", ""),
1335#endif /* CONFIG_I2C_MULTI_BUS */
1336 U_BOOT_CMD_MKENT(loop, 3, 1, do_i2c_loop, "", ""),
1337 U_BOOT_CMD_MKENT(md, 3, 1, do_i2c_md, "", ""),
1338 U_BOOT_CMD_MKENT(mm, 2, 1, do_i2c_mm, "", ""),
1339 U_BOOT_CMD_MKENT(mw, 3, 1, do_i2c_mw, "", ""),
1340 U_BOOT_CMD_MKENT(nm, 2, 1, do_i2c_nm, "", ""),
1341 U_BOOT_CMD_MKENT(probe, 0, 1, do_i2c_probe, "", ""),
Frans Meulenbroeks652e5352010-02-25 10:12:16 +01001342 U_BOOT_CMD_MKENT(read, 5, 1, do_i2c_read, "", ""),
York Sunff5d2dc2012-09-16 08:02:30 +00001343 U_BOOT_CMD_MKENT(write, 5, 0, do_i2c_write, "", ""),
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001344 U_BOOT_CMD_MKENT(reset, 0, 1, do_i2c_reset, "", ""),
1345#if defined(CONFIG_CMD_SDRAM)
1346 U_BOOT_CMD_MKENT(sdram, 1, 1, do_sdram, "", ""),
1347#endif
1348 U_BOOT_CMD_MKENT(speed, 1, 1, do_i2c_bus_speed, "", ""),
1349};
1350
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02001351#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocherf1d2b312010-09-17 13:10:39 +02001352void i2c_reloc(void) {
1353 fixup_cmdtable(cmd_i2c_sub, ARRAY_SIZE(cmd_i2c_sub));
1354}
1355#endif
1356
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001357static int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001358{
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001359 cmd_tbl_t *c;
1360
Heiko Schocher4444b222010-09-17 13:10:35 +02001361 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001362 return CMD_RET_USAGE;
Heiko Schocher4444b222010-09-17 13:10:35 +02001363
Peter Tysere96ad5d2009-04-18 22:34:04 -05001364 /* Strip off leading 'i2c' command argument */
1365 argc--;
1366 argv++;
1367
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001368 c = find_cmd_tbl(argv[0], &cmd_i2c_sub[0], ARRAY_SIZE(cmd_i2c_sub));
1369
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001370 if (c)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001371 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001372 else
Simon Glass4c12eeb2011-12-10 08:44:01 +00001373 return CMD_RET_USAGE;
Ben Warrenbb99ad62006-09-07 16:50:54 -04001374}
wdenk8bde7f72003-06-27 21:31:46 +00001375
1376/***************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +00001377#ifdef CONFIG_SYS_LONGHELP
1378static char i2c_help_text[] =
Peter Tyser9166b772009-04-18 22:34:06 -05001379#if defined(CONFIG_I2C_MUX)
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001380 "bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes\ni2c "
Peter Tyser9166b772009-04-18 22:34:06 -05001381#endif /* CONFIG_I2C_MUX */
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001382 "crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001383#if defined(CONFIG_I2C_MULTI_BUS)
Peter Tyser9bc2e4e2008-10-01 12:25:04 -05001384 "i2c dev [dev] - show or set current I2C bus\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001385#endif /* CONFIG_I2C_MULTI_BUS */
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001386 "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001387 "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n"
1388 "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n"
1389 "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n"
1390 "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
Eric Nelson54b99e52012-09-23 10:12:56 +00001391 "i2c probe [address] - test for and show device(s) on the I2C bus\n"
Frans Meulenbroeks652e5352010-02-25 10:12:16 +01001392 "i2c read chip address[.0, .1, .2] length memaddress - read to memory \n"
York Sunff5d2dc2012-09-16 08:02:30 +00001393 "i2c write memaddress chip address[.0, .1, .2] length - write memory to i2c\n"
Heiko Schochere43a27c2008-10-15 09:33:30 +02001394 "i2c reset - re-init the I2C Controller\n"
Jon Loeligerc76fe472007-07-08 18:02:23 -05001395#if defined(CONFIG_CMD_SDRAM)
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001396 "i2c sdram chip - print SDRAM configuration information\n"
Jon Loeliger90253172007-07-10 11:02:44 -05001397#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001398 "i2c speed [speed] - show or set I2C bus speed";
1399#endif
1400
1401U_BOOT_CMD(
1402 i2c, 6, 1, do_i2c,
1403 "I2C sub-system",
1404 i2c_help_text
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001405);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001406
1407#if defined(CONFIG_I2C_MUX)
Frans Meulenbroeksfd03ea82010-03-26 09:46:42 +01001408static int i2c_mux_add_device(I2C_MUX_DEVICE *dev)
Heiko Schocher67b23a32008-10-15 09:39:47 +02001409{
1410 I2C_MUX_DEVICE *devtmp = i2c_mux_devices;
1411
1412 if (i2c_mux_devices == NULL) {
1413 i2c_mux_devices = dev;
1414 return 0;
1415 }
1416 while (devtmp->next != NULL)
1417 devtmp = devtmp->next;
1418
1419 devtmp->next = dev;
1420 return 0;
1421}
1422
1423I2C_MUX_DEVICE *i2c_mux_search_device(int id)
1424{
1425 I2C_MUX_DEVICE *device = i2c_mux_devices;
1426
1427 while (device != NULL) {
1428 if (device->busid == id)
1429 return device;
1430 device = device->next;
1431 }
1432 return NULL;
1433}
1434
1435/* searches in the buf from *pos the next ':'.
1436 * returns:
1437 * 0 if found (with *pos = where)
1438 * < 0 if an error occured
1439 * > 0 if the end of buf is reached
1440 */
1441static int i2c_mux_search_next (int *pos, uchar *buf, int len)
1442{
1443 while ((buf[*pos] != ':') && (*pos < len)) {
1444 *pos += 1;
1445 }
1446 if (*pos >= len)
1447 return 1;
1448 if (buf[*pos] != ':')
1449 return -1;
1450 return 0;
1451}
1452
1453static int i2c_mux_get_busid (void)
1454{
1455 int tmp = i2c_mux_busid;
1456
1457 i2c_mux_busid ++;
1458 return tmp;
1459}
1460
Michael Jonesf9a78b82011-07-14 22:09:28 +00001461/* Analyses a Muxstring and immediately sends the
1462 commands to the muxes. Runs from flash.
Heiko Schocher67b23a32008-10-15 09:39:47 +02001463 */
1464int i2c_mux_ident_muxstring_f (uchar *buf)
1465{
1466 int pos = 0;
1467 int oldpos;
1468 int ret = 0;
1469 int len = strlen((char *)buf);
1470 int chip;
1471 uchar channel;
1472 int was = 0;
1473
1474 while (ret == 0) {
1475 oldpos = pos;
1476 /* search name */
1477 ret = i2c_mux_search_next(&pos, buf, len);
1478 if (ret != 0)
1479 printf ("ERROR\n");
1480 /* search address */
1481 pos ++;
1482 oldpos = pos;
1483 ret = i2c_mux_search_next(&pos, buf, len);
1484 if (ret != 0)
1485 printf ("ERROR\n");
1486 buf[pos] = 0;
1487 chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1488 buf[pos] = ':';
1489 /* search channel */
1490 pos ++;
1491 oldpos = pos;
1492 ret = i2c_mux_search_next(&pos, buf, len);
1493 if (ret < 0)
1494 printf ("ERROR\n");
1495 was = 0;
1496 if (buf[pos] != 0) {
1497 buf[pos] = 0;
1498 was = 1;
1499 }
1500 channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1501 if (was)
1502 buf[pos] = ':';
1503 if (i2c_write(chip, 0, 0, &channel, 1) != 0) {
1504 printf ("Error setting Mux: chip:%x channel: \
1505 %x\n", chip, channel);
1506 return -1;
1507 }
1508 pos ++;
1509 oldpos = pos;
1510
1511 }
Holger Brunck8ec038a2012-06-28 04:30:22 +00001512 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001513
1514 return 0;
1515}
1516
1517/* Analyses a Muxstring and if this String is correct
1518 * adds a new I2C Bus.
1519 */
1520I2C_MUX_DEVICE *i2c_mux_ident_muxstring (uchar *buf)
1521{
1522 I2C_MUX_DEVICE *device;
1523 I2C_MUX *mux;
1524 int pos = 0;
1525 int oldpos;
1526 int ret = 0;
1527 int len = strlen((char *)buf);
1528 int was = 0;
1529
1530 device = (I2C_MUX_DEVICE *)malloc (sizeof(I2C_MUX_DEVICE));
1531 device->mux = NULL;
1532 device->busid = i2c_mux_get_busid ();
1533 device->next = NULL;
1534 while (ret == 0) {
1535 mux = (I2C_MUX *)malloc (sizeof(I2C_MUX));
1536 mux->next = NULL;
1537 /* search name of mux */
1538 oldpos = pos;
1539 ret = i2c_mux_search_next(&pos, buf, len);
1540 if (ret != 0)
1541 printf ("%s no name.\n", __FUNCTION__);
1542 mux->name = (char *)malloc (pos - oldpos + 1);
1543 memcpy (mux->name, &buf[oldpos], pos - oldpos);
1544 mux->name[pos - oldpos] = 0;
1545 /* search address */
1546 pos ++;
1547 oldpos = pos;
1548 ret = i2c_mux_search_next(&pos, buf, len);
1549 if (ret != 0)
1550 printf ("%s no mux address.\n", __FUNCTION__);
1551 buf[pos] = 0;
1552 mux->chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1553 buf[pos] = ':';
1554 /* search channel */
1555 pos ++;
1556 oldpos = pos;
1557 ret = i2c_mux_search_next(&pos, buf, len);
1558 if (ret < 0)
1559 printf ("%s no mux channel.\n", __FUNCTION__);
1560 was = 0;
1561 if (buf[pos] != 0) {
1562 buf[pos] = 0;
1563 was = 1;
1564 }
1565 mux->channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1566 if (was)
1567 buf[pos] = ':';
1568 if (device->mux == NULL)
1569 device->mux = mux;
1570 else {
1571 I2C_MUX *muxtmp = device->mux;
1572 while (muxtmp->next != NULL) {
1573 muxtmp = muxtmp->next;
1574 }
1575 muxtmp->next = mux;
1576 }
1577 pos ++;
1578 oldpos = pos;
1579 }
1580 if (ret > 0) {
1581 /* Add Device */
1582 i2c_mux_add_device (device);
1583 return device;
1584 }
1585
1586 return NULL;
1587}
1588
1589int i2x_mux_select_mux(int bus)
1590{
1591 I2C_MUX_DEVICE *dev;
1592 I2C_MUX *mux;
1593
1594 if ((gd->flags & GD_FLG_RELOC) != GD_FLG_RELOC) {
1595 /* select Default Mux Bus */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001596#if defined(CONFIG_SYS_I2C_IVM_BUS)
1597 i2c_mux_ident_muxstring_f ((uchar *)CONFIG_SYS_I2C_IVM_BUS);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001598#else
1599 {
1600 unsigned char *buf;
1601 buf = (unsigned char *) getenv("EEprom_ivm");
1602 if (buf != NULL)
1603 i2c_mux_ident_muxstring_f (buf);
1604 }
1605#endif
1606 return 0;
1607 }
1608 dev = i2c_mux_search_device(bus);
1609 if (dev == NULL)
1610 return -1;
1611
1612 mux = dev->mux;
1613 while (mux != NULL) {
Stefan Biglerc649dda2011-04-08 16:24:08 +02001614 /* do deblocking on each level of mux, before mux config */
1615 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001616 if (i2c_write(mux->chip, 0, 0, &mux->channel, 1) != 0) {
1617 printf ("Error setting Mux: chip:%x channel: \
1618 %x\n", mux->chip, mux->channel);
1619 return -1;
1620 }
1621 mux = mux->next;
1622 }
Stefan Biglerc649dda2011-04-08 16:24:08 +02001623 /* do deblocking on each level of mux and after mux config */
1624 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001625 return 0;
1626}
1627#endif /* CONFIG_I2C_MUX */