1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2 /*
3  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4  */
5 
6 #define LOG_CATEGORY LOGC_BOARD
7 
8 #include <common.h>
9 #include <adc.h>
10 #include <bootm.h>
11 #include <clk.h>
12 #include <config.h>
13 #include <dm.h>
14 #include <env.h>
15 #include <env_internal.h>
16 #include <fdt_support.h>
17 #include <g_dnl.h>
18 #include <generic-phy.h>
19 #include <hang.h>
20 #include <i2c.h>
21 #include <init.h>
22 #include <led.h>
23 #include <log.h>
24 #include <malloc.h>
25 #include <misc.h>
26 #include <mtd_node.h>
27 #include <net.h>
28 #include <netdev.h>
29 #include <phy.h>
30 #include <remoteproc.h>
31 #include <reset.h>
32 #include <syscon.h>
33 #include <usb.h>
34 #include <watchdog.h>
35 #include <asm/global_data.h>
36 #include <asm/io.h>
37 #include <asm/gpio.h>
38 #include <asm/arch/stm32.h>
39 #include <asm/arch/sys_proto.h>
40 #include <jffs2/load_kernel.h>
41 #include <linux/bitops.h>
42 #include <linux/delay.h>
43 #include <linux/err.h>
44 #include <linux/iopoll.h>
45 #include <power/regulator.h>
46 #include <usb/dwc2_udc.h>
47 
48 #include "../../st/common/stusb160x.h"
49 
50 /* SYSCFG registers */
51 #define SYSCFG_BOOTR		0x00
52 #define SYSCFG_PMCSETR		0x04
53 #define SYSCFG_IOCTRLSETR	0x18
54 #define SYSCFG_ICNR		0x1C
55 #define SYSCFG_CMPCR		0x20
56 #define SYSCFG_CMPENSETR	0x24
57 #define SYSCFG_PMCCLRR		0x44
58 
59 #define SYSCFG_BOOTR_BOOT_MASK		GENMASK(2, 0)
60 #define SYSCFG_BOOTR_BOOTPD_SHIFT	4
61 
62 #define SYSCFG_IOCTRLSETR_HSLVEN_TRACE		BIT(0)
63 #define SYSCFG_IOCTRLSETR_HSLVEN_QUADSPI	BIT(1)
64 #define SYSCFG_IOCTRLSETR_HSLVEN_ETH		BIT(2)
65 #define SYSCFG_IOCTRLSETR_HSLVEN_SDMMC		BIT(3)
66 #define SYSCFG_IOCTRLSETR_HSLVEN_SPI		BIT(4)
67 
68 #define SYSCFG_CMPCR_SW_CTRL		BIT(1)
69 #define SYSCFG_CMPCR_READY		BIT(8)
70 
71 #define SYSCFG_CMPENSETR_MPU_EN		BIT(0)
72 
73 #define SYSCFG_PMCSETR_ETH_CLK_SEL	BIT(16)
74 #define SYSCFG_PMCSETR_ETH_REF_CLK_SEL	BIT(17)
75 
76 #define SYSCFG_PMCSETR_ETH_SELMII	BIT(20)
77 
78 #define SYSCFG_PMCSETR_ETH_SEL_MASK	GENMASK(23, 21)
79 #define SYSCFG_PMCSETR_ETH_SEL_GMII_MII	0
80 #define SYSCFG_PMCSETR_ETH_SEL_RGMII	BIT(21)
81 #define SYSCFG_PMCSETR_ETH_SEL_RMII	BIT(23)
82 
83 /*
84  * Get a global data pointer
85  */
86 DECLARE_GLOBAL_DATA_PTR;
87 
88 #define USB_LOW_THRESHOLD_UV		200000
89 #define USB_WARNING_LOW_THRESHOLD_UV	660000
90 #define USB_START_LOW_THRESHOLD_UV	1230000
91 #define USB_START_HIGH_THRESHOLD_UV	2150000
92 
board_early_init_f(void)93 int board_early_init_f(void)
94 {
95 	/* nothing to do, only used in SPL */
96 	return 0;
97 }
98 
checkboard(void)99 int checkboard(void)
100 {
101 	int ret;
102 	char *mode;
103 	u32 otp;
104 	struct udevice *dev;
105 	const char *fdt_compat;
106 	int fdt_compat_len;
107 
108 	if (IS_ENABLED(CONFIG_TFABOOT))
109 		mode = "trusted";
110 	else
111 		mode = "basic";
112 
113 	fdt_compat = fdt_getprop(gd->fdt_blob, 0, "compatible",
114 				 &fdt_compat_len);
115 
116 	log_info("Board: stm32mp1 in %s mode (%s)\n", mode,
117 		 fdt_compat && fdt_compat_len ? fdt_compat : "");
118 
119 	/* display the STMicroelectronics board identification */
120 	if (CONFIG_IS_ENABLED(CMD_STBOARD)) {
121 		ret = uclass_get_device_by_driver(UCLASS_MISC,
122 						  DM_DRIVER_GET(stm32mp_bsec),
123 						  &dev);
124 		if (!ret)
125 			ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_BOARD),
126 					&otp, sizeof(otp));
127 		if (ret > 0 && otp)
128 			log_info("Board: MB%04x Var%d.%d Rev.%c-%02d\n",
129 				 otp >> 16,
130 				 (otp >> 12) & 0xF,
131 				 (otp >> 4) & 0xF,
132 				 ((otp >> 8) & 0xF) - 1 + 'A',
133 				 otp & 0xF);
134 	}
135 
136 	return 0;
137 }
138 
board_key_check(void)139 static void board_key_check(void)
140 {
141 	ofnode node;
142 	struct gpio_desc gpio;
143 	enum forced_boot_mode boot_mode = BOOT_NORMAL;
144 
145 	if (!IS_ENABLED(CONFIG_FASTBOOT) && !IS_ENABLED(CONFIG_CMD_STM32PROG))
146 		return;
147 
148 	node = ofnode_path("/config");
149 	if (!ofnode_valid(node)) {
150 		log_debug("no /config node?\n");
151 		return;
152 	}
153 	if (IS_ENABLED(CONFIG_FASTBOOT)) {
154 		if (gpio_request_by_name_nodev(node, "st,fastboot-gpios", 0,
155 					       &gpio, GPIOD_IS_IN)) {
156 			log_debug("could not find a /config/st,fastboot-gpios\n");
157 		} else {
158 			if (dm_gpio_get_value(&gpio)) {
159 				log_notice("Fastboot key pressed, ");
160 				boot_mode = BOOT_FASTBOOT;
161 			}
162 
163 			dm_gpio_free(NULL, &gpio);
164 		}
165 	}
166 	if (IS_ENABLED(CONFIG_CMD_STM32PROG)) {
167 		if (gpio_request_by_name_nodev(node, "st,stm32prog-gpios", 0,
168 					       &gpio, GPIOD_IS_IN)) {
169 			log_debug("could not find a /config/st,stm32prog-gpios\n");
170 		} else {
171 			if (dm_gpio_get_value(&gpio)) {
172 				log_notice("STM32Programmer key pressed, ");
173 				boot_mode = BOOT_STM32PROG;
174 			}
175 			dm_gpio_free(NULL, &gpio);
176 		}
177 	}
178 	if (boot_mode != BOOT_NORMAL) {
179 		log_notice("entering download mode...\n");
180 		clrsetbits_le32(TAMP_BOOT_CONTEXT,
181 				TAMP_BOOT_FORCED_MASK,
182 				boot_mode);
183 	}
184 }
185 
g_dnl_board_usb_cable_connected(void)186 int g_dnl_board_usb_cable_connected(void)
187 {
188 	struct udevice *dwc2_udc_otg;
189 	int ret;
190 
191 	if (!IS_ENABLED(CONFIG_USB_GADGET_DWC2_OTG))
192 		return -ENODEV;
193 
194 	/* if typec stusb160x is present, means DK1 or DK2 board */
195 	ret = stusb160x_cable_connected();
196 	if (ret >= 0)
197 		return ret;
198 
199 	ret = uclass_get_device_by_driver(UCLASS_USB_GADGET_GENERIC,
200 					  DM_DRIVER_GET(dwc2_udc_otg),
201 					  &dwc2_udc_otg);
202 	if (ret) {
203 		log_debug("dwc2_udc_otg init failed\n");
204 		return ret;
205 	}
206 
207 	return dwc2_udc_B_session_valid(dwc2_udc_otg);
208 }
209 
210 #ifdef CONFIG_USB_GADGET_DOWNLOAD
211 #define STM32MP1_G_DNL_DFU_PRODUCT_NUM 0xdf11
212 #define STM32MP1_G_DNL_FASTBOOT_PRODUCT_NUM 0x0afb
213 
g_dnl_bind_fixup(struct usb_device_descriptor * dev,const char * name)214 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
215 {
216 	if (IS_ENABLED(CONFIG_DFU_OVER_USB) &&
217 	    !strcmp(name, "usb_dnl_dfu"))
218 		put_unaligned(STM32MP1_G_DNL_DFU_PRODUCT_NUM, &dev->idProduct);
219 	else if (IS_ENABLED(CONFIG_FASTBOOT) &&
220 		 !strcmp(name, "usb_dnl_fastboot"))
221 		put_unaligned(STM32MP1_G_DNL_FASTBOOT_PRODUCT_NUM,
222 			      &dev->idProduct);
223 	else
224 		put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM, &dev->idProduct);
225 
226 	return 0;
227 }
228 #endif /* CONFIG_USB_GADGET_DOWNLOAD */
229 
get_led(struct udevice ** dev,char * led_string)230 static int get_led(struct udevice **dev, char *led_string)
231 {
232 	char *led_name;
233 	int ret;
234 
235 	led_name = fdtdec_get_config_string(gd->fdt_blob, led_string);
236 	if (!led_name) {
237 		log_debug("could not find %s config string\n", led_string);
238 		return -ENOENT;
239 	}
240 	ret = led_get_by_label(led_name, dev);
241 	if (ret) {
242 		log_debug("get=%d\n", ret);
243 		return ret;
244 	}
245 
246 	return 0;
247 }
248 
setup_led(enum led_state_t cmd)249 static int setup_led(enum led_state_t cmd)
250 {
251 	struct udevice *dev;
252 	int ret;
253 
254 	if (!CONFIG_IS_ENABLED(LED))
255 		return 0;
256 
257 	ret = get_led(&dev, "u-boot,boot-led");
258 	if (ret)
259 		return ret;
260 
261 	ret = led_set_state(dev, cmd);
262 	return ret;
263 }
264 
led_error_blink(u32 nb_blink)265 static void __maybe_unused led_error_blink(u32 nb_blink)
266 {
267 	int ret;
268 	struct udevice *led;
269 	u32 i;
270 
271 	if (!nb_blink)
272 		return;
273 
274 	if (CONFIG_IS_ENABLED(LED)) {
275 		ret = get_led(&led, "u-boot,error-led");
276 		if (!ret) {
277 			/* make u-boot,error-led blinking */
278 			/* if U32_MAX and 125ms interval, for 17.02 years */
279 			for (i = 0; i < 2 * nb_blink; i++) {
280 				led_set_state(led, LEDST_TOGGLE);
281 				mdelay(125);
282 				WATCHDOG_RESET();
283 			}
284 			led_set_state(led, LEDST_ON);
285 		}
286 	}
287 
288 	/* infinite: the boot process must be stopped */
289 	if (nb_blink == U32_MAX)
290 		hang();
291 }
292 
adc_measurement(ofnode node,int adc_count,int * min_uV,int * max_uV)293 static int adc_measurement(ofnode node, int adc_count, int *min_uV, int *max_uV)
294 {
295 	struct ofnode_phandle_args adc_args;
296 	struct udevice *adc;
297 	unsigned int raw;
298 	int ret, uV;
299 	int i;
300 
301 	for (i = 0; i < adc_count; i++) {
302 		if (ofnode_parse_phandle_with_args(node, "st,adc_usb_pd",
303 						   "#io-channel-cells", 0, i,
304 						   &adc_args)) {
305 			log_debug("can't find /config/st,adc_usb_pd\n");
306 			return 0;
307 		}
308 
309 		ret = uclass_get_device_by_ofnode(UCLASS_ADC, adc_args.node,
310 						  &adc);
311 
312 		if (ret) {
313 			log_err("Can't get adc device(%d)\n", ret);
314 			return ret;
315 		}
316 
317 		ret = adc_channel_single_shot(adc->name, adc_args.args[0],
318 					      &raw);
319 		if (ret) {
320 			log_err("single shot failed for %s[%d]!\n",
321 				adc->name, adc_args.args[0]);
322 			return ret;
323 		}
324 		/* Convert to uV */
325 		if (!adc_raw_to_uV(adc, raw, &uV)) {
326 			if (uV > *max_uV)
327 				*max_uV = uV;
328 			if (uV < *min_uV)
329 				*min_uV = uV;
330 			log_debug("%s[%02d] = %u, %d uV\n",
331 				  adc->name, adc_args.args[0], raw, uV);
332 		} else {
333 			log_err("Can't get uV value for %s[%d]\n",
334 				adc->name, adc_args.args[0]);
335 		}
336 	}
337 
338 	return 0;
339 }
340 
board_check_usb_power(void)341 static int board_check_usb_power(void)
342 {
343 	ofnode node;
344 	int max_uV = 0;
345 	int min_uV = USB_START_HIGH_THRESHOLD_UV;
346 	int adc_count, ret;
347 	u32 nb_blink;
348 	u8 i;
349 
350 	if (!IS_ENABLED(CONFIG_ADC))
351 		return -ENODEV;
352 
353 	node = ofnode_path("/config");
354 	if (!ofnode_valid(node)) {
355 		log_debug("no /config node?\n");
356 		return -ENOENT;
357 	}
358 
359 	/*
360 	 * Retrieve the ADC channels devices and get measurement
361 	 * for each of them
362 	 */
363 	adc_count = ofnode_count_phandle_with_args(node, "st,adc_usb_pd",
364 						   "#io-channel-cells", 0);
365 	if (adc_count < 0) {
366 		if (adc_count == -ENOENT)
367 			return 0;
368 
369 		log_err("Can't find adc channel (%d)\n", adc_count);
370 
371 		return adc_count;
372 	}
373 
374 	/* perform maximum of 2 ADC measurements to detect power supply current */
375 	for (i = 0; i < 2; i++) {
376 		ret = adc_measurement(node, adc_count, &min_uV, &max_uV);
377 		if (ret)
378 			return ret;
379 
380 		/*
381 		 * If highest value is inside 1.23 Volts and 2.10 Volts, that means
382 		 * board is plugged on an USB-C 3A power supply and boot process can
383 		 * continue.
384 		 */
385 		if (max_uV > USB_START_LOW_THRESHOLD_UV &&
386 		    max_uV <= USB_START_HIGH_THRESHOLD_UV &&
387 		    min_uV <= USB_LOW_THRESHOLD_UV)
388 			return 0;
389 
390 		if (i == 0) {
391 			log_err("Previous ADC measurements was not the one expected, retry in 20ms\n");
392 			mdelay(20);  /* equal to max tPDDebounce duration (min 10ms - max 20ms) */
393 		}
394 	}
395 
396 	log_notice("****************************************************\n");
397 	/*
398 	 * If highest and lowest value are either both below
399 	 * USB_LOW_THRESHOLD_UV or both above USB_LOW_THRESHOLD_UV, that
400 	 * means USB TYPE-C is in unattached mode, this is an issue, make
401 	 * u-boot,error-led blinking and stop boot process.
402 	 */
403 	if ((max_uV > USB_LOW_THRESHOLD_UV &&
404 	     min_uV > USB_LOW_THRESHOLD_UV) ||
405 	     (max_uV <= USB_LOW_THRESHOLD_UV &&
406 	     min_uV <= USB_LOW_THRESHOLD_UV)) {
407 		log_notice("* ERROR USB TYPE-C connection in unattached mode   *\n");
408 		log_notice("* Check that USB TYPE-C cable is correctly plugged *\n");
409 		/* with 125ms interval, led will blink for 17.02 years ....*/
410 		nb_blink = U32_MAX;
411 	}
412 
413 	if (max_uV > USB_LOW_THRESHOLD_UV &&
414 	    max_uV <= USB_WARNING_LOW_THRESHOLD_UV &&
415 	    min_uV <= USB_LOW_THRESHOLD_UV) {
416 		log_notice("*        WARNING 500mA power supply detected       *\n");
417 		nb_blink = 2;
418 	}
419 
420 	if (max_uV > USB_WARNING_LOW_THRESHOLD_UV &&
421 	    max_uV <= USB_START_LOW_THRESHOLD_UV &&
422 	    min_uV <= USB_LOW_THRESHOLD_UV) {
423 		log_notice("*       WARNING 1.5A power supply detected        *\n");
424 		nb_blink = 3;
425 	}
426 
427 	/*
428 	 * If highest value is above 2.15 Volts that means that the USB TypeC
429 	 * supplies more than 3 Amp, this is not compliant with TypeC specification
430 	 */
431 	if (max_uV > USB_START_HIGH_THRESHOLD_UV) {
432 		log_notice("*      USB TYPE-C charger not compliant with       *\n");
433 		log_notice("*                   specification                  *\n");
434 		log_notice("****************************************************\n\n");
435 		/* with 125ms interval, led will blink for 17.02 years ....*/
436 		nb_blink = U32_MAX;
437 	} else {
438 		log_notice("*     Current too low, use a 3A power supply!      *\n");
439 		log_notice("****************************************************\n\n");
440 	}
441 
442 	led_error_blink(nb_blink);
443 
444 	return 0;
445 }
446 
sysconf_init(void)447 static void sysconf_init(void)
448 {
449 	u8 *syscfg;
450 	struct udevice *pwr_dev;
451 	struct udevice *pwr_reg;
452 	struct udevice *dev;
453 	u32 otp = 0;
454 	int ret;
455 	u32 bootr, val;
456 
457 	syscfg = (u8 *)syscon_get_first_range(STM32MP_SYSCON_SYSCFG);
458 
459 	/* interconnect update : select master using the port 1 */
460 	/* LTDC = AXI_M9 */
461 	/* GPU  = AXI_M8 */
462 	/* today information is hardcoded in U-Boot */
463 	writel(BIT(9), syscfg + SYSCFG_ICNR);
464 
465 	/* disable Pull-Down for boot pin connected to VDD */
466 	bootr = readl(syscfg + SYSCFG_BOOTR);
467 	bootr &= ~(SYSCFG_BOOTR_BOOT_MASK << SYSCFG_BOOTR_BOOTPD_SHIFT);
468 	bootr |= (bootr & SYSCFG_BOOTR_BOOT_MASK) << SYSCFG_BOOTR_BOOTPD_SHIFT;
469 	writel(bootr, syscfg + SYSCFG_BOOTR);
470 
471 	/* High Speed Low Voltage Pad mode Enable for SPI, SDMMC, ETH, QSPI
472 	 * and TRACE. Needed above ~50MHz and conditioned by AFMUX selection.
473 	 * The customer will have to disable this for low frequencies
474 	 * or if AFMUX is selected but the function not used, typically for
475 	 * TRACE. Otherwise, impact on power consumption.
476 	 *
477 	 * WARNING:
478 	 *   enabling High Speed mode while VDD>2.7V
479 	 *   with the OTP product_below_2v5 (OTP 18, BIT 13)
480 	 *   erroneously set to 1 can damage the IC!
481 	 *   => U-Boot set the register only if VDD < 2.7V (in DT)
482 	 *      but this value need to be consistent with board design
483 	 */
484 	ret = uclass_get_device_by_driver(UCLASS_PMIC,
485 					  DM_DRIVER_GET(stm32mp_pwr_pmic),
486 					  &pwr_dev);
487 	if (!ret && IS_ENABLED(CONFIG_DM_REGULATOR)) {
488 		ret = uclass_get_device_by_driver(UCLASS_MISC,
489 						  DM_DRIVER_GET(stm32mp_bsec),
490 						  &dev);
491 		if (ret) {
492 			log_err("Can't find stm32mp_bsec driver\n");
493 			return;
494 		}
495 
496 		ret = misc_read(dev, STM32_BSEC_SHADOW(18), &otp, 4);
497 		if (ret > 0)
498 			otp = otp & BIT(13);
499 
500 		/* get VDD = vdd-supply */
501 		ret = device_get_supply_regulator(pwr_dev, "vdd-supply",
502 						  &pwr_reg);
503 
504 		/* check if VDD is Low Voltage */
505 		if (!ret) {
506 			if (regulator_get_value(pwr_reg) < 2700000) {
507 				writel(SYSCFG_IOCTRLSETR_HSLVEN_TRACE |
508 				       SYSCFG_IOCTRLSETR_HSLVEN_QUADSPI |
509 				       SYSCFG_IOCTRLSETR_HSLVEN_ETH |
510 				       SYSCFG_IOCTRLSETR_HSLVEN_SDMMC |
511 				       SYSCFG_IOCTRLSETR_HSLVEN_SPI,
512 				       syscfg + SYSCFG_IOCTRLSETR);
513 
514 				if (!otp)
515 					log_err("product_below_2v5=0: HSLVEN protected by HW\n");
516 			} else {
517 				if (otp)
518 					log_err("product_below_2v5=1: HSLVEN update is destructive, no update as VDD>2.7V\n");
519 			}
520 		} else {
521 			log_debug("VDD unknown");
522 		}
523 	}
524 
525 	/* activate automatic I/O compensation
526 	 * warning: need to ensure CSI enabled and ready in clock driver
527 	 */
528 	writel(SYSCFG_CMPENSETR_MPU_EN, syscfg + SYSCFG_CMPENSETR);
529 
530 	/* poll until ready (1s timeout) */
531 	ret = readl_poll_timeout(syscfg + SYSCFG_CMPCR, val,
532 				 val & SYSCFG_CMPCR_READY,
533 				 1000000);
534 	if (ret) {
535 		log_err("SYSCFG: I/O compensation failed, timeout.\n");
536 		led_error_blink(10);
537 	}
538 
539 	clrbits_le32(syscfg + SYSCFG_CMPCR, SYSCFG_CMPCR_SW_CTRL);
540 }
541 
542 /* Fix to make I2C1 usable on DK2 for touchscreen usage in kernel */
dk2_i2c1_fix(void)543 static int dk2_i2c1_fix(void)
544 {
545 	ofnode node;
546 	struct gpio_desc hdmi, audio;
547 	int ret = 0;
548 
549 	if (!IS_ENABLED(CONFIG_DM_REGULATOR))
550 		return -ENODEV;
551 
552 	node = ofnode_path("/soc/i2c@40012000/hdmi-transmitter@39");
553 	if (!ofnode_valid(node)) {
554 		log_debug("no hdmi-transmitter@39 ?\n");
555 		return -ENOENT;
556 	}
557 
558 	if (gpio_request_by_name_nodev(node, "reset-gpios", 0,
559 				       &hdmi, GPIOD_IS_OUT)) {
560 		log_debug("could not find reset-gpios\n");
561 		return -ENOENT;
562 	}
563 
564 	node = ofnode_path("/soc/i2c@40012000/cs42l51@4a");
565 	if (!ofnode_valid(node)) {
566 		log_debug("no cs42l51@4a ?\n");
567 		return -ENOENT;
568 	}
569 
570 	if (gpio_request_by_name_nodev(node, "reset-gpios", 0,
571 				       &audio, GPIOD_IS_OUT)) {
572 		log_debug("could not find reset-gpios\n");
573 		return -ENOENT;
574 	}
575 
576 	/* before power up, insure that HDMI and AUDIO IC is under reset */
577 	ret = dm_gpio_set_value(&hdmi, 1);
578 	if (ret) {
579 		log_err("can't set_value for hdmi_nrst gpio");
580 		goto error;
581 	}
582 	ret = dm_gpio_set_value(&audio, 1);
583 	if (ret) {
584 		log_err("can't set_value for audio_nrst gpio");
585 		goto error;
586 	}
587 
588 	/* power-up audio IC */
589 	regulator_autoset_by_name("v1v8_audio", NULL);
590 
591 	/* power-up HDMI IC */
592 	regulator_autoset_by_name("v1v2_hdmi", NULL);
593 	regulator_autoset_by_name("v3v3_hdmi", NULL);
594 
595 error:
596 	return ret;
597 }
598 
board_is_dk2(void)599 static bool board_is_dk2(void)
600 {
601 	if (CONFIG_IS_ENABLED(TARGET_ST_STM32MP15x) &&
602 	    of_machine_is_compatible("st,stm32mp157c-dk2"))
603 		return true;
604 
605 	return false;
606 }
607 
board_is_ev1(void)608 static bool board_is_ev1(void)
609 {
610 	if (CONFIG_IS_ENABLED(TARGET_ST_STM32MP15x) &&
611 	    (of_machine_is_compatible("st,stm32mp157a-ev1") ||
612 	     of_machine_is_compatible("st,stm32mp157c-ev1") ||
613 	     of_machine_is_compatible("st,stm32mp157d-ev1") ||
614 	     of_machine_is_compatible("st,stm32mp157f-ev1")))
615 		return true;
616 
617 	return false;
618 }
619 
620 /* touchscreen driver: only used for pincontrol configuration */
621 static const struct udevice_id goodix_ids[] = {
622 	{ .compatible = "goodix,gt9147", },
623 	{ }
624 };
625 
626 U_BOOT_DRIVER(goodix) = {
627 	.name		= "goodix",
628 	.id		= UCLASS_NOP,
629 	.of_match	= goodix_ids,
630 };
631 
board_ev1_init(void)632 static void board_ev1_init(void)
633 {
634 	struct udevice *dev;
635 
636 	/* configure IRQ line on EV1 for touchscreen before LCD reset */
637 	uclass_get_device_by_driver(UCLASS_NOP, DM_DRIVER_GET(goodix), &dev);
638 }
639 
640 /* board dependent setup after realloc */
board_init(void)641 int board_init(void)
642 {
643 	/* address of boot parameters */
644 	gd->bd->bi_boot_params = STM32_DDR_BASE + 0x100;
645 
646 	if (CONFIG_IS_ENABLED(DM_GPIO_HOG))
647 		gpio_hog_probe_all();
648 
649 	board_key_check();
650 
651 	if (board_is_ev1())
652 		board_ev1_init();
653 
654 	if (board_is_dk2())
655 		dk2_i2c1_fix();
656 
657 	if (IS_ENABLED(CONFIG_DM_REGULATOR))
658 		regulators_enable_boot_on(_DEBUG);
659 
660 	if (!IS_ENABLED(CONFIG_TFABOOT))
661 		sysconf_init();
662 
663 	if (CONFIG_IS_ENABLED(LED))
664 		led_default_state();
665 
666 	setup_led(LEDST_ON);
667 
668 	return 0;
669 }
670 
board_late_init(void)671 int board_late_init(void)
672 {
673 	const void *fdt_compat;
674 	int fdt_compat_len;
675 	int ret;
676 	u32 otp;
677 	struct udevice *dev;
678 	char buf[10];
679 	char dtb_name[256];
680 	int buf_len;
681 
682 	if (IS_ENABLED(CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG)) {
683 		fdt_compat = fdt_getprop(gd->fdt_blob, 0, "compatible",
684 					 &fdt_compat_len);
685 		if (fdt_compat && fdt_compat_len) {
686 			if (strncmp(fdt_compat, "st,", 3) != 0) {
687 				env_set("board_name", fdt_compat);
688 			} else {
689 				env_set("board_name", fdt_compat + 3);
690 
691 				buf_len = sizeof(dtb_name);
692 				strncpy(dtb_name, fdt_compat + 3, buf_len);
693 				buf_len -= strlen(fdt_compat + 3);
694 				strncat(dtb_name, ".dtb", buf_len);
695 				env_set("fdtfile", dtb_name);
696 			}
697 		}
698 		ret = uclass_get_device_by_driver(UCLASS_MISC,
699 						  DM_DRIVER_GET(stm32mp_bsec),
700 						  &dev);
701 
702 		if (!ret)
703 			ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_BOARD),
704 					&otp, sizeof(otp));
705 		if (ret > 0 && otp) {
706 			snprintf(buf, sizeof(buf), "0x%04x", otp >> 16);
707 			env_set("board_id", buf);
708 
709 			snprintf(buf, sizeof(buf), "0x%04x",
710 				 ((otp >> 8) & 0xF) - 1 + 0xA);
711 			env_set("board_rev", buf);
712 		}
713 	}
714 
715 	/* for DK1/DK2 boards */
716 	board_check_usb_power();
717 
718 	return 0;
719 }
720 
board_quiesce_devices(void)721 void board_quiesce_devices(void)
722 {
723 	setup_led(LEDST_OFF);
724 }
725 
726 /* eth init function : weak called in eqos driver */
board_interface_eth_init(struct udevice * dev,phy_interface_t interface_type)727 int board_interface_eth_init(struct udevice *dev,
728 			     phy_interface_t interface_type)
729 {
730 	u8 *syscfg;
731 	u32 value;
732 	bool eth_clk_sel_reg = false;
733 	bool eth_ref_clk_sel_reg = false;
734 
735 	/* Gigabit Ethernet 125MHz clock selection. */
736 	eth_clk_sel_reg = dev_read_bool(dev, "st,eth_clk_sel");
737 
738 	/* Ethernet 50Mhz RMII clock selection */
739 	eth_ref_clk_sel_reg =
740 		dev_read_bool(dev, "st,eth_ref_clk_sel");
741 
742 	syscfg = (u8 *)syscon_get_first_range(STM32MP_SYSCON_SYSCFG);
743 
744 	if (!syscfg)
745 		return -ENODEV;
746 
747 	switch (interface_type) {
748 	case PHY_INTERFACE_MODE_MII:
749 		value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII |
750 			SYSCFG_PMCSETR_ETH_REF_CLK_SEL;
751 		log_debug("PHY_INTERFACE_MODE_MII\n");
752 		break;
753 	case PHY_INTERFACE_MODE_GMII:
754 		if (eth_clk_sel_reg)
755 			value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII |
756 				SYSCFG_PMCSETR_ETH_CLK_SEL;
757 		else
758 			value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII;
759 		log_debug("PHY_INTERFACE_MODE_GMII\n");
760 		break;
761 	case PHY_INTERFACE_MODE_RMII:
762 		if (eth_ref_clk_sel_reg)
763 			value = SYSCFG_PMCSETR_ETH_SEL_RMII |
764 				SYSCFG_PMCSETR_ETH_REF_CLK_SEL;
765 		else
766 			value = SYSCFG_PMCSETR_ETH_SEL_RMII;
767 		log_debug("PHY_INTERFACE_MODE_RMII\n");
768 		break;
769 	case PHY_INTERFACE_MODE_RGMII:
770 	case PHY_INTERFACE_MODE_RGMII_ID:
771 	case PHY_INTERFACE_MODE_RGMII_RXID:
772 	case PHY_INTERFACE_MODE_RGMII_TXID:
773 		if (eth_clk_sel_reg)
774 			value = SYSCFG_PMCSETR_ETH_SEL_RGMII |
775 				SYSCFG_PMCSETR_ETH_CLK_SEL;
776 		else
777 			value = SYSCFG_PMCSETR_ETH_SEL_RGMII;
778 		log_debug("PHY_INTERFACE_MODE_RGMII\n");
779 		break;
780 	default:
781 		log_debug("Do not manage %d interface\n",
782 			  interface_type);
783 		/* Do not manage others interfaces */
784 		return -EINVAL;
785 	}
786 
787 	/* clear and set ETH configuration bits */
788 	writel(SYSCFG_PMCSETR_ETH_SEL_MASK | SYSCFG_PMCSETR_ETH_SELMII |
789 	       SYSCFG_PMCSETR_ETH_REF_CLK_SEL | SYSCFG_PMCSETR_ETH_CLK_SEL,
790 	       syscfg + SYSCFG_PMCCLRR);
791 	writel(value, syscfg + SYSCFG_PMCSETR);
792 
793 	return 0;
794 }
795 
env_get_location(enum env_operation op,int prio)796 enum env_location env_get_location(enum env_operation op, int prio)
797 {
798 	u32 bootmode = get_bootmode();
799 
800 	if (prio)
801 		return ENVL_UNKNOWN;
802 
803 	switch (bootmode & TAMP_BOOT_DEVICE_MASK) {
804 	case BOOT_FLASH_SD:
805 	case BOOT_FLASH_EMMC:
806 		if (CONFIG_IS_ENABLED(ENV_IS_IN_MMC))
807 			return ENVL_MMC;
808 		else if (CONFIG_IS_ENABLED(ENV_IS_IN_EXT4))
809 			return ENVL_EXT4;
810 		else
811 			return ENVL_NOWHERE;
812 
813 	case BOOT_FLASH_NAND:
814 	case BOOT_FLASH_SPINAND:
815 		if (CONFIG_IS_ENABLED(ENV_IS_IN_UBI))
816 			return ENVL_UBI;
817 		else
818 			return ENVL_NOWHERE;
819 
820 	case BOOT_FLASH_NOR:
821 		if (CONFIG_IS_ENABLED(ENV_IS_IN_SPI_FLASH))
822 			return ENVL_SPI_FLASH;
823 		else
824 			return ENVL_NOWHERE;
825 
826 	default:
827 		return ENVL_NOWHERE;
828 	}
829 }
830 
env_ext4_get_intf(void)831 const char *env_ext4_get_intf(void)
832 {
833 	u32 bootmode = get_bootmode();
834 
835 	switch (bootmode & TAMP_BOOT_DEVICE_MASK) {
836 	case BOOT_FLASH_SD:
837 	case BOOT_FLASH_EMMC:
838 		return "mmc";
839 	default:
840 		return "";
841 	}
842 }
843 
env_ext4_get_dev_part(void)844 const char *env_ext4_get_dev_part(void)
845 {
846 	static char *const env_dev_part =
847 #ifdef CONFIG_ENV_EXT4_DEVICE_AND_PART
848 		CONFIG_ENV_EXT4_DEVICE_AND_PART;
849 #else
850 		"";
851 #endif
852 	static char *const dev_part[] = {"0:auto", "1:auto", "2:auto"};
853 
854 	if (strlen(env_dev_part) > 0)
855 		return env_dev_part;
856 
857 	u32 bootmode = get_bootmode();
858 
859 	return dev_part[(bootmode & TAMP_BOOT_INSTANCE_MASK) - 1];
860 }
861 
mmc_get_env_dev(void)862 int mmc_get_env_dev(void)
863 {
864 	u32 bootmode;
865 
866 	if (CONFIG_SYS_MMC_ENV_DEV >= 0)
867 		return CONFIG_SYS_MMC_ENV_DEV;
868 
869 	bootmode = get_bootmode();
870 
871 	/* use boot instance to select the correct mmc device identifier */
872 	return (bootmode & TAMP_BOOT_INSTANCE_MASK) - 1;
873 }
874 
875 #if defined(CONFIG_OF_BOARD_SETUP)
ft_board_setup(void * blob,struct bd_info * bd)876 int ft_board_setup(void *blob, struct bd_info *bd)
877 {
878 	static const struct node_info nodes[] = {
879 		{ "st,stm32f469-qspi",		MTD_DEV_TYPE_NOR,  },
880 		{ "st,stm32f469-qspi",		MTD_DEV_TYPE_SPINAND},
881 		{ "st,stm32mp15-fmc2",		MTD_DEV_TYPE_NAND, },
882 		{ "st,stm32mp1-fmc2-nfc",	MTD_DEV_TYPE_NAND, },
883 	};
884 	char *boot_device;
885 
886 	/* Check the boot-source and don't update MTD for serial or usb boot */
887 	boot_device = env_get("boot_device");
888 	if (!boot_device ||
889 	    (strcmp(boot_device, "serial") && strcmp(boot_device, "usb")))
890 		if (IS_ENABLED(CONFIG_FDT_FIXUP_PARTITIONS))
891 			fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
892 
893 	return 0;
894 }
895 #endif
896 
board_copro_image_process(ulong fw_image,size_t fw_size)897 static void board_copro_image_process(ulong fw_image, size_t fw_size)
898 {
899 	int ret, id = 0; /* Copro id fixed to 0 as only one coproc on mp1 */
900 
901 	if (!rproc_is_initialized())
902 		if (rproc_init()) {
903 			log_err("Remote Processor %d initialization failed\n",
904 				id);
905 			return;
906 		}
907 
908 	ret = rproc_load(id, fw_image, fw_size);
909 	log_err("Load Remote Processor %d with data@addr=0x%08lx %u bytes:%s\n",
910 		id, fw_image, fw_size, ret ? " Failed!" : " Success!");
911 
912 	if (!ret)
913 		rproc_start(id);
914 }
915 
916 U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_COPRO, board_copro_image_process);
917