From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hIz4P-0003tM-EZ for barebox@lists.infradead.org; Tue, 23 Apr 2019 17:19:02 +0000 From: Ahmad Fatoum Date: Tue, 23 Apr 2019 19:18:47 +0200 Message-Id: <20190423171852.26126-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 0/5] ARM: mmu: misc armv7 cache/MMU fixes To: barebox@lists.infradead.org Cc: Ahmad Fatoum , lst@pengutronix.de, ore@pengutronix.de, rcz@pengutronix.de This series fixes a number of potential caching issues with armv7. They are: - Cortex-A7 erratum #814220 Because of this erratum, the CPU may reorder cache maintenance operations when it shouldn't. - Wrong Cache invalidation order for Cortex-A7 On the Cortex-A7, the L2 cache needs to be invalidated before the L1 cache. - Device memory isn't marked NX (Never eXecute) NX prevents the CPU instruction prefetcher from inadvertently accessing memory mapped devices We haven't observed these actually causing problems with barebox, so testing the changes is a bit tricky. I ran these changes on: - Cortex-A5 (SAMA5D3, -marm, first stage in SRAM, second in SDRAM) - Cortex-A7 (i.MX6UL, -marm, architected L2 cache, barebox in SDRAM) - Cortex-A7 (i.MX6UL, -mthumb (2), architected L2 cache, barebox in SDRAM) - Cortex-A9 (i.MX6Q, -mthumb (2), barebox in SDRAM) and verified that: - barebox can still start up - barebox PBL can still invoke barebox proper - barebox can still boot itself over the network - barebox can still boot a kernel - barebox can do all of the above with CONFIG_MMU_EARLY=y and =n Ahmad Fatoum (5): ARM: cache-armv7: add work-around for errata 814220 ARM: imx: work around i.MX6UL ERR008958 (ARM errata 814220) ARM: cache-armv7: start invalidation from outer levels ARM: mmu: remove doubly defined macro ARM: mmu: mark uncached regions as eXecute never on v7 arch/arm/Kconfig | 12 ++++++++++++ arch/arm/cpu/cache-armv7.S | 15 ++++++++++++++- arch/arm/cpu/mmu-early.c | 27 ++++++++++++++++++++++++--- arch/arm/cpu/mmu.c | 16 ++++++++++------ arch/arm/cpu/mmu.h | 8 +++++++- arch/arm/mach-imx/Kconfig | 1 + 6 files changed, 68 insertions(+), 11 deletions(-) -- 2.20.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox