blob: 54b021cfede98eeb3f74fb66d629a8b5a6f445fa [file] [log] [blame]
Adrian Alonsoab09e7282015-09-02 13:54:14 -05001/*
2 * Copyright 2015 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/armv7.h>
9#include <asm/pl310.h>
10#include <asm/io.h>
11
12#ifndef CONFIG_SYS_DCACHE_OFF
13void enable_caches(void)
14{
15#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
16 enum dcache_option option = DCACHE_WRITETHROUGH;
17#else
18 enum dcache_option option = DCACHE_WRITEBACK;
19#endif
20 /* Avoid random hang when download by usb */
21 invalidate_dcache_all();
22
23 /* Enable D-cache. I-cache is already enabled in start.S */
24 dcache_enable();
25
26 /* Enable caching on OCRAM and ROM */
27 mmu_set_region_dcache_behaviour(ROMCP_ARB_BASE_ADDR,
28 ROMCP_ARB_END_ADDR,
29 option);
30 mmu_set_region_dcache_behaviour(IRAM_BASE_ADDR,
31 IRAM_SIZE,
32 option);
33}
34#endif
35
36#ifndef CONFIG_SYS_L2CACHE_OFF
37#ifdef CONFIG_SYS_L2_PL310
38#define IOMUXC_GPR11_L2CACHE_AS_OCRAM 0x00000002
39void v7_outer_cache_enable(void)
40{
41 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
42 unsigned int val;
43
44
45 /*
46 * Set bit 22 in the auxiliary control register. If this bit
47 * is cleared, PL310 treats Normal Shared Non-cacheable
48 * accesses as Cacheable no-allocate.
49 */
50 setbits_le32(&pl310->pl310_aux_ctrl, L310_SHARED_ATT_OVERRIDE_ENABLE);
51
52#if defined CONFIG_MX6SL
53 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
54 val = readl(&iomux->gpr[11]);
55 if (val & IOMUXC_GPR11_L2CACHE_AS_OCRAM) {
56 /* L2 cache configured as OCRAM, reset it */
57 val &= ~IOMUXC_GPR11_L2CACHE_AS_OCRAM;
58 writel(val, &iomux->gpr[11]);
59 }
60#endif
61
62 /* Must disable the L2 before changing the latency parameters */
63 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
64
65 writel(0x132, &pl310->pl310_tag_latency_ctrl);
66 writel(0x132, &pl310->pl310_data_latency_ctrl);
67
68 val = readl(&pl310->pl310_prefetch_ctrl);
69
70 /* Turn on the L2 I/D prefetch */
71 val |= 0x30000000;
72
73 /*
74 * The L2 cache controller(PL310) version on the i.MX6D/Q is r3p1-50rel0
75 * The L2 cache controller(PL310) version on the i.MX6DL/SOLO/SL is r3p2
76 * But according to ARM PL310 errata: 752271
77 * ID: 752271: Double linefill feature can cause data corruption
78 * Fault Status: Present in: r3p0, r3p1, r3p1-50rel0. Fixed in r3p2
79 * Workaround: The only workaround to this erratum is to disable the
80 * double linefill feature. This is the default behavior.
81 */
82
83#ifndef CONFIG_MX6Q
84 val |= 0x40800000;
85#endif
86 writel(val, &pl310->pl310_prefetch_ctrl);
87
88 val = readl(&pl310->pl310_power_ctrl);
89 val |= L2X0_DYNAMIC_CLK_GATING_EN;
90 val |= L2X0_STNDBY_MODE_EN;
91 writel(val, &pl310->pl310_power_ctrl);
92
93 setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
94}
95
96void v7_outer_cache_disable(void)
97{
98 struct pl310_regs *const pl310 = (struct pl310_regs *)L2_PL310_BASE;
99
100 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
101}
102#endif /* !CONFIG_SYS_L2_PL310 */
103#endif /* !CONFIG_SYS_L2CACHE_OFF */