blob: 07aeb0981c00956e453c786503fba0ebe033dc5b [file] [log] [blame]
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -04001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2018 Cisco Systems, Inc.
Thomas Fitzsimmons06edafb2019-05-17 08:17:07 -04004 * (C) Copyright 2019 Synamedia
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -04005 *
6 * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
7 */
8
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glassa7b51302019-11-14 12:57:46 -070010#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass495a5dc2019-11-14 12:57:30 -070012#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040014#include <linux/types.h>
15#include <common.h>
Simon Glass313112a2019-08-01 09:46:46 -060016#include <env.h>
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040017#include <asm/io.h>
18#include <asm/bootm.h>
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040019#include <mach/timer.h>
20#include <mmc.h>
21#include <fdtdec.h>
22
23DECLARE_GLOBAL_DATA_PTR;
24
Marek BehĂșn4bebdd32021-05-20 13:23:52 +020025#define BCMSTB_DATA_SECTION __section(".data")
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040026
27struct bcmstb_boot_parameters bcmstb_boot_parameters BCMSTB_DATA_SECTION;
28
29phys_addr_t prior_stage_fdt_address BCMSTB_DATA_SECTION;
30
31union reg_value_union {
32 const char *data;
33 const phys_addr_t *address;
34};
35
36int board_init(void)
37{
38 return 0;
39}
40
Harald Seiler6f14d5f2020-12-15 16:47:52 +010041void reset_cpu(void)
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040042{
43}
44
45int print_cpuinfo(void)
46{
47 return 0;
48}
49
50int dram_init(void)
51{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053052 if (fdtdec_setup_mem_size_base() != 0)
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040053 return -EINVAL;
54
55 return 0;
56}
57
58int dram_init_banksize(void)
59{
60 fdtdec_setup_memory_banksize();
61
62 /*
63 * On this SoC, U-Boot is running as an ELF file. Change the
64 * relocation address to CONFIG_SYS_TEXT_BASE, so that in
65 * setup_reloc, gd->reloc_off works out to 0, effectively
66 * disabling relocation. Otherwise U-Boot hangs in the setup
67 * instructions just before relocate_code in
68 * arch/arm/lib/crt0.S.
69 */
70 gd->relocaddr = CONFIG_SYS_TEXT_BASE;
71
72 return 0;
73}
74
75void enable_caches(void)
76{
77 /*
78 * This port assumes that the prior stage bootloader has
79 * enabled I-cache and D-cache already. Implementing this
80 * function silences the warning in the default function.
81 */
82}
83
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -040084int timer_init(void)
85{
86 gd->arch.timer_rate_hz = readl(BCMSTB_TIMER_FREQUENCY);
87
88 return 0;
89}
90
91ulong get_tbclk(void)
92{
93 return gd->arch.timer_rate_hz;
94}
95
96uint64_t get_ticks(void)
97{
98 gd->timebase_h = readl(BCMSTB_TIMER_HIGH);
99 gd->timebase_l = readl(BCMSTB_TIMER_LOW);
100
101 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
102}
103
104int board_late_init(void)
105{
106 debug("Arguments from prior stage bootloader:\n");
107 debug("General Purpose Register 0: 0x%x\n", bcmstb_boot_parameters.r0);
108 debug("General Purpose Register 1: 0x%x\n", bcmstb_boot_parameters.r1);
109 debug("General Purpose Register 2: 0x%x\n", bcmstb_boot_parameters.r2);
110 debug("General Purpose Register 3: 0x%x\n", bcmstb_boot_parameters.r3);
111 debug("Stack Pointer Register: 0x%x\n", bcmstb_boot_parameters.sp);
112 debug("Link Register: 0x%x\n", bcmstb_boot_parameters.lr);
113 debug("Assuming timer frequency register at: 0x%p\n",
114 (void *)BCMSTB_TIMER_FREQUENCY);
115 debug("Read timer frequency (in Hz): %ld\n", gd->arch.timer_rate_hz);
116 debug("Prior stage provided DTB at: 0x%p\n",
117 (void *)prior_stage_fdt_address);
118
119 /*
120 * Set fdtcontroladdr in the environment so that scripts can
121 * refer to it, for example, to reuse it for fdtaddr.
122 */
123 env_set_hex("fdtcontroladdr", prior_stage_fdt_address);
124
125 /*
126 * Do not set machid to the machine identifier value provided
127 * by the prior stage bootloader (bcmstb_boot_parameters.r1)
128 * because we're using a device tree to boot Linux.
129 */
130
131 return 0;
132}
Ilias Apalodimascd851d02021-10-12 00:00:14 +0300133
Ilias Apalodimasab5348a2021-10-26 09:12:33 +0300134void *board_fdt_blob_setup(int *err)
Ilias Apalodimascd851d02021-10-12 00:00:14 +0300135{
Ilias Apalodimasab5348a2021-10-26 09:12:33 +0300136 *err = 0;
Ilias Apalodimascd851d02021-10-12 00:00:14 +0300137 /* Stored the DTB address there during our init */
138 return (void *)prior_stage_fdt_address;
139}