Manivannan Sadhasivam | eba6589 | 2018-06-14 23:38:32 +0530 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
Amit Singh Tomar | b1a6bb3 | 2020-04-19 19:28:25 +0530 | [diff] [blame] | 3 | * Actions Semi Owl SoCs platform support. |
Manivannan Sadhasivam | eba6589 | 2018-06-14 23:38:32 +0530 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2018 Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> |
| 6 | */ |
| 7 | |
Simon Glass | 9a3b4ce | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 10 | #include <asm/cache.h> |
Manivannan Sadhasivam | eba6589 | 2018-06-14 23:38:32 +0530 | [diff] [blame] | 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", |
Amit Singh Tomar | b1a6bb3 | 2020-04-19 19:28:25 +0530 | [diff] [blame] | 45 | PSCI_VERSION_MAJOR(res.a0), |
Manivannan Sadhasivam | eba6589 | 2018-06-14 23:38:32 +0530 | [diff] [blame] | 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 | } |