blob: ff470163ae3031260033b551a1907d31e486c65d [file] [log] [blame]
Tony Xief6118cc2016-01-15 17:17:32 +08001/*
2 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <arch_helpers.h>
32#include <arm_gic.h>
33#include <bl_common.h>
34#include <cci.h>
35#include <debug.h>
36#include <string.h>
37#include <xlat_tables.h>
38#include <platform_def.h>
39#include <plat_private.h>
Sandrine Bailleux7659a262016-07-05 09:55:03 +010040#include <utils.h>
Tony Xief6118cc2016-01-15 17:17:32 +080041
42#ifdef PLAT_RK_CCI_BASE
43static const int cci_map[] = {
44 PLAT_RK_CCI_CLUSTER0_SL_IFACE_IX,
45 PLAT_RK_CCI_CLUSTER1_SL_IFACE_IX
46};
47#endif
48
49/******************************************************************************
50 * Macro generating the code for the function setting up the pagetables as per
51 * the platform memory map & initialize the mmu, for the given exception level
52 ******************************************************************************/
53#define DEFINE_CONFIGURE_MMU_EL(_el) \
54 void plat_configure_mmu_el ## _el(unsigned long total_base, \
55 unsigned long total_size, \
56 unsigned long ro_start, \
57 unsigned long ro_limit, \
58 unsigned long coh_start, \
59 unsigned long coh_limit) \
60 { \
61 mmap_add_region(total_base, total_base, \
62 total_size, \
63 MT_MEMORY | MT_RW | MT_SECURE); \
64 mmap_add_region(ro_start, ro_start, \
65 ro_limit - ro_start, \
66 MT_MEMORY | MT_RO | MT_SECURE); \
67 mmap_add_region(coh_start, coh_start, \
68 coh_limit - coh_start, \
69 MT_DEVICE | MT_RW | MT_SECURE); \
70 mmap_add(plat_rk_mmap); \
Caesar Wangd90f43e2016-10-11 09:36:00 +080071 rockchip_plat_sram_mmu_el##_el(); \
Tony Xief6118cc2016-01-15 17:17:32 +080072 init_xlat_tables(); \
73 \
74 enable_mmu_el ## _el(0); \
75 }
76
77/* Define EL3 variants of the function initialising the MMU */
78DEFINE_CONFIGURE_MMU_EL(3)
79
Antonio Nino Diaze82e29c2016-05-19 10:00:28 +010080unsigned int plat_get_syscnt_freq2(void)
Tony Xief6118cc2016-01-15 17:17:32 +080081{
82 return SYS_COUNTER_FREQ_IN_TICKS;
83}
84
85void plat_cci_init(void)
86{
87#ifdef PLAT_RK_CCI_BASE
88 /* Initialize CCI driver */
89 cci_init(PLAT_RK_CCI_BASE, cci_map, ARRAY_SIZE(cci_map));
90#endif
91}
92
93void plat_cci_enable(void)
94{
95 /*
96 * Enable CCI coherency for this cluster.
97 * No need for locks as no other cpu is active at the moment.
98 */
99#ifdef PLAT_RK_CCI_BASE
100 cci_enable_snoop_dvm_reqs(MPIDR_AFFLVL1_VAL(read_mpidr()));
101#endif
102}
103
104void plat_cci_disable(void)
105{
106#ifdef PLAT_RK_CCI_BASE
107 cci_disable_snoop_dvm_reqs(MPIDR_AFFLVL1_VAL(read_mpidr()));
108#endif
109}