Caesar Wang | c1bf646 | 2016-06-21 14:44:01 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Caesar Wang | c1bf646 | 2016-06-21 14:44:01 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <debug.h> |
| 8 | #include <mmio.h> |
| 9 | #include <plat_sip_calls.h> |
| 10 | #include <rockchip_sip_svc.h> |
| 11 | #include <runtime_svc.h> |
Caesar Wang | a845690 | 2016-10-27 01:12:34 +0800 | [diff] [blame] | 12 | #include <dfs.h> |
Caesar Wang | 9740bba | 2016-08-25 08:37:42 +0800 | [diff] [blame] | 13 | |
Caesar Wang | 251a34d | 2016-09-10 06:25:29 +0800 | [diff] [blame] | 14 | #define RK_SIP_DDR_CFG 0x82000008 |
| 15 | #define DRAM_INIT 0x00 |
| 16 | #define DRAM_SET_RATE 0x01 |
| 17 | #define DRAM_ROUND_RATE 0x02 |
| 18 | #define DRAM_SET_AT_SR 0x03 |
| 19 | #define DRAM_GET_BW 0x04 |
| 20 | #define DRAM_GET_RATE 0x05 |
| 21 | #define DRAM_CLR_IRQ 0x06 |
| 22 | #define DRAM_SET_PARAM 0x07 |
Derek Basehore | ff461d0 | 2016-10-20 20:46:43 -0700 | [diff] [blame] | 23 | #define DRAM_SET_ODT_PD 0x08 |
Caesar Wang | 9740bba | 2016-08-25 08:37:42 +0800 | [diff] [blame] | 24 | |
Derek Basehore | ff461d0 | 2016-10-20 20:46:43 -0700 | [diff] [blame] | 25 | uint32_t ddr_smc_handler(uint64_t arg0, uint64_t arg1, |
| 26 | uint64_t id, uint64_t arg2) |
Caesar Wang | 9740bba | 2016-08-25 08:37:42 +0800 | [diff] [blame] | 27 | { |
| 28 | switch (id) { |
Caesar Wang | 251a34d | 2016-09-10 06:25:29 +0800 | [diff] [blame] | 29 | case DRAM_SET_RATE: |
| 30 | return ddr_set_rate((uint32_t)arg0); |
| 31 | case DRAM_ROUND_RATE: |
| 32 | return ddr_round_rate((uint32_t)arg0); |
| 33 | case DRAM_GET_RATE: |
Caesar Wang | 9740bba | 2016-08-25 08:37:42 +0800 | [diff] [blame] | 34 | return ddr_get_rate(); |
Derek Basehore | ff461d0 | 2016-10-20 20:46:43 -0700 | [diff] [blame] | 35 | case DRAM_SET_ODT_PD: |
| 36 | dram_set_odt_pd(arg0, arg1, arg2); |
Caesar Wang | 9740bba | 2016-08-25 08:37:42 +0800 | [diff] [blame] | 37 | break; |
| 38 | default: |
| 39 | break; |
| 40 | } |
| 41 | |
| 42 | return 0; |
| 43 | } |
Caesar Wang | c1bf646 | 2016-06-21 14:44:01 +0800 | [diff] [blame] | 44 | |
| 45 | uint64_t rockchip_plat_sip_handler(uint32_t smc_fid, |
| 46 | uint64_t x1, |
| 47 | uint64_t x2, |
| 48 | uint64_t x3, |
| 49 | uint64_t x4, |
| 50 | void *cookie, |
| 51 | void *handle, |
| 52 | uint64_t flags) |
| 53 | { |
| 54 | switch (smc_fid) { |
Caesar Wang | 251a34d | 2016-09-10 06:25:29 +0800 | [diff] [blame] | 55 | case RK_SIP_DDR_CFG: |
Derek Basehore | ff461d0 | 2016-10-20 20:46:43 -0700 | [diff] [blame] | 56 | SMC_RET1(handle, ddr_smc_handler(x1, x2, x3, x4)); |
Caesar Wang | c1bf646 | 2016-06-21 14:44:01 +0800 | [diff] [blame] | 57 | default: |
| 58 | ERROR("%s: unhandled SMC (0x%x)\n", __func__, smc_fid); |
| 59 | SMC_RET1(handle, SMC_UNK); |
| 60 | } |
| 61 | } |