blob: d3ea9e67e07fe35c73ada2532281f1be642c5590 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese21b29fc2016-05-25 08:13:45 +02002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roese21b29fc2016-05-25 08:13:45 +02004 */
5
6#include <common.h>
7#include <dm.h>
8#include <fdtdec.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +09009#include <linux/libfdt.h>
Konstantin Porotchkinf4f194e2017-04-05 17:42:33 +030010#include <pci.h>
Stefan Roese21b29fc2016-05-25 08:13:45 +020011#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
17DECLARE_GLOBAL_DATA_PTR;
18
19/*
Stefan Roese059f75d2016-11-11 08:18:44 +010020 * 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
28ulong 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 Roese21b29fc2016-05-25 08:13:45 +020037 * 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 */
41const struct mbus_dram_target_info *mvebu_mbus_dram_info(void)
42{
43 return NULL;
44}
45
46/* DRAM init code ... */
47
Stefan Roese780f80c2017-05-08 08:31:30 +020048int dram_init_banksize(void)
Stefan Roese21b29fc2016-05-25 08:13:45 +020049{
Stefan Roese780f80c2017-05-08 08:31:30 +020050 fdtdec_setup_memory_banksize();
Stefan Roese21b29fc2016-05-25 08:13:45 +020051
52 return 0;
53}
54
Stefan Roese780f80c2017-05-08 08:31:30 +020055int dram_init(void)
Stefan Roese21b29fc2016-05-25 08:13:45 +020056{
Stefan Roese780f80c2017-05-08 08:31:30 +020057 if (fdtdec_setup_memory_size() != 0)
58 return -EINVAL;
Simon Glass76b00ac2017-03-31 08:40:32 -060059
60 return 0;
Stefan Roese21b29fc2016-05-25 08:13:45 +020061}
62
63int arch_cpu_init(void)
64{
65 /* Nothing to do (yet) */
66 return 0;
67}
68
69int arch_early_init_r(void)
70{
71 struct udevice *dev;
72 int ret;
Stefan Roesed7dd3582016-10-25 18:12:40 +020073 int i;
Stefan Roese21b29fc2016-05-25 08:13:45 +020074
Stefan Roesed7dd3582016-10-25 18:12:40 +020075 /*
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 Roese21b29fc2016-05-25 08:13:45 +020087 }
88
89 /* Cause the SATA device to do its early init */
90 uclass_first_device(UCLASS_AHCI, &dev);
91
Konstantin Porotchkinf4f194e2017-04-05 17:42:33 +030092#ifdef CONFIG_DM_PCI
93 /* Trigger PCIe devices detection */
94 pci_init();
95#endif
96
Stefan Roese21b29fc2016-05-25 08:13:45 +020097 return 0;
98}