~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/gpio/gpio-latch.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/gpio/gpio-latch.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: GPIO latch controller
  8 
  9 maintainers:
 10   - Sascha Hauer <s.hauer@pengutronix.de>
 11 
 12 description: |
 13   This binding describes a GPIO multiplexer based on latches connected to
 14   other GPIOs, like this:
 15 
 16   CLK0 ----------------------.        ,--------.
 17   CLK1 -------------------.  `--------|>    #0 |
 18                           |           |        |
 19   OUT0 ----------------+--|-----------|D0    Q0|-----|<
 20   OUT1 --------------+-|--|-----------|D1    Q1|-----|<
 21   OUT2 ------------+-|-|--|-----------|D2    Q2|-----|<
 22   OUT3 ----------+-|-|-|--|-----------|D3    Q3|-----|<
 23   OUT4 --------+-|-|-|-|--|-----------|D4    Q4|-----|<
 24   OUT5 ------+-|-|-|-|-|--|-----------|D5    Q5|-----|<
 25   OUT6 ----+-|-|-|-|-|-|--|-----------|D6    Q6|-----|<
 26   OUT7 --+-|-|-|-|-|-|-|--|-----------|D7    Q7|-----|<
 27          | | | | | | | |  |           `--------'
 28          | | | | | | | |  |
 29          | | | | | | | |  |           ,--------.
 30          | | | | | | | |  `-----------|>    #1 |
 31          | | | | | | | |              |        |
 32          | | | | | | | `--------------|D0    Q0|-----|<
 33          | | | | | | `----------------|D1    Q1|-----|<
 34          | | | | | `------------------|D2    Q2|-----|<
 35          | | | | `--------------------|D3    Q3|-----|<
 36          | | | `----------------------|D4    Q4|-----|<
 37          | | `------------------------|D5    Q5|-----|<
 38          | `--------------------------|D6    Q6|-----|<
 39          `----------------------------|D7    Q7|-----|<
 40                                       `--------'
 41 
 42   The number of clk-gpios and latched-gpios is not fixed. The actual number
 43   of number of latches and the number of inputs per latch is derived from
 44   the number of GPIOs given in the corresponding device tree properties.
 45 
 46 properties:
 47   compatible:
 48     const: gpio-latch
 49   "#gpio-cells":
 50     const: 2
 51 
 52   clk-gpios:
 53     description: Array of GPIOs to be used to clock a latch
 54 
 55   latched-gpios:
 56     description: Array of GPIOs to be used as inputs per latch
 57 
 58   setup-duration-ns:
 59     description: Delay in nanoseconds to wait after the latch inputs have been
 60       set up
 61 
 62   clock-duration-ns:
 63     description: Delay in nanoseconds to wait between clock output changes
 64 
 65   gpio-controller: true
 66 
 67   gpio-line-names: true
 68 
 69 required:
 70   - compatible
 71   - "#gpio-cells"
 72   - gpio-controller
 73   - clk-gpios
 74   - latched-gpios
 75 
 76 additionalProperties: false
 77 
 78 examples:
 79   - |
 80     gpio-latch {
 81         #gpio-cells = <2>;
 82         pinctrl-names = "default";
 83         pinctrl-0 = <&pinctrl_di_do_leds>;
 84         compatible = "gpio-latch";
 85         gpio-controller;
 86         setup-duration-ns = <100>;
 87         clock-duration-ns = <100>;
 88 
 89         clk-gpios = <&gpio3 7 0>, <&gpio3 8 0>;
 90         latched-gpios = <&gpio3 21 0>, <&gpio3 22 0>,
 91                        <&gpio3 23 0>, <&gpio3 24 0>,
 92                        <&gpio3 25 0>, <&gpio3 26 0>,
 93                        <&gpio3 27 0>, <&gpio3 28 0>;
 94     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php