devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: l2x0: add L210 write allocate override flag
@ 2019-03-18  8:30 Linus Walleij
  2019-03-18  8:41 ` Stefan Agner
  2019-03-18 14:04 ` Russell King - ARM Linux admin
  0 siblings, 2 replies; 5+ messages in thread
From: Linus Walleij @ 2019-03-18  8:30 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: devicetree, Linus Walleij, Russell King

This adds support for setting the flag bit "write allocate
override" to the L210 variant.

The "write allocate override" bit is used on the Nomadik STn8815
and is necessary to properly make use of the L210 cache on that
machine without sporadic crashes.

After this the platform can boot and run without any out-of-tree
patches.

Cc: devicetree@vger.kernel.org
Cc: Russell King <linux@arm.linux.org.uk>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 Documentation/devicetree/bindings/arm/l2c2x0.yaml | 5 +++++
 arch/arm/mm/cache-l2x0.c                          | 8 ++++++++
 2 files changed, 13 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/l2c2x0.yaml b/Documentation/devicetree/bindings/arm/l2c2x0.yaml
index bfc5c185561c..4cffcda3e2b7 100644
--- a/Documentation/devicetree/bindings/arm/l2c2x0.yaml
+++ b/Documentation/devicetree/bindings/arm/l2c2x0.yaml
@@ -168,6 +168,11 @@ properties:
       be specified to indicate that such transforms are precluded.
     type: boolean
 
+  arm,write-allocate-override:
+    description: On L210 only, normally the L210 will use HPROT attributes,
+    setting this bit overrides that behaviour and cause the cache to make all
+    write-through and write-back accesses into read-write-allocate accesses.
+
   arm,parity-enable:
     description: enable parity checking on the L2 cache (L220 or PL310).
     type: boolean
diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c
index 808efbb89b88..5cbdb9c18884 100644
--- a/arch/arm/mm/cache-l2x0.c
+++ b/arch/arm/mm/cache-l2x0.c
@@ -1078,6 +1078,14 @@ static void __init l2x0_of_parse(const struct device_node *np,
 		val |= L2C_AUX_CTRL_SHARED_OVERRIDE;
 	}
 
+	/* L210-specific aux control flag */
+	if (of_device_is_compatible(np, "arm,l210-cache")) {
+		if (of_property_read_bool(np, "arm,write-allocate-override")) {
+			mask &= ~L210_AUX_CTRL_WA_OVERRIDE;
+			val |= L210_AUX_CTRL_WA_OVERRIDE;
+		}
+	}
+
 	ret = l2x0_cache_size_of_parse(np, aux_val, aux_mask, &assoc, SZ_256K);
 	if (ret)
 		return;
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-31  6:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-18  8:30 [PATCH] ARM: l2x0: add L210 write allocate override flag Linus Walleij
2019-03-18  8:41 ` Stefan Agner
2019-03-18 14:04 ` Russell King - ARM Linux admin
2019-03-18 22:14   ` Linus Walleij
2019-03-31  6:40     ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).