mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-19 12:03:56 -04:00
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
101 lines
1.9 KiB
YAML
101 lines
1.9 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/net/nfc/samsung,s3fwrn5.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Samsung S3FWRN5 NCI NFC Controller
|
|
|
|
maintainers:
|
|
- Krzysztof Kozlowski <krzk@kernel.org>
|
|
- Krzysztof Opasiak <k.opasiak@samsung.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- samsung,s3fwrn5-i2c
|
|
- samsung,s3fwrn82
|
|
|
|
en-gpios:
|
|
maxItems: 1
|
|
description:
|
|
Output GPIO pin used for enabling/disabling the chip
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
wake-gpios:
|
|
maxItems: 1
|
|
description:
|
|
Output GPIO pin used to enter firmware mode and sleep/wakeup control
|
|
|
|
s3fwrn5,en-gpios:
|
|
maxItems: 1
|
|
deprecated: true
|
|
description:
|
|
Use en-gpios
|
|
|
|
s3fwrn5,fw-gpios:
|
|
maxItems: 1
|
|
deprecated: true
|
|
description:
|
|
Use wake-gpios
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- en-gpios
|
|
- wake-gpios
|
|
|
|
allOf:
|
|
- if:
|
|
properties:
|
|
compatible:
|
|
contains:
|
|
const: samsung,s3fwrn5-i2c
|
|
then:
|
|
required:
|
|
- interrupts
|
|
- reg
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
i2c4 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
s3fwrn5@27 {
|
|
compatible = "samsung,s3fwrn5-i2c";
|
|
reg = <0x27>;
|
|
|
|
interrupt-parent = <&gpa1>;
|
|
interrupts = <3 IRQ_TYPE_EDGE_RISING>;
|
|
|
|
en-gpios = <&gpf1 4 GPIO_ACTIVE_HIGH>;
|
|
wake-gpios = <&gpj0 2 GPIO_ACTIVE_HIGH>;
|
|
|
|
clocks = <&rpmcc 20>;
|
|
};
|
|
};
|
|
# UART example on Raspberry Pi
|
|
- |
|
|
uart0 {
|
|
nfc {
|
|
compatible = "samsung,s3fwrn82";
|
|
|
|
en-gpios = <&gpio 20 GPIO_ACTIVE_HIGH>;
|
|
wake-gpios = <&gpio 16 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
};
|