Merge branch '2020-04-25-master-imports'
[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 <linux/arm-smccc.h>
10 #include <linux/psci.h>
11 #include <common.h>
12 #include <asm/io.h>
13 #include <asm/mach-types.h>
14 #include <asm/psci.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 /*
19  * dram_init - sets uboots idea of sdram size
20  */
21 int dram_init(void)
22 {
23         gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
24         return 0;
25 }
26
27 /* This is called after dram_init() so use get_ram_size result */
28 int dram_init_banksize(void)
29 {
30         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
31         gd->bd->bi_dram[0].size = gd->ram_size;
32
33         return 0;
34 }
35
36 static void show_psci_version(void)
37 {
38         struct arm_smccc_res res;
39
40         arm_smccc_smc(ARM_PSCI_0_2_FN_PSCI_VERSION, 0, 0, 0, 0, 0, 0, 0, &res);
41
42         printf("PSCI:  v%ld.%ld\n",
43                 PSCI_VERSION_MAJOR(res.a0),
44                 PSCI_VERSION_MINOR(res.a0));
45 }
46
47 int board_init(void)
48 {
49         show_psci_version();
50
51         return 0;
52 }
53
54 void reset_cpu(ulong addr)
55 {
56         psci_system_reset();
57 }