diff options
Diffstat (limited to 'Documentation/devicetree/bindings/arm/gic-v3.txt')
-rw-r--r-- | Documentation/devicetree/bindings/arm/gic-v3.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/gic-v3.txt b/Documentation/devicetree/bindings/arm/gic-v3.txt index ddfade40ac59..7803e77d85cb 100644 --- a/Documentation/devicetree/bindings/arm/gic-v3.txt +++ b/Documentation/devicetree/bindings/arm/gic-v3.txt | |||
@@ -57,6 +57,8 @@ used to route Message Signalled Interrupts (MSI) to the CPUs. | |||
57 | These nodes must have the following properties: | 57 | These nodes must have the following properties: |
58 | - compatible : Should at least contain "arm,gic-v3-its". | 58 | - compatible : Should at least contain "arm,gic-v3-its". |
59 | - msi-controller : Boolean property. Identifies the node as an MSI controller | 59 | - msi-controller : Boolean property. Identifies the node as an MSI controller |
60 | - #msi-cells: Must be <1>. The single msi-cell is the DeviceID of the device | ||
61 | which will generate the MSI. | ||
60 | - reg: Specifies the base physical address and size of the ITS | 62 | - reg: Specifies the base physical address and size of the ITS |
61 | registers. | 63 | registers. |
62 | 64 | ||
@@ -83,6 +85,7 @@ Examples: | |||
83 | gic-its@2c200000 { | 85 | gic-its@2c200000 { |
84 | compatible = "arm,gic-v3-its"; | 86 | compatible = "arm,gic-v3-its"; |
85 | msi-controller; | 87 | msi-controller; |
88 | #msi-cells = <1>; | ||
86 | reg = <0x0 0x2c200000 0 0x200000>; | 89 | reg = <0x0 0x2c200000 0 0x200000>; |
87 | }; | 90 | }; |
88 | }; | 91 | }; |
@@ -107,12 +110,14 @@ Examples: | |||
107 | gic-its@2c200000 { | 110 | gic-its@2c200000 { |
108 | compatible = "arm,gic-v3-its"; | 111 | compatible = "arm,gic-v3-its"; |
109 | msi-controller; | 112 | msi-controller; |
113 | #msi-cells = <1>; | ||
110 | reg = <0x0 0x2c200000 0 0x200000>; | 114 | reg = <0x0 0x2c200000 0 0x200000>; |
111 | }; | 115 | }; |
112 | 116 | ||
113 | gic-its@2c400000 { | 117 | gic-its@2c400000 { |
114 | compatible = "arm,gic-v3-its"; | 118 | compatible = "arm,gic-v3-its"; |
115 | msi-controller; | 119 | msi-controller; |
120 | #msi-cells = <1>; | ||
116 | reg = <0x0 0x2c400000 0 0x200000>; | 121 | reg = <0x0 0x2c400000 0 0x200000>; |
117 | }; | 122 | }; |
118 | }; | 123 | }; |