Commit 17e4732d authored by Conor Dooley's avatar Conor Dooley

dt-bindings: riscv: sifive-l2: add a PolarFire SoC compatible

The l2 cache on PolarFire SoC is cross between that of the fu540 and
the fu740. It has the extra interrupt from the fu740 but the lower
number of cache-sets. Add a specific compatible to avoid the likes
of:

mpfs-polarberry.dtb: cache-controller@2010000: interrupts: [[1], [3], [4], [2]] is too long

Fixes: 34fc9cc3 ("riscv: dts: microchip: correct L2 cache interrupts")
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarConor Dooley <conor.dooley@microchip.com>
parent 1709c70c
...@@ -17,9 +17,6 @@ description: ...@@ -17,9 +17,6 @@ description:
acts as directory-based coherency manager. acts as directory-based coherency manager.
All the properties in ePAPR/DeviceTree specification applies for this platform. All the properties in ePAPR/DeviceTree specification applies for this platform.
allOf:
- $ref: /schemas/cache-controller.yaml#
select: select:
properties: properties:
compatible: compatible:
...@@ -33,11 +30,16 @@ select: ...@@ -33,11 +30,16 @@ select:
properties: properties:
compatible: compatible:
items: oneOf:
- enum: - items:
- sifive,fu540-c000-ccache - enum:
- sifive,fu740-c000-ccache - sifive,fu540-c000-ccache
- const: cache - sifive,fu740-c000-ccache
- const: cache
- items:
- const: microchip,mpfs-ccache
- const: sifive,fu540-c000-ccache
- const: cache
cache-block-size: cache-block-size:
const: 64 const: 64
...@@ -72,29 +74,46 @@ properties: ...@@ -72,29 +74,46 @@ properties:
The reference to the reserved-memory for the L2 Loosely Integrated Memory region. The reference to the reserved-memory for the L2 Loosely Integrated Memory region.
The reserved memory node should be defined as per the bindings in reserved-memory.txt. The reserved memory node should be defined as per the bindings in reserved-memory.txt.
if: allOf:
properties: - $ref: /schemas/cache-controller.yaml#
compatible:
contains:
const: sifive,fu540-c000-ccache
then: - if:
properties: properties:
interrupts: compatible:
description: | contains:
Must contain entries for DirError, DataError and DataFail signals. enum:
maxItems: 3 - sifive,fu740-c000-ccache
cache-sets: - microchip,mpfs-ccache
const: 1024
then:
else: properties:
properties: interrupts:
interrupts: description: |
description: | Must contain entries for DirError, DataError, DataFail, DirFail signals.
Must contain entries for DirError, DataError, DataFail, DirFail signals. minItems: 4
minItems: 4
cache-sets: else:
const: 2048 properties:
interrupts:
description: |
Must contain entries for DirError, DataError and DataFail signals.
maxItems: 3
- if:
properties:
compatible:
contains:
const: sifive,fu740-c000-ccache
then:
properties:
cache-sets:
const: 2048
else:
properties:
cache-sets:
const: 1024
additionalProperties: false additionalProperties: false
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment