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