]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/warp7/warp7.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / board / warp7 / warp7.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
47173483
FE
2/*
3 * Copyright (C) 2016 NXP Semiconductors
4 * Author: Fabio Estevam <fabio.estevam@nxp.com>
47173483
FE
5 */
6
5255932f 7#include <init.h>
90526e9f 8#include <net.h>
47173483
FE
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>
401d1c4f 13#include <asm/global_data.h>
47173483 14#include <asm/gpio.h>
a2accd84 15#include <asm/mach-imx/hab.h>
552a848e 16#include <asm/mach-imx/iomux-v3.h>
47173483 17#include <asm/io.h>
d678a59d 18#include <common.h>
168068fb 19#include <env.h>
47173483 20#include <asm/arch/crm_regs.h>
25aaebdb 21#include <netdev.h>
7d301a59
VM
22#include <power/pmic.h>
23#include <power/pfuze3000_pmic.h>
24#include "../freescale/common/pfuze.h"
852cc548
BD
25#include <asm/setup.h>
26#include <asm/bootm.h>
47173483
FE
27
28DECLARE_GLOBAL_DATA_PTR;
29
47173483
FE
30int dram_init(void)
31{
32 gd->ram_size = PHYS_SDRAM_SIZE;
33
7175ef4a
BD
34 /* Subtract the defined OPTEE runtime firmware length */
35#ifdef CONFIG_OPTEE_TZDRAM_SIZE
36 gd->ram_size -= CONFIG_OPTEE_TZDRAM_SIZE;
37#endif
38
47173483
FE
39 return 0;
40}
41
0a35cc93
MF
42static iomux_v3_cfg_t const wdog_pads[] = {
43 MX7D_PAD_GPIO1_IO00__WDOG1_WDOG_B | MUX_PAD_CTRL(NO_PAD_CTRL),
44};
45
8ba37732 46#ifdef CONFIG_DM_PMIC
7d301a59
VM
47int power_init_board(void)
48{
8ba37732
BD
49 struct udevice *dev;
50 int ret, dev_id, rev_id;
7d301a59 51
80dae36b 52 ret = pmic_get("pfuze3000@8", &dev);
8ba37732
BD
53 if (ret == -ENODEV)
54 return 0;
55 if (ret != 0)
7d301a59
VM
56 return ret;
57
8ba37732
BD
58 dev_id = pmic_reg_read(dev, PFUZE3000_DEVICEID);
59 rev_id = pmic_reg_read(dev, PFUZE3000_REVID);
60 printf("PMIC: PFUZE3000 DEV_ID=0x%x REV_ID=0x%x\n", dev_id, rev_id);
7d301a59
VM
61
62 /* disable Low Power Mode during standby mode */
e077b3ba 63 pmic_reg_write(dev, PFUZE3000_LDOGCTL, 1);
7d301a59
VM
64
65 return 0;
66}
67#endif
68
47173483
FE
69int board_init(void)
70{
71 /* address of boot parameters */
72 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
73
74 return 0;
75}
76
77int checkboard(void)
78{
d4ee5043
FE
79 char *mode;
80
81 if (IS_ENABLED(CONFIG_ARMV7_BOOT_SEC_DEFAULT))
82 mode = "secure";
83 else
84 mode = "non-secure";
85
fbbf44af
BD
86#ifdef CONFIG_OPTEE_TZDRAM_SIZE
87 unsigned long optee_start, optee_end;
88
89 optee_end = PHYS_SDRAM + PHYS_SDRAM_SIZE;
90 optee_start = optee_end - CONFIG_OPTEE_TZDRAM_SIZE;
91
92 printf("Board: WARP7 in %s mode OPTEE DRAM 0x%08lx-0x%08lx\n",
93 mode, optee_start, optee_end);
94#else
d4ee5043 95 printf("Board: WARP7 in %s mode\n", mode);
fbbf44af 96#endif
47173483
FE
97
98 return 0;
99}
100
0a35cc93
MF
101int board_late_init(void)
102{
103 struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR;
b9d66a06 104#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
852cc548
BD
105 struct tag_serialnr serialnr;
106 char serial_string[0x20];
107#endif
0a35cc93
MF
108
109 imx_iomux_v3_setup_multiple_pads(wdog_pads, ARRAY_SIZE(wdog_pads));
110
111 set_wdog_reset(wdog);
112
113 /*
114 * Do not assert internal WDOG_RESET_B_DEB(controlled by bit 4),
115 * since we use PMIC_PWRON to reset the board.
116 */
117 clrsetbits_le16(&wdog->wcr, 0, 0x10);
118
d714a75f 119#ifdef CONFIG_IMX_HAB
a2accd84
BD
120 /* Determine HAB state */
121 env_set_ulong(HAB_ENABLED_ENVNAME, imx_hab_is_enabled());
122#else
123 env_set_ulong(HAB_ENABLED_ENVNAME, 0);
124#endif
125
b9d66a06 126#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
852cc548
BD
127 /* Set serial# standard environment variable based on OTP settings */
128 get_board_serial(&serialnr);
129 snprintf(serial_string, sizeof(serial_string), "WaRP7-0x%08x%08x",
130 serialnr.low, serialnr.high);
131 env_set("serial#", serial_string);
132#endif
133
0a35cc93
MF
134 return 0;
135}