Commit f77b2d76 authored by Luca Weiss's avatar Luca Weiss Committed by Bjorn Andersson

dt-bindings: sram: qcom,ocmem: Add msm8226 support

Add the compatible for the OCMEM found on msm8226 which compared to
msm8974 only has a core clock and no iface clock.
Reviewed-by: default avatarConor Dooley <conor.dooley@microchip.com>
Signed-off-by: default avatarLuca Weiss <luca@z3ntu.xyz>
Link: https://lore.kernel.org/r/20230506-msm8226-ocmem-v3-4-79da95a2581f@z3ntu.xyzSigned-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent a7e12e7b
...@@ -15,7 +15,9 @@ description: | ...@@ -15,7 +15,9 @@ description: |
properties: properties:
compatible: compatible:
const: qcom,msm8974-ocmem enum:
- qcom,msm8226-ocmem # v1.1.0
- qcom,msm8974-ocmem # v1.4.0
reg: reg:
items: items:
...@@ -28,11 +30,13 @@ properties: ...@@ -28,11 +30,13 @@ properties:
- const: mem - const: mem
clocks: clocks:
minItems: 1
items: items:
- description: Core clock - description: Core clock
- description: Interface clock - description: Interface clock
clock-names: clock-names:
minItems: 1
items: items:
- const: core - const: core
- const: iface - const: iface
...@@ -58,6 +62,26 @@ required: ...@@ -58,6 +62,26 @@ required:
additionalProperties: false additionalProperties: false
allOf:
- if:
properties:
compatible:
contains:
enum:
- qcom,msm8974-ocmem
then:
properties:
clocks:
minItems: 2
clock-names:
minItems: 2
else:
properties:
clocks:
minItems: 1
clock-names:
minItems: 1
patternProperties: patternProperties:
"-sram@[0-9a-f]+$": "-sram@[0-9a-f]+$":
type: object type: object
......
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