mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +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. While re-indenting, drop unused labels. No functional changes here, but saves some comments during reviews of new patches built on existing code. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Sander Vanheule <sander@svanheule.net> Reviewed-by: Manikandan Muralidharan <manikandan.m@microchip.com> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Link: https://lore.kernel.org/r/20250324125326.82270-1-krzysztof.kozlowski@linaro.org Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
86 lines
2.0 KiB
YAML
86 lines
2.0 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
|
|
|
|
description: |
|
|
NOTE: These chips nominally don't have a chip select pin. They do however
|
|
have a rising-edge triggered latch clock (or storage register clock) pin,
|
|
which behaves like an active-low chip select.
|
|
|
|
After the bits are shifted into the shift register, CS# is driven high, which
|
|
the 74HC595 sees as a rising edge on the latch clock that results in a
|
|
transfer of the bits from the shift register to the storage register and thus
|
|
to the output pins.
|
|
_ _ _ _
|
|
shift clock ____| |_| |_..._| |_| |_________
|
|
|
|
latch clock * trigger
|
|
___ ________
|
|
chip select# |___________________|
|
|
|
|
|
|
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
|
|
|
|
patternProperties:
|
|
"^(hog-[0-9]+|.+-hog(-[0-9]+)?)$":
|
|
type: object
|
|
required:
|
|
- gpio-hog
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- gpio-controller
|
|
- '#gpio-cells'
|
|
- registers-number
|
|
|
|
allOf:
|
|
- $ref: /schemas/spi/spi-peripheral-props.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
spi {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
gpio5@0 {
|
|
compatible = "fairchild,74hc595";
|
|
reg = <0>;
|
|
gpio-controller;
|
|
#gpio-cells = <2>;
|
|
registers-number = <4>;
|
|
spi-max-frequency = <100000>;
|
|
};
|
|
};
|