Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Stefan Roese <sr@denx.de> |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <dm.h> |
| 8 | #include <fdtdec.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 9 | #include <linux/libfdt.h> |
Konstantin Porotchkin | f4f194e | 2017-04-05 17:42:33 +0300 | [diff] [blame] | 10 | #include <pci.h> |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 11 | #include <asm/io.h> |
| 12 | #include <asm/system.h> |
| 13 | #include <asm/arch/cpu.h> |
| 14 | #include <asm/arch/soc.h> |
| 15 | #include <asm/armv8/mmu.h> |
| 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | /* |
Stefan Roese | 059f75d | 2016-11-11 08:18:44 +0100 | [diff] [blame] | 20 | * Not all memory is mapped in the MMU. So we need to restrict the |
| 21 | * memory size so that U-Boot does not try to access it. Also, the |
| 22 | * internal registers are located at 0xf000.0000 - 0xffff.ffff. |
| 23 | * Currently only 2GiB are mapped for system memory. This is what |
| 24 | * we pass to the U-Boot subsystem here. |
| 25 | */ |
| 26 | #define USABLE_RAM_SIZE 0x80000000 |
| 27 | |
| 28 | ulong board_get_usable_ram_top(ulong total_size) |
| 29 | { |
| 30 | if (gd->ram_size > USABLE_RAM_SIZE) |
| 31 | return USABLE_RAM_SIZE; |
| 32 | |
| 33 | return gd->ram_size; |
| 34 | } |
| 35 | |
| 36 | /* |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 37 | * On ARMv8, MBus is not configured in U-Boot. To enable compilation |
| 38 | * of the already implemented drivers, lets add a dummy version of |
| 39 | * this function so that linking does not fail. |
| 40 | */ |
| 41 | const struct mbus_dram_target_info *mvebu_mbus_dram_info(void) |
| 42 | { |
| 43 | return NULL; |
| 44 | } |
| 45 | |
| 46 | /* DRAM init code ... */ |
| 47 | |
Stefan Roese | 780f80c | 2017-05-08 08:31:30 +0200 | [diff] [blame] | 48 | int dram_init_banksize(void) |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 49 | { |
Stefan Roese | 780f80c | 2017-05-08 08:31:30 +0200 | [diff] [blame] | 50 | fdtdec_setup_memory_banksize(); |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
Stefan Roese | 780f80c | 2017-05-08 08:31:30 +0200 | [diff] [blame] | 55 | int dram_init(void) |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 56 | { |
Stefan Roese | 780f80c | 2017-05-08 08:31:30 +0200 | [diff] [blame] | 57 | if (fdtdec_setup_memory_size() != 0) |
| 58 | return -EINVAL; |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 59 | |
| 60 | return 0; |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | int arch_cpu_init(void) |
| 64 | { |
| 65 | /* Nothing to do (yet) */ |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | int arch_early_init_r(void) |
| 70 | { |
| 71 | struct udevice *dev; |
| 72 | int ret; |
Stefan Roese | d7dd358 | 2016-10-25 18:12:40 +0200 | [diff] [blame] | 73 | int i; |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 74 | |
Stefan Roese | d7dd358 | 2016-10-25 18:12:40 +0200 | [diff] [blame] | 75 | /* |
| 76 | * Loop over all MISC uclass drivers to call the comphy code |
| 77 | * and init all CP110 devices enabled in the DT |
| 78 | */ |
| 79 | i = 0; |
| 80 | while (1) { |
| 81 | /* Call the comphy code via the MISC uclass driver */ |
| 82 | ret = uclass_get_device(UCLASS_MISC, i++, &dev); |
| 83 | |
| 84 | /* We're done, once no further CP110 device is found */ |
| 85 | if (ret) |
| 86 | break; |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /* Cause the SATA device to do its early init */ |
| 90 | uclass_first_device(UCLASS_AHCI, &dev); |
| 91 | |
Konstantin Porotchkin | f4f194e | 2017-04-05 17:42:33 +0300 | [diff] [blame] | 92 | #ifdef CONFIG_DM_PCI |
| 93 | /* Trigger PCIe devices detection */ |
| 94 | pci_init(); |
| 95 | #endif |
| 96 | |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 97 | return 0; |
| 98 | } |