blob: e7df2e42be053b938ed6173c65b1d2de7f0f0a71 [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
Marek Vasut06afa382012-11-12 14:34:27 +0000136/**
137 * i2c_init_board() - Board-specific I2C bus init
138 *
139 * This function is the default no-op implementation of I2C bus
140 * initialization. This function can be overriden by board-specific
141 * implementation if needed.
142 */
Marek Vasut2515d842012-11-12 14:34:25 +0000143__weak
144void i2c_init_board(void)
Stefan Biglerc649dda2011-04-08 16:24:08 +0200145{
146 return;
147}
Stefan Biglerc649dda2011-04-08 16:24:08 +0200148
Peter Tyser655b34a2009-04-18 22:34:01 -0500149/* TODO: Implement architecture-specific get/set functions */
Marek Vasut06afa382012-11-12 14:34:27 +0000150
151/**
152 * i2c_get_bus_speed() - Return I2C bus speed
153 *
154 * This function is the default implementation of function for retrieveing
155 * the current I2C bus speed in Hz.
156 *
157 * A driver implementing runtime switching of I2C bus speed must override
158 * this function to report the speed correctly. Simple or legacy drivers
159 * can use this fallback.
160 *
161 * Returns I2C bus speed in Hz.
162 */
Marek Vasut2515d842012-11-12 14:34:25 +0000163__weak
164unsigned int i2c_get_bus_speed(void)
Peter Tyser655b34a2009-04-18 22:34:01 -0500165{
166 return CONFIG_SYS_I2C_SPEED;
167}
Peter Tyser655b34a2009-04-18 22:34:01 -0500168
Marek Vasut06afa382012-11-12 14:34:27 +0000169/**
170 * i2c_set_bus_speed() - Configure I2C bus speed
171 * @speed: Newly set speed of the I2C bus in Hz
172 *
173 * This function is the default implementation of function for setting
174 * the I2C bus speed in Hz.
175 *
176 * A driver implementing runtime switching of I2C bus speed must override
177 * this function to report the speed correctly. Simple or legacy drivers
178 * can use this fallback.
179 *
180 * Returns zero on success, negative value on error.
181 */
Marek Vasut2515d842012-11-12 14:34:25 +0000182__weak
183int i2c_set_bus_speed(unsigned int speed)
Peter Tyser655b34a2009-04-18 22:34:01 -0500184{
185 if (speed != CONFIG_SYS_I2C_SPEED)
186 return -1;
187
188 return 0;
189}
Peter Tyser655b34a2009-04-18 22:34:01 -0500190
Marek Vasut06afa382012-11-12 14:34:27 +0000191/**
192 * get_alen() - Small parser helper function to get address length
193 *
194 * Returns the address length.
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100195 */
196static uint get_alen(char *arg)
197{
198 int j;
199 int alen;
200
201 alen = 1;
202 for (j = 0; j < 8; j++) {
203 if (arg[j] == '.') {
204 alen = arg[j+1] - '0';
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100205 break;
206 } else if (arg[j] == '\0')
207 break;
208 }
209 return alen;
210}
211
Marek Vasut06afa382012-11-12 14:34:27 +0000212/**
213 * do_i2c_read() - Handle the "i2c read" command-line command
214 * @cmdtp: Command data struct pointer
215 * @flag: Command flag
216 * @argc: Command-line argument count
217 * @argv: Array of command-line arguments
218 *
219 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
220 * on error.
221 *
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100222 * Syntax:
223 * i2c read {i2c_chip} {devaddr}{.0, .1, .2} {len} {memaddr}
224 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200225static int do_i2c_read ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100226{
227 u_char chip;
228 uint devaddr, alen, length;
229 u_char *memaddr;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100230
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200231 if (argc != 5)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000232 return CMD_RET_USAGE;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100233
234 /*
235 * I2C chip address
236 */
237 chip = simple_strtoul(argv[1], NULL, 16);
238
239 /*
240 * I2C data address within the chip. This can be 1 or
241 * 2 bytes long. Some day it might be 3 bytes long :-).
242 */
243 devaddr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100244 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200245 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000246 return CMD_RET_USAGE;
Frans Meulenbroeks652e5352010-02-25 10:12:16 +0100247
248 /*
249 * Length is the number of objects, not number of bytes.
250 */
251 length = simple_strtoul(argv[3], NULL, 16);
252
253 /*
254 * memaddr is the address where to store things in memory
255 */
256 memaddr = (u_char *)simple_strtoul(argv[4], NULL, 16);
257
258 if (i2c_read(chip, devaddr, alen, memaddr, length) != 0) {
259 puts ("Error reading the chip.\n");
260 return 1;
261 }
262 return 0;
263}
264
York Sunff5d2dc2012-09-16 08:02:30 +0000265static int do_i2c_write(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
266{
267 u_char chip;
268 uint devaddr, alen, length;
269 u_char *memaddr;
270
271 if (argc != 5)
272 return cmd_usage(cmdtp);
273
274 /*
275 * memaddr is the address where to store things in memory
276 */
277 memaddr = (u_char *)simple_strtoul(argv[1], NULL, 16);
278
279 /*
280 * I2C chip address
281 */
282 chip = simple_strtoul(argv[2], NULL, 16);
283
284 /*
285 * I2C data address within the chip. This can be 1 or
286 * 2 bytes long. Some day it might be 3 bytes long :-).
287 */
288 devaddr = simple_strtoul(argv[3], NULL, 16);
289 alen = get_alen(argv[3]);
290 if (alen > 3)
291 return cmd_usage(cmdtp);
292
293 /*
294 * Length is the number of objects, not number of bytes.
295 */
296 length = simple_strtoul(argv[4], NULL, 16);
297
298 while (length-- > 0) {
299 if (i2c_write(chip, devaddr++, alen, memaddr++, 1) != 0) {
300 puts("Error writing to the chip.\n");
301 return 1;
302 }
303/*
304 * No write delay with FRAM devices.
305 */
306#if !defined(CONFIG_SYS_I2C_FRAM)
307 udelay(11000);
308#endif
309 }
310 return 0;
311}
312
Marek Vasut06afa382012-11-12 14:34:27 +0000313/**
314 * do_i2c_md() - Handle the "i2c md" command-line command
315 * @cmdtp: Command data struct pointer
316 * @flag: Command flag
317 * @argc: Command-line argument count
318 * @argv: Array of command-line arguments
319 *
320 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
321 * on error.
322 *
Frans Meulenbroeks4a8cf332010-03-26 09:46:39 +0100323 * Syntax:
324 * i2c md {i2c_chip} {addr}{.0, .1, .2} {len}
325 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200326static int do_i2c_md ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000327{
328 u_char chip;
329 uint addr, alen, length;
330 int j, nbytes, linebytes;
331
332 /* We use the last specified parameters, unless new ones are
333 * entered.
334 */
335 chip = i2c_dp_last_chip;
336 addr = i2c_dp_last_addr;
337 alen = i2c_dp_last_alen;
338 length = i2c_dp_last_length;
339
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200340 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000341 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000342
343 if ((flag & CMD_FLAG_REPEAT) == 0) {
344 /*
345 * New command specified.
346 */
wdenk81a88242002-10-26 15:22:42 +0000347
348 /*
349 * I2C chip address
350 */
351 chip = simple_strtoul(argv[1], NULL, 16);
352
353 /*
354 * I2C data address within the chip. This can be 1 or
355 * 2 bytes long. Some day it might be 3 bytes long :-).
356 */
357 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100358 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200359 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000360 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000361
362 /*
363 * If another parameter, it is the length to display.
364 * Length is the number of objects, not number of bytes.
365 */
366 if (argc > 3)
367 length = simple_strtoul(argv[3], NULL, 16);
368 }
369
370 /*
371 * Print the lines.
372 *
373 * We buffer all read data, so we can make sure data is read only
374 * once.
375 */
376 nbytes = length;
377 do {
378 unsigned char linebuf[DISP_LINE_LEN];
379 unsigned char *cp;
380
381 linebytes = (nbytes > DISP_LINE_LEN) ? DISP_LINE_LEN : nbytes;
382
Timur Tabie857a5b2006-11-28 12:09:35 -0600383 if (i2c_read(chip, addr, alen, linebuf, linebytes) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000384 puts ("Error reading the chip.\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600385 else {
wdenk81a88242002-10-26 15:22:42 +0000386 printf("%04x:", addr);
387 cp = linebuf;
388 for (j=0; j<linebytes; j++) {
389 printf(" %02x", *cp++);
390 addr++;
391 }
wdenk4b9206e2004-03-23 22:14:11 +0000392 puts (" ");
wdenk81a88242002-10-26 15:22:42 +0000393 cp = linebuf;
394 for (j=0; j<linebytes; j++) {
395 if ((*cp < 0x20) || (*cp > 0x7e))
wdenk4b9206e2004-03-23 22:14:11 +0000396 puts (".");
wdenk81a88242002-10-26 15:22:42 +0000397 else
398 printf("%c", *cp);
399 cp++;
400 }
wdenk4b9206e2004-03-23 22:14:11 +0000401 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000402 }
403 nbytes -= linebytes;
404 } while (nbytes > 0);
405
406 i2c_dp_last_chip = chip;
407 i2c_dp_last_addr = addr;
408 i2c_dp_last_alen = alen;
409 i2c_dp_last_length = length;
410
411 return 0;
412}
413
Marek Vasut06afa382012-11-12 14:34:27 +0000414/**
415 * do_i2c_mw() - Handle the "i2c mw" command-line command
416 * @cmdtp: Command data struct pointer
417 * @flag: Command flag
418 * @argc: Command-line argument count
419 * @argv: Array of command-line arguments
420 *
421 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
422 * on error.
wdenk81a88242002-10-26 15:22:42 +0000423 *
424 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500425 * i2c mw {i2c_chip} {addr}{.0, .1, .2} {data} [{count}]
wdenk81a88242002-10-26 15:22:42 +0000426 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200427static int do_i2c_mw ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000428{
429 uchar chip;
430 ulong addr;
431 uint alen;
432 uchar byte;
433 int count;
wdenk81a88242002-10-26 15:22:42 +0000434
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200435 if ((argc < 4) || (argc > 5))
Simon Glass4c12eeb2011-12-10 08:44:01 +0000436 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000437
438 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200439 * Chip is always specified.
440 */
wdenk81a88242002-10-26 15:22:42 +0000441 chip = simple_strtoul(argv[1], NULL, 16);
442
443 /*
444 * Address is always specified.
445 */
446 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100447 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200448 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000449 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000450
451 /*
452 * Value to write is always specified.
453 */
454 byte = simple_strtoul(argv[3], NULL, 16);
455
456 /*
457 * Optional count
458 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600459 if (argc == 5)
wdenk81a88242002-10-26 15:22:42 +0000460 count = simple_strtoul(argv[4], NULL, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600461 else
wdenk81a88242002-10-26 15:22:42 +0000462 count = 1;
wdenk81a88242002-10-26 15:22:42 +0000463
464 while (count-- > 0) {
Timur Tabie857a5b2006-11-28 12:09:35 -0600465 if (i2c_write(chip, addr++, alen, &byte, 1) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000466 puts ("Error writing the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000467 /*
468 * Wait for the write to complete. The write can take
469 * up to 10mSec (we allow a little more time).
wdenk81a88242002-10-26 15:22:42 +0000470 */
d4f5c722005-08-12 21:16:13 +0200471/*
472 * No write delay with FRAM devices.
473 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200474#if !defined(CONFIG_SYS_I2C_FRAM)
wdenk81a88242002-10-26 15:22:42 +0000475 udelay(11000);
d4f5c722005-08-12 21:16:13 +0200476#endif
wdenk81a88242002-10-26 15:22:42 +0000477 }
478
Marek Vasut06afa382012-11-12 14:34:27 +0000479 return 0;
wdenk81a88242002-10-26 15:22:42 +0000480}
481
Marek Vasut06afa382012-11-12 14:34:27 +0000482/**
483 * do_i2c_crc() - Handle the "i2c crc32" command-line command
484 * @cmdtp: Command data struct pointer
485 * @flag: Command flag
486 * @argc: Command-line argument count
487 * @argv: Array of command-line arguments
488 *
489 * Calculate a CRC on memory
490 *
491 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
492 * on error.
wdenk81a88242002-10-26 15:22:42 +0000493 *
494 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500495 * i2c crc32 {i2c_chip} {addr}{.0, .1, .2} {count}
wdenk81a88242002-10-26 15:22:42 +0000496 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200497static int do_i2c_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000498{
499 uchar chip;
500 ulong addr;
501 uint alen;
502 int count;
503 uchar byte;
504 ulong crc;
505 ulong err;
wdenk81a88242002-10-26 15:22:42 +0000506
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200507 if (argc < 4)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000508 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000509
510 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200511 * Chip is always specified.
512 */
wdenk81a88242002-10-26 15:22:42 +0000513 chip = simple_strtoul(argv[1], NULL, 16);
514
515 /*
516 * Address is always specified.
517 */
518 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100519 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200520 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000521 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000522
523 /*
524 * Count is always specified
525 */
526 count = simple_strtoul(argv[3], NULL, 16);
527
528 printf ("CRC32 for %08lx ... %08lx ==> ", addr, addr + count - 1);
529 /*
530 * CRC a byte at a time. This is going to be slooow, but hey, the
531 * memories are small and slow too so hopefully nobody notices.
532 */
533 crc = 0;
534 err = 0;
Timur Tabie857a5b2006-11-28 12:09:35 -0600535 while (count-- > 0) {
536 if (i2c_read(chip, addr, alen, &byte, 1) != 0)
wdenk81a88242002-10-26 15:22:42 +0000537 err++;
wdenk81a88242002-10-26 15:22:42 +0000538 crc = crc32 (crc, &byte, 1);
539 addr++;
540 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600541 if (err > 0)
wdenk4b9206e2004-03-23 22:14:11 +0000542 puts ("Error reading the chip,\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600543 else
wdenk81a88242002-10-26 15:22:42 +0000544 printf ("%08lx\n", crc);
wdenk81a88242002-10-26 15:22:42 +0000545
546 return 0;
547}
548
Marek Vasut06afa382012-11-12 14:34:27 +0000549/**
550 * mod_i2c_mem() - Handle the "i2c mm" and "i2c nm" command-line command
551 * @cmdtp: Command data struct pointer
552 * @flag: Command flag
553 * @argc: Command-line argument count
554 * @argv: Array of command-line arguments
555 *
556 * Modify memory.
557 *
558 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
559 * on error.
wdenk81a88242002-10-26 15:22:42 +0000560 *
561 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500562 * i2c mm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
563 * i2c nm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
wdenk81a88242002-10-26 15:22:42 +0000564 */
wdenk81a88242002-10-26 15:22:42 +0000565static int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200566mod_i2c_mem(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000567{
568 uchar chip;
569 ulong addr;
570 uint alen;
571 ulong data;
572 int size = 1;
573 int nbytes;
wdenk81a88242002-10-26 15:22:42 +0000574
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200575 if (argc != 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000576 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000577
578#ifdef CONFIG_BOOT_RETRY_TIME
579 reset_cmd_timeout(); /* got a good command to get here */
580#endif
581 /*
582 * We use the last specified parameters, unless new ones are
583 * entered.
584 */
585 chip = i2c_mm_last_chip;
586 addr = i2c_mm_last_addr;
587 alen = i2c_mm_last_alen;
588
589 if ((flag & CMD_FLAG_REPEAT) == 0) {
590 /*
591 * New command specified. Check for a size specification.
592 * Defaults to byte if no or incorrect specification.
593 */
594 size = cmd_get_data_size(argv[0], 1);
595
596 /*
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200597 * Chip is always specified.
598 */
wdenk81a88242002-10-26 15:22:42 +0000599 chip = simple_strtoul(argv[1], NULL, 16);
600
601 /*
602 * Address is always specified.
603 */
604 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100605 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200606 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000607 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000608 }
609
610 /*
611 * Print the address, followed by value. Then accept input for
612 * the next value. A non-converted value exits.
613 */
614 do {
615 printf("%08lx:", addr);
Timur Tabie857a5b2006-11-28 12:09:35 -0600616 if (i2c_read(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000617 puts ("\nError reading the chip,\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600618 else {
wdenk81a88242002-10-26 15:22:42 +0000619 data = cpu_to_be32(data);
Timur Tabie857a5b2006-11-28 12:09:35 -0600620 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000621 printf(" %02lx", (data >> 24) & 0x000000FF);
Timur Tabie857a5b2006-11-28 12:09:35 -0600622 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000623 printf(" %04lx", (data >> 16) & 0x0000FFFF);
Timur Tabie857a5b2006-11-28 12:09:35 -0600624 else
wdenk81a88242002-10-26 15:22:42 +0000625 printf(" %08lx", data);
wdenk81a88242002-10-26 15:22:42 +0000626 }
627
628 nbytes = readline (" ? ");
629 if (nbytes == 0) {
630 /*
631 * <CR> pressed as only input, don't modify current
632 * location and move to next.
633 */
634 if (incrflag)
635 addr += size;
636 nbytes = size;
637#ifdef CONFIG_BOOT_RETRY_TIME
638 reset_cmd_timeout(); /* good enough to not time out */
639#endif
640 }
641#ifdef CONFIG_BOOT_RETRY_TIME
Timur Tabie857a5b2006-11-28 12:09:35 -0600642 else if (nbytes == -2)
wdenk81a88242002-10-26 15:22:42 +0000643 break; /* timed out, exit the command */
wdenk81a88242002-10-26 15:22:42 +0000644#endif
645 else {
646 char *endp;
647
648 data = simple_strtoul(console_buffer, &endp, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600649 if (size == 1)
wdenk81a88242002-10-26 15:22:42 +0000650 data = data << 24;
Timur Tabie857a5b2006-11-28 12:09:35 -0600651 else if (size == 2)
wdenk81a88242002-10-26 15:22:42 +0000652 data = data << 16;
wdenk81a88242002-10-26 15:22:42 +0000653 data = be32_to_cpu(data);
654 nbytes = endp - console_buffer;
655 if (nbytes) {
656#ifdef CONFIG_BOOT_RETRY_TIME
657 /*
658 * good enough to not time out
659 */
660 reset_cmd_timeout();
661#endif
Timur Tabie857a5b2006-11-28 12:09:35 -0600662 if (i2c_write(chip, addr, alen, (uchar *)&data, size) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000663 puts ("Error writing the chip.\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200664#ifdef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
665 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
wdenk2535d602003-07-17 23:16:40 +0000666#endif
wdenk81a88242002-10-26 15:22:42 +0000667 if (incrflag)
668 addr += size;
669 }
670 }
671 } while (nbytes);
672
Peter Tyser08007072008-08-15 14:36:32 -0500673 i2c_mm_last_chip = chip;
674 i2c_mm_last_addr = addr;
675 i2c_mm_last_alen = alen;
wdenk81a88242002-10-26 15:22:42 +0000676
677 return 0;
678}
679
Marek Vasut06afa382012-11-12 14:34:27 +0000680/**
681 * do_i2c_probe() - Handle the "i2c probe" command-line command
682 * @cmdtp: Command data struct pointer
683 * @flag: Command flag
684 * @argc: Command-line argument count
685 * @argv: Array of command-line arguments
686 *
687 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
688 * on error.
689 *
wdenk81a88242002-10-26 15:22:42 +0000690 * Syntax:
Eric Nelson54b99e52012-09-23 10:12:56 +0000691 * i2c probe {addr}
692 *
693 * Returns zero (success) if one or more I2C devices was found
wdenk81a88242002-10-26 15:22:42 +0000694 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200695static int do_i2c_probe (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000696{
697 int j;
Eric Nelson54b99e52012-09-23 10:12:56 +0000698 int addr = -1;
699 int found = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200700#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000701 int k, skip;
Ben Warrenbb99ad62006-09-07 16:50:54 -0400702 uchar bus = GET_BUS_NUM;
703#endif /* NOPROBES */
wdenk81a88242002-10-26 15:22:42 +0000704
Eric Nelson54b99e52012-09-23 10:12:56 +0000705 if (argc == 2)
706 addr = simple_strtol(argv[1], 0, 16);
707
wdenk4b9206e2004-03-23 22:14:11 +0000708 puts ("Valid chip addresses:");
Timur Tabie857a5b2006-11-28 12:09:35 -0600709 for (j = 0; j < 128; j++) {
Eric Nelson54b99e52012-09-23 10:12:56 +0000710 if ((0 <= addr) && (j != addr))
711 continue;
712
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200713#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000714 skip = 0;
Timur Tabie857a5b2006-11-28 12:09:35 -0600715 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
716 if (COMPARE_BUS(bus, k) && COMPARE_ADDR(j, k)) {
wdenk81a88242002-10-26 15:22:42 +0000717 skip = 1;
718 break;
719 }
720 }
721 if (skip)
722 continue;
723#endif
Eric Nelson54b99e52012-09-23 10:12:56 +0000724 if (i2c_probe(j) == 0) {
wdenk81a88242002-10-26 15:22:42 +0000725 printf(" %02X", j);
Eric Nelson54b99e52012-09-23 10:12:56 +0000726 found++;
727 }
wdenk81a88242002-10-26 15:22:42 +0000728 }
wdenk4b9206e2004-03-23 22:14:11 +0000729 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000730
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200731#if defined(CONFIG_SYS_I2C_NOPROBES)
wdenk81a88242002-10-26 15:22:42 +0000732 puts ("Excluded chip addresses:");
Timur Tabie857a5b2006-11-28 12:09:35 -0600733 for (k=0; k < NUM_ELEMENTS_NOPROBE; k++) {
734 if (COMPARE_BUS(bus,k))
Ben Warrenbb99ad62006-09-07 16:50:54 -0400735 printf(" %02X", NO_PROBE_ADDR(k));
736 }
wdenk4b9206e2004-03-23 22:14:11 +0000737 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +0000738#endif
739
Eric Nelson54b99e52012-09-23 10:12:56 +0000740 return (0 == found);
wdenk81a88242002-10-26 15:22:42 +0000741}
742
Marek Vasut06afa382012-11-12 14:34:27 +0000743/**
744 * do_i2c_loop() - Handle the "i2c loop" 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 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
751 * on error.
752 *
wdenk81a88242002-10-26 15:22:42 +0000753 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500754 * i2c loop {i2c_chip} {addr}{.0, .1, .2} [{length}] [{delay}]
wdenk81a88242002-10-26 15:22:42 +0000755 * {length} - Number of bytes to read
756 * {delay} - A DECIMAL number and defaults to 1000 uSec
757 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200758static int do_i2c_loop(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000759{
760 u_char chip;
761 ulong alen;
762 uint addr;
763 uint length;
764 u_char bytes[16];
765 int delay;
wdenk81a88242002-10-26 15:22:42 +0000766
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200767 if (argc < 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000768 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000769
770 /*
771 * Chip is always specified.
772 */
773 chip = simple_strtoul(argv[1], NULL, 16);
774
775 /*
776 * Address is always specified.
777 */
778 addr = simple_strtoul(argv[2], NULL, 16);
Frans Meulenbroeks2c0dc992010-03-26 09:46:41 +0100779 alen = get_alen(argv[2]);
Reinhard Meyer7a92e532010-08-25 14:41:16 +0200780 if (alen > 3)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000781 return CMD_RET_USAGE;
wdenk81a88242002-10-26 15:22:42 +0000782
783 /*
784 * Length is the number of objects, not number of bytes.
785 */
786 length = 1;
787 length = simple_strtoul(argv[3], NULL, 16);
Timur Tabie857a5b2006-11-28 12:09:35 -0600788 if (length > sizeof(bytes))
wdenk81a88242002-10-26 15:22:42 +0000789 length = sizeof(bytes);
wdenk81a88242002-10-26 15:22:42 +0000790
791 /*
792 * The delay time (uSec) is optional.
793 */
794 delay = 1000;
Timur Tabie857a5b2006-11-28 12:09:35 -0600795 if (argc > 3)
wdenk81a88242002-10-26 15:22:42 +0000796 delay = simple_strtoul(argv[4], NULL, 10);
wdenk81a88242002-10-26 15:22:42 +0000797 /*
798 * Run the loop...
799 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600800 while (1) {
801 if (i2c_read(chip, addr, alen, bytes, length) != 0)
wdenk4b9206e2004-03-23 22:14:11 +0000802 puts ("Error reading the chip.\n");
wdenk81a88242002-10-26 15:22:42 +0000803 udelay(delay);
804 }
805
806 /* NOTREACHED */
807 return 0;
808}
809
wdenk81a88242002-10-26 15:22:42 +0000810/*
811 * The SDRAM command is separately configured because many
812 * (most?) embedded boards don't use SDRAM DIMMs.
Marek Vasut06afa382012-11-12 14:34:27 +0000813 *
814 * FIXME: Document and probably move elsewhere!
wdenk81a88242002-10-26 15:22:42 +0000815 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500816#if defined(CONFIG_CMD_SDRAM)
Larry Johnson632de062008-01-11 23:26:18 -0500817static void print_ddr2_tcyc (u_char const b)
818{
819 printf ("%d.", (b >> 4) & 0x0F);
820 switch (b & 0x0F) {
821 case 0x0:
822 case 0x1:
823 case 0x2:
824 case 0x3:
825 case 0x4:
826 case 0x5:
827 case 0x6:
828 case 0x7:
829 case 0x8:
830 case 0x9:
831 printf ("%d ns\n", b & 0x0F);
832 break;
833 case 0xA:
834 puts ("25 ns\n");
835 break;
836 case 0xB:
837 puts ("33 ns\n");
838 break;
839 case 0xC:
840 puts ("66 ns\n");
841 break;
842 case 0xD:
843 puts ("75 ns\n");
844 break;
845 default:
846 puts ("?? ns\n");
847 break;
848 }
849}
850
851static void decode_bits (u_char const b, char const *str[], int const do_once)
852{
853 u_char mask;
854
855 for (mask = 0x80; mask != 0x00; mask >>= 1, ++str) {
856 if (b & mask) {
857 puts (*str);
858 if (do_once)
859 return;
860 }
861 }
862}
wdenk81a88242002-10-26 15:22:42 +0000863
864/*
865 * Syntax:
Peter Tyser0f89c542009-04-18 22:34:03 -0500866 * i2c sdram {i2c_chip}
wdenk81a88242002-10-26 15:22:42 +0000867 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200868static int do_sdram (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk81a88242002-10-26 15:22:42 +0000869{
Larry Johnson632de062008-01-11 23:26:18 -0500870 enum { unknown, EDO, SDRAM, DDR2 } type;
871
wdenk81a88242002-10-26 15:22:42 +0000872 u_char chip;
873 u_char data[128];
874 u_char cksum;
875 int j;
876
Larry Johnson632de062008-01-11 23:26:18 -0500877 static const char *decode_CAS_DDR2[] = {
878 " TBD", " 6", " 5", " 4", " 3", " 2", " TBD", " TBD"
879 };
880
881 static const char *decode_CAS_default[] = {
882 " TBD", " 7", " 6", " 5", " 4", " 3", " 2", " 1"
883 };
884
885 static const char *decode_CS_WE_default[] = {
886 " TBD", " 6", " 5", " 4", " 3", " 2", " 1", " 0"
887 };
888
889 static const char *decode_byte21_default[] = {
890 " TBD (bit 7)\n",
891 " Redundant row address\n",
892 " Differential clock input\n",
893 " Registerd DQMB inputs\n",
894 " Buffered DQMB inputs\n",
895 " On-card PLL\n",
896 " Registered address/control lines\n",
897 " Buffered address/control lines\n"
898 };
899
900 static const char *decode_byte22_DDR2[] = {
901 " TBD (bit 7)\n",
902 " TBD (bit 6)\n",
903 " TBD (bit 5)\n",
904 " TBD (bit 4)\n",
905 " TBD (bit 3)\n",
906 " Supports partial array self refresh\n",
907 " Supports 50 ohm ODT\n",
908 " Supports weak driver\n"
909 };
910
911 static const char *decode_row_density_DDR2[] = {
912 "512 MiB", "256 MiB", "128 MiB", "16 GiB",
913 "8 GiB", "4 GiB", "2 GiB", "1 GiB"
914 };
915
916 static const char *decode_row_density_default[] = {
917 "512 MiB", "256 MiB", "128 MiB", "64 MiB",
918 "32 MiB", "16 MiB", "8 MiB", "4 MiB"
919 };
920
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200921 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000922 return CMD_RET_USAGE;
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200923
wdenk81a88242002-10-26 15:22:42 +0000924 /*
925 * Chip is always specified.
Larry Johnson632de062008-01-11 23:26:18 -0500926 */
927 chip = simple_strtoul (argv[1], NULL, 16);
wdenk81a88242002-10-26 15:22:42 +0000928
Larry Johnson632de062008-01-11 23:26:18 -0500929 if (i2c_read (chip, 0, 1, data, sizeof (data)) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000930 puts ("No SDRAM Serial Presence Detect found.\n");
wdenk81a88242002-10-26 15:22:42 +0000931 return 1;
932 }
933
934 cksum = 0;
935 for (j = 0; j < 63; j++) {
936 cksum += data[j];
937 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600938 if (cksum != data[63]) {
wdenk81a88242002-10-26 15:22:42 +0000939 printf ("WARNING: Configuration data checksum failure:\n"
Larry Johnson632de062008-01-11 23:26:18 -0500940 " is 0x%02x, calculated 0x%02x\n", data[63], cksum);
wdenk81a88242002-10-26 15:22:42 +0000941 }
Larry Johnson632de062008-01-11 23:26:18 -0500942 printf ("SPD data revision %d.%d\n",
wdenk81a88242002-10-26 15:22:42 +0000943 (data[62] >> 4) & 0x0F, data[62] & 0x0F);
Larry Johnson632de062008-01-11 23:26:18 -0500944 printf ("Bytes used 0x%02X\n", data[0]);
945 printf ("Serial memory size 0x%02X\n", 1 << data[1]);
946
wdenk4b9206e2004-03-23 22:14:11 +0000947 puts ("Memory type ");
Larry Johnson632de062008-01-11 23:26:18 -0500948 switch (data[2]) {
Larry Johnson0df6b842008-01-10 22:23:39 -0500949 case 2:
950 type = EDO;
951 puts ("EDO\n");
952 break;
953 case 4:
954 type = SDRAM;
955 puts ("SDRAM\n");
956 break;
957 case 8:
958 type = DDR2;
959 puts ("DDR2\n");
960 break;
961 default:
962 type = unknown;
963 puts ("unknown\n");
964 break;
wdenk81a88242002-10-26 15:22:42 +0000965 }
Larry Johnson632de062008-01-11 23:26:18 -0500966
wdenk4b9206e2004-03-23 22:14:11 +0000967 puts ("Row address bits ");
Timur Tabie857a5b2006-11-28 12:09:35 -0600968 if ((data[3] & 0x00F0) == 0)
Larry Johnson632de062008-01-11 23:26:18 -0500969 printf ("%d\n", data[3] & 0x0F);
Timur Tabie857a5b2006-11-28 12:09:35 -0600970 else
Larry Johnson632de062008-01-11 23:26:18 -0500971 printf ("%d/%d\n", data[3] & 0x0F, (data[3] >> 4) & 0x0F);
972
wdenk4b9206e2004-03-23 22:14:11 +0000973 puts ("Column address bits ");
Timur Tabie857a5b2006-11-28 12:09:35 -0600974 if ((data[4] & 0x00F0) == 0)
Larry Johnson632de062008-01-11 23:26:18 -0500975 printf ("%d\n", data[4] & 0x0F);
Timur Tabie857a5b2006-11-28 12:09:35 -0600976 else
Larry Johnson632de062008-01-11 23:26:18 -0500977 printf ("%d/%d\n", data[4] & 0x0F, (data[4] >> 4) & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -0500978
979 switch (type) {
980 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500981 printf ("Number of ranks %d\n",
982 (data[5] & 0x07) + 1);
Larry Johnson0df6b842008-01-10 22:23:39 -0500983 break;
984 default:
Larry Johnson632de062008-01-11 23:26:18 -0500985 printf ("Module rows %d\n", data[5]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500986 break;
987 }
988
989 switch (type) {
990 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -0500991 printf ("Module data width %d bits\n", data[6]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500992 break;
993 default:
Larry Johnson632de062008-01-11 23:26:18 -0500994 printf ("Module data width %d bits\n",
995 (data[7] << 8) | data[6]);
Larry Johnson0df6b842008-01-10 22:23:39 -0500996 break;
997 }
998
wdenk4b9206e2004-03-23 22:14:11 +0000999 puts ("Interface signal levels ");
wdenk81a88242002-10-26 15:22:42 +00001000 switch(data[8]) {
Larry Johnson0df6b842008-01-10 22:23:39 -05001001 case 0: puts ("TTL 5.0 V\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +00001002 case 1: puts ("LVTTL\n"); break;
Larry Johnson0df6b842008-01-10 22:23:39 -05001003 case 2: puts ("HSTL 1.5 V\n"); break;
1004 case 3: puts ("SSTL 3.3 V\n"); break;
1005 case 4: puts ("SSTL 2.5 V\n"); break;
1006 case 5: puts ("SSTL 1.8 V\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +00001007 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +00001008 }
Larry Johnson0df6b842008-01-10 22:23:39 -05001009
1010 switch (type) {
1011 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001012 printf ("SDRAM cycle time ");
1013 print_ddr2_tcyc (data[9]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001014 break;
1015 default:
Larry Johnson632de062008-01-11 23:26:18 -05001016 printf ("SDRAM cycle time %d.%d ns\n",
1017 (data[9] >> 4) & 0x0F, data[9] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001018 break;
1019 }
1020
1021 switch (type) {
1022 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001023 printf ("SDRAM access time 0.%d%d ns\n",
1024 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001025 break;
1026 default:
Larry Johnson632de062008-01-11 23:26:18 -05001027 printf ("SDRAM access time %d.%d ns\n",
1028 (data[10] >> 4) & 0x0F, data[10] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001029 break;
1030 }
1031
wdenk4b9206e2004-03-23 22:14:11 +00001032 puts ("EDC configuration ");
Larry Johnson632de062008-01-11 23:26:18 -05001033 switch (data[11]) {
wdenk4b9206e2004-03-23 22:14:11 +00001034 case 0: puts ("None\n"); break;
1035 case 1: puts ("Parity\n"); break;
1036 case 2: puts ("ECC\n"); break;
1037 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +00001038 }
Larry Johnson632de062008-01-11 23:26:18 -05001039
Timur Tabie857a5b2006-11-28 12:09:35 -06001040 if ((data[12] & 0x80) == 0)
wdenk4b9206e2004-03-23 22:14:11 +00001041 puts ("No self refresh, rate ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001042 else
wdenk4b9206e2004-03-23 22:14:11 +00001043 puts ("Self refresh, rate ");
Larry Johnson632de062008-01-11 23:26:18 -05001044
wdenk81a88242002-10-26 15:22:42 +00001045 switch(data[12] & 0x7F) {
Larry Johnson632de062008-01-11 23:26:18 -05001046 case 0: puts ("15.625 us\n"); break;
1047 case 1: puts ("3.9 us\n"); break;
1048 case 2: puts ("7.8 us\n"); break;
1049 case 3: puts ("31.3 us\n"); break;
1050 case 4: puts ("62.5 us\n"); break;
1051 case 5: puts ("125 us\n"); break;
wdenk4b9206e2004-03-23 22:14:11 +00001052 default: puts ("unknown\n"); break;
wdenk81a88242002-10-26 15:22:42 +00001053 }
Larry Johnson0df6b842008-01-10 22:23:39 -05001054
1055 switch (type) {
1056 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001057 printf ("SDRAM width (primary) %d\n", data[13]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001058 break;
1059 default:
Larry Johnson632de062008-01-11 23:26:18 -05001060 printf ("SDRAM width (primary) %d\n", data[13] & 0x7F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001061 if ((data[13] & 0x80) != 0) {
Larry Johnson632de062008-01-11 23:26:18 -05001062 printf (" (second bank) %d\n",
1063 2 * (data[13] & 0x7F));
Larry Johnson0df6b842008-01-10 22:23:39 -05001064 }
1065 break;
wdenk81a88242002-10-26 15:22:42 +00001066 }
Larry Johnson0df6b842008-01-10 22:23:39 -05001067
1068 switch (type) {
1069 case DDR2:
1070 if (data[14] != 0)
Larry Johnson632de062008-01-11 23:26:18 -05001071 printf ("EDC width %d\n", data[14]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001072 break;
1073 default:
1074 if (data[14] != 0) {
Larry Johnson632de062008-01-11 23:26:18 -05001075 printf ("EDC width %d\n",
1076 data[14] & 0x7F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001077
1078 if ((data[14] & 0x80) != 0) {
Larry Johnson632de062008-01-11 23:26:18 -05001079 printf (" (second bank) %d\n",
1080 2 * (data[14] & 0x7F));
Larry Johnson0df6b842008-01-10 22:23:39 -05001081 }
1082 }
1083 break;
1084 }
1085
Larry Johnson632de062008-01-11 23:26:18 -05001086 if (DDR2 != type) {
1087 printf ("Min clock delay, back-to-back random column addresses "
1088 "%d\n", data[15]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001089 }
1090
wdenk4b9206e2004-03-23 22:14:11 +00001091 puts ("Burst length(s) ");
1092 if (data[16] & 0x80) puts (" Page");
1093 if (data[16] & 0x08) puts (" 8");
1094 if (data[16] & 0x04) puts (" 4");
1095 if (data[16] & 0x02) puts (" 2");
1096 if (data[16] & 0x01) puts (" 1");
1097 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001098 printf ("Number of banks %d\n", data[17]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001099
1100 switch (type) {
1101 case DDR2:
1102 puts ("CAS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001103 decode_bits (data[18], decode_CAS_DDR2, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001104 putc ('\n');
1105 break;
1106 default:
1107 puts ("CAS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001108 decode_bits (data[18], decode_CAS_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001109 putc ('\n');
1110 break;
1111 }
1112
1113 if (DDR2 != type) {
1114 puts ("CS latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001115 decode_bits (data[19], decode_CS_WE_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001116 putc ('\n');
1117 }
1118
1119 if (DDR2 != type) {
1120 puts ("WE latency(s) ");
Larry Johnson632de062008-01-11 23:26:18 -05001121 decode_bits (data[20], decode_CS_WE_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001122 putc ('\n');
1123 }
1124
1125 switch (type) {
1126 case DDR2:
1127 puts ("Module attributes:\n");
1128 if (data[21] & 0x80)
1129 puts (" TBD (bit 7)\n");
1130 if (data[21] & 0x40)
1131 puts (" Analysis probe installed\n");
1132 if (data[21] & 0x20)
1133 puts (" TBD (bit 5)\n");
1134 if (data[21] & 0x10)
1135 puts (" FET switch external enable\n");
Larry Johnson632de062008-01-11 23:26:18 -05001136 printf (" %d PLLs on DIMM\n", (data[21] >> 2) & 0x03);
Larry Johnson0df6b842008-01-10 22:23:39 -05001137 if (data[20] & 0x11) {
Larry Johnson632de062008-01-11 23:26:18 -05001138 printf (" %d active registers on DIMM\n",
1139 (data[21] & 0x03) + 1);
Larry Johnson0df6b842008-01-10 22:23:39 -05001140 }
1141 break;
1142 default:
1143 puts ("Module attributes:\n");
1144 if (!data[21])
1145 puts (" (none)\n");
Larry Johnson632de062008-01-11 23:26:18 -05001146 else
1147 decode_bits (data[21], decode_byte21_default, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001148 break;
1149 }
1150
1151 switch (type) {
1152 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001153 decode_bits (data[22], decode_byte22_DDR2, 0);
Larry Johnson0df6b842008-01-10 22:23:39 -05001154 break;
1155 default:
1156 puts ("Device attributes:\n");
1157 if (data[22] & 0x80) puts (" TBD (bit 7)\n");
1158 if (data[22] & 0x40) puts (" TBD (bit 6)\n");
1159 if (data[22] & 0x20) puts (" Upper Vcc tolerance 5%\n");
1160 else puts (" Upper Vcc tolerance 10%\n");
1161 if (data[22] & 0x10) puts (" Lower Vcc tolerance 5%\n");
1162 else puts (" Lower Vcc tolerance 10%\n");
1163 if (data[22] & 0x08) puts (" Supports write1/read burst\n");
1164 if (data[22] & 0x04) puts (" Supports precharge all\n");
1165 if (data[22] & 0x02) puts (" Supports auto precharge\n");
1166 if (data[22] & 0x01) puts (" Supports early RAS# precharge\n");
1167 break;
1168 }
1169
1170 switch (type) {
1171 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001172 printf ("SDRAM cycle time (2nd highest CAS latency) ");
1173 print_ddr2_tcyc (data[23]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001174 break;
1175 default:
Larry Johnson632de062008-01-11 23:26:18 -05001176 printf ("SDRAM cycle time (2nd highest CAS latency) %d."
1177 "%d ns\n", (data[23] >> 4) & 0x0F, data[23] & 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 printf ("SDRAM access from clock (2nd highest CAS latency) 0."
1184 "%d%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001185 break;
1186 default:
Larry Johnson632de062008-01-11 23:26:18 -05001187 printf ("SDRAM access from clock (2nd highest CAS latency) %d."
1188 "%d ns\n", (data[24] >> 4) & 0x0F, data[24] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001189 break;
1190 }
1191
1192 switch (type) {
1193 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001194 printf ("SDRAM cycle time (3rd highest CAS latency) ");
1195 print_ddr2_tcyc (data[25]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001196 break;
1197 default:
Larry Johnson632de062008-01-11 23:26:18 -05001198 printf ("SDRAM cycle time (3rd highest CAS latency) %d."
1199 "%d ns\n", (data[25] >> 4) & 0x0F, data[25] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001200 break;
1201 }
1202
1203 switch (type) {
1204 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001205 printf ("SDRAM access from clock (3rd highest CAS latency) 0."
1206 "%d%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001207 break;
1208 default:
Larry Johnson632de062008-01-11 23:26:18 -05001209 printf ("SDRAM access from clock (3rd highest CAS latency) %d."
1210 "%d ns\n", (data[26] >> 4) & 0x0F, data[26] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001211 break;
1212 }
1213
1214 switch (type) {
1215 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001216 printf ("Minimum row precharge %d.%02d ns\n",
1217 (data[27] >> 2) & 0x3F, 25 * (data[27] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001218 break;
1219 default:
Larry Johnson632de062008-01-11 23:26:18 -05001220 printf ("Minimum row precharge %d ns\n", data[27]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001221 break;
1222 }
1223
1224 switch (type) {
1225 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001226 printf ("Row active to row active min %d.%02d ns\n",
1227 (data[28] >> 2) & 0x3F, 25 * (data[28] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001228 break;
1229 default:
Larry Johnson632de062008-01-11 23:26:18 -05001230 printf ("Row active to row active min %d ns\n", data[28]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001231 break;
1232 }
1233
1234 switch (type) {
1235 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001236 printf ("RAS to CAS delay min %d.%02d ns\n",
1237 (data[29] >> 2) & 0x3F, 25 * (data[29] & 0x03));
Larry Johnson0df6b842008-01-10 22:23:39 -05001238 break;
1239 default:
Larry Johnson632de062008-01-11 23:26:18 -05001240 printf ("RAS to CAS delay min %d ns\n", data[29]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001241 break;
1242 }
1243
Larry Johnson632de062008-01-11 23:26:18 -05001244 printf ("Minimum RAS pulse width %d ns\n", data[30]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001245
1246 switch (type) {
1247 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001248 puts ("Density of each row ");
1249 decode_bits (data[31], decode_row_density_DDR2, 1);
1250 putc ('\n');
Larry Johnson0df6b842008-01-10 22:23:39 -05001251 break;
1252 default:
Larry Johnson632de062008-01-11 23:26:18 -05001253 puts ("Density of each row ");
1254 decode_bits (data[31], decode_row_density_default, 1);
1255 putc ('\n');
Larry Johnson0df6b842008-01-10 22:23:39 -05001256 break;
1257 }
1258
1259 switch (type) {
1260 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001261 puts ("Command and Address setup ");
Larry Johnson0df6b842008-01-10 22:23:39 -05001262 if (data[32] >= 0xA0) {
Larry Johnson632de062008-01-11 23:26:18 -05001263 printf ("1.%d%d ns\n",
1264 ((data[32] >> 4) & 0x0F) - 10, data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001265 } else {
Larry Johnson632de062008-01-11 23:26:18 -05001266 printf ("0.%d%d ns\n",
1267 ((data[32] >> 4) & 0x0F), data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001268 }
1269 break;
1270 default:
Larry Johnson632de062008-01-11 23:26:18 -05001271 printf ("Command and Address setup %c%d.%d ns\n",
1272 (data[32] & 0x80) ? '-' : '+',
1273 (data[32] >> 4) & 0x07, data[32] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001274 break;
1275 }
1276
1277 switch (type) {
1278 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001279 puts ("Command and Address hold ");
Larry Johnson0df6b842008-01-10 22:23:39 -05001280 if (data[33] >= 0xA0) {
Larry Johnson632de062008-01-11 23:26:18 -05001281 printf ("1.%d%d ns\n",
1282 ((data[33] >> 4) & 0x0F) - 10, data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001283 } else {
Larry Johnson632de062008-01-11 23:26:18 -05001284 printf ("0.%d%d ns\n",
1285 ((data[33] >> 4) & 0x0F), data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001286 }
1287 break;
1288 default:
Larry Johnson632de062008-01-11 23:26:18 -05001289 printf ("Command and Address hold %c%d.%d ns\n",
1290 (data[33] & 0x80) ? '-' : '+',
1291 (data[33] >> 4) & 0x07, data[33] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001292 break;
1293 }
1294
1295 switch (type) {
1296 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001297 printf ("Data signal input setup 0.%d%d ns\n",
1298 (data[34] >> 4) & 0x0F, data[34] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001299 break;
1300 default:
Larry Johnson632de062008-01-11 23:26:18 -05001301 printf ("Data signal input setup %c%d.%d ns\n",
1302 (data[34] & 0x80) ? '-' : '+',
1303 (data[34] >> 4) & 0x07, data[34] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001304 break;
1305 }
1306
1307 switch (type) {
1308 case DDR2:
Larry Johnson632de062008-01-11 23:26:18 -05001309 printf ("Data signal input hold 0.%d%d ns\n",
1310 (data[35] >> 4) & 0x0F, data[35] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001311 break;
1312 default:
Larry Johnson632de062008-01-11 23:26:18 -05001313 printf ("Data signal input hold %c%d.%d ns\n",
1314 (data[35] & 0x80) ? '-' : '+',
1315 (data[35] >> 4) & 0x07, data[35] & 0x0F);
Larry Johnson0df6b842008-01-10 22:23:39 -05001316 break;
1317 }
1318
wdenk4b9206e2004-03-23 22:14:11 +00001319 puts ("Manufacturer's JEDEC ID ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001320 for (j = 64; j <= 71; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001321 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001322 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001323 printf ("Manufacturing Location %02X\n", data[72]);
wdenk4b9206e2004-03-23 22:14:11 +00001324 puts ("Manufacturer's Part Number ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001325 for (j = 73; j <= 90; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001326 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001327 putc ('\n');
Larry Johnson632de062008-01-11 23:26:18 -05001328 printf ("Revision Code %02X %02X\n", data[91], data[92]);
1329 printf ("Manufacturing Date %02X %02X\n", data[93], data[94]);
wdenk4b9206e2004-03-23 22:14:11 +00001330 puts ("Assembly Serial Number ");
Timur Tabie857a5b2006-11-28 12:09:35 -06001331 for (j = 95; j <= 98; j++)
Larry Johnson632de062008-01-11 23:26:18 -05001332 printf ("%02X ", data[j]);
wdenk4b9206e2004-03-23 22:14:11 +00001333 putc ('\n');
wdenk81a88242002-10-26 15:22:42 +00001334
Larry Johnson0df6b842008-01-10 22:23:39 -05001335 if (DDR2 != type) {
Larry Johnson632de062008-01-11 23:26:18 -05001336 printf ("Speed rating PC%d\n",
1337 data[126] == 0x66 ? 66 : data[126]);
Larry Johnson0df6b842008-01-10 22:23:39 -05001338 }
wdenk81a88242002-10-26 15:22:42 +00001339 return 0;
1340}
Jon Loeliger90253172007-07-10 11:02:44 -05001341#endif
wdenk81a88242002-10-26 15:22:42 +00001342
Heiko Schocher67b23a32008-10-15 09:39:47 +02001343#if defined(CONFIG_I2C_MUX)
Marek Vasut06afa382012-11-12 14:34:27 +00001344/**
1345 * do_i2c_add_bus() - Handle the "i2c bus" command-line command
1346 * @cmdtp: Command data struct pointer
1347 * @flag: Command flag
1348 * @argc: Command-line argument count
1349 * @argv: Array of command-line arguments
1350 *
1351 * Returns zero always.
1352 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001353static int do_i2c_add_bus(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Heiko Schocher67b23a32008-10-15 09:39:47 +02001354{
1355 int ret=0;
1356
1357 if (argc == 1) {
1358 /* show all busses */
1359 I2C_MUX *mux;
1360 I2C_MUX_DEVICE *device = i2c_mux_devices;
1361
1362 printf ("Busses reached over muxes:\n");
1363 while (device != NULL) {
1364 printf ("Bus ID: %x\n", device->busid);
1365 printf (" reached over Mux(es):\n");
1366 mux = device->mux;
1367 while (mux != NULL) {
1368 printf (" %s@%x ch: %x\n", mux->name, mux->chip, mux->channel);
1369 mux = mux->next;
1370 }
1371 device = device->next;
1372 }
1373 } else {
Wolfgang Denke8260cb2011-11-04 15:55:54 +00001374 (void)i2c_mux_ident_muxstring ((uchar *)argv[1]);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001375 ret = 0;
1376 }
1377 return ret;
1378}
1379#endif /* CONFIG_I2C_MUX */
1380
Ben Warrenbb99ad62006-09-07 16:50:54 -04001381#if defined(CONFIG_I2C_MULTI_BUS)
Marek Vasut06afa382012-11-12 14:34:27 +00001382/**
1383 * do_i2c_bus_num() - Handle the "i2c dev" command-line command
1384 * @cmdtp: Command data struct pointer
1385 * @flag: Command flag
1386 * @argc: Command-line argument count
1387 * @argv: Array of command-line arguments
1388 *
1389 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
1390 * on error.
1391 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001392static int do_i2c_bus_num(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001393{
1394 int bus_idx, ret=0;
1395
Timur Tabie857a5b2006-11-28 12:09:35 -06001396 if (argc == 1)
1397 /* querying current setting */
Ben Warrenbb99ad62006-09-07 16:50:54 -04001398 printf("Current bus is %d\n", i2c_get_bus_num());
Timur Tabie857a5b2006-11-28 12:09:35 -06001399 else {
Ben Warrenbb99ad62006-09-07 16:50:54 -04001400 bus_idx = simple_strtoul(argv[1], NULL, 10);
1401 printf("Setting bus to %d\n", bus_idx);
1402 ret = i2c_set_bus_num(bus_idx);
Timur Tabie857a5b2006-11-28 12:09:35 -06001403 if (ret)
Ben Warrenbb99ad62006-09-07 16:50:54 -04001404 printf("Failure changing bus number (%d)\n", ret);
Ben Warrenbb99ad62006-09-07 16:50:54 -04001405 }
1406 return ret;
1407}
1408#endif /* CONFIG_I2C_MULTI_BUS */
1409
Marek Vasut06afa382012-11-12 14:34:27 +00001410/**
1411 * do_i2c_bus_speed() - Handle the "i2c speed" command-line command
1412 * @cmdtp: Command data struct pointer
1413 * @flag: Command flag
1414 * @argc: Command-line argument count
1415 * @argv: Array of command-line arguments
1416 *
1417 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
1418 * on error.
1419 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001420static int do_i2c_bus_speed(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001421{
1422 int speed, ret=0;
1423
Timur Tabie857a5b2006-11-28 12:09:35 -06001424 if (argc == 1)
1425 /* querying current speed */
Ben Warrenbb99ad62006-09-07 16:50:54 -04001426 printf("Current bus speed=%d\n", i2c_get_bus_speed());
Timur Tabie857a5b2006-11-28 12:09:35 -06001427 else {
Ben Warrenbb99ad62006-09-07 16:50:54 -04001428 speed = simple_strtoul(argv[1], NULL, 10);
1429 printf("Setting bus speed to %d Hz\n", speed);
1430 ret = i2c_set_bus_speed(speed);
Timur Tabie857a5b2006-11-28 12:09:35 -06001431 if (ret)
Ben Warrenbb99ad62006-09-07 16:50:54 -04001432 printf("Failure changing bus speed (%d)\n", ret);
Ben Warrenbb99ad62006-09-07 16:50:54 -04001433 }
1434 return ret;
1435}
1436
Marek Vasut06afa382012-11-12 14:34:27 +00001437/**
1438 * do_i2c_mm() - Handle the "i2c mm" command-line command
1439 * @cmdtp: Command data struct pointer
1440 * @flag: Command flag
1441 * @argc: Command-line argument count
1442 * @argv: Array of command-line arguments
1443 *
1444 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
1445 * on error.
1446 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001447static int do_i2c_mm(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001448{
1449 return mod_i2c_mem (cmdtp, 1, flag, argc, argv);
1450}
1451
Marek Vasut06afa382012-11-12 14:34:27 +00001452/**
1453 * do_i2c_nm() - Handle the "i2c nm" command-line command
1454 * @cmdtp: Command data struct pointer
1455 * @flag: Command flag
1456 * @argc: Command-line argument count
1457 * @argv: Array of command-line arguments
1458 *
1459 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
1460 * on error.
1461 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001462static int do_i2c_nm(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001463{
1464 return mod_i2c_mem (cmdtp, 0, flag, argc, argv);
1465}
1466
Marek Vasut06afa382012-11-12 14:34:27 +00001467/**
1468 * do_i2c_reset() - Handle the "i2c reset" command-line command
1469 * @cmdtp: Command data struct pointer
1470 * @flag: Command flag
1471 * @argc: Command-line argument count
1472 * @argv: Array of command-line arguments
1473 *
1474 * Returns zero always.
1475 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001476static int do_i2c_reset(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001477{
1478 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
1479 return 0;
1480}
1481
1482static cmd_tbl_t cmd_i2c_sub[] = {
1483#if defined(CONFIG_I2C_MUX)
1484 U_BOOT_CMD_MKENT(bus, 1, 1, do_i2c_add_bus, "", ""),
1485#endif /* CONFIG_I2C_MUX */
1486 U_BOOT_CMD_MKENT(crc32, 3, 1, do_i2c_crc, "", ""),
1487#if defined(CONFIG_I2C_MULTI_BUS)
1488 U_BOOT_CMD_MKENT(dev, 1, 1, do_i2c_bus_num, "", ""),
1489#endif /* CONFIG_I2C_MULTI_BUS */
1490 U_BOOT_CMD_MKENT(loop, 3, 1, do_i2c_loop, "", ""),
1491 U_BOOT_CMD_MKENT(md, 3, 1, do_i2c_md, "", ""),
1492 U_BOOT_CMD_MKENT(mm, 2, 1, do_i2c_mm, "", ""),
1493 U_BOOT_CMD_MKENT(mw, 3, 1, do_i2c_mw, "", ""),
1494 U_BOOT_CMD_MKENT(nm, 2, 1, do_i2c_nm, "", ""),
1495 U_BOOT_CMD_MKENT(probe, 0, 1, do_i2c_probe, "", ""),
Frans Meulenbroeks652e5352010-02-25 10:12:16 +01001496 U_BOOT_CMD_MKENT(read, 5, 1, do_i2c_read, "", ""),
York Sunff5d2dc2012-09-16 08:02:30 +00001497 U_BOOT_CMD_MKENT(write, 5, 0, do_i2c_write, "", ""),
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001498 U_BOOT_CMD_MKENT(reset, 0, 1, do_i2c_reset, "", ""),
1499#if defined(CONFIG_CMD_SDRAM)
1500 U_BOOT_CMD_MKENT(sdram, 1, 1, do_sdram, "", ""),
1501#endif
1502 U_BOOT_CMD_MKENT(speed, 1, 1, do_i2c_bus_speed, "", ""),
1503};
1504
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02001505#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocherf1d2b312010-09-17 13:10:39 +02001506void i2c_reloc(void) {
1507 fixup_cmdtable(cmd_i2c_sub, ARRAY_SIZE(cmd_i2c_sub));
1508}
1509#endif
1510
Marek Vasut06afa382012-11-12 14:34:27 +00001511/**
1512 * do_i2c() - Handle the "i2c" command-line command
1513 * @cmdtp: Command data struct pointer
1514 * @flag: Command flag
1515 * @argc: Command-line argument count
1516 * @argv: Array of command-line arguments
1517 *
1518 * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
1519 * on error.
1520 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001521static int do_i2c(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Ben Warrenbb99ad62006-09-07 16:50:54 -04001522{
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001523 cmd_tbl_t *c;
1524
Heiko Schocher4444b222010-09-17 13:10:35 +02001525 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001526 return CMD_RET_USAGE;
Heiko Schocher4444b222010-09-17 13:10:35 +02001527
Peter Tysere96ad5d2009-04-18 22:34:04 -05001528 /* Strip off leading 'i2c' command argument */
1529 argc--;
1530 argv++;
1531
Frans Meulenbroeksbfc3b772010-02-25 10:12:14 +01001532 c = find_cmd_tbl(argv[0], &cmd_i2c_sub[0], ARRAY_SIZE(cmd_i2c_sub));
1533
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001534 if (c)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001535 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001536 else
Simon Glass4c12eeb2011-12-10 08:44:01 +00001537 return CMD_RET_USAGE;
Ben Warrenbb99ad62006-09-07 16:50:54 -04001538}
wdenk8bde7f72003-06-27 21:31:46 +00001539
1540/***************************************************/
Kim Phillips088f1b12012-10-29 13:34:31 +00001541#ifdef CONFIG_SYS_LONGHELP
1542static char i2c_help_text[] =
Peter Tyser9166b772009-04-18 22:34:06 -05001543#if defined(CONFIG_I2C_MUX)
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001544 "bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes\ni2c "
Peter Tyser9166b772009-04-18 22:34:06 -05001545#endif /* CONFIG_I2C_MUX */
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001546 "crc32 chip address[.0, .1, .2] count - compute CRC32 checksum\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001547#if defined(CONFIG_I2C_MULTI_BUS)
Peter Tyser9bc2e4e2008-10-01 12:25:04 -05001548 "i2c dev [dev] - show or set current I2C bus\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001549#endif /* CONFIG_I2C_MULTI_BUS */
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001550 "i2c loop chip address[.0, .1, .2] [# of objects] - looping read of device\n"
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001551 "i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device\n"
1552 "i2c mm chip address[.0, .1, .2] - write to I2C device (auto-incrementing)\n"
1553 "i2c mw chip address[.0, .1, .2] value [count] - write to I2C device (fill)\n"
1554 "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
Eric Nelson54b99e52012-09-23 10:12:56 +00001555 "i2c probe [address] - test for and show device(s) on the I2C bus\n"
Frans Meulenbroeks652e5352010-02-25 10:12:16 +01001556 "i2c read chip address[.0, .1, .2] length memaddress - read to memory \n"
York Sunff5d2dc2012-09-16 08:02:30 +00001557 "i2c write memaddress chip address[.0, .1, .2] length - write memory to i2c\n"
Heiko Schochere43a27c2008-10-15 09:33:30 +02001558 "i2c reset - re-init the I2C Controller\n"
Jon Loeligerc76fe472007-07-08 18:02:23 -05001559#if defined(CONFIG_CMD_SDRAM)
Frans Meulenbroeksfb0070e2010-02-25 10:12:15 +01001560 "i2c sdram chip - print SDRAM configuration information\n"
Jon Loeliger90253172007-07-10 11:02:44 -05001561#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001562 "i2c speed [speed] - show or set I2C bus speed";
1563#endif
1564
1565U_BOOT_CMD(
1566 i2c, 6, 1, do_i2c,
1567 "I2C sub-system",
1568 i2c_help_text
Matthias Fuchsd9fc7032007-03-08 16:25:47 +01001569);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001570
1571#if defined(CONFIG_I2C_MUX)
Frans Meulenbroeksfd03ea82010-03-26 09:46:42 +01001572static int i2c_mux_add_device(I2C_MUX_DEVICE *dev)
Heiko Schocher67b23a32008-10-15 09:39:47 +02001573{
1574 I2C_MUX_DEVICE *devtmp = i2c_mux_devices;
1575
1576 if (i2c_mux_devices == NULL) {
1577 i2c_mux_devices = dev;
1578 return 0;
1579 }
1580 while (devtmp->next != NULL)
1581 devtmp = devtmp->next;
1582
1583 devtmp->next = dev;
1584 return 0;
1585}
1586
1587I2C_MUX_DEVICE *i2c_mux_search_device(int id)
1588{
1589 I2C_MUX_DEVICE *device = i2c_mux_devices;
1590
1591 while (device != NULL) {
1592 if (device->busid == id)
1593 return device;
1594 device = device->next;
1595 }
1596 return NULL;
1597}
1598
1599/* searches in the buf from *pos the next ':'.
1600 * returns:
1601 * 0 if found (with *pos = where)
1602 * < 0 if an error occured
1603 * > 0 if the end of buf is reached
1604 */
1605static int i2c_mux_search_next (int *pos, uchar *buf, int len)
1606{
1607 while ((buf[*pos] != ':') && (*pos < len)) {
1608 *pos += 1;
1609 }
1610 if (*pos >= len)
1611 return 1;
1612 if (buf[*pos] != ':')
1613 return -1;
1614 return 0;
1615}
1616
1617static int i2c_mux_get_busid (void)
1618{
1619 int tmp = i2c_mux_busid;
1620
1621 i2c_mux_busid ++;
1622 return tmp;
1623}
1624
Michael Jonesf9a78b82011-07-14 22:09:28 +00001625/* Analyses a Muxstring and immediately sends the
1626 commands to the muxes. Runs from flash.
Heiko Schocher67b23a32008-10-15 09:39:47 +02001627 */
1628int i2c_mux_ident_muxstring_f (uchar *buf)
1629{
1630 int pos = 0;
1631 int oldpos;
1632 int ret = 0;
1633 int len = strlen((char *)buf);
1634 int chip;
1635 uchar channel;
1636 int was = 0;
1637
1638 while (ret == 0) {
1639 oldpos = pos;
1640 /* search name */
1641 ret = i2c_mux_search_next(&pos, buf, len);
1642 if (ret != 0)
1643 printf ("ERROR\n");
1644 /* search address */
1645 pos ++;
1646 oldpos = pos;
1647 ret = i2c_mux_search_next(&pos, buf, len);
1648 if (ret != 0)
1649 printf ("ERROR\n");
1650 buf[pos] = 0;
1651 chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1652 buf[pos] = ':';
1653 /* search channel */
1654 pos ++;
1655 oldpos = pos;
1656 ret = i2c_mux_search_next(&pos, buf, len);
1657 if (ret < 0)
1658 printf ("ERROR\n");
1659 was = 0;
1660 if (buf[pos] != 0) {
1661 buf[pos] = 0;
1662 was = 1;
1663 }
1664 channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1665 if (was)
1666 buf[pos] = ':';
1667 if (i2c_write(chip, 0, 0, &channel, 1) != 0) {
1668 printf ("Error setting Mux: chip:%x channel: \
1669 %x\n", chip, channel);
1670 return -1;
1671 }
1672 pos ++;
1673 oldpos = pos;
1674
1675 }
Holger Brunck8ec038a2012-06-28 04:30:22 +00001676 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001677
1678 return 0;
1679}
1680
1681/* Analyses a Muxstring and if this String is correct
1682 * adds a new I2C Bus.
1683 */
1684I2C_MUX_DEVICE *i2c_mux_ident_muxstring (uchar *buf)
1685{
1686 I2C_MUX_DEVICE *device;
1687 I2C_MUX *mux;
1688 int pos = 0;
1689 int oldpos;
1690 int ret = 0;
1691 int len = strlen((char *)buf);
1692 int was = 0;
1693
1694 device = (I2C_MUX_DEVICE *)malloc (sizeof(I2C_MUX_DEVICE));
1695 device->mux = NULL;
1696 device->busid = i2c_mux_get_busid ();
1697 device->next = NULL;
1698 while (ret == 0) {
1699 mux = (I2C_MUX *)malloc (sizeof(I2C_MUX));
1700 mux->next = NULL;
1701 /* search name of mux */
1702 oldpos = pos;
1703 ret = i2c_mux_search_next(&pos, buf, len);
1704 if (ret != 0)
1705 printf ("%s no name.\n", __FUNCTION__);
1706 mux->name = (char *)malloc (pos - oldpos + 1);
1707 memcpy (mux->name, &buf[oldpos], pos - oldpos);
1708 mux->name[pos - oldpos] = 0;
1709 /* search address */
1710 pos ++;
1711 oldpos = pos;
1712 ret = i2c_mux_search_next(&pos, buf, len);
1713 if (ret != 0)
1714 printf ("%s no mux address.\n", __FUNCTION__);
1715 buf[pos] = 0;
1716 mux->chip = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1717 buf[pos] = ':';
1718 /* search channel */
1719 pos ++;
1720 oldpos = pos;
1721 ret = i2c_mux_search_next(&pos, buf, len);
1722 if (ret < 0)
1723 printf ("%s no mux channel.\n", __FUNCTION__);
1724 was = 0;
1725 if (buf[pos] != 0) {
1726 buf[pos] = 0;
1727 was = 1;
1728 }
1729 mux->channel = simple_strtoul((char *)&buf[oldpos], NULL, 16);
1730 if (was)
1731 buf[pos] = ':';
1732 if (device->mux == NULL)
1733 device->mux = mux;
1734 else {
1735 I2C_MUX *muxtmp = device->mux;
1736 while (muxtmp->next != NULL) {
1737 muxtmp = muxtmp->next;
1738 }
1739 muxtmp->next = mux;
1740 }
1741 pos ++;
1742 oldpos = pos;
1743 }
1744 if (ret > 0) {
1745 /* Add Device */
1746 i2c_mux_add_device (device);
1747 return device;
1748 }
1749
1750 return NULL;
1751}
1752
1753int i2x_mux_select_mux(int bus)
1754{
1755 I2C_MUX_DEVICE *dev;
1756 I2C_MUX *mux;
1757
1758 if ((gd->flags & GD_FLG_RELOC) != GD_FLG_RELOC) {
1759 /* select Default Mux Bus */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001760#if defined(CONFIG_SYS_I2C_IVM_BUS)
1761 i2c_mux_ident_muxstring_f ((uchar *)CONFIG_SYS_I2C_IVM_BUS);
Heiko Schocher67b23a32008-10-15 09:39:47 +02001762#else
1763 {
1764 unsigned char *buf;
1765 buf = (unsigned char *) getenv("EEprom_ivm");
1766 if (buf != NULL)
1767 i2c_mux_ident_muxstring_f (buf);
1768 }
1769#endif
1770 return 0;
1771 }
1772 dev = i2c_mux_search_device(bus);
1773 if (dev == NULL)
1774 return -1;
1775
1776 mux = dev->mux;
1777 while (mux != NULL) {
Stefan Biglerc649dda2011-04-08 16:24:08 +02001778 /* do deblocking on each level of mux, before mux config */
1779 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001780 if (i2c_write(mux->chip, 0, 0, &mux->channel, 1) != 0) {
1781 printf ("Error setting Mux: chip:%x channel: \
1782 %x\n", mux->chip, mux->channel);
1783 return -1;
1784 }
1785 mux = mux->next;
1786 }
Stefan Biglerc649dda2011-04-08 16:24:08 +02001787 /* do deblocking on each level of mux and after mux config */
1788 i2c_init_board();
Heiko Schocher67b23a32008-10-15 09:39:47 +02001789 return 0;
1790}
1791#endif /* CONFIG_I2C_MUX */