blob: 290811a2657b546331b70414a645ff15ba7c9a42 [file] [log] [blame]
Tony Xief6118cc2016-01-15 17:17:32 +08001/*
2 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Tony Xief6118cc2016-01-15 17:17:32 +08005 */
6
7#ifndef __PLAT_PRIVATE_H__
8#define __PLAT_PRIVATE_H__
9
10#ifndef __ASSEMBLY__
11#include <mmio.h>
Isla Mitchelle3631462017-07-14 10:46:32 +010012#include <psci.h>
Tony Xief6118cc2016-01-15 17:17:32 +080013#include <stdint.h>
14#include <xlat_tables.h>
15
Caesar Wangd90f43e2016-10-11 09:36:00 +080016#define __sramdata __attribute__((section(".sram.data")))
17#define __sramconst __attribute__((section(".sram.rodata")))
Lin Huang30e43392017-05-04 16:02:45 +080018#define __sramfunc __attribute__((section(".sram.text")))
19
20#define __pmusramdata __attribute__((section(".pmusram.data")))
21#define __pmusramconst __attribute__((section(".pmusram.rodata")))
22#define __pmusramfunc __attribute__((section(".pmusram.text")))
Caesar Wangd90f43e2016-10-11 09:36:00 +080023
24extern uint32_t __bl31_sram_text_start, __bl31_sram_text_end;
25extern uint32_t __bl31_sram_data_start, __bl31_sram_data_end;
Lin Huang30e43392017-05-04 16:02:45 +080026extern uint32_t __bl31_sram_stack_start, __bl31_sram_stack_end;
Lin Huang88dd1232017-05-16 16:40:46 +080027extern uint32_t __bl31_sram_text_real_end, __bl31_sram_data_real_end;
Xing Zheng93280b72016-10-26 21:25:26 +080028extern uint32_t __sram_incbin_start, __sram_incbin_end;
Lin Huang88dd1232017-05-16 16:40:46 +080029extern uint32_t __sram_incbin_real_end;
Caesar Wangd90f43e2016-10-11 09:36:00 +080030
Tony Xief6118cc2016-01-15 17:17:32 +080031
32/******************************************************************************
33 * The register have write-mask bits, it is mean, if you want to set the bits,
34 * you needs set the write-mask bits at the same time,
35 * The write-mask bits is in high 16-bits.
36 * The fllowing macro definition helps access write-mask bits reg efficient!
37 ******************************************************************************/
38#define REG_MSK_SHIFT 16
39
Tony Xief6118cc2016-01-15 17:17:32 +080040#ifndef WMSK_BIT
41#define WMSK_BIT(nr) BIT((nr) + REG_MSK_SHIFT)
42#endif
43
44/* set one bit with write mask */
45#ifndef BIT_WITH_WMSK
46#define BIT_WITH_WMSK(nr) (BIT(nr) | WMSK_BIT(nr))
47#endif
48
49#ifndef BITS_SHIFT
50#define BITS_SHIFT(bits, shift) (bits << (shift))
51#endif
52
53#ifndef BITS_WITH_WMASK
Caesar Wang59e41b52016-04-10 14:11:07 +080054#define BITS_WITH_WMASK(bits, msk, shift)\
Tony Xief6118cc2016-01-15 17:17:32 +080055 (BITS_SHIFT(bits, shift) | BITS_SHIFT(msk, (shift + REG_MSK_SHIFT)))
56#endif
57
58/******************************************************************************
59 * Function and variable prototypes
60 *****************************************************************************/
61void plat_configure_mmu_el3(unsigned long total_base,
62 unsigned long total_size,
63 unsigned long,
64 unsigned long,
65 unsigned long,
66 unsigned long);
67
68void plat_cci_init(void);
69void plat_cci_enable(void);
70void plat_cci_disable(void);
71
72void plat_delay_timer_init(void);
73
Caesar Wang3e3c5b02016-05-25 19:03:04 +080074void params_early_setup(void *plat_params_from_bl2);
75
Tony Xief6118cc2016-01-15 17:17:32 +080076void plat_rockchip_gic_driver_init(void);
77void plat_rockchip_gic_init(void);
78void plat_rockchip_gic_cpuif_enable(void);
79void plat_rockchip_gic_cpuif_disable(void);
80void plat_rockchip_gic_pcpu_init(void);
81
Tony Xief6118cc2016-01-15 17:17:32 +080082void plat_rockchip_pmu_init(void);
83void plat_rockchip_soc_init(void);
Tony Xie42e113e2016-07-16 11:16:51 +080084uintptr_t plat_get_sec_entrypoint(void);
Tony Xief6118cc2016-01-15 17:17:32 +080085
Caesar Wang59e41b52016-04-10 14:11:07 +080086void platform_cpu_warmboot(void);
87
Caesar Wangef180072016-09-10 02:43:15 +080088struct gpio_info *plat_get_rockchip_gpio_reset(void);
89struct gpio_info *plat_get_rockchip_gpio_poweroff(void);
90struct gpio_info *plat_get_rockchip_suspend_gpio(uint32_t *count);
Caesar Wang5045a1c2016-09-10 02:47:53 +080091struct apio_info *plat_get_rockchip_suspend_apio(void);
Caesar Wang038f6aa2016-05-25 19:21:43 +080092void plat_rockchip_gpio_init(void);
93
tony.xie422d51c2017-03-01 11:05:17 +080094int rockchip_soc_cores_pwr_dm_on(unsigned long mpidr, uint64_t entrypoint);
95int rockchip_soc_hlvl_pwr_dm_off(uint32_t lvl,
96 plat_local_state_t lvl_state);
97int rockchip_soc_cores_pwr_dm_off(void);
98int rockchip_soc_sys_pwr_dm_suspend(void);
99int rockchip_soc_cores_pwr_dm_suspend(void);
100int rockchip_soc_hlvl_pwr_dm_suspend(uint32_t lvl,
101 plat_local_state_t lvl_state);
102int rockchip_soc_hlvl_pwr_dm_on_finish(uint32_t lvl,
103 plat_local_state_t lvl_state);
104int rockchip_soc_cores_pwr_dm_on_finish(void);
105int rockchip_soc_sys_pwr_dm_resume(void);
106
107int rockchip_soc_hlvl_pwr_dm_resume(uint32_t lvl,
108 plat_local_state_t lvl_state);
109int rockchip_soc_cores_pwr_dm_resume(void);
110void __dead2 rockchip_soc_soft_reset(void);
111void __dead2 rockchip_soc_system_off(void);
112void __dead2 rockchip_soc_cores_pd_pwr_dn_wfi(
113 const psci_power_state_t *target_state);
114void __dead2 rockchip_soc_sys_pd_pwr_dn_wfi(void);
115
Tony Xief6118cc2016-01-15 17:17:32 +0800116extern const unsigned char rockchip_power_domain_tree_desc[];
117
Lin Huang30e43392017-05-04 16:02:45 +0800118extern void *pmu_cpuson_entrypoint;
Tony Xief6118cc2016-01-15 17:17:32 +0800119extern uint64_t cpuson_entry_point[PLATFORM_CORE_COUNT];
120extern uint32_t cpuson_flags[PLATFORM_CORE_COUNT];
121
122extern const mmap_region_t plat_rk_mmap[];
Caesar Wangd90f43e2016-10-11 09:36:00 +0800123
Lin Huang30e43392017-05-04 16:02:45 +0800124void rockchip_plat_mmu_el3(void);
Caesar Wangd90f43e2016-10-11 09:36:00 +0800125
Tony Xief6118cc2016-01-15 17:17:32 +0800126#endif /* __ASSEMBLY__ */
127
Tony Xie42e113e2016-07-16 11:16:51 +0800128/******************************************************************************
129 * cpu up status
130 * The bits of macro value is not more than 12 bits for cmp instruction!
131 ******************************************************************************/
132#define PMU_CPU_HOTPLUG 0xf00
133#define PMU_CPU_AUTO_PWRDN 0xf0
134#define PMU_CLST_RET 0xa5
Tony Xief6118cc2016-01-15 17:17:32 +0800135
136#endif /* __PLAT_PRIVATE_H__ */