Statistics
| Branch: | Revision:

root / pc-bios / mpc8544ds.dts @ dd0bcfca

History | View | Annotate | Download (2.6 kB)

1
/*
2
 * MPC8544 DS Device Tree Source
3
 *
4
 * Copyright 2007, 2008 Freescale Semiconductor Inc.
5
 *
6
 * This program is free software; you can redistribute  it and/or modify it
7
 * under  the terms of  the GNU General  Public License as published by the
8
 * Free Software Foundation;  either version 2 of the  License, or (at your
9
 * option) any later version.
10
 */
11

    
12
/dts-v1/;
13
/ {
14
	model = "MPC8544DS";
15
	compatible = "MPC8544DS", "MPC85xxDS";
16
	#address-cells = <1>;
17
	#size-cells = <1>;
18

    
19
	aliases {
20
		serial0 = &serial0;
21
		serial1 = &serial1;
22
		pci0 = &pci0;
23
	};
24

    
25
	cpus {
26
		#address-cells = <1>;
27
		#size-cells = <0>;
28
	};
29

    
30
	soc8544@e0000000 {
31
		#address-cells = <1>;
32
		#size-cells = <1>;
33
		device_type = "soc";
34
		compatible = "simple-bus";
35

    
36
		ranges = <0x0 0xe0000000 0x100000>;
37
		reg = <0xe0000000 0x1000>;	// CCSRBAR 1M
38
		bus-frequency = <0>;		// Filled out by uboot.
39

    
40
		serial0: serial@4500 {
41
			cell-index = <0>;
42
			device_type = "serial";
43
			compatible = "ns16550";
44
			reg = <0x4500 0x100>;
45
			clock-frequency = <0>;
46
			interrupts = <42 2>;
47
			interrupt-parent = <&mpic>;
48
		};
49

    
50
		serial1: serial@4600 {
51
			cell-index = <1>;
52
			device_type = "serial";
53
			compatible = "ns16550";
54
			reg = <0x4600 0x100>;
55
			clock-frequency = <0>;
56
			interrupts = <42 2>;
57
			interrupt-parent = <&mpic>;
58
		};
59

    
60
		mpic: pic@40000 {
61
			interrupt-controller;
62
			#address-cells = <0>;
63
			#interrupt-cells = <2>;
64
			reg = <0x40000 0x40000>;
65
			compatible = "chrp,open-pic";
66
			device_type = "open-pic";
67
		};
68

    
69
                global-utilities@e0000 {        //global utilities block
70
                        compatible = "fsl,mpc8544-guts";
71
                        reg = <0xe0000 0x1000>;
72
                        fsl,has-rstcr;
73
                };
74
	};
75

    
76
	pci0: pci@e0008000 {
77
		cell-index = <0>;
78
		compatible = "fsl,mpc8540-pci";
79
		device_type = "pci";
80
		interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
81
		interrupt-map = <
82

    
83
			/* IDSEL 0x11 J17 Slot 1 */
84
			0x8800 0x0 0x0 0x1 &mpic 0x2 0x1
85
			0x8800 0x0 0x0 0x2 &mpic 0x3 0x1
86
			0x8800 0x0 0x0 0x3 &mpic 0x4 0x1
87
			0x8800 0x0 0x0 0x4 &mpic 0x1 0x1
88

    
89
			/* IDSEL 0x12 J16 Slot 2 */
90

    
91
			0x9000 0x0 0x0 0x1 &mpic 0x3 0x1
92
			0x9000 0x0 0x0 0x2 &mpic 0x4 0x1
93
			0x9000 0x0 0x0 0x3 &mpic 0x2 0x1
94
			0x9000 0x0 0x0 0x4 &mpic 0x1 0x1>;
95

    
96
		interrupt-parent = <&mpic>;
97
		interrupts = <24 2>;
98
		bus-range = <0 255>;
99
		ranges = <0x2000000 0x0 0xc0000000 0xc0000000 0x0 0x20000000
100
			  0x1000000 0x0 0x0 0xe1000000 0x0 0x10000>;
101
		clock-frequency = <66666666>;
102
		#interrupt-cells = <1>;
103
		#size-cells = <2>;
104
		#address-cells = <3>;
105
		reg = <0xe0008000 0x1000>;
106
	};
107

    
108
	chosen {
109
		linux,stdout-path = "/soc8544@e0000000/serial@4500";
110
	};
111

    
112
	hypervisor {
113
	};
114
};