blob: 747791b10e381dcc1255207f5c9ad071842e28bb [file] [log] [blame]
Jerome Brunetf897c4b2018-10-05 17:00:37 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
4 */
5
6#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -07007#include <cpu_func.h>
Simon Glassa7b51302019-11-14 12:57:46 -07008#include <init.h>
Neil Armstrong2fbfcbb2018-07-27 14:10:00 +02009#include <asm/arch/boot.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060010#include <env.h>
Jerome Brunetf897c4b2018-10-05 17:00:37 +020011#include <linux/libfdt.h>
12#include <linux/err.h>
13#include <asm/arch/mem.h>
14#include <asm/arch/sm.h>
15#include <asm/armv8/mmu.h>
16#include <asm/unaligned.h>
17#include <efi_loader.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Jerome Brunetf897c4b2018-10-05 17:00:37 +020019
Neil Armstrong1a5ed9c2019-05-22 13:30:25 +020020#if CONFIG_IS_ENABLED(FASTBOOT)
21#include <asm/psci.h>
22#include <fastboot.h>
23#endif
24
Jerome Brunetf897c4b2018-10-05 17:00:37 +020025DECLARE_GLOBAL_DATA_PTR;
26
Jerome Brunet5c6fa8e2018-10-24 14:57:54 +020027__weak int board_init(void)
28{
29 return 0;
30}
31
Jerome Brunetf897c4b2018-10-05 17:00:37 +020032int dram_init(void)
33{
34 const fdt64_t *val;
35 int offset;
36 int len;
37
38 offset = fdt_path_offset(gd->fdt_blob, "/memory");
39 if (offset < 0)
40 return -EINVAL;
41
42 val = fdt_getprop(gd->fdt_blob, offset, "reg", &len);
43 if (len < sizeof(*val) * 2)
44 return -EINVAL;
45
46 /* Use unaligned access since cache is still disabled */
47 gd->ram_size = get_unaligned_be64(&val[1]);
48
49 return 0;
50}
51
Jerome Brunet5c6fa8e2018-10-24 14:57:54 +020052__weak int meson_ft_board_setup(void *blob, bd_t *bd)
53{
54 return 0;
55}
56
57int ft_board_setup(void *blob, bd_t *bd)
58{
59 meson_init_reserved_memory(blob);
60
61 return meson_ft_board_setup(blob, bd);
62}
63
Jerome Brunetf897c4b2018-10-05 17:00:37 +020064void meson_board_add_reserved_memory(void *fdt, u64 start, u64 size)
65{
66 int ret;
67
68 ret = fdt_add_mem_rsv(fdt, start, size);
69 if (ret)
70 printf("Could not reserve zone @ 0x%llx\n", start);
71
Michael Walle282d3862020-05-17 12:29:19 +020072 if (IS_ENABLED(CONFIG_EFI_LOADER))
73 efi_add_memory_map(start, size, EFI_RESERVED_MEMORY_TYPE);
Jerome Brunetf897c4b2018-10-05 17:00:37 +020074}
75
Neil Armstrongb4acf5a2019-06-12 11:49:07 +020076int meson_generate_serial_ethaddr(void)
77{
78 u8 mac_addr[ARP_HLEN];
79 char serial[SM_SERIAL_SIZE];
80 u32 sid;
81 u16 sid16;
82
83 if (!meson_sm_get_serial(serial, SM_SERIAL_SIZE)) {
84 sid = crc32(0, (unsigned char *)serial, SM_SERIAL_SIZE);
85 sid16 = crc16_ccitt(0, (unsigned char *)serial, SM_SERIAL_SIZE);
86
87 /* Ensure the NIC specific bytes of the mac are not all 0 */
88 if ((sid & 0xffffff) == 0)
89 sid |= 0x800000;
90
91 /* Non OUI / registered MAC address */
92 mac_addr[0] = ((sid16 >> 8) & 0xfc) | 0x02;
93 mac_addr[1] = (sid16 >> 0) & 0xff;
94 mac_addr[2] = (sid >> 24) & 0xff;
95 mac_addr[3] = (sid >> 16) & 0xff;
96 mac_addr[4] = (sid >> 8) & 0xff;
97 mac_addr[5] = (sid >> 0) & 0xff;
98
99 eth_env_set_enetaddr("ethaddr", mac_addr);
100 } else
101 return -EINVAL;
102
103 return 0;
104}
105
Neil Armstrong2fbfcbb2018-07-27 14:10:00 +0200106static void meson_set_boot_source(void)
107{
108 const char *source;
109
110 switch (meson_get_boot_device()) {
111 case BOOT_DEVICE_EMMC:
112 source = "emmc";
113 break;
114
115 case BOOT_DEVICE_NAND:
116 source = "nand";
117 break;
118
119 case BOOT_DEVICE_SPI:
120 source = "spi";
121 break;
122
123 case BOOT_DEVICE_SD:
124 source = "sd";
125 break;
126
127 case BOOT_DEVICE_USB:
128 source = "usb";
129 break;
130
131 default:
132 source = "unknown";
133 }
134
135 env_set("boot_source", source);
136}
137
138__weak int meson_board_late_init(void)
139{
140 return 0;
141}
142
143int board_late_init(void)
144{
145 meson_set_boot_source();
146
147 return meson_board_late_init();
148}
149
Neil Armstrong1a5ed9c2019-05-22 13:30:25 +0200150#if CONFIG_IS_ENABLED(FASTBOOT)
151static unsigned int reboot_reason = REBOOT_REASON_NORMAL;
152
153int fastboot_set_reboot_flag()
154{
155 reboot_reason = REBOOT_REASON_BOOTLOADER;
156
157 printf("Using reboot reason: 0x%x\n", reboot_reason);
158
159 return 0;
160}
161
Jerome Brunetf897c4b2018-10-05 17:00:37 +0200162void reset_cpu(ulong addr)
163{
Neil Armstrong1a5ed9c2019-05-22 13:30:25 +0200164 struct pt_regs regs;
165
166 regs.regs[0] = ARM_PSCI_0_2_FN_SYSTEM_RESET;
167 regs.regs[1] = reboot_reason;
168
169 printf("Rebooting with reason: 0x%lx\n", regs.regs[1]);
170
171 smc_call(&regs);
172
173 while (1)
174 ;
175}
176#else
177void reset_cpu(ulong addr)
178{
Jerome Brunetf897c4b2018-10-05 17:00:37 +0200179 psci_system_reset();
180}
Neil Armstrong1a5ed9c2019-05-22 13:30:25 +0200181#endif