Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2013 |
| 4 | * David Feng <fenghua@phytium.com.cn> |
| 5 | * Sharma Bhupesh <bhupesh.sharma@freescale.com> |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 6 | */ |
| 7 | #include <common.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 11 | #include <malloc.h> |
| 12 | #include <errno.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 13 | #include <net.h> |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 14 | #include <netdev.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 16 | #include <asm/io.h> |
| 17 | #include <linux/compiler.h> |
David Feng | ab33c2c | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 18 | #include <dm/platform_data/serial_pl01x.h> |
Liviu Dudau | 8d1fdc3 | 2015-10-19 11:08:32 +0100 | [diff] [blame] | 19 | #include "pcie.h" |
Alexander Graf | 5889e39 | 2016-03-04 01:09:51 +0100 | [diff] [blame] | 20 | #include <asm/armv8/mmu.h> |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 21 | |
| 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 24 | static const struct pl01x_serial_plat serial_plat = { |
David Feng | ab33c2c | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 25 | .base = V2M_UART0, |
| 26 | .type = TYPE_PL011, |
Linus Walleij | 31e476e | 2015-04-14 10:01:35 +0200 | [diff] [blame] | 27 | .clock = CONFIG_PL011_CLOCK, |
David Feng | ab33c2c | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 28 | }; |
| 29 | |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 30 | U_BOOT_DRVINFO(vexpress_serials) = { |
David Feng | ab33c2c | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 31 | .name = "serial_pl01x", |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 32 | .plat = &serial_plat, |
David Feng | ab33c2c | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 33 | }; |
| 34 | |
Alexander Graf | 5889e39 | 2016-03-04 01:09:51 +0100 | [diff] [blame] | 35 | static struct mm_region vexpress64_mem_map[] = { |
| 36 | { |
York Sun | c7104e5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 37 | .virt = 0x0UL, |
| 38 | .phys = 0x0UL, |
Alexander Graf | 5889e39 | 2016-03-04 01:09:51 +0100 | [diff] [blame] | 39 | .size = 0x80000000UL, |
| 40 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 41 | PTE_BLOCK_NON_SHARE | |
| 42 | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
| 43 | }, { |
York Sun | c7104e5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 44 | .virt = 0x80000000UL, |
| 45 | .phys = 0x80000000UL, |
Alexander Graf | 5889e39 | 2016-03-04 01:09:51 +0100 | [diff] [blame] | 46 | .size = 0xff80000000UL, |
| 47 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 48 | PTE_BLOCK_INNER_SHARE |
| 49 | }, { |
| 50 | /* List terminator */ |
| 51 | 0, |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | struct mm_region *mem_map = vexpress64_mem_map; |
| 56 | |
Ryan Harkin | 8961d50 | 2015-11-18 10:39:06 +0000 | [diff] [blame] | 57 | /* This function gets replaced by platforms supporting PCIe. |
| 58 | * The replacement function, eg. on Juno, initialises the PCIe bus. |
| 59 | */ |
| 60 | __weak void vexpress64_pcie_init(void) |
| 61 | { |
| 62 | } |
| 63 | |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 64 | int board_init(void) |
| 65 | { |
Liviu Dudau | 8d1fdc3 | 2015-10-19 11:08:32 +0100 | [diff] [blame] | 66 | vexpress64_pcie_init(); |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 67 | return 0; |
| 68 | } |
| 69 | |
| 70 | int dram_init(void) |
| 71 | { |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 72 | gd->ram_size = PHYS_SDRAM_1_SIZE; |
| 73 | return 0; |
| 74 | } |
| 75 | |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 76 | int dram_init_banksize(void) |
Liviu Dudau | 086c977 | 2015-10-19 11:08:31 +0100 | [diff] [blame] | 77 | { |
| 78 | gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |
| 79 | gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; |
Ryan Harkin | 98d2fff | 2015-11-18 10:39:07 +0000 | [diff] [blame] | 80 | #ifdef PHYS_SDRAM_2 |
Liviu Dudau | 086c977 | 2015-10-19 11:08:31 +0100 | [diff] [blame] | 81 | gd->bd->bi_dram[1].start = PHYS_SDRAM_2; |
| 82 | gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE; |
Ryan Harkin | 98d2fff | 2015-11-18 10:39:07 +0000 | [diff] [blame] | 83 | #endif |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 84 | |
| 85 | return 0; |
Liviu Dudau | 086c977 | 2015-10-19 11:08:31 +0100 | [diff] [blame] | 86 | } |
| 87 | |
Andre Przywara | 94504f4 | 2020-04-27 19:18:01 +0100 | [diff] [blame] | 88 | #ifdef CONFIG_OF_BOARD |
| 89 | #define JUNO_FLASH_SEC_SIZE (256 * 1024) |
| 90 | static phys_addr_t find_dtb_in_nor_flash(const char *partname) |
| 91 | { |
| 92 | phys_addr_t sector = CONFIG_SYS_FLASH_BASE; |
| 93 | int i; |
| 94 | |
| 95 | for (i = 0; |
| 96 | i < CONFIG_SYS_MAX_FLASH_SECT; |
| 97 | i++, sector += JUNO_FLASH_SEC_SIZE) { |
| 98 | int len = strlen(partname) + 1; |
| 99 | int offs; |
| 100 | phys_addr_t imginfo; |
| 101 | u32 reg; |
| 102 | |
| 103 | reg = readl(sector + JUNO_FLASH_SEC_SIZE - 0x04); |
| 104 | /* This makes up the string "HSLFTOOF" flash footer */ |
| 105 | if (reg != 0x464F4F54U) |
| 106 | continue; |
| 107 | reg = readl(sector + JUNO_FLASH_SEC_SIZE - 0x08); |
| 108 | if (reg != 0x464C5348U) |
| 109 | continue; |
| 110 | |
| 111 | for (offs = 0; offs < 32; offs += 4, len -= 4) { |
| 112 | reg = readl(sector + JUNO_FLASH_SEC_SIZE - 0x30 + offs); |
| 113 | if (strncmp(partname + offs, (char *)®, |
| 114 | len > 4 ? 4 : len)) |
| 115 | break; |
| 116 | |
| 117 | if (len > 4) |
| 118 | continue; |
| 119 | |
| 120 | reg = readl(sector + JUNO_FLASH_SEC_SIZE - 0x10); |
| 121 | imginfo = sector + JUNO_FLASH_SEC_SIZE - 0x30 - reg; |
| 122 | reg = readl(imginfo + 0x54); |
| 123 | |
| 124 | return CONFIG_SYS_FLASH_BASE + |
| 125 | reg * JUNO_FLASH_SEC_SIZE; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | printf("No DTB found\n"); |
| 130 | |
| 131 | return ~0; |
| 132 | } |
| 133 | |
| 134 | void *board_fdt_blob_setup(void) |
| 135 | { |
| 136 | phys_addr_t fdt_rom_addr = find_dtb_in_nor_flash(CONFIG_JUNO_DTB_PART); |
| 137 | |
| 138 | if (fdt_rom_addr == ~0UL) |
| 139 | return NULL; |
| 140 | |
| 141 | return (void *)fdt_rom_addr; |
| 142 | } |
| 143 | #endif |
| 144 | |
Andre Przywara | 651c91b | 2020-04-27 19:18:02 +0100 | [diff] [blame] | 145 | /* Actual reset is done via PSCI. */ |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 146 | void reset_cpu(ulong addr) |
| 147 | { |
Darwin Rambo | d32d411 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 148 | } |
| 149 | |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 150 | /* |
| 151 | * Board specific ethernet initialization routine. |
| 152 | */ |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 153 | int board_eth_init(struct bd_info *bis) |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 154 | { |
| 155 | int rc = 0; |
Andre Przywara | d263e76 | 2020-06-11 12:03:18 +0100 | [diff] [blame] | 156 | #ifndef CONFIG_DM_ETH |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 157 | #ifdef CONFIG_SMC91111 |
| 158 | rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); |
| 159 | #endif |
Linus Walleij | 48b4755 | 2015-02-17 11:35:25 +0100 | [diff] [blame] | 160 | #ifdef CONFIG_SMC911X |
| 161 | rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); |
| 162 | #endif |
Andre Przywara | d263e76 | 2020-06-11 12:03:18 +0100 | [diff] [blame] | 163 | #endif |
David Feng | 3b5458c | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 164 | return rc; |
| 165 | } |