Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arm / mach-mvebu / arm64-common.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <fdtdec.h>
9 #include <init.h>
10 #include <asm/cache.h>
11 #include <asm/ptrace.h>
12 #include <linux/libfdt.h>
13 #include <linux/sizes.h>
14 #include <pci.h>
15 #include <asm/io.h>
16 #include <asm/system.h>
17 #include <asm/arch/cpu.h>
18 #include <asm/arch/soc.h>
19 #include <asm/armv8/mmu.h>
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 /*
24  * Not all memory is mapped in the MMU. So we need to restrict the
25  * memory size so that U-Boot does not try to access it. Also, the
26  * internal registers are located at 0xf000.0000 - 0xffff.ffff.
27  * Currently only 2GiB are mapped for system memory. This is what
28  * we pass to the U-Boot subsystem here.
29  */
30 #define USABLE_RAM_SIZE         0x80000000
31
32 ulong board_get_usable_ram_top(ulong total_size)
33 {
34         if (gd->ram_size > USABLE_RAM_SIZE)
35                 return USABLE_RAM_SIZE;
36
37         return gd->ram_size;
38 }
39
40 /*
41  * On ARMv8, MBus is not configured in U-Boot. To enable compilation
42  * of the already implemented drivers, lets add a dummy version of
43  * this function so that linking does not fail.
44  */
45 const struct mbus_dram_target_info *mvebu_mbus_dram_info(void)
46 {
47         return NULL;
48 }
49
50 __weak int dram_init_banksize(void)
51 {
52         if (CONFIG_IS_ENABLED(ARMADA_8K))
53                 return a8k_dram_init_banksize();
54         else if (CONFIG_IS_ENABLED(ARMADA_3700))
55                 return a3700_dram_init_banksize();
56         else
57                 return fdtdec_setup_memory_banksize();
58 }
59
60 __weak int dram_init(void)
61 {
62         if (CONFIG_IS_ENABLED(ARMADA_8K)) {
63                 gd->ram_size = a8k_dram_scan_ap_sz();
64                 if (gd->ram_size != 0)
65                         return 0;
66         }
67
68         if (CONFIG_IS_ENABLED(ARMADA_3700))
69                 return a3700_dram_init();
70
71         if (fdtdec_setup_mem_size_base() != 0)
72                 return -EINVAL;
73
74         return 0;
75 }
76
77 int arch_cpu_init(void)
78 {
79         /* Nothing to do (yet) */
80         return 0;
81 }
82
83 int arch_early_init_r(void)
84 {
85         struct udevice *dev;
86         int ret;
87         int i;
88
89         /*
90          * Loop over all MISC uclass drivers to call the comphy code
91          * and init all CP110 devices enabled in the DT
92          */
93         i = 0;
94         while (1) {
95                 /* Call the comphy code via the MISC uclass driver */
96                 ret = uclass_get_device(UCLASS_MISC, i++, &dev);
97
98                 /* We're done, once no further CP110 device is found */
99                 if (ret)
100                         break;
101         }
102
103         /* Cause the SATA device to do its early init */
104         uclass_first_device(UCLASS_AHCI, &dev);
105
106 #ifdef CONFIG_DM_PCI
107         /* Trigger PCIe devices detection */
108         pci_init();
109 #endif
110
111         return 0;
112 }