mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
b4ed9f86df
Having bit 22 cleared in the PL310 Auxiliary Control register (shared attribute override enable) has the side effect of transforming Normal Shared Non-cacheable reads into Cacheable no-allocate reads. Coherent DMA buffers in Linux always have a Cacheable alias via the kernel linear mapping and the processor can speculatively load cache lines into the PL310 controller. With bit 22 cleared, Non-cacheable reads would unexpectedly hit such cache lines leading to buffer corruption. This was inspired by a patch from Catalin Marinas [1] and also from recent discussions in the linux-arm-kernel list [2] where Russell King and Rob Herring suggested that bootloaders should initialize the cache. [1] http://lists.infradead.org/pipermail/linux-arm-kernel/2010-November/031810.html [2] https://lkml.org/lkml/2015/2/20/199 Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Catalin Marinas <catalin.marinas@arm.com>
80 lines
1.7 KiB
C
80 lines
1.7 KiB
C
/*
|
|
* (C) Copyright 2010
|
|
* Texas Instruments, <www.ti.com>
|
|
* Aneesh V <aneesh@ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#ifndef _PL310_H_
|
|
#define _PL310_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
/* Register bit fields */
|
|
#define PL310_AUX_CTRL_ASSOCIATIVITY_MASK (1 << 16)
|
|
#define L2X0_DYNAMIC_CLK_GATING_EN (1 << 1)
|
|
#define L2X0_STNDBY_MODE_EN (1 << 0)
|
|
#define L2X0_CTRL_EN 1
|
|
|
|
#define L310_SHARED_ATT_OVERRIDE_ENABLE (1 << 22)
|
|
|
|
struct pl310_regs {
|
|
u32 pl310_cache_id;
|
|
u32 pl310_cache_type;
|
|
u32 pad1[62];
|
|
u32 pl310_ctrl;
|
|
u32 pl310_aux_ctrl;
|
|
u32 pl310_tag_latency_ctrl;
|
|
u32 pl310_data_latency_ctrl;
|
|
u32 pad2[60];
|
|
u32 pl310_event_cnt_ctrl;
|
|
u32 pl310_event_cnt1_cfg;
|
|
u32 pl310_event_cnt0_cfg;
|
|
u32 pl310_event_cnt1_val;
|
|
u32 pl310_event_cnt0_val;
|
|
u32 pl310_intr_mask;
|
|
u32 pl310_masked_intr_stat;
|
|
u32 pl310_raw_intr_stat;
|
|
u32 pl310_intr_clear;
|
|
u32 pad3[323];
|
|
u32 pl310_cache_sync;
|
|
u32 pad4[15];
|
|
u32 pl310_inv_line_pa;
|
|
u32 pad5[2];
|
|
u32 pl310_inv_way;
|
|
u32 pad6[12];
|
|
u32 pl310_clean_line_pa;
|
|
u32 pad7[1];
|
|
u32 pl310_clean_line_idx;
|
|
u32 pl310_clean_way;
|
|
u32 pad8[12];
|
|
u32 pl310_clean_inv_line_pa;
|
|
u32 pad9[1];
|
|
u32 pl310_clean_inv_line_idx;
|
|
u32 pl310_clean_inv_way;
|
|
u32 pad10[64];
|
|
u32 pl310_lockdown_dbase;
|
|
u32 pl310_lockdown_ibase;
|
|
u32 pad11[190];
|
|
u32 pl310_addr_filter_start;
|
|
u32 pl310_addr_filter_end;
|
|
u32 pad12[190];
|
|
u32 pl310_test_operation;
|
|
u32 pad13[3];
|
|
u32 pl310_line_data;
|
|
u32 pad14[7];
|
|
u32 pl310_line_tag;
|
|
u32 pad15[3];
|
|
u32 pl310_debug_ctrl;
|
|
u32 pad16[7];
|
|
u32 pl310_prefetch_ctrl;
|
|
u32 pad17[7];
|
|
u32 pl310_power_ctrl;
|
|
};
|
|
|
|
void pl310_inval_all(void);
|
|
void pl310_clean_inval_all(void);
|
|
void pl310_inval_range(u32 start, u32 end);
|
|
void pl310_clean_inval_range(u32 start, u32 end);
|
|
|
|
#endif
|