]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/eeprom.c
efi_loader: memory leak in efi_set_bootdev()
[thirdparty/u-boot.git] / cmd / eeprom.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3863585b
WD
2/*
3 * (C) Copyright 2000, 2001
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
3863585b
WD
5 */
6
d4f5c728 7/*
8 * Support for read and write access to EEPROM like memory devices. This
9 * includes regular EEPROM as well as FRAM (ferroelectic nonvolaile RAM).
10 * FRAM devices read and write data at bus speed. In particular, there is no
e506a006 11 * write delay. Also, there is no limit imposed on the number of bytes that can
d4f5c728 12 * be transferred with a single read or write.
6617aae9 13 *
d4f5c728 14 * Use the following configuration options to ensure no unneeded performance
15 * degradation (typical for EEPROM) is incured for FRAM memory:
6617aae9 16 *
6d0f6bcf
JCPV
17 * #define CONFIG_SYS_I2C_FRAM
18 * #undef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
d4f5c728 19 *
20 */
21
3863585b
WD
22#include <common.h>
23#include <config.h>
24#include <command.h>
25#include <i2c.h>
e7c2729b 26#include <eeprom_layout.h>
3863585b 27
4f296d09
MV
28#ifndef CONFIG_SYS_I2C_SPEED
29#define CONFIG_SYS_I2C_SPEED 50000
98f4a3df 30#endif
3863585b 31
d738746c
MV
32#ifndef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
33#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 0
34#endif
35
6717e3c8
MV
36#ifndef CONFIG_SYS_EEPROM_PAGE_WRITE_BITS
37#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 8
38#endif
39
a6e7b774
MS
40#ifndef I2C_RXTX_LEN
41#define I2C_RXTX_LEN 128
42#endif
43
6717e3c8
MV
44#define EEPROM_PAGE_SIZE (1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)
45#define EEPROM_PAGE_OFFSET(x) ((x) & (EEPROM_PAGE_SIZE - 1))
46
4f296d09 47/*
6d0f6bcf 48 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is
3863585b
WD
49 * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM.
50 *
6d0f6bcf 51 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is
3863585b
WD
52 * 0x00000nxx for EEPROM address selectors and page number at n.
53 */
548738b4 54#if !defined(CONFIG_SPI) || defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
4f296d09 55#if !defined(CONFIG_SYS_I2C_EEPROM_ADDR_LEN) || \
d4e69e61
MV
56 (CONFIG_SYS_I2C_EEPROM_ADDR_LEN < 1) || \
57 (CONFIG_SYS_I2C_EEPROM_ADDR_LEN > 2)
6d0f6bcf 58#error CONFIG_SYS_I2C_EEPROM_ADDR_LEN must be 1 or 2
3863585b
WD
59#endif
60#endif
61
52cd47c9
MV
62__weak int eeprom_write_enable(unsigned dev_addr, int state)
63{
64 return 0;
65}
4f296d09 66
354e3ed7 67void eeprom_init(int bus)
4f296d09
MV
68{
69 /* SPI EEPROM */
f1b1f770 70#if defined(CONFIG_MPC8XX_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
8eee40a6 71 spi_init_f();
4f296d09
MV
72#endif
73
74 /* I2C EEPROM */
354e3ed7
MV
75#if defined(CONFIG_SYS_I2C)
76 if (bus >= 0)
77 i2c_set_bus_num(bus);
4f296d09
MV
78 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
79#endif
80}
81
02c321cf
MV
82static int eeprom_addr(unsigned dev_addr, unsigned offset, uchar *addr)
83{
84 unsigned blk_off;
85 int alen;
86
87 blk_off = offset & 0xff; /* block offset */
88#if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1
89 addr[0] = offset >> 8; /* block number */
90 addr[1] = blk_off; /* block offset */
91 alen = 2;
92#else
93 addr[0] = offset >> 16; /* block number */
94 addr[1] = offset >> 8; /* upper address octet */
95 addr[2] = blk_off; /* lower address octet */
96 alen = 3;
97#endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN */
98
99 addr[0] |= dev_addr; /* insert device address */
100
101 return alen;
102}
103
39b6f98b
MV
104static int eeprom_len(unsigned offset, unsigned end)
105{
106 unsigned len = end - offset;
107
108 /*
109 * For a FRAM device there is no limit on the number of the
110 * bytes that can be ccessed with the single read or write
111 * operation.
112 */
113#if !defined(CONFIG_SYS_I2C_FRAM)
114 unsigned blk_off = offset & 0xff;
115 unsigned maxlen = EEPROM_PAGE_SIZE - EEPROM_PAGE_OFFSET(blk_off);
116
117 if (maxlen > I2C_RXTX_LEN)
118 maxlen = I2C_RXTX_LEN;
119
120 if (len > maxlen)
121 len = maxlen;
122#endif
123
124 return len;
125}
126
9132088b
MV
127static int eeprom_rw_block(unsigned offset, uchar *addr, unsigned alen,
128 uchar *buffer, unsigned len, bool read)
129{
130 int ret = 0;
131
132 /* SPI */
f1b1f770 133#if defined(CONFIG_MPC8XX_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
9132088b
MV
134 if (read)
135 spi_read(addr, alen, buffer, len);
136 else
137 spi_write(addr, alen, buffer, len);
138#else /* I2C */
139
140#if defined(CONFIG_SYS_I2C_EEPROM_BUS)
141 i2c_set_bus_num(CONFIG_SYS_I2C_EEPROM_BUS);
142#endif
143
144 if (read)
145 ret = i2c_read(addr[0], offset, alen - 1, buffer, len);
146 else
147 ret = i2c_write(addr[0], offset, alen - 1, buffer, len);
148
149 if (ret)
150 ret = 1;
151#endif
152 return ret;
153}
154
1a37889b
MV
155static int eeprom_rw(unsigned dev_addr, unsigned offset, uchar *buffer,
156 unsigned cnt, bool read)
3863585b
WD
157{
158 unsigned end = offset + cnt;
1a37889b 159 unsigned alen, len;
3863585b 160 int rcode = 0;
02c321cf 161 uchar addr[3];
3863585b 162
3863585b 163 while (offset < end) {
02c321cf 164 alen = eeprom_addr(dev_addr, offset, addr);
3863585b 165
39b6f98b 166 len = eeprom_len(offset, end);
d4f5c728 167
1a37889b 168 rcode = eeprom_rw_block(offset, addr, alen, buffer, len, read);
9132088b 169
3863585b
WD
170 buffer += len;
171 offset += len;
1a37889b
MV
172
173 if (!read)
174 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
3863585b 175 }
d4f5c728 176
3863585b
WD
177 return rcode;
178}
179
1a37889b 180int eeprom_read(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt)
3863585b 181{
1a37889b
MV
182 /*
183 * Read data until done or would cross a page boundary.
184 * We must write the address again when changing pages
185 * because the next page may be in a different device.
186 */
187 return eeprom_rw(dev_addr, offset, buffer, cnt, 1);
188}
189
d4e69e61
MV
190int eeprom_write(unsigned dev_addr, unsigned offset,
191 uchar *buffer, unsigned cnt)
1a37889b
MV
192{
193 int ret;
3863585b 194
52cd47c9
MV
195 eeprom_write_enable(dev_addr, 1);
196
4f296d09
MV
197 /*
198 * Write data until done or would cross a write page boundary.
3863585b
WD
199 * We must write the address again when changing pages
200 * because the address counter only increments within a page.
201 */
52bc7c7e 202 ret = eeprom_rw(dev_addr, offset, buffer, cnt, 0);
52cd47c9
MV
203
204 eeprom_write_enable(dev_addr, 0);
1a37889b 205 return ret;
3863585b
WD
206}
207
c40f0372
NK
208static int parse_numeric_param(char *str)
209{
210 char *endptr;
211 int value = simple_strtol(str, &endptr, 16);
212
213 return (*endptr != '\0') ? -1 : value;
214}
215
216/**
217 * parse_i2c_bus_addr - parse the i2c bus and i2c devaddr parameters
218 *
219 * @i2c_bus: address to store the i2c bus
220 * @i2c_addr: address to store the device i2c address
221 * @argc: count of command line arguments left to parse
222 * @argv: command line arguments left to parse
223 * @argc_no_bus_addr: argc value we expect to see when bus & addr aren't given
224 *
225 * @returns: number of arguments parsed or CMD_RET_USAGE if error
226 */
227static int parse_i2c_bus_addr(int *i2c_bus, ulong *i2c_addr, int argc,
228 char * const argv[], int argc_no_bus_addr)
229{
230 int argc_no_bus = argc_no_bus_addr + 1;
231 int argc_bus_addr = argc_no_bus_addr + 2;
232
233#ifdef CONFIG_SYS_DEF_EEPROM_ADDR
234 if (argc == argc_no_bus_addr) {
235 *i2c_bus = -1;
236 *i2c_addr = CONFIG_SYS_DEF_EEPROM_ADDR;
237
238 return 0;
239 }
240#endif
241 if (argc == argc_no_bus) {
242 *i2c_bus = -1;
243 *i2c_addr = parse_numeric_param(argv[0]);
244
245 return 1;
246 }
247
248 if (argc == argc_bus_addr) {
249 *i2c_bus = parse_numeric_param(argv[0]);
250 *i2c_addr = parse_numeric_param(argv[1]);
251
252 return 2;
253 }
254
255 return CMD_RET_USAGE;
256}
257
aa9e6044 258#ifdef CONFIG_CMD_EEPROM_LAYOUT
aa9e6044
NK
259
260__weak int eeprom_parse_layout_version(char *str)
261{
262 return LAYOUT_VERSION_UNRECOGNIZED;
263}
264
265static unsigned char eeprom_buf[CONFIG_SYS_EEPROM_SIZE];
266
e7c2729b
NK
267#endif
268
aa9e6044 269enum eeprom_action {
e7c2729b
NK
270 EEPROM_READ,
271 EEPROM_WRITE,
aa9e6044
NK
272 EEPROM_PRINT,
273 EEPROM_UPDATE,
274 EEPROM_ACTION_INVALID,
275};
276
277static enum eeprom_action parse_action(char *cmd)
278{
3dc9be82
NK
279 if (!strncmp(cmd, "read", 4))
280 return EEPROM_READ;
281 if (!strncmp(cmd, "write", 5))
282 return EEPROM_WRITE;
283#ifdef CONFIG_CMD_EEPROM_LAYOUT
aa9e6044
NK
284 if (!strncmp(cmd, "print", 5))
285 return EEPROM_PRINT;
286 if (!strncmp(cmd, "update", 6))
287 return EEPROM_UPDATE;
3dc9be82 288#endif
aa9e6044
NK
289
290 return EEPROM_ACTION_INVALID;
291}
292
aa9e6044 293static int eeprom_execute_command(enum eeprom_action action, int i2c_bus,
e7c2729b
NK
294 ulong i2c_addr, int layout_ver, char *key,
295 char *value, ulong addr, ulong off, ulong cnt)
aa9e6044 296{
e7c2729b
NK
297 int rcode = 0;
298 const char *const fmt =
299 "\nEEPROM @0x%lX %s: addr %08lx off %04lx count %ld ... ";
300#ifdef CONFIG_CMD_EEPROM_LAYOUT
aa9e6044 301 struct eeprom_layout layout;
e7c2729b 302#endif
aa9e6044
NK
303
304 if (action == EEPROM_ACTION_INVALID)
305 return CMD_RET_USAGE;
306
307 eeprom_init(i2c_bus);
e7c2729b
NK
308 if (action == EEPROM_READ) {
309 printf(fmt, i2c_addr, "read", addr, off, cnt);
310
311 rcode = eeprom_read(i2c_addr, off, (uchar *)addr, cnt);
312
313 puts("done\n");
314 return rcode;
315 } else if (action == EEPROM_WRITE) {
316 printf(fmt, i2c_addr, "write", addr, off, cnt);
317
318 rcode = eeprom_write(i2c_addr, off, (uchar *)addr, cnt);
319
320 puts("done\n");
321 return rcode;
322 }
323
324#ifdef CONFIG_CMD_EEPROM_LAYOUT
aa9e6044
NK
325 rcode = eeprom_read(i2c_addr, 0, eeprom_buf, CONFIG_SYS_EEPROM_SIZE);
326 if (rcode < 0)
327 return rcode;
328
329 eeprom_layout_setup(&layout, eeprom_buf, CONFIG_SYS_EEPROM_SIZE,
330 layout_ver);
331
332 if (action == EEPROM_PRINT) {
333 layout.print(&layout);
334 return 0;
335 }
336
337 layout.update(&layout, key, value);
338
339 rcode = eeprom_write(i2c_addr, 0, layout.data, CONFIG_SYS_EEPROM_SIZE);
e7c2729b 340#endif
aa9e6044
NK
341
342 return rcode;
343}
344
345#define NEXT_PARAM(argc, index) { (argc)--; (index)++; }
3dc9be82 346int do_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
aa9e6044
NK
347{
348 int layout_ver = LAYOUT_VERSION_AUTODETECT;
349 enum eeprom_action action = EEPROM_ACTION_INVALID;
3dc9be82
NK
350 int i2c_bus = -1, index = 0;
351 ulong i2c_addr = -1, addr = 0, cnt = 0, off = 0;
352 int ret;
aa9e6044
NK
353 char *field_name = "";
354 char *field_value = "";
355
356 if (argc <= 1)
357 return CMD_RET_USAGE;
358
359 NEXT_PARAM(argc, index); /* Skip program name */
360
361 action = parse_action(argv[index]);
362 NEXT_PARAM(argc, index);
363
3dc9be82 364 if (action == EEPROM_ACTION_INVALID)
aa9e6044
NK
365 return CMD_RET_USAGE;
366
3dc9be82
NK
367#ifdef CONFIG_CMD_EEPROM_LAYOUT
368 if (action == EEPROM_PRINT || action == EEPROM_UPDATE) {
369 if (!strcmp(argv[index], "-l")) {
370 NEXT_PARAM(argc, index);
371 layout_ver = eeprom_parse_layout_version(argv[index]);
372 NEXT_PARAM(argc, index);
373 }
aa9e6044 374 }
3dc9be82 375#endif
aa9e6044 376
3dc9be82
NK
377 switch (action) {
378 case EEPROM_READ:
379 case EEPROM_WRITE:
380 ret = parse_i2c_bus_addr(&i2c_bus, &i2c_addr, argc,
381 argv + index, 3);
382 break;
383 case EEPROM_PRINT:
384 ret = parse_i2c_bus_addr(&i2c_bus, &i2c_addr, argc,
385 argv + index, 0);
386 break;
387 case EEPROM_UPDATE:
388 ret = parse_i2c_bus_addr(&i2c_bus, &i2c_addr, argc,
389 argv + index, 2);
390 break;
391 default:
392 /* Get compiler to stop whining */
aa9e6044 393 return CMD_RET_USAGE;
3dc9be82 394 }
aa9e6044 395
3dc9be82
NK
396 if (ret == CMD_RET_USAGE)
397 return ret;
aa9e6044 398
3dc9be82 399 while (ret--)
aa9e6044 400 NEXT_PARAM(argc, index);
aa9e6044 401
3dc9be82
NK
402 if (action == EEPROM_READ || action == EEPROM_WRITE) {
403 addr = parse_numeric_param(argv[index]);
404 NEXT_PARAM(argc, index);
405 off = parse_numeric_param(argv[index]);
aa9e6044 406 NEXT_PARAM(argc, index);
3dc9be82 407 cnt = parse_numeric_param(argv[index]);
aa9e6044
NK
408 }
409
aa9e6044 410#ifdef CONFIG_CMD_EEPROM_LAYOUT
3dc9be82
NK
411 if (action == EEPROM_UPDATE) {
412 field_name = argv[index];
413 NEXT_PARAM(argc, index);
414 field_value = argv[index];
415 NEXT_PARAM(argc, index);
aa9e6044
NK
416 }
417#endif
418
3dc9be82
NK
419 return eeprom_execute_command(action, i2c_bus, i2c_addr, layout_ver,
420 field_name, field_value, addr, off, cnt);
4f296d09 421}
8bde7f77 422
0d498393 423U_BOOT_CMD(
aa9e6044 424 eeprom, 8, 1, do_eeprom,
2fb2604d 425 "EEPROM sub-system",
d4fec4e9
MV
426 "read <bus> <devaddr> addr off cnt\n"
427 "eeprom write <bus> <devaddr> addr off cnt\n"
a89c33db 428 " - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'"
aa9e6044
NK
429#ifdef CONFIG_CMD_EEPROM_LAYOUT
430 "\n"
3dc9be82 431 "eeprom print [-l <layout_version>] <bus> <devaddr>\n"
aa9e6044 432 " - Print layout fields and their data in human readable format\n"
3dc9be82 433 "eeprom update [-l <layout_version>] <bus> <devaddr> field_name field_value\n"
aa9e6044
NK
434 " - Update a specific eeprom field with new data.\n"
435 " The new data must be written in the same human readable format as shown by the print command.\n"
436 "\n"
437 "LAYOUT VERSIONS\n"
438 "The -l option can be used to force the command to interpret the EEPROM data using the chosen layout.\n"
439 "If the -l option is omitted, the command will auto detect the layout based on the data in the EEPROM.\n"
440 "The values which can be provided with the -l option are:\n"
441 CONFIG_EEPROM_LAYOUT_HELP_STRING"\n"
442#endif
0e350f81 443)