Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: mips: mips-cm: Add a new compatible string for EyeQ6

The CM3.5 used on EyeQ6 reports that Hardware Cache Initialization is
complete, but in reality it's not the case. It also incorrectly
indicates that Hardware Cache Initialization is supported. This new
compatible string allows warning about this broken feature that cannot
be detected at runtime.

Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Gregory CLEMENT and committed by
Thomas Bogendoerfer
57c7110b 21ebe64a

+11 -1
+11 -1
Documentation/devicetree/bindings/mips/mti,mips-cm.yaml
··· 19 19 20 20 properties: 21 21 compatible: 22 - const: mti,mips-cm 22 + oneOf: 23 + - const: mti,mips-cm 24 + - const: mobileye,eyeq6-cm 25 + description: 26 + On EyeQ6 the HCI (Hardware Cache Initialization) information for 27 + the L2 cache in multi-cluster configuration is broken. 23 28 24 29 reg: 25 30 description: ··· 48 43 coherency-manager@1fbf8000 { 49 44 compatible = "mti,mips-cm"; 50 45 reg = <0x1bde8000 0x8000>; 46 + }; 47 + 48 + - | 49 + coherency-manager { 50 + compatible = "mobileye,eyeq6-cm"; 51 51 }; 52 52 ...