blob: a804d9bc1602770e763d21ce7e95ceccaa84f450 [file] [log] [blame]
Masahiro Yamada849b1042020-02-22 15:04:35 +09001# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/pinctrl/socionext,uniphier-pinctrl.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: UniPhier SoCs pin controller
8
9maintainers:
10 - Masahiro Yamada <yamada.masahiro@socionext.com>
11
12properties:
13 $nodename:
14 pattern: "pinctrl"
15
16 compatible:
17 enum:
18 - socionext,uniphier-ld4-pinctrl
19 - socionext,uniphier-pro4-pinctrl
20 - socionext,uniphier-sld8-pinctrl
21 - socionext,uniphier-pro5-pinctrl
22 - socionext,uniphier-pxs2-pinctrl
23 - socionext,uniphier-ld6b-pinctrl
24 - socionext,uniphier-ld11-pinctrl
25 - socionext,uniphier-ld20-pinctrl
26 - socionext,uniphier-pxs3-pinctrl
Kunihiko Hayashif66e1732021-10-06 20:10:05 +090027 - socionext,uniphier-nx1-pinctrl
Masahiro Yamada849b1042020-02-22 15:04:35 +090028
29required:
30 - compatible
31
Rob Herring5be478f2020-10-02 18:41:43 -050032additionalProperties: false
33
Masahiro Yamada849b1042020-02-22 15:04:35 +090034examples:
35 - |
36 // The UniPhier pinctrl should be a subnode of a "syscon" compatible node.
37
38 soc-glue@5f800000 {
39 compatible = "socionext,uniphier-pro4-soc-glue", "simple-mfd", "syscon";
40 reg = <0x5f800000 0x2000>;
41
42 pinctrl: pinctrl {
43 compatible = "socionext,uniphier-pro4-pinctrl";
44 };
45 };