2 * Copyright (C) 2014 Gateworks Corporation
3 * Author: Tim Harvey <tharvey@gateworks.com>
5 * SPDX-License-Identifier: GPL-2.0+
12 #include <asm/bitops.h>
15 #include "ventana_eeprom.h"
17 /* read ventana EEPROM, check for validity, and return baseboard type */
19 read_eeprom(int bus, struct ventana_board_info *info)
25 unsigned char *buf = (unsigned char *)info;
27 memset(info, 0, sizeof(*info));
30 * On a board with a missing/depleted backup battery for GSC, the
31 * board may be ready to probe the GSC before its firmware is
32 * running. We will wait here indefinately for the GSC/EEPROM.
35 if (0 == i2c_set_bus_num(bus) &&
36 0 == i2c_probe(GSC_EEPROM_ADDR))
41 /* read eeprom config section */
42 if (gsc_i2c_read(GSC_EEPROM_ADDR, 0x00, 1, buf, sizeof(*info))) {
43 puts("EEPROM: Failed to read EEPROM\n");
48 if (info->model[0] != 'G' || info->model[1] != 'W') {
49 puts("EEPROM: Invalid Model in EEPROM\n");
53 /* validate checksum */
54 for (chksum = 0, i = 0; i < sizeof(*info)-2; i++)
56 if ((info->chksum[0] != chksum>>8) ||
57 (info->chksum[1] != (chksum&0xff))) {
58 puts("EEPROM: Failed EEPROM checksum\n");
62 /* original GW5400-A prototype */
63 baseboard = info->model[3];
64 if (strncasecmp((const char *)info->model, "GW5400-A", 8) == 0)
69 case '0': /* original GW5400-A prototype */
85 if (info->model[4] == '1') {
88 } else if (info->model[4] == '2') {
91 } else if (info->model[4] == '3') {
97 if (info->model[4] == '0')
101 if (info->model[4] == '0' && info->model[5] == '3')
103 if (info->model[4] == '0' && info->model[5] == '4')
110 /* list of config bits that the bootloader will remove from dtb if not set */
111 struct ventana_eeprom_config econfig[] = {
112 { "eth0", "ethernet0", EECONFIG_ETH0 },
113 { "usb0", NULL, EECONFIG_USB0 },
114 { "usb1", NULL, EECONFIG_USB1 },
115 { "mmc0", NULL, EECONFIG_SD0 },
116 { "mmc1", NULL, EECONFIG_SD1 },
117 { "mmc2", NULL, EECONFIG_SD2 },
118 { "mmc3", NULL, EECONFIG_SD3 },
122 #ifdef CONFIG_CMD_EECONFIG
123 static struct ventana_eeprom_config *get_config(const char *name)
125 struct ventana_eeprom_config *cfg = econfig;
128 if (0 == strcmp(name, cfg->name))
135 static u8 econfig_bytes[sizeof(ventana_info.config)];
136 static int econfig_init = -1;
138 int do_econfig(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
140 struct ventana_eeprom_config *cfg;
141 struct ventana_board_info *info = &ventana_info;
145 return CMD_RET_USAGE;
148 if (econfig_init != 1) {
149 memcpy(econfig_bytes, info->config, sizeof(econfig_bytes));
154 if ((strncmp(argv[1], "list", 4) == 0)) {
157 printf("%s: %d\n", cfg->name,
158 test_bit(cfg->bit, econfig_bytes) ? 1 : 0);
164 else if ((strncmp(argv[1], "save", 4) == 0)) {
165 unsigned char *buf = (unsigned char *)info;
168 /* calculate new checksum */
169 memcpy(info->config, econfig_bytes, sizeof(econfig_bytes));
170 for (chksum = 0, i = 0; i < sizeof(*info)-2; i++)
172 debug("old chksum:0x%04x\n",
173 (info->chksum[0] << 8) | info->chksum[1]);
174 debug("new chksum:0x%04x\n", chksum);
175 info->chksum[0] = chksum >> 8;
176 info->chksum[1] = chksum & 0xff;
178 /* write new config data */
179 if (gsc_i2c_write(GSC_EEPROM_ADDR, info->config - (u8 *)info,
180 1, econfig_bytes, sizeof(econfig_bytes))) {
181 printf("EEPROM: Failed updating config\n");
182 return CMD_RET_FAILURE;
185 /* write new config data */
186 if (gsc_i2c_write(GSC_EEPROM_ADDR, info->chksum - (u8 *)info,
187 1, info->chksum, 2)) {
188 printf("EEPROM: Failed updating checksum\n");
189 return CMD_RET_FAILURE;
192 printf("Config saved to EEPROM\n");
196 else if (argc == 2) {
197 cfg = get_config(argv[1]);
199 printf("%s: %d\n", cfg->name,
200 test_bit(cfg->bit, econfig_bytes) ? 1 : 0);
202 printf("invalid config: %s\n", argv[1]);
203 return CMD_RET_FAILURE;
208 else if (argc == 3) {
209 cfg = get_config(argv[1]);
211 if (simple_strtol(argv[2], NULL, 10)) {
212 test_and_set_bit(cfg->bit, econfig_bytes);
213 printf("Enabled %s\n", cfg->name);
215 test_and_clear_bit(cfg->bit, econfig_bytes);
216 printf("Disabled %s\n", cfg->name);
219 printf("invalid config: %s\n", argv[1]);
220 return CMD_RET_FAILURE;
225 return CMD_RET_USAGE;
227 return CMD_RET_SUCCESS;
231 econfig, 3, 0, do_econfig,
232 "EEPROM configuration",
233 "list - list config\n"
234 "save - save config to EEPROM\n"
235 "<name> - get config 'name'\n"
236 "<name> [0|1] - set config 'name' to value\n"
239 #endif /* CONFIG_CMD_EECONFIG */