1* ARM CCN (Cache Coherent Network)
2
3Required properties:
4
5- compatible: (standard compatible string) should be one of:
6	"arm,ccn-504"
7	"arm,ccn-508"
8
9- reg: (standard registers property) physical address and size
10	(16MB) of the configuration registers block
11
12- interrupts: (standard interrupt property) single interrupt
13	generated by the control block
14
15Example:
16
17	ccn@0x2000000000 {
18		compatible = "arm,ccn-504";
19		reg = <0x20 0x00000000 0 0x1000000>;
20		interrupts = <0 181 4>;
21	};
22