Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arm / mach-owl / soc.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Actions Semi Owl SoCs platform support.
4  *
5  * Copyright (C) 2018 Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
6  */
7
8 #include <cpu_func.h>
9 #include <init.h>
10 #include <asm/cache.h>
11 #include <linux/arm-smccc.h>
12 #include <linux/psci.h>
13 #include <common.h>
14 #include <asm/io.h>
15 #include <asm/mach-types.h>
16 #include <asm/psci.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 /*
21  * dram_init - sets uboots idea of sdram size
22  */
23 int dram_init(void)
24 {
25         gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
26         return 0;
27 }
28
29 /* This is called after dram_init() so use get_ram_size result */
30 int dram_init_banksize(void)
31 {
32         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
33         gd->bd->bi_dram[0].size = gd->ram_size;
34
35         return 0;
36 }
37
38 static void show_psci_version(void)
39 {
40         struct arm_smccc_res res;
41
42         arm_smccc_smc(ARM_PSCI_0_2_FN_PSCI_VERSION, 0, 0, 0, 0, 0, 0, 0, &res);
43
44         printf("PSCI:  v%ld.%ld\n",
45                 PSCI_VERSION_MAJOR(res.a0),
46                 PSCI_VERSION_MINOR(res.a0));
47 }
48
49 int board_init(void)
50 {
51         show_psci_version();
52
53         return 0;
54 }
55
56 void reset_cpu(ulong addr)
57 {
58         psci_system_reset();
59 }