Re: [PATCH v6 07/15] dt-bindings: memory: tegra30: Convert to Tegra124 YAML
From: Dmitry Osipenko <digetx@gmail.com>
Date: 2019-07-01 19:30:23
Also in:
linux-clk, linux-tegra, lkml
01.07.2019 22:11, Rob Herring пишет:
On Sun, Jun 30, 2019 at 3:04 PM Dmitry Osipenko [off-list ref] wrote:quoted
"Convert" implies you delete the old binding doc.
Yes, unfortunately the deletion got lost by accident after rebase and it was already too late when I noticed that. Will be fixed in the next revision.
quoted
The Tegra30 binding will actually differ from the Tegra124 a tad, in particular the EMEM configuration description. Hence rename the binding to Tegra124 during of the conversion to YAML. Signed-off-by: Dmitry Osipenko <digetx@gmail.com> --- .../nvidia,tegra124-mc.yaml | 149 ++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 Documentation/devicetree/bindings/memory-controllers/nvidia,tegra124-mc.yamldiff --git a/Documentation/devicetree/bindings/memory-controllers/nvidia,tegra124-mc.yaml b/Documentation/devicetree/bindings/memory-controllers/nvidia,tegra124-mc.yaml new file mode 100644 index 000000000000..d18242510295 --- /dev/null +++ b/Documentation/devicetree/bindings/memory-controllers/nvidia,tegra124-mc.yaml@@ -0,0 +1,149 @@ +# SPDX-License-Identifier: (GPL-2.0) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/memory-controllers/nvidia,tegra124-mc.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: + NVIDIA Tegra124 SoC Memory Controller + +maintainers: + - Jon Hunter <jonathanh@nvidia.com> + - Thierry Reding <thierry.reding@gmail.com> + +description: | + Tegra124 SoC features a hybrid 2x32-bit / 1x64-bit memory controller. + These are interleaved to provide high performance with the load shared across + two memory channels. The Tegra124 Memory Controller handles memory requests + from internal clients and arbitrates among them to allocate memory bandwidth + for DDR3L and LPDDR3 SDRAMs. + +properties: + compatible: + const: nvidia,tegra124-mc + + reg: + maxItems: 1 + description: + Physical base address. + + clocks: + maxItems: 1 + description: + Memory Controller clock. + + clock-names: + items: + - const: mc + + interrupts: + maxItems: 1 + description: + Memory Controller interrupt. + + "#reset-cells": + const: 1 + + "#iommu-cells": + const: 1 + +patternProperties: + ".*":Please define a node name or pattern for node names.
There was no pattern specified in the original binding. But I guess the existing upstream device-trees could be used as the source for the pattern.
quoted
+ properties: + nvidia,ram-code: + $ref: /schemas/types.yaml#/definitions/uint32 + description: + Value of RAM_CODE this timing set is used for. + + patternProperties: + ".*":Same here.quoted
+ properties: + clock-frequency: + description: + Memory clock rate in Hz.No constraints? Anything from 0 to 4GHz works?
Okay, will add the min/max. I'm not sure what is the exact upper freq limit, probably ~1GHz.