61aaaa8110
There's no reason to have "status" properties in examples. "okay" is the default, and "disabled" turns off some schema checks ('required' specifically). Enabling qca,ar71xx causes a warning, so let's fix the node names: Documentation/devicetree/bindings/net/qca,ar71xx.example.dt.yaml: phy@3: '#phy-cells' is a required property From schema: schemas/phy/phy-provider.yaml Cc: Maxime Ripard <mripard@kernel.org> Cc: Chen-Yu Tsai <wens@csie.org> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Jakub Kicinski <kuba@kernel.org> Cc: Robert Marko <robert.marko@sartura.hr> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: Ramesh Shanmugasundaram <rashanmu@gmail.com> Cc: "G. Jaya Kumaran" <vineetha.g.jaya.kumaran@intel.com> Cc: ChiYuan Huang <cy_huang@richtek.com> Cc: Wei Xu <xuwei5@hisilicon.com> Cc: Dilip Kota <eswara.kota@linux.intel.com> Cc: Karol Gugala <kgugala@antmicro.com> Cc: Mateusz Holenko <mholenko@antmicro.com> Cc: Olivier Moysan <olivier.moysan@st.com> Cc: Peter Ujfalusi <peter.ujfalusi@ti.com> Cc: dri-devel@lists.freedesktop.org Cc: linux-media@vger.kernel.org Cc: netdev@vger.kernel.org Cc: linux-rtc@vger.kernel.org Cc: alsa-devel@alsa-project.org Signed-off-by: Rob Herring <robh@kernel.org> Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> # For media Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de> Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de> Link: https://lore.kernel.org/r/20210720172025.363238-1-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/reset/intel,rcu-gw.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: System Reset Controller on Intel Gateway SoCs
|
|
|
|
maintainers:
|
|
- Dilip Kota <eswara.kota@linux.intel.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- intel,rcu-lgm
|
|
- intel,rcu-xrx200
|
|
|
|
reg:
|
|
description: Reset controller registers.
|
|
maxItems: 1
|
|
|
|
intel,global-reset:
|
|
description: Global reset register offset and bit offset.
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
|
items:
|
|
- description: Register offset
|
|
- description: Register bit offset
|
|
minimum: 0
|
|
maximum: 31
|
|
|
|
"#reset-cells":
|
|
minimum: 2
|
|
maximum: 3
|
|
description: |
|
|
First cell is reset request register offset.
|
|
Second cell is bit offset in reset request register.
|
|
Third cell is bit offset in reset status register.
|
|
For LGM SoC, reset cell count is 2 as bit offset in
|
|
reset request and reset status registers is same. Whereas
|
|
3 for legacy SoCs as bit offset differs.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- intel,global-reset
|
|
- "#reset-cells"
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
rcu0: reset-controller@e0000000 {
|
|
compatible = "intel,rcu-lgm";
|
|
reg = <0xe0000000 0x20000>;
|
|
intel,global-reset = <0x10 30>;
|
|
#reset-cells = <2>;
|
|
};
|
|
|
|
pwm: pwm@e0d00000 {
|
|
compatible = "intel,lgm-pwm";
|
|
reg = <0xe0d00000 0x30>;
|
|
clocks = <&cgu0 1>;
|
|
#pwm-cells = <2>;
|
|
resets = <&rcu0 0x30 21>;
|
|
};
|