blob: 3c84043a2ce873e31937a7368bf2032196c8c740 [file] [log] [blame]
Stefan Roese21b29fc2016-05-25 08:13:45 +02001/*
2 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Konstantin Porotchkinf4f194e2017-04-05 17:42:33 +030011#include <pci.h>
Stefan Roese21b29fc2016-05-25 08:13:45 +020012#include <asm/io.h>
13#include <asm/system.h>
14#include <asm/arch/cpu.h>
15#include <asm/arch/soc.h>
16#include <asm/armv8/mmu.h>
17
18DECLARE_GLOBAL_DATA_PTR;
19
20/*
Stefan Roese059f75d2016-11-11 08:18:44 +010021 * Not all memory is mapped in the MMU. So we need to restrict the
22 * memory size so that U-Boot does not try to access it. Also, the
23 * internal registers are located at 0xf000.0000 - 0xffff.ffff.
24 * Currently only 2GiB are mapped for system memory. This is what
25 * we pass to the U-Boot subsystem here.
26 */
27#define USABLE_RAM_SIZE 0x80000000
28
29ulong board_get_usable_ram_top(ulong total_size)
30{
31 if (gd->ram_size > USABLE_RAM_SIZE)
32 return USABLE_RAM_SIZE;
33
34 return gd->ram_size;
35}
36
37/*
Stefan Roese21b29fc2016-05-25 08:13:45 +020038 * On ARMv8, MBus is not configured in U-Boot. To enable compilation
39 * of the already implemented drivers, lets add a dummy version of
40 * this function so that linking does not fail.
41 */
42const struct mbus_dram_target_info *mvebu_mbus_dram_info(void)
43{
44 return NULL;
45}
46
47/* DRAM init code ... */
48
Stefan Roese780f80c2017-05-08 08:31:30 +020049int dram_init_banksize(void)
Stefan Roese21b29fc2016-05-25 08:13:45 +020050{
Stefan Roese780f80c2017-05-08 08:31:30 +020051 fdtdec_setup_memory_banksize();
Stefan Roese21b29fc2016-05-25 08:13:45 +020052
53 return 0;
54}
55
Stefan Roese780f80c2017-05-08 08:31:30 +020056int dram_init(void)
Stefan Roese21b29fc2016-05-25 08:13:45 +020057{
Stefan Roese780f80c2017-05-08 08:31:30 +020058 if (fdtdec_setup_memory_size() != 0)
59 return -EINVAL;
Simon Glass76b00ac2017-03-31 08:40:32 -060060
61 return 0;
Stefan Roese21b29fc2016-05-25 08:13:45 +020062}
63
64int arch_cpu_init(void)
65{
66 /* Nothing to do (yet) */
67 return 0;
68}
69
70int arch_early_init_r(void)
71{
72 struct udevice *dev;
73 int ret;
Stefan Roesed7dd3582016-10-25 18:12:40 +020074 int i;
Stefan Roese21b29fc2016-05-25 08:13:45 +020075
Stefan Roesed7dd3582016-10-25 18:12:40 +020076 /*
77 * Loop over all MISC uclass drivers to call the comphy code
78 * and init all CP110 devices enabled in the DT
79 */
80 i = 0;
81 while (1) {
82 /* Call the comphy code via the MISC uclass driver */
83 ret = uclass_get_device(UCLASS_MISC, i++, &dev);
84
85 /* We're done, once no further CP110 device is found */
86 if (ret)
87 break;
Stefan Roese21b29fc2016-05-25 08:13:45 +020088 }
89
90 /* Cause the SATA device to do its early init */
91 uclass_first_device(UCLASS_AHCI, &dev);
92
Konstantin Porotchkinf4f194e2017-04-05 17:42:33 +030093#ifdef CONFIG_DM_PCI
94 /* Trigger PCIe devices detection */
95 pci_init();
96#endif
97
Stefan Roese21b29fc2016-05-25 08:13:45 +020098 return 0;
99}