On 31/08/2022 04:33, Julius Werner wrote: > This patch adds a new device tree binding for an LPDDR channel to serve > as a top-level organizing node for LPDDR part nodes nested below it. An > LPDDR channel needs to have an "io-width" property to describe its width > (this is important because this width does not always match the io-width > of the part number, indicating that multiple parts are wired in parallel > on the same channel), as well as one or more nested "rank@X" nodes. > Those represent information about the individual ranks of each LPDDR > part connected on that channel and should match the existing > "jedec,lpddrX" bindings for individual LPDDR parts. > > New platforms should be using this node -- the existing practice of > providing a raw, toplevel "jedec,lpddrX" node without indication of how > many identical parts are in the system should be considered deprecated. > > Signed-off-by: Julius Werner <jwerner@xxxxxxxxxxxx> > --- > .../ddr/jedec,lpddr-channel.yaml | 116 ++++++++++++++++++ > .../ddr/jedec,lpddr-props.yaml | 10 +- > 2 files changed, 125 insertions(+), 1 deletion(-) > create mode 100644 Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-channel.yaml > > diff --git a/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-channel.yaml b/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-channel.yaml > new file mode 100644 > index 00000000000000..517e770d8e7133 > --- /dev/null > +++ b/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-channel.yaml > @@ -0,0 +1,116 @@ > +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/memory-controllers/ddr/jedec,lpddr-channel.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: LPDDR channel with chip/rank topology description > + > +description: > + An LPDDR channel is a completely independent set of LPDDR pins (DQ, CA, CS, > + CK, etc.) that connect one or more LPDDR chips to a host system. The main > + purpose of this node is to overall LPDDR topology of the system, including the > + amount of individual LPDDR chips and the ranks per chip. "channel" in this context confuses me a bit, because usually everyone is talking about DDR controller channels, not memory channels. I think this actually maps to a DDR controller channel? > + > +maintainers: > + - Julius Werner <jwerner@xxxxxxxxxxxx> > + > +properties: > + compatible: > + enum: > + - jedec,lpddr2-channel > + - jedec,lpddr3-channel > + - jedec,lpddr4-channel > + - jedec,lpddr5-channel > + > + io-width: > + description: > + The number of DQ pins in the channel. If this number is different > + from (a multiple of) the io-width of the LPDDR chip, that means that > + multiple instances of that type of chip are wired in parallel on this > + channel (with the channel's DQ pins split up between the different > + chips, and the CA, CS, etc. pins of the different chips all shorted > + together). This means that the total physical memory controlled by a > + channel is equal to the sum of the densities of each rank on the > + connected LPDDR chip, times the io-width of the channel divided by > + the io-width of the LPDDR chip. > + enum: > + - 8 > + - 16 > + - 32 > + - 64 > + - 128 > + > + "#address-cells": > + const: 1 > + > + "#size-cells": > + const: 0 > + > +patternProperties: > + "^rank@[0-9]+$": > + type: object > + description: > + Each physical LPDDR chip may have one or more ranks. Ranks are > + internal but fully independent sub-units of the chip. Each LPDDR bus > + transaction on the channel targets exactly one rank, based on the > + state of the CS pins. Different ranks may have different densities and > + timing requirements. > + oneOf: > + - $ref: /schemas/memory-controllers/ddr/jedec,lpddr2.yaml# > + - $ref: /schemas/memory-controllers/ddr/jedec,lpddr3.yaml# > + - $ref: /schemas/memory-controllers/ddr/jedec,lpddr4.yaml# > + - $ref: /schemas/memory-controllers/ddr/jedec,lpddr5.yaml# This should be rather chosen depending on top-level compatible. IOW, add allOf where ref is chosen. Something like: https://lore.kernel.org/linux-devicetree/20220828084341.112146-15-krzysztof.kozlowski@xxxxxxxxxx/ Unless LPDDR3 memory can be put in LPDDR5 channel? But I think it cannot... > + required: > + - reg > + > +required: > + - compatible > + - io-width > + - "#address-cells" > + - "#size-cells" > + > +additionalProperties: false > + > +examples: > + - | > + lpddr-channel0 { > + #address-cells = <1>; > + #size-cells = <0>; > + compatible = "jedec,lpddr4-channel"; > + io-width = <32>; > + > + rank@0 { > + compatible = "lpddr4-ff,0100", "jedec,lpddr4"; > + reg = <0>; > + density = <8192>; > + io-width = <16>; > + manufacturer-id = <255>; > + revision-id = <1 0>; > + }; > + }; > + > + lpddr-channel1 { > + #address-cells = <1>; > + #size-cells = <0>; > + compatible = "jedec,lpddr4-channel"; > + io-width = <32>; I wonder now, how does it exactly work - channel is 32 bits, two ranks each with 32 bit IO bus. Your description said that: total_ram = (rank0 + rank1) * (channel_width / chip_width) so for this case: (4+2)*(32/32) = 6 Mbit If channel io-width = <64>, then memories are stacked in parallel and according to your description total RAM would be: (4+2)*(64/32) = 12 Mbit I wonder why stacking memories in parallel increases their size? > + > + rank@0 { > + compatible = "lpddr4-05,0301", "jedec,lpddr4"; > + reg = <0>; > + density = <4096>; > + io-width = <32>; > + manufacturer-id = <5>; > + revision-id = <3 1>; > + }; > + > + rank@1 { > + compatible = "lpddr4-05,0301", "jedec,lpddr4"; > + reg = <1>; > + density = <2048>; > + io-width = <32>; > + manufacturer-id = <5>; > + revision-id = <3 1>; > + }; > + }; > diff --git a/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-props.yaml b/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-props.yaml > index e1182e75ca1a3f..53a4836028cd25 100644 > --- a/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-props.yaml > +++ b/Documentation/devicetree/bindings/memory-controllers/ddr/jedec,lpddr-props.yaml > @@ -9,7 +9,8 @@ title: Common properties for LPDDR types > description: > Different LPDDR types generally use the same properties and only differ in the > range of legal values for each. This file defines the common parts that can be > - reused for each type. > + reused for each type. Nodes using this schema should generally be nested under > + an LPDDR channel node. > > maintainers: > - Krzysztof Kozlowski <krzk@xxxxxxxxxx> > @@ -71,4 +72,11 @@ properties: > - 16 > - 8 > > + reg: > + description: > + The rank number of this LPDDR rank when used as a subnode to an LPDDR > + channel. > + minimum: 0 > + maximum: 3 Put reg just after compatible. > + > additionalProperties: true Best regards, Krzysztof