1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/mfd/syscon.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: System Controller Registers R/W Device Tree Bindings 8 9description: | 10 System controller node represents a register region containing a set 11 of miscellaneous registers. The registers are not cohesive enough to 12 represent as any specific type of device. The typical use-case is 13 for some other node's driver, or platform-specific code, to acquire 14 a reference to the syscon node (e.g. by phandle, node path, or 15 search using a specific compatible value), interrogate the node (or 16 associated OS driver) to determine the location of the registers, 17 and access the registers directly. 18 19maintainers: 20 - Lee Jones <lee.jones@linaro.org> 21 22select: 23 properties: 24 compatible: 25 contains: 26 enum: 27 - syscon 28 29 required: 30 - compatible 31 32properties: 33 compatible: 34 anyOf: 35 - items: 36 - enum: 37 - allwinner,sun8i-a83t-system-controller 38 - allwinner,sun8i-h3-system-controller 39 - allwinner,sun8i-v3s-system-controller 40 - allwinner,sun50i-a64-system-controller 41 - microchip,sparx5-cpu-syscon 42 - mstar,msc313-pmsleep 43 44 - const: syscon 45 46 - contains: 47 const: syscon 48 additionalItems: true 49 50 reg: 51 maxItems: 1 52 53 reg-io-width: 54 description: | 55 The size (in bytes) of the IO accesses that should be performed 56 on the device. 57 $ref: /schemas/types.yaml#/definitions/uint32 58 enum: [1, 2, 4, 8] 59 60 hwlocks: 61 maxItems: 1 62 description: 63 Reference to a phandle of a hardware spinlock provider node. 64 65required: 66 - compatible 67 - reg 68 69unevaluatedProperties: false 70 71examples: 72 - | 73 syscon: syscon@1c00000 { 74 compatible = "allwinner,sun8i-h3-system-controller", "syscon"; 75 reg = <0x01c00000 0x1000>; 76 }; 77 78 - | 79 gpr: iomuxc-gpr@20e0000 { 80 compatible = "fsl,imx6q-iomuxc-gpr", "syscon"; 81 reg = <0x020e0000 0x38>; 82 hwlocks = <&hwlock1 1>; 83 }; 84 85... 86