File: cronus.dts.m4

package info (click to toggle)
pdbg 3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,936 kB
  • sloc: ansic: 19,119; sh: 3,181; cpp: 1,554; makefile: 282; asm: 18
file content (52 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
dnl
dnl CHIP([index])
dnl
define(`CHIP',
`
       fsi$1 {
		compatible = "ibm,cronus-fsi";
		index = <0x$1>;
		system-path = "/proc$1/fsi";
	};

	pib$1 {
		compatible = "ibm,cronus-pib";
		index = <0x$1>;
		system-path = "/proc$1/pib";
	};

	sbefifo$1 {
		compatible = "ibm,cronus-sbefifo";
		index = <0x$1>;

		sbefifo-chipop {
			compatible = "ibm,sbefifo-chipop";
			index = <0x$1>;
		};

		sbefifo-mem {
			compatible = "ibm,sbefifo-mem";
			index = <0x$1>;
			system-path = "/mem$1";
		};

		sbefifo-pba {
			compatible = "ibm,sbefifo-mem-pba";
			index = <0x$1>;
			system-path = "/mempba$1";
		};
	};
')dnl

/dts-v1/;

/ {
	CHIP(0)
	CHIP(1)
	CHIP(2)
	CHIP(3)
	CHIP(4)
	CHIP(5)
	CHIP(6)
	CHIP(7)
};