mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Now that the schema tools can extract type information for all properties (in order to decode dtb files), finding properties missing any type definition is fairly trivial though not yet automated. Fix the various property schemas which are missing a type. Most of these tend to be device specific properties which don't have a vendor prefix. A vendor prefix is how we normally ensure a type is defined. Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Sam Ravnborg <sam@ravnborg.org> # for everything in .../bindings/display/ Acked-by: Mark Brown <broonie@kernel.org> Acked-by: Peter Rosin <peda@axentia.se> Acked-by: Bartosz Golaszewski <brgl@bgdev.pl> Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com> Link: https://lore.kernel.org/r/20220519211411.2200720-1-robh@kernel.org
79 lines
1.5 KiB
YAML
79 lines
1.5 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/gpio/fairchild,74hc595.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Generic 8-bit shift register
|
|
|
|
maintainers:
|
|
- Maxime Ripard <mripard@kernel.org>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- fairchild,74hc595
|
|
- nxp,74lvc594
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
gpio-controller: true
|
|
|
|
'#gpio-cells':
|
|
description:
|
|
The second cell is only used to specify the GPIO polarity.
|
|
const: 2
|
|
|
|
registers-number:
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
description: Number of daisy-chained shift registers
|
|
|
|
enable-gpios:
|
|
description: GPIO connected to the OE (Output Enable) pin.
|
|
maxItems: 1
|
|
|
|
spi-max-frequency: true
|
|
|
|
patternProperties:
|
|
"^(hog-[0-9]+|.+-hog(-[0-9]+)?)$":
|
|
type: object
|
|
|
|
properties:
|
|
gpio-hog: true
|
|
gpios: true
|
|
output-high: true
|
|
output-low: true
|
|
line-name: true
|
|
|
|
required:
|
|
- gpio-hog
|
|
- gpios
|
|
|
|
additionalProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- gpio-controller
|
|
- '#gpio-cells'
|
|
- registers-number
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
spi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
gpio5: gpio5@0 {
|
|
compatible = "fairchild,74hc595";
|
|
reg = <0>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
registers-number = <4>;
|
|
spi-max-frequency = <100000>;
|
|
};
|
|
};
|