board: puma: Use rockchip_* helpers to setup cpuid and macaddr
[platform/kernel/u-boot.git] / board / theobroma-systems / puma_rk3399 / puma-rk3399.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <env.h>
9 #include <misc.h>
10 #include <spl.h>
11 #include <syscon.h>
12 #include <usb.h>
13 #include <dm/pinctrl.h>
14 #include <dm/uclass-internal.h>
15 #include <asm/io.h>
16 #include <asm/setup.h>
17 #include <asm/arch-rockchip/clock.h>
18 #include <asm/arch-rockchip/hardware.h>
19 #include <asm/arch-rockchip/grf_rk3399.h>
20 #include <asm/arch-rockchip/periph.h>
21 #include <asm/arch-rockchip/misc.h>
22 #include <power/regulator.h>
23 #include <u-boot/sha256.h>
24
25 static void setup_iodomain(void)
26 {
27         const u32 GRF_IO_VSEL_GPIO4CD_SHIFT = 3;
28         struct rk3399_grf_regs *grf =
29             syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
30
31         /*
32          * Set bit 3 in GRF_IO_VSEL so PCIE_RST# works (pin GPIO4_C6).
33          * Linux assumes that PCIE_RST# works out of the box as it probes
34          * PCIe before loading the iodomain driver.
35          */
36         rk_setreg(&grf->io_vsel, 1 << GRF_IO_VSEL_GPIO4CD_SHIFT);
37 }
38
39 /*
40  * Swap mmc0 and mmc1 in boot_targets if booted from SD-Card.
41  *
42  * If bootsource is uSD-card we can assume that we want to use the
43  * SD-Card instead of the eMMC as first boot_target for distroboot.
44  * We only want to swap the defaults and not any custom environment a
45  * user has set. We exit early if a changed boot_targets environment
46  * is detected.
47  */
48 static int setup_boottargets(void)
49 {
50         const char *boot_device =
51                 ofnode_get_chosen_prop("u-boot,spl-boot-device");
52         char *env_default, *env;
53
54         if (!boot_device) {
55                 debug("%s: /chosen/u-boot,spl-boot-device not set\n",
56                       __func__);
57                 return -1;
58         }
59         debug("%s: booted from %s\n", __func__, boot_device);
60
61         env_default = env_get_default("boot_targets");
62         env = env_get("boot_targets");
63         if (!env) {
64                 debug("%s: boot_targets does not exist\n", __func__);
65                 return -1;
66         }
67         debug("%s: boot_targets current: %s - default: %s\n",
68               __func__, env, env_default);
69
70         if (strcmp(env_default, env) != 0) {
71                 debug("%s: boot_targets not default, don't change it\n",
72                       __func__);
73                 return 0;
74         }
75
76         /*
77          * Only run, if booting from mmc1 (i.e. /dwmmc@fe320000) and
78          * only consider cases where the default boot-order first
79          * tries to boot from mmc0 (eMMC) and then from mmc1
80          * (i.e. external SD).
81          *
82          * In other words: the SD card will be moved to earlier in the
83          * order, if U-Boot was also loaded from the SD-card.
84          */
85         if (!strcmp(boot_device, "/dwmmc@fe320000")) {
86                 char *mmc0, *mmc1;
87
88                 debug("%s: booted from SD-Card\n", __func__);
89                 mmc0 = strstr(env, "mmc0");
90                 mmc1 = strstr(env, "mmc1");
91
92                 if (!mmc0 || !mmc1) {
93                         debug("%s: only one mmc boot_target found\n", __func__);
94                         return -1;
95                 }
96
97                 /*
98                  * If mmc0 comes first in the boot order, we need to change
99                  * the strings to make mmc1 first.
100                  */
101                 if (mmc0 < mmc1) {
102                         mmc0[3] = '1';
103                         mmc1[3] = '0';
104                         debug("%s: set boot_targets to: %s\n", __func__, env);
105                         env_set("boot_targets", env);
106                 }
107         }
108
109         return 0;
110 }
111
112 int misc_init_r(void)
113 {
114        const u32 cpuid_offset = 0x7;
115        const u32 cpuid_length = 0x10;
116        u8 cpuid[cpuid_length];
117        int ret;
118
119        ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid);
120        if (ret)
121                return ret;
122
123        ret = rockchip_cpuid_set(cpuid, cpuid_length);
124        if (ret)
125                return ret;
126
127        ret = rockchip_setup_macaddr();
128        if (ret)
129                return ret;
130
131         setup_iodomain();
132         setup_boottargets();
133
134         return 0;
135 }
136
137 #ifdef CONFIG_SERIAL_TAG
138 void get_board_serial(struct tag_serialnr *serialnr)
139 {
140         char *serial_string;
141         u64 serial = 0;
142
143         serial_string = env_get("serial#");
144
145         if (serial_string)
146                 serial = simple_strtoull(serial_string, NULL, 16);
147
148         serialnr->high = (u32)(serial >> 32);
149         serialnr->low = (u32)(serial & 0xffffffff);
150 }
151 #endif
152
153 /**
154  * Switch power at an external regulator (for our root hub).
155  *
156  * @param ctrl pointer to the xHCI controller
157  * @param port port number as in the control message (one-based)
158  * @param enable boolean indicating whether to enable or disable power
159  * @return returns 0 on success, an error-code on failure
160  */
161 static int board_usb_port_power_set(struct udevice *dev, int port,
162                                     bool enable)
163 {
164 #if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_REGULATOR)
165         /* We start counting ports at 0, while USB counts from 1. */
166         int index = port - 1;
167         const char *regname = NULL;
168         struct udevice *regulator;
169         const char *prop = "tsd,usb-port-power";
170         int ret;
171
172         debug("%s: ctrl '%s' port %d enable %s\n", __func__,
173               dev_read_name(dev), port, enable ? "true" : "false");
174
175         ret = dev_read_string_index(dev, prop, index, &regname);
176         if (ret < 0) {
177                 debug("%s: ctrl '%s' port %d: no entry in '%s'\n",
178                       __func__, dev_read_name(dev), port, prop);
179                 return ret;
180         }
181
182         ret = regulator_get_by_platname(regname, &regulator);
183         if (ret) {
184                 debug("%s: ctrl '%s' port %d: could not get regulator '%s'\n",
185                       __func__, dev_read_name(dev), port, regname);
186                 return ret;
187         }
188
189         regulator_set_enable(regulator, enable);
190         return 0;
191 #else
192         return -ENOTSUPP;
193 #endif
194 }
195
196 void usb_hub_reset_devices(struct usb_hub_device *hub, int port)
197 {
198         struct udevice *dev = hub->pusb_dev->dev;
199         struct udevice *ctrl;
200
201         /* We are only interested in our root-hubs */
202         if (usb_hub_is_root_hub(dev) == false)
203                 return;
204
205         ctrl = usb_get_bus(dev);
206         if (!ctrl) {
207                 debug("%s: could not retrieve ctrl for hub\n", __func__);
208                 return;
209         }
210
211         /*
212          * To work around an incompatibility between the single-threaded
213          * USB stack in U-Boot and (a strange low-power mode of) the USB
214          * hub we have on-module, we need to delay powering on the hub
215          * until the first time the port is probed.
216          */
217         board_usb_port_power_set(ctrl, port, true);
218 }