mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
The Devicetree bindings document does not have to say in the title that
it is a "binding", but instead just describe the hardware.
Drop trailing "bindings" in various forms (also with trailing full
stop):
find Documentation/devicetree/bindings/ -type f -name '*.yaml' \
-not -name 'trivial-devices.yaml' \
-exec sed -i -e 's/^title: \(.*\) [bB]indings\?\.\?$/title: \1/' {} \;
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Acked-by: Matti Vaittinen <mazziesaccount@gmail.com> # ROHM
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # MMC
Acked-by: Stephen Boyd <sboyd@kernel.org> # clk
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> # input
Acked-by: Mark Brown <broonie@kernel.org>
Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # media
Acked-by: Sebastian Reichel <sre@kernel.org> # power
Acked-by: Viresh Kumar <viresh.kumar@linaro.org> # cpufreq
Link: https://lore.kernel.org/r/20221216163815.522628-7-krzysztof.kozlowski@linaro.org
Signed-off-by: Rob Herring <robh@kernel.org>
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: "http://devicetree.org/schemas/remoteproc/renesas,rcar-rproc.yaml#"
|
|
$schema: "http://devicetree.org/meta-schemas/core.yaml#"
|
|
|
|
title: Renesas R-Car remote processor controller
|
|
|
|
maintainers:
|
|
- Julien Massot <julien.massot@iot.bzh>
|
|
|
|
description: |
|
|
This document defines the bindings for the remoteproc component that loads and
|
|
boots firmwares on the Renesas R-Car family chipset.
|
|
R-Car gen3 family may have a realtime processor, this processor shares peripheral
|
|
and RAM with the host processor with the same address map.
|
|
|
|
properties:
|
|
compatible:
|
|
const: renesas,rcar-cr7
|
|
|
|
resets:
|
|
maxItems: 1
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
memory-region:
|
|
description:
|
|
List of phandles to the reserved memory regions associated with the
|
|
remoteproc device. This is variable and describes the memories shared with
|
|
the remote processor (e.g. remoteproc firmware and carveouts, rpmsg
|
|
vrings, ...).
|
|
(see ../reserved-memory/reserved-memory.yaml)
|
|
|
|
required:
|
|
- compatible
|
|
- resets
|
|
- memory-region
|
|
- power-domains
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/r8a7795-cpg-mssr.h>
|
|
#include <dt-bindings/power/r8a7795-sysc.h>
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
|
|
cr7_ram: cr7_ram@40040000 {
|
|
no-map;
|
|
reg = <0x0 0x40040000 0x0 0x1fc0000>;
|
|
};
|
|
};
|
|
|
|
cr7_rproc: cr7 {
|
|
compatible = "renesas,rcar-cr7";
|
|
memory-region = <&cr7_ram>;
|
|
power-domains = <&sysc R8A7795_PD_CR7>;
|
|
resets = <&cpg 222>;
|
|
};
|
|
|
|
...
|