blob: 4e3b49a3fdfc928f5e56d3babb08ca2040b9e003 [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>
Simon Glass90526e92020-05-10 11:39:56 -06009#include <asm/cache.h>
Adrian Alonsoab09e7282015-09-02 13:54:14 -050010#include <asm/pl310.h>
11#include <asm/io.h>
Stefano Babic552a8482017-06-29 10:16:06 +020012#include <asm/mach-imx/sys_proto.h>
Adrian Alonsoab09e7282015-09-02 13:54:14 -050013
Ye Lic5437e52018-05-14 09:44:29 -030014static void enable_ca7_smp(void)
15{
16 u32 val;
17
18 /* Read MIDR */
19 asm volatile ("mrc p15, 0, %0, c0, c0, 0\n\t" : "=r"(val));
20 val = (val >> 4);
21 val &= 0xf;
22
23 /* Only set the SMP for Cortex A7 */
24 if (val == 0x7) {
25 /* Read auxiliary control register */
26 asm volatile ("mrc p15, 0, %0, c1, c0, 1\n\t" : "=r"(val));
27
28 if (val & (1 << 6))
29 return;
30
31 /* Enable SMP */
32 val |= (1 << 6);
33
34 /* Write auxiliary control register */
35 asm volatile ("mcr p15, 0, %0, c1, c0, 1\n\t" : : "r"(val));
36
37 DSB;
38 ISB;
39 }
40}
41
Trevor Woerner10015022019-05-03 09:41:00 -040042#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Adrian Alonsoab09e7282015-09-02 13:54:14 -050043void enable_caches(void)
44{
45#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
46 enum dcache_option option = DCACHE_WRITETHROUGH;
47#else
48 enum dcache_option option = DCACHE_WRITEBACK;
49#endif
50 /* Avoid random hang when download by usb */
51 invalidate_dcache_all();
52
Ye Lic5437e52018-05-14 09:44:29 -030053 /* Set ACTLR.SMP bit for Cortex-A7 */
54 enable_ca7_smp();
55
Adrian Alonsoab09e7282015-09-02 13:54:14 -050056 /* Enable D-cache. I-cache is already enabled in start.S */
57 dcache_enable();
58
59 /* Enable caching on OCRAM and ROM */
60 mmu_set_region_dcache_behaviour(ROMCP_ARB_BASE_ADDR,
61 ROMCP_ARB_END_ADDR,
62 option);
63 mmu_set_region_dcache_behaviour(IRAM_BASE_ADDR,
64 IRAM_SIZE,
65 option);
66}
Ye Lic5437e52018-05-14 09:44:29 -030067#else
68void enable_caches(void)
69{
70 /*
71 * Set ACTLR.SMP bit for Cortex-A7, even if the caches are
72 * disabled by u-boot
73 */
74 enable_ca7_smp();
75
76 puts("WARNING: Caches not enabled\n");
77}
Adrian Alonsoab09e7282015-09-02 13:54:14 -050078#endif
79
80#ifndef CONFIG_SYS_L2CACHE_OFF
81#ifdef CONFIG_SYS_L2_PL310
82#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
83void v7_outer_cache_enable(void)
84{
85 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
Peng Fana472e9b2016-12-11 19:24:30 +080086 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
Ye Lid8bbf362019-01-07 09:29:21 +000087 unsigned int val, cache_id;
Adrian Alonsoab09e7282015-09-02 13:54:14 -050088
89
90 /*
Peng Fanad7af5d2016-05-04 15:27:50 +080091 * Must disable the L2 before changing the latency parameters
92 * and auxiliary control register.
93 */
94 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
95
96 /*
Adrian Alonsoab09e7282015-09-02 13:54:14 -050097 * Set bit 22 in the auxiliary control register. If this bit
98 * is cleared, PL310 treats Normal Shared Non-cacheable
99 * accesses as Cacheable no-allocate.
100 */
101 setbits_le32(&pl310->pl310_aux_ctrl, L310_SHARED_ATT_OVERRIDE_ENABLE);
102
Peng Fana472e9b2016-12-11 19:24:30 +0800103 if (is_mx6sl() || is_mx6sll()) {
104 val = readl(&iomux->gpr[11]);
105 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
106 /* L2 cache configured as OCRAM, reset it */
107 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
108 writel(val, &iomux->gpr[11]);
109 }
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500110 }
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500111
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500112 writel(0x132, &pl310->pl310_tag_latency_ctrl);
113 writel(0x132, &pl310->pl310_data_latency_ctrl);
114
115 val = readl(&pl310->pl310_prefetch_ctrl);
116
Ye Lid8bbf362019-01-07 09:29:21 +0000117 /* Turn on the L2 I/D prefetch, double linefill */
118 /* Set prefetch offset with any value except 23 as per errata 765569 */
119 val |= 0x7000000f;
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500120
121 /*
122 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
Ye Lid8bbf362019-01-07 09:29:21 +0000123 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL/SX/DQP
124 * is r3p2.
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500125 * But according to ARM PL310 errata: 752271
126 * ID: 752271: Double linefill feature can cause data corruption
127 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
128 * Workaround: The only workaround to this erratum is to disable the
129 * double linefill feature. This is the default behavior.
130 */
Ye Lid8bbf362019-01-07 09:29:21 +0000131 cache_id = readl(&pl310->pl310_cache_id);
132 if (((cache_id & L2X0_CACHE_ID_PART_MASK) == L2X0_CACHE_ID_PART_L310)
133 && ((cache_id & L2X0_CACHE_ID_RTL_MASK) < L2X0_CACHE_ID_RTL_R3P2))
134 val &= ~(1 << 30);
Adrian Alonsoab09e7282015-09-02 13:54:14 -0500135 writel(val, &pl310->pl310_prefetch_ctrl);
136
137 val = readl(&pl310->pl310_power_ctrl);
138 val |= L2X0_DYNAMIC_CLK_GATING_EN;
139 val |= L2X0_STNDBY_MODE_EN;
140 writel(val, &pl310->pl310_power_ctrl);
141
142 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
143}
144
145void v7_outer_cache_disable(void)
146{
147 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
148
149 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
150}
151#endif /* !CONFIG_SYS_L2_PL310 */
152#endif /* !CONFIG_SYS_L2CACHE_OFF */