blob: 4fd2e434488e10360f3e2d8969a16dde6a56ac6d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Adrian Alonsoab09e7282015-09-02 13:54:14 -05002/*
3 * Copyright 2015 Freescale Semiconductor, Inc.
Adrian Alonsoab09e7282015-09-02 13:54:14 -05004 */
5
6#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -07007#include <cpu_func.h>
Adrian Alonsoab09e7282015-09-02 13:54:14 -05008#include <asm/armv7.h>
9#include <asm/pl310.h>
10#include <asm/io.h>
Stefano Babic552a8482017-06-29 10:16:06 +020011#include <asm/mach-imx/sys_proto.h>
Adrian Alonsoab09e7282015-09-02 13:54:14 -050012
Ye Lic5437e52018-05-14 09:44:29 -030013static void enable_ca7_smp(void)
14{
15 u32 val;
16
17 /* Read MIDR */
18 asm volatile ("mrc p15, 0, %0, c0, c0, 0\n\t" : "=r"(val));
19 val = (val >> 4);
20 val &= 0xf;
21
22 /* Only set the SMP for Cortex A7 */
23 if (val == 0x7) {
24 /* Read auxiliary control register */
25 asm volatile ("mrc p15, 0, %0, c1, c0, 1\n\t" : "=r"(val));
26
27 if (val & (1 << 6))
28 return;
29
30 /* Enable SMP */
31 val |= (1 << 6);
32
33 /* Write auxiliary control register */
34 asm volatile ("mcr p15, 0, %0, c1, c0, 1\n\t" : : "r"(val));
35
36 DSB;
37 ISB;
38 }
39}
40
Trevor Woerner10015022019-05-03 09:41:00 -040041#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Adrian Alonsoab09e7282015-09-02 13:54:14 -050042void enable_caches(void)
43{
44#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
45 enum dcache_option option = DCACHE_WRITETHROUGH;
46#else
47 enum dcache_option option = DCACHE_WRITEBACK;
48#endif
49 /* Avoid random hang when download by usb */
50 invalidate_dcache_all();
51
Ye Lic5437e52018-05-14 09:44:29 -030052 /* Set ACTLR.SMP bit for Cortex-A7 */
53 enable_ca7_smp();
54
Adrian Alonsoab09e7282015-09-02 13:54:14 -050055 /* Enable D-cache. I-cache is already enabled in start.S */
56 dcache_enable();
57
58 /* Enable caching on OCRAM and ROM */
59 mmu_set_region_dcache_behaviour(ROMCP_ARB_BASE_ADDR,
60 ROMCP_ARB_END_ADDR,
61 option);
62 mmu_set_region_dcache_behaviour(IRAM_BASE_ADDR,
63 IRAM_SIZE,
64 option);
65}
Ye Lic5437e52018-05-14 09:44:29 -030066#else
67void enable_caches(void)
68{
69 /*
70 * Set ACTLR.SMP bit for Cortex-A7, even if the caches are
71 * disabled by u-boot
72 */
73 enable_ca7_smp();
74
75 puts("WARNING: Caches not enabled\n");
76}
Adrian Alonsoab09e7282015-09-02 13:54:14 -050077#endif
78
79#ifndef CONFIG_SYS_L2CACHE_OFF
80#ifdef CONFIG_SYS_L2_PL310
81#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
82void v7_outer_cache_enable(void)
83{
84 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
Peng Fana472e9b2016-12-11 19:24:30 +080085 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
Ye Lid8bbf362019-01-07 09:29:21 +000086 unsigned int val, cache_id;
Adrian Alonsoab09e7282015-09-02 13:54:14 -050087
88
89 /*
Peng Fanad7af5d2016-05-04 15:27:50 +080090 * Must disable the L2 before changing the latency parameters
91 * and auxiliary control register.
92 */
93 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
94
95 /*
Adrian Alonsoab09e7282015-09-02 13:54:14 -050096 * Set bit 22 in the auxiliary control register. If this bit
97 * is cleared, PL310 treats Normal Shared Non-cacheable
98 * accesses as Cacheable no-allocate.
99 */
100 setbits_le32(&pl310->pl310_aux_ctrl, L310_SHARED_ATT_OVERRIDE_ENABLE);
101
Peng Fana472e9b2016-12-11 19:24:30 +0800102 if (is_mx6sl() || is_mx6sll()) {
103 val = readl(&iomux->gpr[11]);
104 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
105 /* L2 cache configured as OCRAM, reset it */
106 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
107 writel(val, &iomux->gpr[11]);
108 }
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500109 }
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500110
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500111 writel(0x132, &pl310->pl310_tag_latency_ctrl);
112 writel(0x132, &pl310->pl310_data_latency_ctrl);
113
114 val = readl(&pl310->pl310_prefetch_ctrl);
115
Ye Lid8bbf362019-01-07 09:29:21 +0000116 /* Turn on the L2 I/D prefetch, double linefill */
117 /* Set prefetch offset with any value except 23 as per errata 765569 */
118 val |= 0x7000000f;
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500119
120 /*
121 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
Ye Lid8bbf362019-01-07 09:29:21 +0000122 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL/SX/DQP
123 * is r3p2.
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500124 * But according to ARM PL310 errata: 752271
125 * ID: 752271: Double linefill feature can cause data corruption
126 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
127 * Workaround: The only workaround to this erratum is to disable the
128 * double linefill feature. This is the default behavior.
129 */
Ye Lid8bbf362019-01-07 09:29:21 +0000130 cache_id = readl(&pl310->pl310_cache_id);
131 if (((cache_id & L2X0_CACHE_ID_PART_MASK) == L2X0_CACHE_ID_PART_L310)
132 && ((cache_id & L2X0_CACHE_ID_RTL_MASK) < L2X0_CACHE_ID_RTL_R3P2))
133 val &= ~(1 << 30);
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500134 writel(val, &pl310->pl310_prefetch_ctrl);
135
136 val = readl(&pl310->pl310_power_ctrl);
137 val |= L2X0_DYNAMIC_CLK_GATING_EN;
138 val |= L2X0_STNDBY_MODE_EN;
139 writel(val, &pl310->pl310_power_ctrl);
140
141 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
142}
143
144void v7_outer_cache_disable(void)
145{
146 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
147
148 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
149}
150#endif /* !CONFIG_SYS_L2_PL310 */
151#endif /* !CONFIG_SYS_L2CACHE_OFF */