blob: 134a6c99d747639df07e52f27fcef4fdcbdf2fbb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Fabio Estevam47173482016-02-29 09:33:22 -03002/*
3 * Copyright (C) 2016 NXP Semiconductors
4 * Author: Fabio Estevam <fabio.estevam@nxp.com>
Fabio Estevam47173482016-02-29 09:33:22 -03005 */
6
7#include <asm/arch/clock.h>
8#include <asm/arch/imx-regs.h>
9#include <asm/arch/mx7-pins.h>
10#include <asm/arch/sys_proto.h>
11#include <asm/gpio.h>
Bryan O'Donoghuea2accd82018-04-24 18:46:33 +010012#include <asm/mach-imx/hab.h>
Stefano Babic552a8482017-06-29 10:16:06 +020013#include <asm/mach-imx/iomux-v3.h>
Fabio Estevam47173482016-02-29 09:33:22 -030014#include <asm/io.h>
15#include <common.h>
Fabio Estevam47173482016-02-29 09:33:22 -030016#include <asm/arch/crm_regs.h>
Kevin Hilman25aaebd2016-12-16 13:08:10 -080017#include <netdev.h>
Vanessa Maegima7d301a52016-08-19 10:21:36 -030018#include <power/pmic.h>
19#include <power/pfuze3000_pmic.h>
20#include "../freescale/common/pfuze.h"
Bryan O'Donoghue852cc542018-03-26 15:27:34 +010021#include <asm/setup.h>
22#include <asm/bootm.h>
Fabio Estevam47173482016-02-29 09:33:22 -030023
24DECLARE_GLOBAL_DATA_PTR;
25
26#define UART_PAD_CTRL (PAD_CTL_DSE_3P3V_49OHM | PAD_CTL_PUS_PU100KOHM | \
27 PAD_CTL_HYS)
Fabio Estevam47173482016-02-29 09:33:22 -030028
29int dram_init(void)
30{
31 gd->ram_size = PHYS_SDRAM_SIZE;
32
Bryan O'Donoghue7175ef42018-04-24 18:46:35 +010033 /* 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 Estevam47173482016-02-29 09:33:22 -030038 return 0;
39}
40
Marco Franchi0a35cc92016-06-10 14:45:28 -030041static iomux_v3_cfg_t const wdog_pads[] = {
42 MX7D_PAD_GPIO1_IO00__WDOG1_WDOG_B | MUX_PAD_CTRL(NO_PAD_CTRL),
43};
44
Fabio Estevam47173482016-02-29 09:33:22 -030045static iomux_v3_cfg_t const uart1_pads[] = {
46 MX7D_PAD_UART1_TX_DATA__UART1_DCE_TX | MUX_PAD_CTRL(UART_PAD_CTRL),
47 MX7D_PAD_UART1_RX_DATA__UART1_DCE_RX | MUX_PAD_CTRL(UART_PAD_CTRL),
48};
49
Fabio Estevam47173482016-02-29 09:33:22 -030050static void setup_iomux_uart(void)
51{
52 imx_iomux_v3_setup_multiple_pads(uart1_pads, ARRAY_SIZE(uart1_pads));
53};
54
Fabio Estevam47173482016-02-29 09:33:22 -030055int board_early_init_f(void)
56{
57 setup_iomux_uart();
58
59 return 0;
60}
61
Bryan O'Donoghue8ba37732019-01-18 17:40:14 +000062#ifdef CONFIG_DM_PMIC
Vanessa Maegima7d301a52016-08-19 10:21:36 -030063int power_init_board(void)
64{
Bryan O'Donoghue8ba37732019-01-18 17:40:14 +000065 struct udevice *dev;
66 int ret, dev_id, rev_id;
Vanessa Maegima7d301a52016-08-19 10:21:36 -030067
Bryan O'Donoghue8ba37732019-01-18 17:40:14 +000068 ret = pmic_get("pfuze3000", &dev);
69 if (ret == -ENODEV)
70 return 0;
71 if (ret != 0)
Vanessa Maegima7d301a52016-08-19 10:21:36 -030072 return ret;
73
Bryan O'Donoghue8ba37732019-01-18 17:40:14 +000074 dev_id = pmic_reg_read(dev, PFUZE3000_DEVICEID);
75 rev_id = pmic_reg_read(dev, PFUZE3000_REVID);
76 printf("PMIC: PFUZE3000 DEV_ID=0x%x REV_ID=0x%x\n", dev_id, rev_id);
Vanessa Maegima7d301a52016-08-19 10:21:36 -030077
78 /* disable Low Power Mode during standby mode */
Fabio Estevame077b3b2019-02-14 11:37:51 -020079 pmic_reg_write(dev, PFUZE3000_LDOGCTL, 1);
Vanessa Maegima7d301a52016-08-19 10:21:36 -030080
81 return 0;
82}
83#endif
84
Kevin Hilman25aaebd2016-12-16 13:08:10 -080085int board_eth_init(bd_t *bis)
86{
87 int ret = 0;
88
89#ifdef CONFIG_USB_ETHER
90 ret = usb_eth_initialize(bis);
91 if (ret < 0)
92 printf("Error %d registering USB ether.\n", ret);
93#endif
94
95 return ret;
96}
97
Fabio Estevam47173482016-02-29 09:33:22 -030098int board_init(void)
99{
100 /* address of boot parameters */
101 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
102
103 return 0;
104}
105
106int checkboard(void)
107{
Fabio Estevamd4ee5042016-08-25 21:07:20 -0300108 char *mode;
109
110 if (IS_ENABLED(CONFIG_ARMV7_BOOT_SEC_DEFAULT))
111 mode = "secure";
112 else
113 mode = "non-secure";
114
Bryan O'Donoghuefbbf44a2018-04-24 18:46:36 +0100115#ifdef CONFIG_OPTEE_TZDRAM_SIZE
116 unsigned long optee_start, optee_end;
117
118 optee_end = PHYS_SDRAM + PHYS_SDRAM_SIZE;
119 optee_start = optee_end - CONFIG_OPTEE_TZDRAM_SIZE;
120
121 printf("Board: WARP7 in %s mode OPTEE DRAM 0x%08lx-0x%08lx\n",
122 mode, optee_start, optee_end);
123#else
Fabio Estevamd4ee5042016-08-25 21:07:20 -0300124 printf("Board: WARP7 in %s mode\n", mode);
Bryan O'Donoghuefbbf44a2018-04-24 18:46:36 +0100125#endif
Fabio Estevam47173482016-02-29 09:33:22 -0300126
127 return 0;
128}
129
Marco Franchi0a35cc92016-06-10 14:45:28 -0300130int board_late_init(void)
131{
132 struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR;
Bryan O'Donoghue852cc542018-03-26 15:27:34 +0100133#ifdef CONFIG_SERIAL_TAG
134 struct tag_serialnr serialnr;
135 char serial_string[0x20];
136#endif
Marco Franchi0a35cc92016-06-10 14:45:28 -0300137
138 imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads));
139
140 set_wdog_reset(wdog);
141
142 /*
143 * Do not assert internal WDOG_RESET_B_DEB(controlled by bit 4),
144 * since we use PMIC_PWRON to reset the board.
145 */
146 clrsetbits_le16(&wdog->wcr, 0, 0x10);
147
Bryan O'Donoghuea2accd82018-04-24 18:46:33 +0100148#ifdef CONFIG_SECURE_BOOT
149 /* Determine HAB state */
150 env_set_ulong(HAB_ENABLED_ENVNAME, imx_hab_is_enabled());
151#else
152 env_set_ulong(HAB_ENABLED_ENVNAME, 0);
153#endif
154
Bryan O'Donoghue852cc542018-03-26 15:27:34 +0100155#ifdef CONFIG_SERIAL_TAG
156 /* Set serial# standard environment variable based on OTP settings */
157 get_board_serial(&serialnr);
158 snprintf(serial_string, sizeof(serial_string), "WaRP7-0x%08x%08x",
159 serialnr.low, serialnr.high);
160 env_set("serial#", serial_string);
161#endif
162
Marco Franchi0a35cc92016-06-10 14:45:28 -0300163 return 0;
164}