blob: 46548bcc5fd3a38fcc194fc79858e9f6636840ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2019 Broadcom Ltd.
*/
#include <common.h>
#include <linux/ctype.h>
#include <linux/io.h>
#include <spl.h>
#include <asm/arch/misc.h>
#include "asm/arch/ddr.h"
#include "bcm_secure.h"
#include "bcm_otp.h"
DECLARE_GLOBAL_DATA_PTR;
void spl_board_deinit(void);
__weak void arch_cpu_deinit()
{
}
u32 spl_boot_device(void)
{
return BOOT_DEVICE_NONE;
}
__weak void spl_ddrinit_prepare(void)
{
}
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
int reserve_mmu(void)
{
#if defined(CONFIG_BRCM_SPL_MEMC_SRAM)
/* enable 64KB sram in MEMC controller for MMU table */
MEMC->SRAM_REMAP_CTRL = (CONFIG_SYS_PAGETBL_BASE | 0x00000040);
MEMC->SRAM_REMAP_CTRL |= 0x2;
MEMC->SRAM_REMAP_CTRL;
#endif
gd->arch.tlb_addr = CONFIG_SYS_PAGETBL_BASE;
gd->arch.tlb_size = CONFIG_SYS_PAGETBL_SIZE;
return 0;
}
#endif
extern int sec_tk();
extern void sec_tk_find_keystore();
void board_init_f(ulong dummy)
{
#if defined(CONFIG_ARCH_CPU_INIT)
arch_cpu_init();
#endif
#if defined(CONFIG_SYS_ARCH_TIMER)
timer_init();
#endif
if (spl_early_init())
hang();
/* UART clocks enabled and gd valid - init serial console */
preloader_console_init();
printf(" TK OTP/SOTP \n");
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
reserve_mmu();
enable_caches();
#endif
sec_tk_find_keystore();
}
void spl_board_deinit(void)
{
/*
* even thought the name says linux but it does everything needed for
* boot to the next image: flush and disable cache, disable mmu
*/
cleanup_before_linux();
arch_cpu_deinit();
#if defined(CONFIG_BRCM_SPL_MEMC_SRAM)
/* disable 64KB sram in MEMC controller for MMU table */
MEMC->SRAM_REMAP_CTRL = 0;
MEMC->SRAM_REMAP_CTRL;
#endif
}
void spl_board_init(void)
{
bcm_otp_init();
bcm_sec_init();
bcm_sec_cb_arg_t cb_args[SEC_CTRL_ARG_MAX] = {0};
cb_args[SEC_CTRL_ARG_KEY].arg[0].ctrl = SEC_CTRL_KEY_GET;
bcm_sec_do(SEC_SET, cb_args);
sec_tk();
bcm_sec_deinit();
while(1);
}
|