test: rng: Add a UT testcase for the rng command
[platform/kernel/u-boot.git] / board / gardena / smart-gateway-mt7688 / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4  */
5
6 #include <common.h>
7 #include <command.h>
8 #include <env.h>
9 #include <env_internal.h>
10 #include <flash.h>
11 #include <init.h>
12 #include <led.h>
13 #include <log.h>
14 #include <malloc.h>
15 #include <net.h>
16 #include <spi.h>
17 #include <spi_flash.h>
18 #include <linux/delay.h>
19 #include <linux/stringify.h>
20 #include <u-boot/crc.h>
21 #include <uuid.h>
22 #include <linux/ctype.h>
23 #include <linux/io.h>
24
25 #define MT76XX_AGPIO_CFG        0x1000003c
26
27 #define FACTORY_DATA_OFFS       0xc0000
28 #define FACTORY_DATA_SECT_SIZE  0x10000
29 #if ((CONFIG_ENV_OFFSET_REDUND + CONFIG_ENV_SIZE) > FACTORY_DATA_OFFS)
30 #error "U-Boot image with environment too big (overlapping with factory-data)!"
31 #endif
32 #define FACTORY_DATA_USER_OFFS  0x140
33 #define FACTORY_DATA_SIZE       0x1f0
34 #define FACTORY_DATA_CRC_LEN    (FACTORY_DATA_SIZE -                    \
35                                  FACTORY_DATA_USER_OFFS - sizeof(u32))
36
37 #define FACTORY_DATA_MAGIC      0xCAFEBABE
38
39 struct factory_data_values {
40         u8 pad_1[4];
41         u8 wifi_mac[6];         /* offs: 0x004: binary value */
42         u8 pad_2[30];
43         u8 eth_mac[6];          /* offs: 0x028: binary value */
44         u8 pad_3[FACTORY_DATA_USER_OFFS - 4 - 6 - 30 - 6];
45         /* User values start here at offset 0x140 */
46         u32 crc;
47         u32 magic;
48         u32 version;
49         char ipr_id[UUID_STR_LEN];      /* UUID as string w/o ending \0 */
50         char hqv_id[UUID_STR_LEN];      /* UUID as string w/o ending \0 */
51         char unielec_id[UUID_STR_LEN];  /* UUID as string w/o ending \0 */
52 };
53
54 int board_early_init_f(void)
55 {
56         void __iomem *gpio_mode;
57
58         /* Configure digital vs analog GPIOs */
59         gpio_mode = ioremap_nocache(MT76XX_AGPIO_CFG, 0x100);
60         iowrite32(0x00fe01ff, gpio_mode);
61
62         return 0;
63 }
64
65 static bool prepare_uuid_var(const char *fd_ptr, const char *env_var_name,
66                              char errorchar)
67 {
68         char str[UUID_STR_LEN + 1] = { 0 };     /* Enough for UUID stuff */
69         bool env_updated = false;
70         char *env;
71         int i;
72
73         memcpy(str, fd_ptr, UUID_STR_LEN);
74
75         /* Convert non-ascii character to 'X' */
76         for (i = 0; i < UUID_STR_LEN; i++) {
77                 if (!(isascii(str[i]) && isprint(str[i])))
78                         str[i] = errorchar;
79         }
80
81         env = env_get(env_var_name);
82         if (strcmp(env, str)) {
83                 env_set(env_var_name, str);
84                 env_updated = true;
85         }
86
87         return env_updated;
88 }
89
90 static void factory_data_env_config(void)
91 {
92         struct factory_data_values *fd;
93         struct spi_flash *sf;
94         int env_updated = 0;
95         char str[UUID_STR_LEN + 1];     /* Enough for UUID stuff */
96         char *env;
97         u8 *buf;
98         u32 crc;
99         int ret;
100         u8 *ptr;
101
102         buf = malloc(FACTORY_DATA_SIZE);
103         if (!buf) {
104                 printf("F-Data:Unable to allocate buffer\n");
105                 return;
106         }
107
108         /*
109          * Get values from factory-data area in SPI NOR
110          */
111         sf = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
112                              CONFIG_SF_DEFAULT_CS,
113                              CONFIG_SF_DEFAULT_SPEED,
114                              CONFIG_SF_DEFAULT_MODE);
115         if (!sf) {
116                 printf("F-Data:Unable to access SPI NOR flash\n");
117                 goto err_free;
118         }
119
120         ret = spi_flash_read(sf, FACTORY_DATA_OFFS, FACTORY_DATA_SIZE,
121                              (void *)buf);
122         if (ret) {
123                 printf("F-Data:Unable to read factory-data from SPI NOR\n");
124                 goto err_spi_flash;
125         }
126
127         fd = (struct factory_data_values *)buf;
128
129         if (fd->magic != FACTORY_DATA_MAGIC)
130                 printf("F-Data:Magic value not correct\n");
131
132         crc = crc32(0, (u8 *)&fd->magic, FACTORY_DATA_CRC_LEN);
133         if (crc != fd->crc)
134                 printf("F-Data:CRC not correct\n");
135         else
136                 printf("F-Data:factory-data version %x detected\n",
137                        fd->version);
138
139         /* Handle wifi_mac env variable */
140         ptr = fd->wifi_mac;
141         sprintf(str, "%pM", ptr);
142         if (!is_valid_ethaddr(ptr))
143                 printf("F-Data:Invalid MAC addr: wifi_mac %s\n", str);
144
145         env = env_get("wifiaddr");
146         if (strcmp(env, str)) {
147                 env_set("wifiaddr", str);
148                 env_updated = 1;
149         }
150
151         /* Handle eth_mac env variable */
152         ptr = fd->eth_mac;
153         sprintf(str, "%pM", ptr);
154         if (!is_valid_ethaddr(ptr))
155                 printf("F-Data:Invalid MAC addr: eth_mac %s\n", str);
156
157         env = env_get("ethaddr");
158         if (strcmp(env, str)) {
159                 env_set("ethaddr", str);
160                 env_updated = 1;
161         }
162
163         /* Handle UUID env variables */
164         env_updated |= prepare_uuid_var(fd->ipr_id, "linuxmoduleid", 'X');
165         env_updated |= prepare_uuid_var(fd->hqv_id, "linuxmodulehqvid", '\0');
166         env_updated |= prepare_uuid_var(fd->unielec_id,
167                                         "linuxmoduleunielecid", '\0');
168
169         /* Check if the environment was updated and needs to get stored */
170         if (env_updated != 0) {
171                 printf("F-Data:Values don't match env values -> saving\n");
172                 env_save();
173         } else {
174                 debug("F-Data:Values match current env values\n");
175         }
176
177 err_spi_flash:
178         spi_flash_free(sf);
179
180 err_free:
181         free(buf);
182 }
183
184 int board_late_init(void)
185 {
186         factory_data_env_config();
187
188         return 0;
189 }
190
191 static void copy_or_generate_uuid(char *fd_ptr, const char *env_var_name)
192 {
193         char str[UUID_STR_LEN + 1] = { 0 };     /* Enough for UUID stuff */
194         char *env;
195
196         /* Don't use the UUID dest place, as the \0 char won't fit */
197         env = env_get(env_var_name);
198         if (env)
199                 strncpy(str, env, UUID_STR_LEN);
200         else
201                 gen_rand_uuid_str(str, UUID_STR_FORMAT_STD);
202
203         memcpy(fd_ptr, str, UUID_STR_LEN);
204 }
205
206 /*
207  * Helper function to provide some sane factory-data values for testing
208  * purpose, when these values are not programmed correctly
209  */
210 int do_fd_write(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
211 {
212         struct factory_data_values *fd;
213         struct spi_flash *sf;
214         u8 *buf;
215         int ret = CMD_RET_FAILURE;
216
217         buf = malloc(FACTORY_DATA_SECT_SIZE);
218         if (!buf) {
219                 printf("F-Data:Unable to allocate buffer\n");
220                 return CMD_RET_FAILURE;
221         }
222
223         sf = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
224                              CONFIG_SF_DEFAULT_CS,
225                              CONFIG_SF_DEFAULT_SPEED,
226                              CONFIG_SF_DEFAULT_MODE);
227         if (!sf) {
228                 printf("F-Data:Unable to access SPI NOR flash\n");
229                 goto err_free;
230         }
231
232         /* Generate the factory-data struct */
233
234         /* Fist read complete sector into buffer */
235         ret = spi_flash_read(sf, FACTORY_DATA_OFFS, FACTORY_DATA_SECT_SIZE,
236                              (void *)buf);
237         if (ret) {
238                 printf("F-Data:spi_flash_read failed (%d)\n", ret);
239                 goto err_spi_flash;
240         }
241
242         fd = (struct factory_data_values *)buf;
243         fd->magic = FACTORY_DATA_MAGIC;
244         fd->version = 0x1;
245
246         /* Use existing MAC and UUID values or generate some random ones */
247         if (!eth_env_get_enetaddr("wifiaddr", fd->wifi_mac)) {
248                 net_random_ethaddr(fd->wifi_mac);
249                 /* to get a different seed value for the MAC address */
250                 mdelay(10);
251         }
252
253         if (!eth_env_get_enetaddr("ethaddr", fd->eth_mac))
254                 net_random_ethaddr(fd->eth_mac);
255
256         copy_or_generate_uuid(fd->ipr_id, "linuxmoduleid");
257         copy_or_generate_uuid(fd->hqv_id, "linuxmodulehqvid");
258         copy_or_generate_uuid(fd->unielec_id, "linuxmoduleunielecid");
259
260         printf("New factory-data values:\n");
261         printf("wifiaddr=%pM\n", fd->wifi_mac);
262         printf("ethaddr=%pM\n", fd->eth_mac);
263
264         /*
265          * We don't have the \0 char at the end, so we need to specify the
266          * length in the printf format instead
267          */
268         printf("linuxmoduleid=%." __stringify(UUID_STR_LEN) "s\n", fd->ipr_id);
269         printf("linuxmodulehqvid=%." __stringify(UUID_STR_LEN) "s\n",
270                fd->hqv_id);
271         printf("linuxmoduleunielecid=%." __stringify(UUID_STR_LEN) "s\n",
272                fd->unielec_id);
273
274         fd->crc = crc32(0, (u8 *)&fd->magic, FACTORY_DATA_CRC_LEN);
275
276         ret = spi_flash_erase(sf, FACTORY_DATA_OFFS, FACTORY_DATA_SECT_SIZE);
277         if (ret) {
278                 printf("F-Data:spi_flash_erase failed (%d)\n", ret);
279                 goto err_spi_flash;
280         }
281
282         ret = spi_flash_write(sf, FACTORY_DATA_OFFS, FACTORY_DATA_SECT_SIZE,
283                               buf);
284         if (ret) {
285                 printf("F-Data:spi_flash_write failed (%d)\n", ret);
286                 goto err_spi_flash;
287         }
288
289         printf("F-Data:factory-data values written to SPI NOR flash\n");
290
291 err_spi_flash:
292         spi_flash_free(sf);
293
294 err_free:
295         free(buf);
296
297         return ret;
298 }
299
300 #ifndef CONFIG_SPL_BUILD
301 U_BOOT_CMD(
302         fd_write,       1,      0,      do_fd_write,
303         "Write test factory-data values to SPI NOR",
304         "\n"
305 );
306 #endif