Merge branch 'master' of git://git.denx.de/u-boot-sh
[oweals/u-boot.git] / arch / arm / mach-rockchip / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2019 Rockchip Electronics Co., Ltd.
4  */
5 #include <common.h>
6 #include <clk.h>
7 #include <dm.h>
8 #include <ram.h>
9 #include <syscon.h>
10 #include <asm/io.h>
11 #include <asm/arch-rockchip/boot_mode.h>
12 #include <asm/arch-rockchip/clock.h>
13 #include <asm/arch-rockchip/periph.h>
14 #include <asm/arch-rockchip/misc.h>
15 #include <power/regulator.h>
16
17 DECLARE_GLOBAL_DATA_PTR;
18
19 __weak int rk_board_late_init(void)
20 {
21         return 0;
22 }
23
24 int board_late_init(void)
25 {
26         setup_boot_mode();
27
28         return rk_board_late_init();
29 }
30
31 int board_init(void)
32 {
33         int ret;
34
35 #ifdef CONFIG_DM_REGULATOR
36         ret = regulators_enable_boot_on(false);
37         if (ret)
38                 debug("%s: Cannot enable boot on regulator\n", __func__);
39 #endif
40
41         return 0;
42 }
43
44 #if !defined(CONFIG_SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
45 void enable_caches(void)
46 {
47         /* Enable D-cache. I-cache is already enabled in start.S */
48         dcache_enable();
49 }
50 #endif
51
52 #if defined(CONFIG_USB_GADGET) && defined(CONFIG_USB_GADGET_DWC2_OTG)
53 #include <usb.h>
54 #include <usb/dwc2_udc.h>
55
56 static struct dwc2_plat_otg_data otg_data = {
57         .rx_fifo_sz     = 512,
58         .np_tx_fifo_sz  = 16,
59         .tx_fifo_sz     = 128,
60 };
61
62 int board_usb_init(int index, enum usb_init_type init)
63 {
64         ofnode node;
65         const char *mode;
66         bool matched = false;
67
68         /* find the usb_otg node */
69         node = ofnode_by_compatible(ofnode_null(), "snps,dwc2");
70         while (ofnode_valid(node)) {
71                 mode = ofnode_read_string(node, "dr_mode");
72                 if (mode && strcmp(mode, "otg") == 0) {
73                         matched = true;
74                         break;
75                 }
76
77                 node = ofnode_by_compatible(node, "snps,dwc2");
78         }
79         if (!matched) {
80                 debug("Not found usb_otg device\n");
81                 return -ENODEV;
82         }
83         otg_data.regs_otg = ofnode_get_addr(node);
84
85 #ifdef CONFIG_ROCKCHIP_RK3288
86         int ret;
87         u32 phandle, offset;
88         ofnode phy_node;
89
90         ret = ofnode_read_u32(node, "phys", &phandle);
91         if (ret)
92                 return ret;
93
94         node = ofnode_get_by_phandle(phandle);
95         if (!ofnode_valid(node)) {
96                 debug("Not found usb phy device\n");
97                 return -ENODEV;
98         }
99
100         phy_node = ofnode_get_parent(node);
101         if (!ofnode_valid(node)) {
102                 debug("Not found usb phy device\n");
103                 return -ENODEV;
104         }
105
106         otg_data.phy_of_node = phy_node;
107         ret = ofnode_read_u32(node, "reg", &offset);
108         if (ret)
109                 return ret;
110         otg_data.regs_phy =  offset +
111                 (u32)syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
112 #endif
113         return dwc2_udc_probe(&otg_data);
114 }
115
116 int board_usb_cleanup(int index, enum usb_init_type init)
117 {
118         return 0;
119 }
120 #endif
121
122 #if CONFIG_IS_ENABLED(FASTBOOT)
123 int fastboot_set_reboot_flag(void)
124 {
125         printf("Setting reboot to fastboot flag ...\n");
126         /* Set boot mode to fastboot */
127         writel(BOOT_FASTBOOT, CONFIG_ROCKCHIP_BOOT_MODE_REG);
128
129         return 0;
130 }
131 #endif
132
133 #ifdef CONFIG_MISC_INIT_R
134 __weak int misc_init_r(void)
135 {
136         const u32 cpuid_offset = 0x7;
137         const u32 cpuid_length = 0x10;
138         u8 cpuid[cpuid_length];
139         int ret;
140
141         ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid);
142         if (ret)
143                 return ret;
144
145         ret = rockchip_cpuid_set(cpuid, cpuid_length);
146         if (ret)
147                 return ret;
148
149         ret = rockchip_setup_macaddr();
150
151         return ret;
152 }
153 #endif