blob: ab85d8ba683da77045574f60b0004a2e42526182 [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +01004 */
Patrick Delaunayf7b2a842020-11-06 19:01:59 +01005
6#define LOG_CATEGORY LOGC_BOARD
7
Patrice Chotard879cde52019-02-12 16:50:40 +01008#include <common.h>
9#include <adc.h>
Patrick Delaunay500401f2019-06-21 15:26:40 +020010#include <bootm.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020011#include <clk.h>
Patrick Delaunay266bf102019-07-30 19:16:44 +020012#include <config.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020013#include <dm.h>
Simon Glassdb229612019-08-01 09:46:42 -060014#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060015#include <env_internal.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060016#include <fdt_support.h>
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +010017#include <g_dnl.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020018#include <generic-phy.h>
Simon Glassf11478f2019-12-28 10:45:07 -070019#include <hang.h>
Patrick Delaunay7f3384d2019-03-29 15:42:24 +010020#include <i2c.h>
Simon Glassa7b51302019-11-14 12:57:46 -070021#include <init.h>
Patrick Delaunay92dc1022019-02-12 11:44:41 +010022#include <led.h>
Simon Glass0f2af882020-05-10 11:40:05 -060023#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070024#include <malloc.h>
Patrick Delaunay92dc1022019-02-12 11:44:41 +010025#include <misc.h>
Patrick Delaunayde98cbf2019-07-02 13:26:07 +020026#include <mtd_node.h>
Simon Glass274e0b02020-05-10 11:39:56 -060027#include <net.h>
Patrick Delaunaybff66f92019-08-01 11:29:03 +020028#include <netdev.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020029#include <phy.h>
Patrick Delaunayc17d7252019-08-02 15:07:20 +020030#include <remoteproc.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020031#include <reset.h>
Patrick Delaunay4ace1d12019-02-27 17:01:24 +010032#include <syscon.h>
Patrick Delaunay7f3384d2019-03-29 15:42:24 +010033#include <usb.h>
Patrick Delaunayae0931d02019-07-30 19:16:39 +020034#include <watchdog.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060035#include <asm/global_data.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020036#include <asm/io.h>
Patrick Delaunayf2a7b872019-02-27 17:01:18 +010037#include <asm/gpio.h>
Patrick Delaunay4ace1d12019-02-27 17:01:24 +010038#include <asm/arch/stm32.h>
Patrice Chotarddad97bf2019-05-02 18:36:01 +020039#include <asm/arch/sys_proto.h>
Patrick Delaunayde98cbf2019-07-02 13:26:07 +020040#include <jffs2/load_kernel.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060041#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060042#include <linux/delay.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070043#include <linux/err.h>
Patrick Delaunay181298e2020-04-22 14:29:16 +020044#include <linux/iopoll.h>
Patrice Chotard204079b2018-08-10 17:12:14 +020045#include <power/regulator.h>
Patrick Delaunay7f3384d2019-03-29 15:42:24 +010046#include <usb/dwc2_udc.h>
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010047
Patrick Delaunayfcb6b0b2020-06-29 10:34:06 +020048#include "../../st/common/stusb160x.h"
49
Patrick Delaunay4ace1d12019-02-27 17:01:24 +010050/* 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)
Christophe Roullier69ac3f52019-05-17 15:08:43 +020079#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)
Patrick Delaunay4ace1d12019-02-27 17:01:24 +010082
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +010083/*
84 * Get a global data pointer
85 */
86DECLARE_GLOBAL_DATA_PTR;
87
Patrice Chotardcded32f2019-04-30 18:09:38 +020088#define USB_LOW_THRESHOLD_UV 200000
Patrice Chotard879cde52019-02-12 16:50:40 +010089#define USB_WARNING_LOW_THRESHOLD_UV 660000
90#define USB_START_LOW_THRESHOLD_UV 1230000
Patrice Chotardcded32f2019-04-30 18:09:38 +020091#define USB_START_HIGH_THRESHOLD_UV 2150000
Patrice Chotard879cde52019-02-12 16:50:40 +010092
Patrick Delaunayf2f25c32020-05-25 12:19:46 +020093int board_early_init_f(void)
94{
95 /* nothing to do, only used in SPL */
96 return 0;
97}
98
Patrick Delaunay92dc1022019-02-12 11:44:41 +010099int 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
Patrick Delaunay472407a2020-03-18 09:22:49 +0100108 if (IS_ENABLED(CONFIG_TFABOOT))
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100109 mode = "trusted";
110 else
111 mode = "basic";
112
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100113 fdt_compat = fdt_getprop(gd->fdt_blob, 0, "compatible",
114 &fdt_compat_len);
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100115
116 log_info("Board: stm32mp1 in %s mode (%s)\n", mode,
117 fdt_compat && fdt_compat_len ? fdt_compat : "");
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100118
Patrick Delaunay52163d92020-03-24 09:05:00 +0100119 /* display the STMicroelectronics board identification */
Patrick Delaunay0885c232020-02-12 19:37:42 +0100120 if (CONFIG_IS_ENABLED(CMD_STBOARD)) {
121 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700122 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay0885c232020-02-12 19:37:42 +0100123 &dev);
124 if (!ret)
125 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_BOARD),
126 &otp, sizeof(otp));
127 if (ret > 0 && otp)
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100128 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);
Patrick Delaunay92dc1022019-02-12 11:44:41 +0100134 }
135
136 return 0;
137}
138
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100139static void board_key_check(void)
140{
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100141 ofnode node;
142 struct gpio_desc gpio;
143 enum forced_boot_mode boot_mode = BOOT_NORMAL;
144
Patrick Delaunayf6604852020-07-31 16:31:42 +0200145 if (!IS_ENABLED(CONFIG_FASTBOOT) && !IS_ENABLED(CONFIG_CMD_STM32PROG))
146 return;
147
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100148 node = ofnode_path("/config");
149 if (!ofnode_valid(node)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100150 log_debug("no /config node?\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100151 return;
152 }
Patrick Delaunayf6604852020-07-31 16:31:42 +0200153 if (IS_ENABLED(CONFIG_FASTBOOT)) {
154 if (gpio_request_by_name_nodev(node, "st,fastboot-gpios", 0,
155 &gpio, GPIOD_IS_IN)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100156 log_debug("could not find a /config/st,fastboot-gpios\n");
Patrick Delaunayf6604852020-07-31 16:31:42 +0200157 } else {
158 if (dm_gpio_get_value(&gpio)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100159 log_notice("Fastboot key pressed, ");
Patrick Delaunayf6604852020-07-31 16:31:42 +0200160 boot_mode = BOOT_FASTBOOT;
161 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100162
Patrick Delaunayf6604852020-07-31 16:31:42 +0200163 dm_gpio_free(NULL, &gpio);
164 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100165 }
Patrick Delaunayf6604852020-07-31 16:31:42 +0200166 if (IS_ENABLED(CONFIG_CMD_STM32PROG)) {
167 if (gpio_request_by_name_nodev(node, "st,stm32prog-gpios", 0,
168 &gpio, GPIOD_IS_IN)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100169 log_debug("could not find a /config/st,stm32prog-gpios\n");
Patrick Delaunayf6604852020-07-31 16:31:42 +0200170 } else {
171 if (dm_gpio_get_value(&gpio)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100172 log_notice("STM32Programmer key pressed, ");
Patrick Delaunayf6604852020-07-31 16:31:42 +0200173 boot_mode = BOOT_STM32PROG;
174 }
175 dm_gpio_free(NULL, &gpio);
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100176 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100177 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100178 if (boot_mode != BOOT_NORMAL) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100179 log_notice("entering download mode...\n");
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100180 clrsetbits_le32(TAMP_BOOT_CONTEXT,
181 TAMP_BOOT_FORCED_MASK,
182 boot_mode);
183 }
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100184}
185
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +0100186int g_dnl_board_usb_cable_connected(void)
Patrice Chotard204079b2018-08-10 17:12:14 +0200187{
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +0100188 struct udevice *dwc2_udc_otg;
Patrice Chotard204079b2018-08-10 17:12:14 +0200189 int ret;
190
Patrick Delaunaya1d5f202020-07-31 16:31:43 +0200191 if (!IS_ENABLED(CONFIG_USB_GADGET_DWC2_OTG))
192 return -ENODEV;
193
Patrick Delaunayfcb6b0b2020-06-29 10:34:06 +0200194 /* if typec stusb160x is present, means DK1 or DK2 board */
195 ret = stusb160x_cable_connected();
196 if (ret >= 0)
197 return ret;
Patrick Delaunay7f3384d2019-03-29 15:42:24 +0100198
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +0100199 ret = uclass_get_device_by_driver(UCLASS_USB_GADGET_GENERIC,
Simon Glass65130cd2020-12-28 20:34:56 -0700200 DM_DRIVER_GET(dwc2_udc_otg),
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +0100201 &dwc2_udc_otg);
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100202 if (ret) {
203 log_debug("dwc2_udc_otg init failed\n");
204 return ret;
205 }
Patrice Chotard204079b2018-08-10 17:12:14 +0200206
Patrick Delaunay58bc0cd2019-03-29 15:42:23 +0100207 return dwc2_udc_B_session_valid(dwc2_udc_otg);
Patrice Chotard879cde52019-02-12 16:50:40 +0100208}
Patrick Delaunay0aafce62019-09-13 15:24:17 +0200209
Patrick Delaunaya1d5f202020-07-31 16:31:43 +0200210#ifdef CONFIG_USB_GADGET_DOWNLOAD
Patrick Delaunay0aafce62019-09-13 15:24:17 +0200211#define STM32MP1_G_DNL_DFU_PRODUCT_NUM 0xdf11
212#define STM32MP1_G_DNL_FASTBOOT_PRODUCT_NUM 0x0afb
213
214int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
215{
Patrick Delaunaya1d5f202020-07-31 16:31:43 +0200216 if (IS_ENABLED(CONFIG_DFU_OVER_USB) &&
217 !strcmp(name, "usb_dnl_dfu"))
Patrick Delaunay0aafce62019-09-13 15:24:17 +0200218 put_unaligned(STM32MP1_G_DNL_DFU_PRODUCT_NUM, &dev->idProduct);
Patrick Delaunaya1d5f202020-07-31 16:31:43 +0200219 else if (IS_ENABLED(CONFIG_FASTBOOT) &&
220 !strcmp(name, "usb_dnl_fastboot"))
Patrick Delaunay0aafce62019-09-13 15:24:17 +0200221 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}
Patrick Delaunaya1d5f202020-07-31 16:31:43 +0200228#endif /* CONFIG_USB_GADGET_DOWNLOAD */
Patrice Chotard879cde52019-02-12 16:50:40 +0100229
230static 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) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100237 log_debug("could not find %s config string\n", led_string);
Patrice Chotard879cde52019-02-12 16:50:40 +0100238 return -ENOENT;
239 }
240 ret = led_get_by_label(led_name, dev);
241 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100242 log_debug("get=%d\n", ret);
Patrice Chotard879cde52019-02-12 16:50:40 +0100243 return ret;
244 }
245
246 return 0;
247}
248
249static int setup_led(enum led_state_t cmd)
250{
251 struct udevice *dev;
252 int ret;
253
Patrick Delaunay8ae05cf2020-04-22 14:29:12 +0200254 if (!CONFIG_IS_ENABLED(LED))
255 return 0;
256
Patrice Chotard879cde52019-02-12 16:50:40 +0100257 ret = get_led(&dev, "u-boot,boot-led");
258 if (ret)
259 return ret;
260
261 ret = led_set_state(dev, cmd);
Patrice Chotard204079b2018-08-10 17:12:14 +0200262 return ret;
263}
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200264
265static void __maybe_unused led_error_blink(u32 nb_blink)
266{
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200267 int ret;
268 struct udevice *led;
269 u32 i;
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200270
271 if (!nb_blink)
272 return;
273
Patrick Delaunay8ae05cf2020-04-22 14:29:12 +0200274 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);
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200285 }
286 }
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200287
288 /* infinite: the boot process must be stopped */
289 if (nb_blink == U32_MAX)
290 hang();
291}
Patrice Chotard204079b2018-08-10 17:12:14 +0200292
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200293static int adc_measurement(ofnode node, int adc_count, int *min_uV, int *max_uV)
Patrice Chotard879cde52019-02-12 16:50:40 +0100294{
295 struct ofnode_phandle_args adc_args;
296 struct udevice *adc;
Patrice Chotard879cde52019-02-12 16:50:40 +0100297 unsigned int raw;
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200298 int ret, uV;
299 int i;
Patrice Chotard879cde52019-02-12 16:50:40 +0100300
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)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100305 log_debug("can't find /config/st,adc_usb_pd\n");
Patrice Chotard879cde52019-02-12 16:50:40 +0100306 return 0;
307 }
308
309 ret = uclass_get_device_by_ofnode(UCLASS_ADC, adc_args.node,
310 &adc);
311
312 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100313 log_err("Can't get adc device(%d)\n", ret);
Patrice Chotard879cde52019-02-12 16:50:40 +0100314 return ret;
315 }
316
317 ret = adc_channel_single_shot(adc->name, adc_args.args[0],
318 &raw);
319 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100320 log_err("single shot failed for %s[%d]!\n",
321 adc->name, adc_args.args[0]);
Patrice Chotard879cde52019-02-12 16:50:40 +0100322 return ret;
323 }
324 /* Convert to uV */
325 if (!adc_raw_to_uV(adc, raw, &uV)) {
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200326 if (uV > *max_uV)
327 *max_uV = uV;
328 if (uV < *min_uV)
329 *min_uV = uV;
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100330 log_debug("%s[%02d] = %u, %d uV\n",
331 adc->name, adc_args.args[0], raw, uV);
Patrice Chotard879cde52019-02-12 16:50:40 +0100332 } else {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100333 log_err("Can't get uV value for %s[%d]\n",
334 adc->name, adc_args.args[0]);
Patrice Chotard879cde52019-02-12 16:50:40 +0100335 }
336 }
337
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200338 return 0;
339}
340
341static 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 node = ofnode_path("/config");
351 if (!ofnode_valid(node)) {
352 log_debug("no /config node?\n");
353 return -ENOENT;
354 }
355
Patrice Chotard879cde52019-02-12 16:50:40 +0100356 /*
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200357 * Retrieve the ADC channels devices and get measurement
358 * for each of them
Patrice Chotard879cde52019-02-12 16:50:40 +0100359 */
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200360 adc_count = ofnode_count_phandle_with_args(node, "st,adc_usb_pd",
361 "#io-channel-cells", 0);
362 if (adc_count < 0) {
363 if (adc_count == -ENOENT)
364 return 0;
Patrice Chotard879cde52019-02-12 16:50:40 +0100365
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200366 log_err("Can't find adc channel (%d)\n", adc_count);
367
368 return adc_count;
369 }
Patrice Chotardcded32f2019-04-30 18:09:38 +0200370
Patrice Chotard7dfa7972020-10-16 09:28:59 +0200371 /* perform maximum of 2 ADC measurements to detect power supply current */
372 for (i = 0; i < 2; i++) {
373 if (IS_ENABLED(CONFIG_ADC))
374 ret = adc_measurement(node, adc_count, &min_uV, &max_uV);
375 else
376 ret = -ENODEV;
377
378 if (ret)
379 return ret;
380
381 /*
382 * If highest value is inside 1.23 Volts and 2.10 Volts, that means
383 * board is plugged on an USB-C 3A power supply and boot process can
384 * continue.
385 */
386 if (max_uV > USB_START_LOW_THRESHOLD_UV &&
387 max_uV <= USB_START_HIGH_THRESHOLD_UV &&
388 min_uV <= USB_LOW_THRESHOLD_UV)
389 return 0;
390
391 if (i == 0) {
392 log_err("Previous ADC measurements was not the one expected, retry in 20ms\n");
393 mdelay(20); /* equal to max tPDDebounce duration (min 10ms - max 20ms) */
394 }
395 }
396
397 log_notice("****************************************************\n");
Patrice Chotardcded32f2019-04-30 18:09:38 +0200398 /*
399 * If highest and lowest value are either both below
400 * USB_LOW_THRESHOLD_UV or both above USB_LOW_THRESHOLD_UV, that
401 * means USB TYPE-C is in unattached mode, this is an issue, make
402 * u-boot,error-led blinking and stop boot process.
403 */
404 if ((max_uV > USB_LOW_THRESHOLD_UV &&
405 min_uV > USB_LOW_THRESHOLD_UV) ||
406 (max_uV <= USB_LOW_THRESHOLD_UV &&
407 min_uV <= USB_LOW_THRESHOLD_UV)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100408 log_notice("* ERROR USB TYPE-C connection in unattached mode *\n");
409 log_notice("* Check that USB TYPE-C cable is correctly plugged *\n");
Patrice Chotardcded32f2019-04-30 18:09:38 +0200410 /* with 125ms interval, led will blink for 17.02 years ....*/
411 nb_blink = U32_MAX;
412 }
Patrice Chotard879cde52019-02-12 16:50:40 +0100413
Patrice Chotardcded32f2019-04-30 18:09:38 +0200414 if (max_uV > USB_LOW_THRESHOLD_UV &&
415 max_uV <= USB_WARNING_LOW_THRESHOLD_UV &&
416 min_uV <= USB_LOW_THRESHOLD_UV) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100417 log_notice("* WARNING 500mA power supply detected *\n");
Patrice Chotard879cde52019-02-12 16:50:40 +0100418 nb_blink = 2;
Patrice Chotardcded32f2019-04-30 18:09:38 +0200419 }
420
421 if (max_uV > USB_WARNING_LOW_THRESHOLD_UV &&
422 max_uV <= USB_START_LOW_THRESHOLD_UV &&
423 min_uV <= USB_LOW_THRESHOLD_UV) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100424 log_notice("* WARNING 1.5A power supply detected *\n");
Patrice Chotard879cde52019-02-12 16:50:40 +0100425 nb_blink = 3;
426 }
427
Patrice Chotardcded32f2019-04-30 18:09:38 +0200428 /*
429 * If highest value is above 2.15 Volts that means that the USB TypeC
430 * supplies more than 3 Amp, this is not compliant with TypeC specification
431 */
432 if (max_uV > USB_START_HIGH_THRESHOLD_UV) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100433 log_notice("* USB TYPE-C charger not compliant with *\n");
434 log_notice("* specification *\n");
435 log_notice("****************************************************\n\n");
Patrice Chotardcded32f2019-04-30 18:09:38 +0200436 /* with 125ms interval, led will blink for 17.02 years ....*/
437 nb_blink = U32_MAX;
438 } else {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100439 log_notice("* Current too low, use a 3A power supply! *\n");
440 log_notice("****************************************************\n\n");
Patrice Chotardcded32f2019-04-30 18:09:38 +0200441 }
Patrice Chotard879cde52019-02-12 16:50:40 +0100442
Patrick Delaunayae0931d02019-07-30 19:16:39 +0200443 led_error_blink(nb_blink);
Patrice Chotard879cde52019-02-12 16:50:40 +0100444
445 return 0;
446}
447
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100448static void sysconf_init(void)
449{
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100450 u8 *syscfg;
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100451 struct udevice *pwr_dev;
452 struct udevice *pwr_reg;
453 struct udevice *dev;
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100454 u32 otp = 0;
Patrick Delaunay181298e2020-04-22 14:29:16 +0200455 int ret;
456 u32 bootr, val;
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100457
458 syscfg = (u8 *)syscon_get_first_range(STM32MP_SYSCON_SYSCFG);
459
460 /* interconnect update : select master using the port 1 */
461 /* LTDC = AXI_M9 */
462 /* GPU = AXI_M8 */
463 /* today information is hardcoded in U-Boot */
464 writel(BIT(9), syscfg + SYSCFG_ICNR);
465
466 /* disable Pull-Down for boot pin connected to VDD */
467 bootr = readl(syscfg + SYSCFG_BOOTR);
468 bootr &= ~(SYSCFG_BOOTR_BOOT_MASK << SYSCFG_BOOTR_BOOTPD_SHIFT);
469 bootr |= (bootr & SYSCFG_BOOTR_BOOT_MASK) << SYSCFG_BOOTR_BOOTPD_SHIFT;
470 writel(bootr, syscfg + SYSCFG_BOOTR);
471
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100472 /* High Speed Low Voltage Pad mode Enable for SPI, SDMMC, ETH, QSPI
473 * and TRACE. Needed above ~50MHz and conditioned by AFMUX selection.
474 * The customer will have to disable this for low frequencies
475 * or if AFMUX is selected but the function not used, typically for
476 * TRACE. Otherwise, impact on power consumption.
477 *
478 * WARNING:
479 * enabling High Speed mode while VDD>2.7V
480 * with the OTP product_below_2v5 (OTP 18, BIT 13)
481 * erroneously set to 1 can damage the IC!
482 * => U-Boot set the register only if VDD < 2.7V (in DT)
483 * but this value need to be consistent with board design
484 */
Patrick Delaunay6b2baa02019-07-30 19:16:42 +0200485 ret = uclass_get_device_by_driver(UCLASS_PMIC,
Simon Glass65130cd2020-12-28 20:34:56 -0700486 DM_DRIVER_GET(stm32mp_pwr_pmic),
Patrick Delaunay6b2baa02019-07-30 19:16:42 +0200487 &pwr_dev);
Patrick Delaunay4b2bfd62020-07-31 16:31:45 +0200488 if (!ret && IS_ENABLED(CONFIG_DM_REGULATOR)) {
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100489 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700490 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100491 &dev);
492 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100493 log_err("Can't find stm32mp_bsec driver\n");
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100494 return;
495 }
496
497 ret = misc_read(dev, STM32_BSEC_SHADOW(18), &otp, 4);
Patrick Delaunayceb82e32019-08-02 13:08:06 +0200498 if (ret > 0)
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100499 otp = otp & BIT(13);
500
Patrick Delaunay6b2baa02019-07-30 19:16:42 +0200501 /* get VDD = vdd-supply */
502 ret = device_get_supply_regulator(pwr_dev, "vdd-supply",
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100503 &pwr_reg);
504
505 /* check if VDD is Low Voltage */
506 if (!ret) {
507 if (regulator_get_value(pwr_reg) < 2700000) {
508 writel(SYSCFG_IOCTRLSETR_HSLVEN_TRACE |
509 SYSCFG_IOCTRLSETR_HSLVEN_QUADSPI |
510 SYSCFG_IOCTRLSETR_HSLVEN_ETH |
511 SYSCFG_IOCTRLSETR_HSLVEN_SDMMC |
512 SYSCFG_IOCTRLSETR_HSLVEN_SPI,
513 syscfg + SYSCFG_IOCTRLSETR);
514
515 if (!otp)
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100516 log_err("product_below_2v5=0: HSLVEN protected by HW\n");
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100517 } else {
518 if (otp)
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100519 log_err("product_below_2v5=1: HSLVEN update is destructive, no update as VDD>2.7V\n");
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100520 }
521 } else {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100522 log_debug("VDD unknown");
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100523 }
524 }
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100525
526 /* activate automatic I/O compensation
527 * warning: need to ensure CSI enabled and ready in clock driver
528 */
529 writel(SYSCFG_CMPENSETR_MPU_EN, syscfg + SYSCFG_CMPENSETR);
530
Patrick Delaunay181298e2020-04-22 14:29:16 +0200531 /* poll until ready (1s timeout) */
532 ret = readl_poll_timeout(syscfg + SYSCFG_CMPCR, val,
533 val & SYSCFG_CMPCR_READY,
534 1000000);
535 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100536 log_err("SYSCFG: I/O compensation failed, timeout.\n");
Patrick Delaunay181298e2020-04-22 14:29:16 +0200537 led_error_blink(10);
538 }
539
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100540 clrbits_le32(syscfg + SYSCFG_CMPCR, SYSCFG_CMPCR_SW_CTRL);
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100541}
542
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200543/* Fix to make I2C1 usable on DK2 for touchscreen usage in kernel */
544static int dk2_i2c1_fix(void)
545{
546 ofnode node;
547 struct gpio_desc hdmi, audio;
548 int ret = 0;
549
Patrick Delaunayc75bc6a2020-07-31 16:31:47 +0200550 if (!IS_ENABLED(CONFIG_DM_REGULATOR))
551 return -ENODEV;
552
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200553 node = ofnode_path("/soc/i2c@40012000/hdmi-transmitter@39");
554 if (!ofnode_valid(node)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100555 log_debug("no hdmi-transmitter@39 ?\n");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200556 return -ENOENT;
557 }
558
559 if (gpio_request_by_name_nodev(node, "reset-gpios", 0,
560 &hdmi, GPIOD_IS_OUT)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100561 log_debug("could not find reset-gpios\n");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200562 return -ENOENT;
563 }
564
565 node = ofnode_path("/soc/i2c@40012000/cs42l51@4a");
566 if (!ofnode_valid(node)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100567 log_debug("no cs42l51@4a ?\n");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200568 return -ENOENT;
569 }
570
571 if (gpio_request_by_name_nodev(node, "reset-gpios", 0,
572 &audio, GPIOD_IS_OUT)) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100573 log_debug("could not find reset-gpios\n");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200574 return -ENOENT;
575 }
576
577 /* before power up, insure that HDMI and AUDIO IC is under reset */
578 ret = dm_gpio_set_value(&hdmi, 1);
579 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100580 log_err("can't set_value for hdmi_nrst gpio");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200581 goto error;
582 }
583 ret = dm_gpio_set_value(&audio, 1);
584 if (ret) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100585 log_err("can't set_value for audio_nrst gpio");
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200586 goto error;
587 }
588
589 /* power-up audio IC */
590 regulator_autoset_by_name("v1v8_audio", NULL);
591
592 /* power-up HDMI IC */
593 regulator_autoset_by_name("v1v2_hdmi", NULL);
594 regulator_autoset_by_name("v3v3_hdmi", NULL);
595
596error:
597 return ret;
598}
599
600static bool board_is_dk2(void)
601{
Patrick Delaunay310aa8a2020-01-13 15:17:42 +0100602 if (CONFIG_IS_ENABLED(TARGET_ST_STM32MP15x) &&
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200603 of_machine_is_compatible("st,stm32mp157c-dk2"))
604 return true;
605
606 return false;
607}
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200608
Patrick Delaunay486ae962020-04-22 14:29:13 +0200609static bool board_is_ev1(void)
610{
611 if (CONFIG_IS_ENABLED(TARGET_ST_STM32MP15x) &&
612 (of_machine_is_compatible("st,stm32mp157a-ev1") ||
613 of_machine_is_compatible("st,stm32mp157c-ev1") ||
614 of_machine_is_compatible("st,stm32mp157d-ev1") ||
615 of_machine_is_compatible("st,stm32mp157f-ev1")))
616 return true;
617
618 return false;
619}
620
621/* touchscreen driver: only used for pincontrol configuration */
622static const struct udevice_id goodix_ids[] = {
623 { .compatible = "goodix,gt9147", },
624 { }
625};
626
627U_BOOT_DRIVER(goodix) = {
628 .name = "goodix",
629 .id = UCLASS_NOP,
630 .of_match = goodix_ids,
631};
632
633static void board_ev1_init(void)
634{
635 struct udevice *dev;
636
637 /* configure IRQ line on EV1 for touchscreen before LCD reset */
Simon Glass65130cd2020-12-28 20:34:56 -0700638 uclass_get_device_by_driver(UCLASS_NOP, DM_DRIVER_GET(goodix), &dev);
Patrick Delaunay486ae962020-04-22 14:29:13 +0200639}
640
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100641/* board dependent setup after realloc */
642int board_init(void)
643{
644 /* address of boot parameters */
645 gd->bd->bi_boot_params = STM32_DDR_BASE + 0x100;
646
Patrick Delaunay97896402020-06-04 14:30:24 +0200647 if (CONFIG_IS_ENABLED(DM_GPIO_HOG))
648 gpio_hog_probe_all();
Patrice Chotard972723a2019-03-11 11:13:17 +0100649
Patrick Delaunay008d3c32019-02-27 17:01:20 +0100650 board_key_check();
651
Patrick Delaunay486ae962020-04-22 14:29:13 +0200652 if (board_is_ev1())
653 board_ev1_init();
654
Patrick Delaunay9f76fdf2019-07-30 19:16:38 +0200655 if (board_is_dk2())
656 dk2_i2c1_fix();
657
Patrick Delaunayc75bc6a2020-07-31 16:31:47 +0200658 if (IS_ENABLED(CONFIG_DM_REGULATOR))
659 regulators_enable_boot_on(_DEBUG);
Patrick Delaunay6519e442019-07-05 17:20:09 +0200660
Patrick Delaunay4b2bfd62020-07-31 16:31:45 +0200661 if (!IS_ENABLED(CONFIG_TFABOOT))
662 sysconf_init();
Patrick Delaunay4ace1d12019-02-27 17:01:24 +0100663
Patrick Delaunay78f68f22020-04-10 19:14:01 +0200664 if (CONFIG_IS_ENABLED(LED))
Patrick Delaunay36e3d112018-07-27 16:37:08 +0200665 led_default_state();
666
Patrick Delaunay8ae05cf2020-04-22 14:29:12 +0200667 setup_led(LEDST_ON);
668
Patrick Delaunay8eb3b1e2018-03-12 10:46:18 +0100669 return 0;
670}
Patrick Delaunayd70e3f82019-02-27 17:01:11 +0100671
672int board_late_init(void)
673{
Patrick Delaunayd70e3f82019-02-27 17:01:11 +0100674 const void *fdt_compat;
675 int fdt_compat_len;
Patrick Delaunaye8566ec2019-07-30 19:16:37 +0200676 int ret;
677 u32 otp;
678 struct udevice *dev;
679 char buf[10];
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200680 char dtb_name[256];
681 int buf_len;
Patrick Delaunayd70e3f82019-02-27 17:01:11 +0100682
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200683 if (IS_ENABLED(CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG)) {
684 fdt_compat = fdt_getprop(gd->fdt_blob, 0, "compatible",
685 &fdt_compat_len);
686 if (fdt_compat && fdt_compat_len) {
687 if (strncmp(fdt_compat, "st,", 3) != 0) {
688 env_set("board_name", fdt_compat);
689 } else {
690 env_set("board_name", fdt_compat + 3);
Patrick Delaunay4533a2c2020-04-22 14:29:14 +0200691
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200692 buf_len = sizeof(dtb_name);
693 strncpy(dtb_name, fdt_compat + 3, buf_len);
694 buf_len -= strlen(fdt_compat + 3);
695 strncat(dtb_name, ".dtb", buf_len);
696 env_set("fdtfile", dtb_name);
697 }
Patrick Delaunay4533a2c2020-04-22 14:29:14 +0200698 }
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200699 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65130cd2020-12-28 20:34:56 -0700700 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200701 &dev);
Patrick Delaunaye8566ec2019-07-30 19:16:37 +0200702
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200703 if (!ret)
704 ret = misc_read(dev, STM32_BSEC_SHADOW(BSEC_OTP_BOARD),
705 &otp, sizeof(otp));
706 if (ret > 0 && otp) {
707 snprintf(buf, sizeof(buf), "0x%04x", otp >> 16);
708 env_set("board_id", buf);
Patrick Delaunaye8566ec2019-07-30 19:16:37 +0200709
Patrick Delaunayf118e4a2020-07-31 16:31:48 +0200710 snprintf(buf, sizeof(buf), "0x%04x",
711 ((otp >> 8) & 0xF) - 1 + 0xA);
712 env_set("board_rev", buf);
713 }
Patrick Delaunaye8566ec2019-07-30 19:16:37 +0200714 }
Patrick Delaunayd70e3f82019-02-27 17:01:11 +0100715
Patrice Chotard879cde52019-02-12 16:50:40 +0100716 /* for DK1/DK2 boards */
717 board_check_usb_power();
718
Patrick Delaunayd70e3f82019-02-27 17:01:11 +0100719 return 0;
720}
Patrice Chotard879cde52019-02-12 16:50:40 +0100721
722void board_quiesce_devices(void)
723{
724 setup_led(LEDST_OFF);
725}
Patrice Chotard41443cf2019-05-02 18:07:14 +0200726
Patrick Delaunaybff66f92019-08-01 11:29:03 +0200727/* eth init function : weak called in eqos driver */
728int board_interface_eth_init(struct udevice *dev,
729 phy_interface_t interface_type)
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200730{
731 u8 *syscfg;
732 u32 value;
Patrick Delaunaybff66f92019-08-01 11:29:03 +0200733 bool eth_clk_sel_reg = false;
734 bool eth_ref_clk_sel_reg = false;
735
736 /* Gigabit Ethernet 125MHz clock selection. */
737 eth_clk_sel_reg = dev_read_bool(dev, "st,eth_clk_sel");
738
739 /* Ethernet 50Mhz RMII clock selection */
740 eth_ref_clk_sel_reg =
741 dev_read_bool(dev, "st,eth_ref_clk_sel");
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200742
743 syscfg = (u8 *)syscon_get_first_range(STM32MP_SYSCON_SYSCFG);
744
745 if (!syscfg)
746 return -ENODEV;
747
748 switch (interface_type) {
749 case PHY_INTERFACE_MODE_MII:
750 value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII |
751 SYSCFG_PMCSETR_ETH_REF_CLK_SEL;
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100752 log_debug("PHY_INTERFACE_MODE_MII\n");
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200753 break;
754 case PHY_INTERFACE_MODE_GMII:
755 if (eth_clk_sel_reg)
756 value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII |
757 SYSCFG_PMCSETR_ETH_CLK_SEL;
758 else
759 value = SYSCFG_PMCSETR_ETH_SEL_GMII_MII;
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100760 log_debug("PHY_INTERFACE_MODE_GMII\n");
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200761 break;
762 case PHY_INTERFACE_MODE_RMII:
763 if (eth_ref_clk_sel_reg)
764 value = SYSCFG_PMCSETR_ETH_SEL_RMII |
765 SYSCFG_PMCSETR_ETH_REF_CLK_SEL;
766 else
767 value = SYSCFG_PMCSETR_ETH_SEL_RMII;
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100768 log_debug("PHY_INTERFACE_MODE_RMII\n");
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200769 break;
770 case PHY_INTERFACE_MODE_RGMII:
771 case PHY_INTERFACE_MODE_RGMII_ID:
772 case PHY_INTERFACE_MODE_RGMII_RXID:
773 case PHY_INTERFACE_MODE_RGMII_TXID:
774 if (eth_clk_sel_reg)
775 value = SYSCFG_PMCSETR_ETH_SEL_RGMII |
776 SYSCFG_PMCSETR_ETH_CLK_SEL;
777 else
778 value = SYSCFG_PMCSETR_ETH_SEL_RGMII;
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100779 log_debug("PHY_INTERFACE_MODE_RGMII\n");
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200780 break;
781 default:
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100782 log_debug("Do not manage %d interface\n",
783 interface_type);
Christophe Roullier69ac3f52019-05-17 15:08:43 +0200784 /* Do not manage others interfaces */
785 return -EINVAL;
786 }
787
788 /* clear and set ETH configuration bits */
789 writel(SYSCFG_PMCSETR_ETH_SEL_MASK | SYSCFG_PMCSETR_ETH_SELMII |
790 SYSCFG_PMCSETR_ETH_REF_CLK_SEL | SYSCFG_PMCSETR_ETH_CLK_SEL,
791 syscfg + SYSCFG_PMCCLRR);
792 writel(value, syscfg + SYSCFG_PMCSETR);
793
794 return 0;
795}
796
Patrice Chotard34320372019-05-02 18:28:05 +0200797enum env_location env_get_location(enum env_operation op, int prio)
798{
799 u32 bootmode = get_bootmode();
800
801 if (prio)
802 return ENVL_UNKNOWN;
803
804 switch (bootmode & TAMP_BOOT_DEVICE_MASK) {
Patrick Delaunay455b0652020-06-15 11:18:22 +0200805 case BOOT_FLASH_SD:
806 case BOOT_FLASH_EMMC:
Patrick Delaunay821a9ba2020-07-31 16:31:49 +0200807 if (CONFIG_IS_ENABLED(ENV_IS_IN_MMC))
808 return ENVL_MMC;
809 else if (CONFIG_IS_ENABLED(ENV_IS_IN_EXT4))
810 return ENVL_EXT4;
811 else
812 return ENVL_NOWHERE;
813
Patrice Chotard34320372019-05-02 18:28:05 +0200814 case BOOT_FLASH_NAND:
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100815 case BOOT_FLASH_SPINAND:
Patrick Delaunay821a9ba2020-07-31 16:31:49 +0200816 if (CONFIG_IS_ENABLED(ENV_IS_IN_UBI))
817 return ENVL_UBI;
818 else
819 return ENVL_NOWHERE;
820
Patrice Chotard2c461ec2019-05-09 14:25:36 +0200821 case BOOT_FLASH_NOR:
Patrick Delaunay821a9ba2020-07-31 16:31:49 +0200822 if (CONFIG_IS_ENABLED(ENV_IS_IN_SPI_FLASH))
823 return ENVL_SPI_FLASH;
824 else
825 return ENVL_NOWHERE;
826
Patrice Chotard34320372019-05-02 18:28:05 +0200827 default:
828 return ENVL_NOWHERE;
829 }
830}
831
Patrice Chotarddad97bf2019-05-02 18:36:01 +0200832const char *env_ext4_get_intf(void)
833{
834 u32 bootmode = get_bootmode();
835
836 switch (bootmode & TAMP_BOOT_DEVICE_MASK) {
837 case BOOT_FLASH_SD:
838 case BOOT_FLASH_EMMC:
839 return "mmc";
840 default:
841 return "";
842 }
843}
844
845const char *env_ext4_get_dev_part(void)
846{
Manuel Reisbe9d3e22020-11-25 10:16:20 +0000847 static char *const env_dev_part =
848#ifdef CONFIG_ENV_EXT4_DEVICE_AND_PART
849 CONFIG_ENV_EXT4_DEVICE_AND_PART;
850#else
851 "";
852#endif
Patrice Chotarddad97bf2019-05-02 18:36:01 +0200853 static char *const dev_part[] = {"0:auto", "1:auto", "2:auto"};
Manuel Reisbe9d3e22020-11-25 10:16:20 +0000854
855 if (strlen(env_dev_part) > 0)
856 return env_dev_part;
857
Patrice Chotarddad97bf2019-05-02 18:36:01 +0200858 u32 bootmode = get_bootmode();
859
860 return dev_part[(bootmode & TAMP_BOOT_INSTANCE_MASK) - 1];
861}
Manuel Reisbe9d3e22020-11-25 10:16:20 +0000862
Patrick Delaunay455b0652020-06-15 11:18:22 +0200863int mmc_get_env_dev(void)
864{
865 u32 bootmode = get_bootmode();
866
867 return (bootmode & TAMP_BOOT_INSTANCE_MASK) - 1;
868}
Patrick Delaunay455b0652020-06-15 11:18:22 +0200869
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200870#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900871int ft_board_setup(void *blob, struct bd_info *bd)
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200872{
Patrick Delaunaya8a67ed2020-07-29 13:24:52 +0200873 static const struct node_info nodes[] = {
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200874 { "st,stm32f469-qspi", MTD_DEV_TYPE_NOR, },
Patrick Delaunayb5a7ca22020-03-18 09:22:52 +0100875 { "st,stm32f469-qspi", MTD_DEV_TYPE_SPINAND},
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200876 { "st,stm32mp15-fmc2", MTD_DEV_TYPE_NAND, },
Christophe Kerello15359e42020-07-31 09:53:42 +0200877 { "st,stm32mp1-fmc2-nfc", MTD_DEV_TYPE_NAND, },
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200878 };
Patrick Delaunay1b5cd0b2020-10-15 14:52:30 +0200879 char *boot_device;
Patrick Delaunay9d96e902020-07-31 16:31:50 +0200880
Patrick Delaunay1b5cd0b2020-10-15 14:52:30 +0200881 /* Check the boot-source and don't update MTD for serial or usb boot */
882 boot_device = env_get("boot_device");
883 if (!boot_device ||
884 (strcmp(boot_device, "serial") && strcmp(boot_device, "usb")))
885 if (IS_ENABLED(CONFIG_FDT_FIXUP_PARTITIONS))
886 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
Patrick Delaunayde98cbf2019-07-02 13:26:07 +0200887
888 return 0;
889}
890#endif
Patrick Delaunayc17d7252019-08-02 15:07:20 +0200891
892static void board_copro_image_process(ulong fw_image, size_t fw_size)
893{
894 int ret, id = 0; /* Copro id fixed to 0 as only one coproc on mp1 */
895
896 if (!rproc_is_initialized())
897 if (rproc_init()) {
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100898 log_err("Remote Processor %d initialization failed\n",
899 id);
Patrick Delaunayc17d7252019-08-02 15:07:20 +0200900 return;
901 }
902
903 ret = rproc_load(id, fw_image, fw_size);
Patrick Delaunayf7b2a842020-11-06 19:01:59 +0100904 log_err("Load Remote Processor %d with data@addr=0x%08lx %u bytes:%s\n",
905 id, fw_image, fw_size, ret ? " Failed!" : " Success!");
Patrick Delaunayc17d7252019-08-02 15:07:20 +0200906
Fabien Dessennead6cc942019-10-30 14:38:32 +0100907 if (!ret)
Patrick Delaunayc17d7252019-08-02 15:07:20 +0200908 rproc_start(id);
Patrick Delaunayc17d7252019-08-02 15:07:20 +0200909}
910
911U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_COPRO, board_copro_image_process);