blob: f1f70c81d0ca6585f43425ce4131994c5e194288 [file] [log] [blame]
Kever Yangbb337732019-07-22 20:02:01 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019 Rockchip Electronics Co., Ltd.
4 */
5#include <common.h>
6#include <clk.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07007#include <cpu_func.h>
Kever Yangbb337732019-07-22 20:02:01 +08008#include <dm.h>
Sughosh Ganuc1b8e8b2022-11-10 14:49:15 +05309#include <efi_loader.h>
Roman Kovalivskyi1bb13422020-07-28 23:35:32 +030010#include <fastboot.h>
Simon Glassa7b51302019-11-14 12:57:46 -070011#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Sughosh Ganuc1b8e8b2022-11-10 14:49:15 +053013#include <mmc.h>
14#include <part.h>
Kever Yangbb337732019-07-22 20:02:01 +080015#include <ram.h>
16#include <syscon.h>
Sughosh Ganuc1b8e8b2022-11-10 14:49:15 +053017#include <uuid.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Kever Yangbb337732019-07-22 20:02:01 +080020#include <asm/io.h>
21#include <asm/arch-rockchip/boot_mode.h>
22#include <asm/arch-rockchip/clock.h>
23#include <asm/arch-rockchip/periph.h>
Rohan Gargcfdc1922019-08-12 17:04:34 +020024#include <asm/arch-rockchip/misc.h>
Kever Yangbb337732019-07-22 20:02:01 +080025#include <power/regulator.h>
26
27DECLARE_GLOBAL_DATA_PTR;
28
Sughosh Ganuc1b8e8b2022-11-10 14:49:15 +053029#if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION)
30
31#define DFU_ALT_BUF_LEN SZ_1K
32
33static struct efi_fw_image *fw_images;
34
35static bool updatable_image(struct disk_partition *info)
36{
37 int i;
38 bool ret = false;
39 efi_guid_t image_type_guid;
40
41 uuid_str_to_bin(info->type_guid, image_type_guid.b,
42 UUID_STR_FORMAT_GUID);
43
44 for (i = 0; i < num_image_type_guids; i++) {
45 if (!guidcmp(&fw_images[i].image_type_id, &image_type_guid)) {
46 ret = true;
47 break;
48 }
49 }
50
51 return ret;
52}
53
54static void set_image_index(struct disk_partition *info, int index)
55{
56 int i;
57 efi_guid_t image_type_guid;
58
59 uuid_str_to_bin(info->type_guid, image_type_guid.b,
60 UUID_STR_FORMAT_GUID);
61
62 for (i = 0; i < num_image_type_guids; i++) {
63 if (!guidcmp(&fw_images[i].image_type_id, &image_type_guid)) {
64 fw_images[i].image_index = index;
65 break;
66 }
67 }
68}
69
70static int get_mmc_desc(struct blk_desc **desc)
71{
72 int ret;
73 struct mmc *mmc;
74 struct udevice *dev;
75
76 /*
77 * For now the firmware images are assumed to
78 * be on the SD card
79 */
80 ret = uclass_get_device(UCLASS_MMC, 1, &dev);
81 if (ret)
82 return -1;
83
84 mmc = mmc_get_mmc_dev(dev);
85 if (!mmc)
86 return -ENODEV;
87
88 if ((ret = mmc_init(mmc)))
89 return ret;
90
91 *desc = mmc_get_blk_desc(mmc);
92 if (!*desc)
93 return -1;
94
95 return 0;
96}
97
98void set_dfu_alt_info(char *interface, char *devstr)
99{
100 const char *name;
101 bool first = true;
102 int p, len, devnum, ret;
103 char buf[DFU_ALT_BUF_LEN];
104 struct disk_partition info;
105 struct blk_desc *desc = NULL;
106
107 ret = get_mmc_desc(&desc);
108 if (ret) {
109 log_err("Unable to get mmc desc\n");
110 return;
111 }
112
113 memset(buf, 0, sizeof(buf));
114 name = blk_get_uclass_name(desc->uclass_id);
115 devnum = desc->devnum;
116 len = strlen(buf);
117
118 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
119 "%s %d=", name, devnum);
120
121 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
122 if (part_get_info(desc, p, &info))
123 continue;
124
125 /* Add entry to dfu_alt_info only for updatable images */
126 if (updatable_image(&info)) {
127 if (!first)
128 len += snprintf(buf + len,
129 DFU_ALT_BUF_LEN - len, ";");
130
131 len += snprintf(buf + len, DFU_ALT_BUF_LEN - len,
132 "%s%d_%s part %d %d",
133 name, devnum, info.name, devnum, p);
134 first = false;
135 }
136 }
137
138 log_debug("dfu_alt_info => %s\n", buf);
139 env_set("dfu_alt_info", buf);
140}
141
142static void gpt_capsule_update_setup(void)
143{
144 int p, i, ret;
145 struct disk_partition info;
146 struct blk_desc *desc = NULL;
147
148 fw_images = update_info.images;
149 rockchip_capsule_update_board_setup();
150
151 ret = get_mmc_desc(&desc);
152 if (ret) {
153 log_err("Unable to get mmc desc\n");
154 return;
155 }
156
157 for (p = 1, i = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
158 if (part_get_info(desc, p, &info))
159 continue;
160
161 /*
162 * Since we have a GPT partitioned device, the updatable
163 * images could be stored in any order. Populate the
164 * image_index at runtime.
165 */
166 if (updatable_image(&info)) {
167 set_image_index(&info, i);
168 i++;
169 }
170 }
171}
172#endif /* CONFIG_EFI_HAVE_CAPSULE_SUPPORT && CONFIG_EFI_PARTITION */
173
Kever Yangbb337732019-07-22 20:02:01 +0800174__weak int rk_board_late_init(void)
175{
Sughosh Ganuc1b8e8b2022-11-10 14:49:15 +0530176#if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION)
177 gpt_capsule_update_setup();
178#endif
179
Kever Yangbb337732019-07-22 20:02:01 +0800180 return 0;
181}
182
183int board_late_init(void)
184{
185 setup_boot_mode();
186
187 return rk_board_late_init();
188}
189
190int board_init(void)
191{
192 int ret;
193
194#ifdef CONFIG_DM_REGULATOR
195 ret = regulators_enable_boot_on(false);
196 if (ret)
197 debug("%s: Cannot enable boot on regulator\n", __func__);
198#endif
199
200 return 0;
201}
202
203#if !defined(CONFIG_SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
204void enable_caches(void)
205{
206 /* Enable D-cache. I-cache is already enabled in start.S */
207 dcache_enable();
208}
209#endif
210
Jagan Teki886ecb22019-11-19 13:56:22 +0530211#if defined(CONFIG_USB_GADGET)
Kever Yangbb337732019-07-22 20:02:01 +0800212#include <usb.h>
Jagan Teki886ecb22019-11-19 13:56:22 +0530213
214#if defined(CONFIG_USB_GADGET_DWC2_OTG)
Kever Yangbb337732019-07-22 20:02:01 +0800215#include <usb/dwc2_udc.h>
216
217static struct dwc2_plat_otg_data otg_data = {
218 .rx_fifo_sz = 512,
219 .np_tx_fifo_sz = 16,
220 .tx_fifo_sz = 128,
221};
222
223int board_usb_init(int index, enum usb_init_type init)
224{
Kever Yang45bda032019-10-16 17:13:31 +0800225 ofnode node;
Kever Yangbb337732019-07-22 20:02:01 +0800226 const char *mode;
227 bool matched = false;
Kever Yangbb337732019-07-22 20:02:01 +0800228
229 /* find the usb_otg node */
Kever Yang45bda032019-10-16 17:13:31 +0800230 node = ofnode_by_compatible(ofnode_null(), "snps,dwc2");
231 while (ofnode_valid(node)) {
232 mode = ofnode_read_string(node, "dr_mode");
Kever Yangbb337732019-07-22 20:02:01 +0800233 if (mode && strcmp(mode, "otg") == 0) {
234 matched = true;
235 break;
236 }
237
Kever Yang45bda032019-10-16 17:13:31 +0800238 node = ofnode_by_compatible(node, "snps,dwc2");
Kever Yangbb337732019-07-22 20:02:01 +0800239 }
240 if (!matched) {
241 debug("Not found usb_otg device\n");
242 return -ENODEV;
243 }
Kever Yang45bda032019-10-16 17:13:31 +0800244 otg_data.regs_otg = ofnode_get_addr(node);
Kever Yangbb337732019-07-22 20:02:01 +0800245
Johan Jonkeraa65f3d2022-04-29 23:40:07 +0200246#ifdef CONFIG_ROCKCHIP_USB2_PHY
Kever Yang6169a0d2019-10-16 17:13:32 +0800247 int ret;
248 u32 phandle, offset;
249 ofnode phy_node;
250
251 ret = ofnode_read_u32(node, "phys", &phandle);
252 if (ret)
253 return ret;
254
255 node = ofnode_get_by_phandle(phandle);
256 if (!ofnode_valid(node)) {
257 debug("Not found usb phy device\n");
258 return -ENODEV;
259 }
260
261 phy_node = ofnode_get_parent(node);
262 if (!ofnode_valid(node)) {
263 debug("Not found usb phy device\n");
264 return -ENODEV;
265 }
266
267 otg_data.phy_of_node = phy_node;
268 ret = ofnode_read_u32(node, "reg", &offset);
269 if (ret)
270 return ret;
271 otg_data.regs_phy = offset +
272 (u32)syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
273#endif
Kever Yangbb337732019-07-22 20:02:01 +0800274 return dwc2_udc_probe(&otg_data);
275}
276
277int board_usb_cleanup(int index, enum usb_init_type init)
278{
279 return 0;
280}
Jagan Teki886ecb22019-11-19 13:56:22 +0530281#endif /* CONFIG_USB_GADGET_DWC2_OTG */
282
283#if defined(CONFIG_USB_DWC3_GADGET) && !defined(CONFIG_DM_USB_GADGET)
284#include <dwc3-uboot.h>
285
286static struct dwc3_device dwc3_device_data = {
287 .maximum_speed = USB_SPEED_HIGH,
288 .base = 0xfe800000,
289 .dr_mode = USB_DR_MODE_PERIPHERAL,
290 .index = 0,
291 .dis_u2_susphy_quirk = 1,
292 .hsphy_mode = USBPHY_INTERFACE_MODE_UTMIW,
293};
294
Marek BehĂșn35f307d2021-05-20 13:24:18 +0200295int usb_gadget_handle_interrupts(int index)
Jagan Teki886ecb22019-11-19 13:56:22 +0530296{
297 dwc3_uboot_handle_interrupt(0);
298 return 0;
299}
300
301int board_usb_init(int index, enum usb_init_type init)
302{
303 return dwc3_uboot_init(&dwc3_device_data);
304}
305#endif /* CONFIG_USB_DWC3_GADGET */
306
307#endif /* CONFIG_USB_GADGET */
Kever Yangbb337732019-07-22 20:02:01 +0800308
Simon Glass96c0d2b2023-02-05 17:54:10 -0700309#if IS_ENABLED(CONFIG_FASTBOOT)
Roman Kovalivskyi1bb13422020-07-28 23:35:32 +0300310int fastboot_set_reboot_flag(enum fastboot_reboot_reason reason)
Kever Yangbb337732019-07-22 20:02:01 +0800311{
Roman Kovalivskyi1bb13422020-07-28 23:35:32 +0300312 if (reason != FASTBOOT_REBOOT_REASON_BOOTLOADER)
313 return -ENOTSUPP;
314
Kever Yangbb337732019-07-22 20:02:01 +0800315 printf("Setting reboot to fastboot flag ...\n");
316 /* Set boot mode to fastboot */
317 writel(BOOT_FASTBOOT, CONFIG_ROCKCHIP_BOOT_MODE_REG);
318
319 return 0;
320}
321#endif
Rohan Gargcfdc1922019-08-12 17:04:34 +0200322
323#ifdef CONFIG_MISC_INIT_R
324__weak int misc_init_r(void)
325{
Jonas Karlmanbe56bb52023-02-22 22:44:41 +0000326 const u32 cpuid_offset = CFG_CPUID_OFFSET;
Rohan Gargcfdc1922019-08-12 17:04:34 +0200327 const u32 cpuid_length = 0x10;
328 u8 cpuid[cpuid_length];
329 int ret;
330
331 ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid);
332 if (ret)
333 return ret;
334
335 ret = rockchip_cpuid_set(cpuid, cpuid_length);
336 if (ret)
337 return ret;
338
339 ret = rockchip_setup_macaddr();
340
341 return ret;
342}
343#endif