blob: f3e82d4f1891d25fee117c405ac5fc97636b3e4f [file] [log] [blame]
Heiko Schocher499c4982013-08-19 16:39:01 +02001/*
2 *
3 * Read FactorySet information from EEPROM into global structure.
4 * (C) Copyright 2013 Siemens Schweiz AG
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#if !defined(CONFIG_SPL_BUILD)
10
11#include <common.h>
Alex Kiernan9c215492018-04-01 09:22:38 +000012#include <environment.h>
Heiko Schocher499c4982013-08-19 16:39:01 +020013#include <i2c.h>
14#include <asm/io.h>
15#include <asm/arch/cpu.h>
16#include <asm/arch/sys_proto.h>
17#include <asm/unaligned.h>
18#include <net.h>
Samuel Egli8069bfe2013-11-04 14:05:03 +010019#include <errno.h>
20#include <g_dnl.h>
Heiko Schocher499c4982013-08-19 16:39:01 +020021#include "factoryset.h"
22
23#define EEPR_PG_SZ 0x80
24#define EEPROM_FATORYSET_OFFSET 0x400
25#define OFF_PG EEPROM_FATORYSET_OFFSET/EEPR_PG_SZ
26
27/* Global variable that contains necessary information from FactorySet */
28struct factorysetcontainer factory_dat;
29
30#define fact_get_char(i) *((char *)&eeprom_buf[i])
31
32static int fact_match(unsigned char *eeprom_buf, uchar *s1, int i2)
33{
34 if (s1 == NULL)
35 return -1;
36
37 while (*s1 == fact_get_char(i2++))
38 if (*s1++ == '=')
39 return i2;
40
41 if (*s1 == '\0' && fact_get_char(i2-1) == '=')
42 return i2;
43
44 return -1;
45}
46
47static int get_factory_val(unsigned char *eeprom_buf, int size, uchar *name,
48 uchar *buf, int len)
49{
50 int i, nxt = 0;
51
52 for (i = 0; fact_get_char(i) != '\0'; i = nxt + 1) {
53 int val, n;
54
55 for (nxt = i; fact_get_char(nxt) != '\0'; ++nxt) {
56 if (nxt >= size)
57 return -1;
58 }
59
60 val = fact_match(eeprom_buf, (uchar *)name, i);
61 if (val < 0)
62 continue;
63
64 /* found; copy out */
65 for (n = 0; n < len; ++n, ++buf) {
66 *buf = fact_get_char(val++);
67 if (*buf == '\0')
68 return n;
69 }
70
71 if (n)
72 *--buf = '\0';
73
74 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
75 len, name);
76
77 return n;
78 }
79 return -1;
80}
81
82static
83int get_factory_record_val(unsigned char *eeprom_buf, int size, uchar *record,
84 uchar *name, uchar *buf, int len)
85{
86 int ret = -1;
87 int i, nxt = 0;
88 int c;
89 unsigned char end = 0xff;
Heiko Schocher6596b852014-11-18 11:51:04 +010090 unsigned char tmp;
Heiko Schocher499c4982013-08-19 16:39:01 +020091
92 for (i = 0; fact_get_char(i) != end; i = nxt) {
93 nxt = i + 1;
94 if (fact_get_char(i) == '>') {
95 int pos;
96 int endpos;
97 int z;
Heiko Schocher6596b852014-11-18 11:51:04 +010098 int level = 0;
Heiko Schocher499c4982013-08-19 16:39:01 +020099
100 c = strncmp((char *)&eeprom_buf[i + 1], (char *)record,
101 strlen((char *)record));
102 if (c == 0) {
103 /* record found */
104 pos = i + strlen((char *)record) + 2;
105 nxt = pos;
106 /* search for "<" */
107 c = -1;
108 for (z = pos; fact_get_char(z) != end; z++) {
Heiko Schocher6596b852014-11-18 11:51:04 +0100109 if (fact_get_char(z) == '<') {
110 if (level == 0) {
111 endpos = z;
112 nxt = endpos;
113 c = 0;
114 break;
115 } else {
116 level--;
117 }
Heiko Schocher499c4982013-08-19 16:39:01 +0200118 }
Heiko Schocher6596b852014-11-18 11:51:04 +0100119 if (fact_get_char(z) == '>')
120 level++;
Heiko Schocher499c4982013-08-19 16:39:01 +0200121 }
Heiko Schocher6596b852014-11-18 11:51:04 +0100122 } else {
123 continue;
Heiko Schocher499c4982013-08-19 16:39:01 +0200124 }
125 if (c == 0) {
126 /* end found -> call get_factory_val */
Heiko Schocher6596b852014-11-18 11:51:04 +0100127 tmp = eeprom_buf[endpos];
Heiko Schocher499c4982013-08-19 16:39:01 +0200128 eeprom_buf[endpos] = end;
129 ret = get_factory_val(&eeprom_buf[pos],
Heiko Schocher6596b852014-11-18 11:51:04 +0100130 endpos - pos, name, buf, len);
Heiko Schocher499c4982013-08-19 16:39:01 +0200131 /* fix buffer */
Heiko Schocher6596b852014-11-18 11:51:04 +0100132 eeprom_buf[endpos] = tmp;
Heiko Schocher499c4982013-08-19 16:39:01 +0200133 debug("%s: %s.%s = %s\n",
134 __func__, record, name, buf);
135 return ret;
136 }
137 }
138 }
139 return ret;
140}
141
142int factoryset_read_eeprom(int i2c_addr)
143{
144 int i, pages = 0, size = 0;
145 unsigned char eeprom_buf[0x3c00], hdr[4], buf[MAX_STRING_LENGTH];
146 unsigned char *cp, *cp1;
147
Marek Vasut7f8d4362018-02-16 16:41:18 +0100148#if defined(CONFIG_DFU_OVER_USB)
Maxime Ripard7f78b9d2017-09-07 08:58:08 +0200149 factory_dat.usb_vendor_id = CONFIG_USB_GADGET_VENDOR_NUM;
150 factory_dat.usb_product_id = CONFIG_USB_GADGET_PRODUCT_NUM;
Heiko Schocher499c4982013-08-19 16:39:01 +0200151#endif
152 if (i2c_probe(i2c_addr))
153 goto err;
154
155 if (i2c_read(i2c_addr, EEPROM_FATORYSET_OFFSET, 2, hdr, sizeof(hdr)))
156 goto err;
157
158 if ((hdr[0] != 0x99) || (hdr[1] != 0x80)) {
159 printf("FactorySet is not right in eeprom.\n");
160 return 1;
161 }
162
163 /* get FactorySet size */
164 size = (hdr[2] << 8) + hdr[3] + sizeof(hdr);
165 if (size > 0x3bfa)
166 size = 0x3bfa;
167
168 pages = size / EEPR_PG_SZ;
169
170 /*
171 * read the eeprom using i2c
172 * I can not read entire eeprom in once, so separate into several
173 * times. Furthermore, fetch eeprom take longer time, so we fetch
174 * data after every time we got a record from eeprom
175 */
176 debug("Read eeprom page :\n");
177 for (i = 0; i < pages; i++)
178 if (i2c_read(i2c_addr, (OFF_PG + i) * EEPR_PG_SZ, 2,
179 eeprom_buf + (i * EEPR_PG_SZ), EEPR_PG_SZ))
180 goto err;
181
182 if (size % EEPR_PG_SZ)
183 if (i2c_read(i2c_addr, (OFF_PG + pages) * EEPR_PG_SZ, 2,
184 eeprom_buf + (pages * EEPR_PG_SZ),
185 (size % EEPR_PG_SZ)))
186 goto err;
187
188 /* we do below just for eeprom align */
189 for (i = 0; i < size; i++)
190 if (eeprom_buf[i] == '\n')
191 eeprom_buf[i] = 0;
192
193 /* skip header */
194 size -= sizeof(hdr);
195 cp = (uchar *)eeprom_buf + sizeof(hdr);
196
197 /* get mac address */
198 get_factory_record_val(cp, size, (uchar *)"ETH1", (uchar *)"mac",
199 buf, MAX_STRING_LENGTH);
200 cp1 = buf;
201 for (i = 0; i < 6; i++) {
202 factory_dat.mac[i] = simple_strtoul((char *)cp1, NULL, 16);
203 cp1 += 3;
204 }
205
Marek Vasut7f8d4362018-02-16 16:41:18 +0100206#if defined(CONFIG_DFU_OVER_USB)
Heiko Schocher499c4982013-08-19 16:39:01 +0200207 /* read vid and pid for dfu mode */
208 if (0 <= get_factory_record_val(cp, size, (uchar *)"USBD1",
209 (uchar *)"vid", buf,
210 MAX_STRING_LENGTH)) {
211 factory_dat.usb_vendor_id = simple_strtoul((char *)buf,
212 NULL, 16);
213 }
214
215 if (0 <= get_factory_record_val(cp, size, (uchar *)"USBD1",
216 (uchar *)"pid", buf,
217 MAX_STRING_LENGTH)) {
218 factory_dat.usb_product_id = simple_strtoul((char *)buf,
219 NULL, 16);
220 }
221 printf("DFU USB: VID = 0x%4x, PID = 0x%4x\n", factory_dat.usb_vendor_id,
222 factory_dat.usb_product_id);
223#endif
Heiko Schocher499c4982013-08-19 16:39:01 +0200224#if defined(CONFIG_VIDEO)
225 if (0 <= get_factory_record_val(cp, size, (uchar *)"DISP1",
226 (uchar *)"name", factory_dat.disp_name,
227 MAX_STRING_LENGTH)) {
228 debug("display name: %s\n", factory_dat.disp_name);
229 }
Heiko Schocher499c4982013-08-19 16:39:01 +0200230#endif
Samuel Egli8069bfe2013-11-04 14:05:03 +0100231 if (0 <= get_factory_record_val(cp, size, (uchar *)"DEV",
232 (uchar *)"num", factory_dat.serial,
233 MAX_STRING_LENGTH)) {
234 debug("serial number: %s\n", factory_dat.serial);
235 }
236 if (0 <= get_factory_record_val(cp, size, (uchar *)"DEV",
237 (uchar *)"ver", buf,
238 MAX_STRING_LENGTH)) {
239 factory_dat.version = simple_strtoul((char *)buf,
240 NULL, 16);
241 debug("version number: %d\n", factory_dat.version);
242 }
Heiko Schocherfaf2dc62014-11-18 11:51:06 +0100243 /* Get ASN from factory set if available */
244 if (0 <= get_factory_record_val(cp, size, (uchar *)"DEV",
245 (uchar *)"id", factory_dat.asn,
246 MAX_STRING_LENGTH)) {
247 debug("factoryset asn: %s\n", factory_dat.asn);
248 } else {
249 factory_dat.asn[0] = 0;
250 }
Heiko Schocher7b905652014-11-18 11:51:05 +0100251 /* Get COMP/ver from factory set if available */
252 if (0 <= get_factory_record_val(cp, size, (uchar *)"COMP",
253 (uchar *)"ver",
254 factory_dat.comp_version,
255 MAX_STRING_LENGTH)) {
256 debug("factoryset COMP/ver: %s\n", factory_dat.comp_version);
257 } else {
258 strcpy((char *)factory_dat.comp_version, "1.0");
259 }
260
Heiko Schocher499c4982013-08-19 16:39:01 +0200261 return 0;
262
263err:
264 printf("Could not read the EEPROM; something fundamentally wrong on the I2C bus.\n");
265 return 1;
266}
267
268static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
269
Simon Glass6a38e412017-08-03 12:22:09 -0600270static int factoryset_mac_env_set(void)
Heiko Schocher499c4982013-08-19 16:39:01 +0200271{
272 uint8_t mac_addr[6];
273
274 debug("FactorySet: Set mac address\n");
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500275 if (is_valid_ethaddr(factory_dat.mac)) {
Heiko Schocher499c4982013-08-19 16:39:01 +0200276 memcpy(mac_addr, factory_dat.mac, 6);
277 } else {
278 uint32_t mac_hi, mac_lo;
279
280 debug("Warning: FactorySet: <ethaddr> not set. Fallback to E-fuse\n");
281 mac_lo = readl(&cdev->macid0l);
282 mac_hi = readl(&cdev->macid0h);
283
284 mac_addr[0] = mac_hi & 0xFF;
285 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
286 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
287 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
288 mac_addr[4] = mac_lo & 0xFF;
289 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500290 if (!is_valid_ethaddr(mac_addr)) {
Heiko Schocher499c4982013-08-19 16:39:01 +0200291 printf("Warning: ethaddr not set by FactorySet or E-fuse. Set <ethaddr> variable to overcome this.\n");
292 return -1;
293 }
294 }
295
Simon Glass8551d552017-08-03 12:22:11 -0600296 eth_env_set_enetaddr("ethaddr", mac_addr);
Heiko Schocher499c4982013-08-19 16:39:01 +0200297 return 0;
298}
299
Simon Glass6a38e412017-08-03 12:22:09 -0600300int factoryset_env_set(void)
Heiko Schocher499c4982013-08-19 16:39:01 +0200301{
302 int ret = 0;
303
Simon Glass6a38e412017-08-03 12:22:09 -0600304 if (factoryset_mac_env_set() < 0)
Heiko Schocher499c4982013-08-19 16:39:01 +0200305 ret = -1;
306
307 return ret;
308}
309
Lukasz Majewski44b5b382013-10-08 14:30:41 +0200310int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
Heiko Schocher499c4982013-08-19 16:39:01 +0200311{
312 put_unaligned(factory_dat.usb_vendor_id, &dev->idVendor);
313 put_unaligned(factory_dat.usb_product_id, &dev->idProduct);
Samuel Egli8069bfe2013-11-04 14:05:03 +0100314 g_dnl_set_serialnumber((char *)factory_dat.serial);
315
Heiko Schocher499c4982013-08-19 16:39:01 +0200316 return 0;
317}
Samuel Egli8069bfe2013-11-04 14:05:03 +0100318
319int g_dnl_get_board_bcd_device_number(int gcnum)
320{
321 return factory_dat.version;
322}
Heiko Schocher499c4982013-08-19 16:39:01 +0200323#endif /* defined(CONFIG_SPL_BUILD) */