Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 NXP Semiconductors |
| 4 | * Author: Fabio Estevam <fabio.estevam@nxp.com> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 5 | */ |
| 6 | |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 7 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 8 | #include <net.h> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 9 | #include <asm/arch/clock.h> |
| 10 | #include <asm/arch/imx-regs.h> |
| 11 | #include <asm/arch/mx7-pins.h> |
| 12 | #include <asm/arch/sys_proto.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 14 | #include <asm/gpio.h> |
Bryan O'Donoghue | 1b60ee6 | 2018-04-24 18:46:33 +0100 | [diff] [blame] | 15 | #include <asm/mach-imx/hab.h> |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 16 | #include <asm/mach-imx/iomux-v3.h> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 17 | #include <asm/io.h> |
Simon Glass | 07dc93c | 2019-08-01 09:46:47 -0600 | [diff] [blame] | 18 | #include <env.h> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 19 | #include <asm/arch/crm_regs.h> |
Kevin Hilman | 46fdd84 | 2016-12-16 13:08:10 -0800 | [diff] [blame] | 20 | #include <netdev.h> |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 21 | #include <power/pmic.h> |
| 22 | #include <power/pfuze3000_pmic.h> |
| 23 | #include "../freescale/common/pfuze.h" |
Bryan O'Donoghue | 1936c41 | 2018-03-26 15:27:34 +0100 | [diff] [blame] | 24 | #include <asm/setup.h> |
| 25 | #include <asm/bootm.h> |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 29 | int dram_init(void) |
| 30 | { |
| 31 | gd->ram_size = PHYS_SDRAM_SIZE; |
| 32 | |
Bryan O'Donoghue | 2adfdff | 2018-04-24 18:46:35 +0100 | [diff] [blame] | 33 | /* Subtract the defined OPTEE runtime firmware length */ |
| 34 | #ifdef CONFIG_OPTEE_TZDRAM_SIZE |
| 35 | gd->ram_size -= CONFIG_OPTEE_TZDRAM_SIZE; |
| 36 | #endif |
| 37 | |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 38 | return 0; |
| 39 | } |
| 40 | |
Marco Franchi | 3d73f52 | 2016-06-10 14:45:28 -0300 | [diff] [blame] | 41 | static iomux_v3_cfg_t const wdog_pads[] = { |
| 42 | MX7D_PAD_GPIO1_IO00__WDOG1_WDOG_B | MUX_PAD_CTRL(NO_PAD_CTRL), |
| 43 | }; |
| 44 | |
Bryan O'Donoghue | 6f1eee6 | 2019-01-18 17:40:14 +0000 | [diff] [blame] | 45 | #ifdef CONFIG_DM_PMIC |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 46 | int power_init_board(void) |
| 47 | { |
Bryan O'Donoghue | 6f1eee6 | 2019-01-18 17:40:14 +0000 | [diff] [blame] | 48 | struct udevice *dev; |
| 49 | int ret, dev_id, rev_id; |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 50 | |
Joris Offouga | e19e7cc | 2020-01-29 22:05:58 +0100 | [diff] [blame] | 51 | ret = pmic_get("pfuze3000@8", &dev); |
Bryan O'Donoghue | 6f1eee6 | 2019-01-18 17:40:14 +0000 | [diff] [blame] | 52 | if (ret == -ENODEV) |
| 53 | return 0; |
| 54 | if (ret != 0) |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 55 | return ret; |
| 56 | |
Bryan O'Donoghue | 6f1eee6 | 2019-01-18 17:40:14 +0000 | [diff] [blame] | 57 | dev_id = pmic_reg_read(dev, PFUZE3000_DEVICEID); |
| 58 | rev_id = pmic_reg_read(dev, PFUZE3000_REVID); |
| 59 | printf("PMIC: PFUZE3000 DEV_ID=0x%x REV_ID=0x%x\n", dev_id, rev_id); |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 60 | |
| 61 | /* disable Low Power Mode during standby mode */ |
Fabio Estevam | 7ac7b96 | 2019-02-14 11:37:51 -0200 | [diff] [blame] | 62 | pmic_reg_write(dev, PFUZE3000_LDOGCTL, 1); |
Vanessa Maegima | 4abedc8 | 2016-08-19 10:21:36 -0300 | [diff] [blame] | 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | #endif |
| 67 | |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 68 | int board_init(void) |
| 69 | { |
| 70 | /* address of boot parameters */ |
| 71 | gd->bd->bi_boot_params = PHYS_SDRAM + 0x100; |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | int checkboard(void) |
| 77 | { |
Fabio Estevam | f8f2194 | 2016-08-25 21:07:20 -0300 | [diff] [blame] | 78 | char *mode; |
| 79 | |
| 80 | if (IS_ENABLED(CONFIG_ARMV7_BOOT_SEC_DEFAULT)) |
| 81 | mode = "secure"; |
| 82 | else |
| 83 | mode = "non-secure"; |
| 84 | |
Bryan O'Donoghue | 446dddd | 2018-04-24 18:46:36 +0100 | [diff] [blame] | 85 | #ifdef CONFIG_OPTEE_TZDRAM_SIZE |
| 86 | unsigned long optee_start, optee_end; |
| 87 | |
| 88 | optee_end = PHYS_SDRAM + PHYS_SDRAM_SIZE; |
| 89 | optee_start = optee_end - CONFIG_OPTEE_TZDRAM_SIZE; |
| 90 | |
| 91 | printf("Board: WARP7 in %s mode OPTEE DRAM 0x%08lx-0x%08lx\n", |
| 92 | mode, optee_start, optee_end); |
| 93 | #else |
Fabio Estevam | f8f2194 | 2016-08-25 21:07:20 -0300 | [diff] [blame] | 94 | printf("Board: WARP7 in %s mode\n", mode); |
Bryan O'Donoghue | 446dddd | 2018-04-24 18:46:36 +0100 | [diff] [blame] | 95 | #endif |
Fabio Estevam | 6cfa712 | 2016-02-29 09:33:22 -0300 | [diff] [blame] | 96 | |
| 97 | return 0; |
| 98 | } |
| 99 | |
Marco Franchi | 3d73f52 | 2016-06-10 14:45:28 -0300 | [diff] [blame] | 100 | int board_late_init(void) |
| 101 | { |
| 102 | struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR; |
Tom Rini | ae21e7f | 2021-08-30 09:16:29 -0400 | [diff] [blame] | 103 | #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
Bryan O'Donoghue | 1936c41 | 2018-03-26 15:27:34 +0100 | [diff] [blame] | 104 | struct tag_serialnr serialnr; |
| 105 | char serial_string[0x20]; |
| 106 | #endif |
Marco Franchi | 3d73f52 | 2016-06-10 14:45:28 -0300 | [diff] [blame] | 107 | |
| 108 | imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads)); |
| 109 | |
| 110 | set_wdog_reset(wdog); |
| 111 | |
| 112 | /* |
| 113 | * Do not assert internal WDOG_RESET_B_DEB(controlled by bit 4), |
| 114 | * since we use PMIC_PWRON to reset the board. |
| 115 | */ |
| 116 | clrsetbits_le16(&wdog->wcr, 0, 0x10); |
| 117 | |
Stefano Babic | f8b509b | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 118 | #ifdef CONFIG_IMX_HAB |
Bryan O'Donoghue | 1b60ee6 | 2018-04-24 18:46:33 +0100 | [diff] [blame] | 119 | /* Determine HAB state */ |
| 120 | env_set_ulong(HAB_ENABLED_ENVNAME, imx_hab_is_enabled()); |
| 121 | #else |
| 122 | env_set_ulong(HAB_ENABLED_ENVNAME, 0); |
| 123 | #endif |
| 124 | |
Tom Rini | ae21e7f | 2021-08-30 09:16:29 -0400 | [diff] [blame] | 125 | #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
Bryan O'Donoghue | 1936c41 | 2018-03-26 15:27:34 +0100 | [diff] [blame] | 126 | /* Set serial# standard environment variable based on OTP settings */ |
| 127 | get_board_serial(&serialnr); |
| 128 | snprintf(serial_string, sizeof(serial_string), "WaRP7-0x%08x%08x", |
| 129 | serialnr.low, serialnr.high); |
| 130 | env_set("serial#", serial_string); |
| 131 | #endif |
| 132 | |
Marco Franchi | 3d73f52 | 2016-06-10 14:45:28 -0300 | [diff] [blame] | 133 | return 0; |
| 134 | } |