Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2019 Rockchip Electronics Co., Ltd. |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2019 Collabora Inc - https://www.collabora.com/ |
| 6 | * Rohan Garg <rohan.garg@collabora.com> |
| 7 | * |
| 8 | * Based on puma-rk3399.c: |
| 9 | * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 10 | */ |
| 11 | #include <common.h> |
| 12 | #include <clk.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 13 | #include <cpu_func.h> |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 14 | #include <env.h> |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 15 | #include <dm.h> |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 16 | #include <efi_loader.h> |
Roman Kovalivskyi | 1bb1342 | 2020-07-28 23:35:32 +0300 | [diff] [blame] | 17 | #include <fastboot.h> |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 18 | #include <hash.h> |
Simon Glass | a7b5130 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 19 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 20 | #include <log.h> |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 21 | #include <mmc.h> |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 22 | #include <dm/uclass-internal.h> |
| 23 | #include <misc.h> |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 24 | #include <part.h> |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 25 | #include <ram.h> |
| 26 | #include <syscon.h> |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 27 | #include <uuid.h> |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 28 | #include <u-boot/crc.h> |
| 29 | #include <u-boot/sha256.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 30 | #include <asm/cache.h> |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 31 | #include <asm/io.h> |
| 32 | #include <asm/arch-rockchip/boot_mode.h> |
| 33 | #include <asm/arch-rockchip/clock.h> |
| 34 | #include <asm/arch-rockchip/periph.h> |
| 35 | #include <power/regulator.h> |
| 36 | |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 37 | #if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION) |
| 38 | |
| 39 | #define DFU_ALT_BUF_LEN SZ_1K |
| 40 | |
| 41 | static struct efi_fw_image *fw_images; |
| 42 | |
| 43 | static bool updatable_image(struct disk_partition *info) |
| 44 | { |
| 45 | int i; |
| 46 | bool ret = false; |
| 47 | efi_guid_t image_type_guid; |
| 48 | |
| 49 | uuid_str_to_bin(info->type_guid, image_type_guid.b, |
| 50 | UUID_STR_FORMAT_GUID); |
| 51 | |
Masahisa Kojima | 5d2438b | 2023-06-07 14:41:51 +0900 | [diff] [blame] | 52 | for (i = 0; i < update_info.num_images; i++) { |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 53 | if (!guidcmp(&fw_images[i].image_type_id, &image_type_guid)) { |
| 54 | ret = true; |
| 55 | break; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | return ret; |
| 60 | } |
| 61 | |
| 62 | static void set_image_index(struct disk_partition *info, int index) |
| 63 | { |
| 64 | int i; |
| 65 | efi_guid_t image_type_guid; |
| 66 | |
| 67 | uuid_str_to_bin(info->type_guid, image_type_guid.b, |
| 68 | UUID_STR_FORMAT_GUID); |
| 69 | |
Masahisa Kojima | 5d2438b | 2023-06-07 14:41:51 +0900 | [diff] [blame] | 70 | for (i = 0; i < update_info.num_images; i++) { |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 71 | if (!guidcmp(&fw_images[i].image_type_id, &image_type_guid)) { |
| 72 | fw_images[i].image_index = index; |
| 73 | break; |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | static int get_mmc_desc(struct blk_desc **desc) |
| 79 | { |
| 80 | int ret; |
| 81 | struct mmc *mmc; |
| 82 | struct udevice *dev; |
| 83 | |
| 84 | /* |
| 85 | * For now the firmware images are assumed to |
| 86 | * be on the SD card |
| 87 | */ |
| 88 | ret = uclass_get_device(UCLASS_MMC, 1, &dev); |
| 89 | if (ret) |
| 90 | return -1; |
| 91 | |
| 92 | mmc = mmc_get_mmc_dev(dev); |
| 93 | if (!mmc) |
| 94 | return -ENODEV; |
| 95 | |
| 96 | if ((ret = mmc_init(mmc))) |
| 97 | return ret; |
| 98 | |
| 99 | *desc = mmc_get_blk_desc(mmc); |
| 100 | if (!*desc) |
| 101 | return -1; |
| 102 | |
| 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | void set_dfu_alt_info(char *interface, char *devstr) |
| 107 | { |
| 108 | const char *name; |
| 109 | bool first = true; |
| 110 | int p, len, devnum, ret; |
| 111 | char buf[DFU_ALT_BUF_LEN]; |
| 112 | struct disk_partition info; |
| 113 | struct blk_desc *desc = NULL; |
| 114 | |
| 115 | ret = get_mmc_desc(&desc); |
| 116 | if (ret) { |
| 117 | log_err("Unable to get mmc desc\n"); |
| 118 | return; |
| 119 | } |
| 120 | |
| 121 | memset(buf, 0, sizeof(buf)); |
| 122 | name = blk_get_uclass_name(desc->uclass_id); |
| 123 | devnum = desc->devnum; |
| 124 | len = strlen(buf); |
| 125 | |
| 126 | len += snprintf(buf + len, DFU_ALT_BUF_LEN - len, |
| 127 | "%s %d=", name, devnum); |
| 128 | |
| 129 | for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) { |
| 130 | if (part_get_info(desc, p, &info)) |
| 131 | continue; |
| 132 | |
| 133 | /* Add entry to dfu_alt_info only for updatable images */ |
| 134 | if (updatable_image(&info)) { |
| 135 | if (!first) |
| 136 | len += snprintf(buf + len, |
| 137 | DFU_ALT_BUF_LEN - len, ";"); |
| 138 | |
| 139 | len += snprintf(buf + len, DFU_ALT_BUF_LEN - len, |
| 140 | "%s%d_%s part %d %d", |
| 141 | name, devnum, info.name, devnum, p); |
| 142 | first = false; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | log_debug("dfu_alt_info => %s\n", buf); |
| 147 | env_set("dfu_alt_info", buf); |
| 148 | } |
| 149 | |
Quentin Schulz | a0a66b2 | 2024-03-11 13:01:53 +0100 | [diff] [blame] | 150 | __weak void rockchip_capsule_update_board_setup(void) |
| 151 | { |
| 152 | } |
| 153 | |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 154 | static void gpt_capsule_update_setup(void) |
| 155 | { |
| 156 | int p, i, ret; |
| 157 | struct disk_partition info; |
| 158 | struct blk_desc *desc = NULL; |
| 159 | |
| 160 | fw_images = update_info.images; |
| 161 | rockchip_capsule_update_board_setup(); |
| 162 | |
| 163 | ret = get_mmc_desc(&desc); |
| 164 | if (ret) { |
| 165 | log_err("Unable to get mmc desc\n"); |
| 166 | return; |
| 167 | } |
| 168 | |
| 169 | for (p = 1, i = 1; p <= MAX_SEARCH_PARTITIONS; p++) { |
| 170 | if (part_get_info(desc, p, &info)) |
| 171 | continue; |
| 172 | |
| 173 | /* |
| 174 | * Since we have a GPT partitioned device, the updatable |
| 175 | * images could be stored in any order. Populate the |
| 176 | * image_index at runtime. |
| 177 | */ |
| 178 | if (updatable_image(&info)) { |
| 179 | set_image_index(&info, i); |
| 180 | i++; |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | #endif /* CONFIG_EFI_HAVE_CAPSULE_SUPPORT && CONFIG_EFI_PARTITION */ |
| 185 | |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 186 | __weak int rk_board_late_init(void) |
| 187 | { |
Sughosh Ganu | c1b8e8b | 2022-11-10 14:49:15 +0530 | [diff] [blame] | 188 | #if defined(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) && defined(CONFIG_EFI_PARTITION) |
| 189 | gpt_capsule_update_setup(); |
| 190 | #endif |
| 191 | |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | int board_late_init(void) |
| 196 | { |
| 197 | setup_boot_mode(); |
| 198 | |
| 199 | return rk_board_late_init(); |
| 200 | } |
| 201 | |
| 202 | int board_init(void) |
| 203 | { |
| 204 | int ret; |
| 205 | |
| 206 | #ifdef CONFIG_DM_REGULATOR |
| 207 | ret = regulators_enable_boot_on(false); |
| 208 | if (ret) |
| 209 | debug("%s: Cannot enable boot on regulator\n", __func__); |
| 210 | #endif |
| 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | #if !defined(CONFIG_SYS_DCACHE_OFF) && !defined(CONFIG_ARM64) |
| 216 | void enable_caches(void) |
| 217 | { |
| 218 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 219 | dcache_enable(); |
| 220 | } |
| 221 | #endif |
| 222 | |
Jonas Karlman | 67f97d1 | 2024-03-10 18:50:58 +0000 | [diff] [blame^] | 223 | #if IS_ENABLED(CONFIG_USB_GADGET) |
| 224 | #if IS_ENABLED(CONFIG_USB_GADGET_DWC2_OTG) && !IS_ENABLED(CONFIG_DM_USB_GADGET) |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 225 | #include <usb.h> |
John Keeping | a47bf33 | 2023-04-12 12:52:52 +0100 | [diff] [blame] | 226 | #include <linux/usb/otg.h> |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 227 | #include <usb/dwc2_udc.h> |
| 228 | |
| 229 | static struct dwc2_plat_otg_data otg_data = { |
| 230 | .rx_fifo_sz = 512, |
| 231 | .np_tx_fifo_sz = 16, |
| 232 | .tx_fifo_sz = 128, |
| 233 | }; |
| 234 | |
| 235 | int board_usb_init(int index, enum usb_init_type init) |
| 236 | { |
Kever Yang | 45bda03 | 2019-10-16 17:13:31 +0800 | [diff] [blame] | 237 | ofnode node; |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 238 | bool matched = false; |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 239 | |
| 240 | /* find the usb_otg node */ |
Kever Yang | 45bda03 | 2019-10-16 17:13:31 +0800 | [diff] [blame] | 241 | node = ofnode_by_compatible(ofnode_null(), "snps,dwc2"); |
| 242 | while (ofnode_valid(node)) { |
John Keeping | a47bf33 | 2023-04-12 12:52:52 +0100 | [diff] [blame] | 243 | switch (usb_get_dr_mode(node)) { |
| 244 | case USB_DR_MODE_OTG: |
John Keeping | 3a0269b | 2023-04-12 12:52:53 +0100 | [diff] [blame] | 245 | case USB_DR_MODE_PERIPHERAL: |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 246 | matched = true; |
| 247 | break; |
John Keeping | a47bf33 | 2023-04-12 12:52:52 +0100 | [diff] [blame] | 248 | |
| 249 | default: |
| 250 | break; |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 251 | } |
| 252 | |
John Keeping | a47bf33 | 2023-04-12 12:52:52 +0100 | [diff] [blame] | 253 | if (matched) |
| 254 | break; |
| 255 | |
Kever Yang | 45bda03 | 2019-10-16 17:13:31 +0800 | [diff] [blame] | 256 | node = ofnode_by_compatible(node, "snps,dwc2"); |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 257 | } |
| 258 | if (!matched) { |
| 259 | debug("Not found usb_otg device\n"); |
| 260 | return -ENODEV; |
| 261 | } |
Kever Yang | 45bda03 | 2019-10-16 17:13:31 +0800 | [diff] [blame] | 262 | otg_data.regs_otg = ofnode_get_addr(node); |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 263 | |
Johan Jonker | aa65f3d | 2022-04-29 23:40:07 +0200 | [diff] [blame] | 264 | #ifdef CONFIG_ROCKCHIP_USB2_PHY |
Kever Yang | 6169a0d | 2019-10-16 17:13:32 +0800 | [diff] [blame] | 265 | int ret; |
| 266 | u32 phandle, offset; |
| 267 | ofnode phy_node; |
| 268 | |
| 269 | ret = ofnode_read_u32(node, "phys", &phandle); |
| 270 | if (ret) |
| 271 | return ret; |
| 272 | |
| 273 | node = ofnode_get_by_phandle(phandle); |
| 274 | if (!ofnode_valid(node)) { |
| 275 | debug("Not found usb phy device\n"); |
| 276 | return -ENODEV; |
| 277 | } |
| 278 | |
| 279 | phy_node = ofnode_get_parent(node); |
| 280 | if (!ofnode_valid(node)) { |
| 281 | debug("Not found usb phy device\n"); |
| 282 | return -ENODEV; |
| 283 | } |
| 284 | |
| 285 | otg_data.phy_of_node = phy_node; |
| 286 | ret = ofnode_read_u32(node, "reg", &offset); |
| 287 | if (ret) |
| 288 | return ret; |
| 289 | otg_data.regs_phy = offset + |
| 290 | (u32)syscon_get_first_range(ROCKCHIP_SYSCON_GRF); |
| 291 | #endif |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 292 | return dwc2_udc_probe(&otg_data); |
| 293 | } |
| 294 | |
| 295 | int board_usb_cleanup(int index, enum usb_init_type init) |
| 296 | { |
| 297 | return 0; |
| 298 | } |
Jagan Teki | 886ecb2 | 2019-11-19 13:56:22 +0530 | [diff] [blame] | 299 | #endif /* CONFIG_USB_GADGET_DWC2_OTG */ |
Jonas Karlman | 67f97d1 | 2024-03-10 18:50:58 +0000 | [diff] [blame^] | 300 | #endif /* CONFIG_USB_GADGET */ |
Jagan Teki | 886ecb2 | 2019-11-19 13:56:22 +0530 | [diff] [blame] | 301 | |
Simon Glass | 96c0d2b | 2023-02-05 17:54:10 -0700 | [diff] [blame] | 302 | #if IS_ENABLED(CONFIG_FASTBOOT) |
Roman Kovalivskyi | 1bb1342 | 2020-07-28 23:35:32 +0300 | [diff] [blame] | 303 | int fastboot_set_reboot_flag(enum fastboot_reboot_reason reason) |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 304 | { |
Roman Kovalivskyi | 1bb1342 | 2020-07-28 23:35:32 +0300 | [diff] [blame] | 305 | if (reason != FASTBOOT_REBOOT_REASON_BOOTLOADER) |
| 306 | return -ENOTSUPP; |
| 307 | |
Kever Yang | bb33773 | 2019-07-22 20:02:01 +0800 | [diff] [blame] | 308 | printf("Setting reboot to fastboot flag ...\n"); |
| 309 | /* Set boot mode to fastboot */ |
| 310 | writel(BOOT_FASTBOOT, CONFIG_ROCKCHIP_BOOT_MODE_REG); |
| 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | #endif |
Rohan Garg | cfdc192 | 2019-08-12 17:04:34 +0200 | [diff] [blame] | 315 | |
| 316 | #ifdef CONFIG_MISC_INIT_R |
Quentin Schulz | ca0fa40 | 2024-03-11 13:01:52 +0100 | [diff] [blame] | 317 | int rockchip_setup_macaddr(void) |
| 318 | { |
| 319 | #if CONFIG_IS_ENABLED(HASH) && CONFIG_IS_ENABLED(SHA256) |
| 320 | int ret; |
| 321 | const char *cpuid = env_get("cpuid#"); |
| 322 | u8 hash[SHA256_SUM_LEN]; |
| 323 | int size = sizeof(hash); |
| 324 | u8 mac_addr[6]; |
| 325 | |
| 326 | /* Only generate a MAC address, if none is set in the environment */ |
| 327 | if (env_get("ethaddr")) |
| 328 | return 0; |
| 329 | |
| 330 | if (!cpuid) { |
| 331 | debug("%s: could not retrieve 'cpuid#'\n", __func__); |
| 332 | return -1; |
| 333 | } |
| 334 | |
| 335 | ret = hash_block("sha256", (void *)cpuid, strlen(cpuid), hash, &size); |
| 336 | if (ret) { |
| 337 | debug("%s: failed to calculate SHA256\n", __func__); |
| 338 | return -1; |
| 339 | } |
| 340 | |
| 341 | /* Copy 6 bytes of the hash to base the MAC address on */ |
| 342 | memcpy(mac_addr, hash, 6); |
| 343 | |
| 344 | /* Make this a valid MAC address and set it */ |
| 345 | mac_addr[0] &= 0xfe; /* clear multicast bit */ |
| 346 | mac_addr[0] |= 0x02; /* set local assignment bit (IEEE802) */ |
| 347 | eth_env_set_enetaddr("ethaddr", mac_addr); |
| 348 | |
| 349 | /* Make a valid MAC address for ethernet1 */ |
| 350 | mac_addr[5] ^= 0x01; |
| 351 | eth_env_set_enetaddr("eth1addr", mac_addr); |
| 352 | #endif |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | int rockchip_cpuid_from_efuse(const u32 cpuid_offset, |
| 357 | const u32 cpuid_length, |
| 358 | u8 *cpuid) |
| 359 | { |
| 360 | #if IS_ENABLED(CONFIG_ROCKCHIP_EFUSE) || IS_ENABLED(CONFIG_ROCKCHIP_OTP) |
| 361 | struct udevice *dev; |
| 362 | int ret; |
| 363 | |
| 364 | /* retrieve the device */ |
| 365 | #if IS_ENABLED(CONFIG_ROCKCHIP_EFUSE) |
| 366 | ret = uclass_get_device_by_driver(UCLASS_MISC, |
| 367 | DM_DRIVER_GET(rockchip_efuse), &dev); |
| 368 | #elif IS_ENABLED(CONFIG_ROCKCHIP_OTP) |
| 369 | ret = uclass_get_device_by_driver(UCLASS_MISC, |
| 370 | DM_DRIVER_GET(rockchip_otp), &dev); |
| 371 | #endif |
| 372 | if (ret) { |
| 373 | debug("%s: could not find efuse device\n", __func__); |
| 374 | return -1; |
| 375 | } |
| 376 | |
| 377 | /* read the cpu_id range from the efuses */ |
| 378 | ret = misc_read(dev, cpuid_offset, cpuid, cpuid_length); |
| 379 | if (ret < 0) { |
| 380 | debug("%s: reading cpuid from the efuses failed\n", |
| 381 | __func__); |
| 382 | return -1; |
| 383 | } |
| 384 | #endif |
| 385 | return 0; |
| 386 | } |
| 387 | |
| 388 | int rockchip_cpuid_set(const u8 *cpuid, const u32 cpuid_length) |
| 389 | { |
| 390 | u8 low[cpuid_length / 2], high[cpuid_length / 2]; |
| 391 | char cpuid_str[cpuid_length * 2 + 1]; |
| 392 | u64 serialno; |
| 393 | char serialno_str[17]; |
| 394 | const char *oldid; |
| 395 | int i; |
| 396 | |
| 397 | memset(cpuid_str, 0, sizeof(cpuid_str)); |
| 398 | for (i = 0; i < cpuid_length; i++) |
| 399 | sprintf(&cpuid_str[i * 2], "%02x", cpuid[i]); |
| 400 | |
| 401 | debug("cpuid: %s\n", cpuid_str); |
| 402 | |
| 403 | /* |
| 404 | * Mix the cpuid bytes using the same rules as in |
| 405 | * ${linux}/drivers/soc/rockchip/rockchip-cpuinfo.c |
| 406 | */ |
| 407 | for (i = 0; i < cpuid_length / 2; i++) { |
| 408 | low[i] = cpuid[1 + (i << 1)]; |
| 409 | high[i] = cpuid[i << 1]; |
| 410 | } |
| 411 | |
| 412 | serialno = crc32_no_comp(0, low, cpuid_length / 2); |
| 413 | serialno |= (u64)crc32_no_comp(serialno, high, cpuid_length / 2) << 32; |
| 414 | snprintf(serialno_str, sizeof(serialno_str), "%016llx", serialno); |
| 415 | |
| 416 | oldid = env_get("cpuid#"); |
| 417 | if (oldid && strcmp(oldid, cpuid_str) != 0) |
| 418 | printf("cpuid: value %s present in env does not match hardware %s\n", |
| 419 | oldid, cpuid_str); |
| 420 | |
| 421 | env_set("cpuid#", cpuid_str); |
| 422 | |
| 423 | /* Only generate serial# when none is set yet */ |
| 424 | if (!env_get("serial#")) |
| 425 | env_set("serial#", serialno_str); |
| 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | |
Quentin Schulz | dd03ea1 | 2024-03-11 13:01:45 +0100 | [diff] [blame] | 430 | __weak int rockchip_early_misc_init_r(void) |
| 431 | { |
| 432 | return 0; |
| 433 | } |
| 434 | |
Rohan Garg | cfdc192 | 2019-08-12 17:04:34 +0200 | [diff] [blame] | 435 | __weak int misc_init_r(void) |
| 436 | { |
Jonas Karlman | be56bb5 | 2023-02-22 22:44:41 +0000 | [diff] [blame] | 437 | const u32 cpuid_offset = CFG_CPUID_OFFSET; |
Rohan Garg | cfdc192 | 2019-08-12 17:04:34 +0200 | [diff] [blame] | 438 | const u32 cpuid_length = 0x10; |
| 439 | u8 cpuid[cpuid_length]; |
| 440 | int ret; |
| 441 | |
Quentin Schulz | dd03ea1 | 2024-03-11 13:01:45 +0100 | [diff] [blame] | 442 | ret = rockchip_early_misc_init_r(); |
| 443 | if (ret) |
| 444 | return ret; |
| 445 | |
Rohan Garg | cfdc192 | 2019-08-12 17:04:34 +0200 | [diff] [blame] | 446 | ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid); |
| 447 | if (ret) |
| 448 | return ret; |
| 449 | |
| 450 | ret = rockchip_cpuid_set(cpuid, cpuid_length); |
| 451 | if (ret) |
| 452 | return ret; |
| 453 | |
| 454 | ret = rockchip_setup_macaddr(); |
| 455 | |
| 456 | return ret; |
| 457 | } |
| 458 | #endif |
Chris Morgan | ea8e963 | 2024-01-02 09:46:52 -0600 | [diff] [blame] | 459 | |
| 460 | #if IS_ENABLED(CONFIG_BOARD_RNG_SEED) && IS_ENABLED(CONFIG_RNG_ROCKCHIP) |
| 461 | #include <rng.h> |
| 462 | |
| 463 | /* Use hardware rng to seed Linux random. */ |
| 464 | __weak int board_rng_seed(struct abuf *buf) |
| 465 | { |
| 466 | struct udevice *dev; |
| 467 | size_t len = 0x8; |
| 468 | u64 *data; |
| 469 | |
| 470 | data = malloc(len); |
| 471 | if (!data) { |
| 472 | printf("Out of memory\n"); |
| 473 | return -ENOMEM; |
| 474 | } |
| 475 | |
| 476 | if (uclass_get_device(UCLASS_RNG, 0, &dev) || !dev) { |
| 477 | printf("No RNG device\n"); |
| 478 | return -ENODEV; |
| 479 | } |
| 480 | |
| 481 | if (dm_rng_read(dev, data, len)) { |
| 482 | printf("Reading RNG failed\n"); |
| 483 | return -EIO; |
| 484 | } |
| 485 | |
| 486 | abuf_init_set(buf, data, len); |
| 487 | |
| 488 | return 0; |
| 489 | } |
| 490 | #endif |