mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 08:32:55 +00:00

DTS example in the bindings should be indented with 2- or 4-spaces and aligned with opening '- |', so correct any differences like 3-spaces or mixtures 2- and 4-spaces in one binding. No functional changes here, but saves some comments during reviews of new patches built on existing code. Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC Acked-by: Lee Jones <lee@kernel.org> Acked-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> # renesas Link: https://lore.kernel.org/r/20250107131456.247610-1-krzysztof.kozlowski@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20250725100241.120106-2-krzysztof.kozlowski@linaro.org Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/reserved-memory/nvidia,tegra264-bpmp-shmem.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Tegra CPU-NS - BPMP IPC reserved memory
|
|
|
|
maintainers:
|
|
- Peter De Schrijver <pdeschrijver@nvidia.com>
|
|
|
|
description: |
|
|
Define a memory region used for communication between CPU-NS and BPMP.
|
|
Typically this node is created by the bootloader as the physical address
|
|
has to be known to both CPU-NS and BPMP for correct IPC operation.
|
|
The memory region is defined using a child node under /reserved-memory.
|
|
The sub-node is named shmem@<address>.
|
|
|
|
allOf:
|
|
- $ref: reserved-memory.yaml
|
|
|
|
properties:
|
|
compatible:
|
|
const: nvidia,tegra264-bpmp-shmem
|
|
|
|
reg:
|
|
description: The physical address and size of the shared SDRAM region
|
|
|
|
unevaluatedProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- no-map
|
|
|
|
examples:
|
|
- |
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
shmem@f1be0000 {
|
|
compatible = "nvidia,tegra264-bpmp-shmem";
|
|
reg = <0x0 0xf1be0000 0x0 0x2000>;
|
|
no-map;
|
|
};
|
|
};
|
|
...
|