brintos

brintos / linux-shallow public Read only

0
0
Text · 722 B · a078892 Raw
36 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/memory-controllers/ddr/jedec,lpddr4.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: LPDDR4 SDRAM compliant to JEDEC JESD209-48 9maintainers:10  - Krzysztof Kozlowski <krzk@kernel.org>11 12allOf:13  - $ref: jedec,lpddr-props.yaml#14 15properties:16  compatible:17    items:18      - pattern: "^lpddr4-[0-9a-f]{2},[0-9a-f]{4}$"19      - const: jedec,lpddr420 21required:22  - compatible23  - density24  - io-width25 26unevaluatedProperties: false27 28examples:29  - |30    lpddr {31        compatible = "lpddr4-ff,0100", "jedec,lpddr4";32        density = <8192>;33        io-width = <16>;34        revision-id = <1 0>;35    };36