mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
Added pci@8000 block.
Updated ethernet interrupt mappings (moved up 48). Cleaned up a few comments. Signed-off-by: Jon Loeliger <jdl@jdl.com>
This commit is contained in:
parent
3033ebb20f
commit
ed45d6c930
@ -30,7 +30,7 @@
|
|||||||
i-cache-line-size = <20>; // 32 bytes
|
i-cache-line-size = <20>; // 32 bytes
|
||||||
d-cache-size = <8000>; // L1, 32K
|
d-cache-size = <8000>; // L1, 32K
|
||||||
i-cache-size = <8000>; // L1, 32K
|
i-cache-size = <8000>; // L1, 32K
|
||||||
timebase-frequency = <0>; // 33 MHz, from uboot
|
timebase-frequency = <0>; // 33 MHz, from uboot
|
||||||
bus-frequency = <0>; // From uboot
|
bus-frequency = <0>; // From uboot
|
||||||
clock-frequency = <0>; // From uboot
|
clock-frequency = <0>; // From uboot
|
||||||
32-bit;
|
32-bit;
|
||||||
@ -44,7 +44,7 @@
|
|||||||
i-cache-line-size = <20>; // 32 bytes
|
i-cache-line-size = <20>; // 32 bytes
|
||||||
d-cache-size = <8000>; // L1, 32K
|
d-cache-size = <8000>; // L1, 32K
|
||||||
i-cache-size = <8000>; // L1, 32K
|
i-cache-size = <8000>; // L1, 32K
|
||||||
timebase-frequency = <0>; // 33 MHz, from uboot
|
timebase-frequency = <0>; // 33 MHz, from uboot
|
||||||
bus-frequency = <0>; // From uboot
|
bus-frequency = <0>; // From uboot
|
||||||
clock-frequency = <0>; // From uboot
|
clock-frequency = <0>; // From uboot
|
||||||
32-bit;
|
32-bit;
|
||||||
@ -55,7 +55,7 @@
|
|||||||
memory {
|
memory {
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
linux,phandle = <300>;
|
linux,phandle = <300>;
|
||||||
reg = <00000000 40000000>; // 1G at 0x0, replaced by uboot
|
reg = <00000000 40000000>; // 1G at 0x0
|
||||||
};
|
};
|
||||||
|
|
||||||
soc8641@f8000000 {
|
soc8641@f8000000 {
|
||||||
@ -95,28 +95,28 @@
|
|||||||
ethernet-phy@0 {
|
ethernet-phy@0 {
|
||||||
linux,phandle = <2452000>;
|
linux,phandle = <2452000>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
interrupts = <a 0>;
|
interrupts = <3a 0>;
|
||||||
reg = <0>;
|
reg = <0>;
|
||||||
device_type = "ethernet-phy";
|
device_type = "ethernet-phy";
|
||||||
};
|
};
|
||||||
ethernet-phy@1 {
|
ethernet-phy@1 {
|
||||||
linux,phandle = <2452001>;
|
linux,phandle = <2452001>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
interrupts = <a 0>;
|
interrupts = <3a 0>;
|
||||||
reg = <1>;
|
reg = <1>;
|
||||||
device_type = "ethernet-phy";
|
device_type = "ethernet-phy";
|
||||||
};
|
};
|
||||||
ethernet-phy@2 {
|
ethernet-phy@2 {
|
||||||
linux,phandle = <2452002>;
|
linux,phandle = <2452002>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
interrupts = <a 0>;
|
interrupts = <3a 0>;
|
||||||
reg = <2>;
|
reg = <2>;
|
||||||
device_type = "ethernet-phy";
|
device_type = "ethernet-phy";
|
||||||
};
|
};
|
||||||
ethernet-phy@3 {
|
ethernet-phy@3 {
|
||||||
linux,phandle = <2452003>;
|
linux,phandle = <2452003>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
interrupts = <a 0>;
|
interrupts = <3a 0>;
|
||||||
reg = <3>;
|
reg = <3>;
|
||||||
device_type = "ethernet-phy";
|
device_type = "ethernet-phy";
|
||||||
};
|
};
|
||||||
@ -176,8 +176,8 @@
|
|||||||
serial@4500 {
|
serial@4500 {
|
||||||
device_type = "serial";
|
device_type = "serial";
|
||||||
compatible = "ns16550";
|
compatible = "ns16550";
|
||||||
reg = <4500 100>; // reg base, size
|
reg = <4500 100>;
|
||||||
clock-frequency = <0>; // should we fill in in uboot?
|
clock-frequency = <0>;
|
||||||
interrupts = <2a 3>;
|
interrupts = <2a 3>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
};
|
};
|
||||||
@ -185,12 +185,120 @@
|
|||||||
serial@4600 {
|
serial@4600 {
|
||||||
device_type = "serial";
|
device_type = "serial";
|
||||||
compatible = "ns16550";
|
compatible = "ns16550";
|
||||||
reg = <4600 100>; // reg base, size
|
reg = <4600 100>;
|
||||||
clock-frequency = <0>; // should we fill in in uboot?
|
clock-frequency = <0>;
|
||||||
interrupts = <2a 3>;
|
interrupts = <2a 3>;
|
||||||
interrupt-parent = <40000>;
|
interrupt-parent = <40000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pci@8000 {
|
||||||
|
compatible = "86xx";
|
||||||
|
device_type = "pci";
|
||||||
|
linux,phandle = <8000>;
|
||||||
|
#interrupt-cells = <1>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
#address-cells = <3>;
|
||||||
|
reg = <8000 1000>;
|
||||||
|
bus-range = <0 fe>;
|
||||||
|
ranges = <02000000 0 80000000 80000000 0 20000000
|
||||||
|
01000000 0 00000000 e2000000 0 00100000>;
|
||||||
|
clock-frequency = <1fca055>;
|
||||||
|
interrupt-parent = <40000>;
|
||||||
|
interrupts = <8 0>;
|
||||||
|
interrupt-map-mask = <f800 0 0 7>;
|
||||||
|
interrupt-map = <
|
||||||
|
/* IDSEL 0x11 */
|
||||||
|
8800 0 0 1 40000 3 0
|
||||||
|
8800 0 0 2 40000 4 0
|
||||||
|
8800 0 0 3 40000 5 0
|
||||||
|
8800 0 0 4 40000 6 0
|
||||||
|
|
||||||
|
/* IDSEL 0x12 */
|
||||||
|
9000 0 0 1 40000 4 0
|
||||||
|
9000 0 0 2 40000 5 0
|
||||||
|
9000 0 0 3 40000 6 0
|
||||||
|
9000 0 0 4 40000 3 0
|
||||||
|
|
||||||
|
/* IDSEL 0x13 */
|
||||||
|
9800 0 0 1 40000 5 0
|
||||||
|
9800 0 0 2 40000 6 0
|
||||||
|
9800 0 0 3 40000 3 0
|
||||||
|
9800 0 0 4 40000 4 0
|
||||||
|
|
||||||
|
/* IDSEL 0x14 */
|
||||||
|
a000 0 0 1 40000 6 0
|
||||||
|
a000 0 0 2 40000 3 0
|
||||||
|
a000 0 0 3 40000 4 0
|
||||||
|
a000 0 0 4 40000 5 0
|
||||||
|
|
||||||
|
/* IDSEL 0x15 */
|
||||||
|
a800 0 0 1 40000 0 0
|
||||||
|
a800 0 0 2 40000 0 0
|
||||||
|
a800 0 0 3 40000 0 0
|
||||||
|
a800 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x16 */
|
||||||
|
b000 0 0 1 40000 0 0
|
||||||
|
b000 0 0 2 40000 0 0
|
||||||
|
b000 0 0 3 40000 0 0
|
||||||
|
b000 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x17 */
|
||||||
|
b800 0 0 1 40000 0 0
|
||||||
|
b800 0 0 2 40000 0 0
|
||||||
|
b800 0 0 3 40000 0 0
|
||||||
|
b800 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x18 */
|
||||||
|
c000 0 0 1 40000 0 0
|
||||||
|
c000 0 0 2 40000 0 0
|
||||||
|
c000 0 0 3 40000 0 0
|
||||||
|
c000 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x19 */
|
||||||
|
c800 0 0 1 40000 0 0
|
||||||
|
c800 0 0 2 40000 0 0
|
||||||
|
c800 0 0 3 40000 0 0
|
||||||
|
c800 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x1a */
|
||||||
|
d000 0 0 1 40000 0 0
|
||||||
|
d000 0 0 2 40000 0 0
|
||||||
|
d000 0 0 3 40000 0 0
|
||||||
|
d000 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
|
||||||
|
/* IDSEL 0x1b */
|
||||||
|
d800 0 0 1 40000 0 0
|
||||||
|
d800 0 0 2 40000 0 0
|
||||||
|
d800 0 0 3 40000 0 0
|
||||||
|
d800 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x1c */
|
||||||
|
e000 0 0 1 40000 0 0
|
||||||
|
e000 0 0 2 40000 0 0
|
||||||
|
e000 0 0 3 40000 0 0
|
||||||
|
e000 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x1d */
|
||||||
|
e800 0 0 1 40000 0 0
|
||||||
|
e800 0 0 2 40000 0 0
|
||||||
|
e800 0 0 3 40000 0 0
|
||||||
|
e800 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x1e */
|
||||||
|
f000 0 0 1 40000 0 0
|
||||||
|
f000 0 0 2 40000 0 0
|
||||||
|
f000 0 0 3 40000 0 0
|
||||||
|
f000 0 0 4 40000 0 0
|
||||||
|
|
||||||
|
/* IDSEL 0x1f */
|
||||||
|
f800 0 0 1 40000 6 0
|
||||||
|
f800 0 0 2 40000 6 0
|
||||||
|
f800 0 0 3 40000 6 0
|
||||||
|
f800 0 0 4 40000 6 0
|
||||||
|
>;
|
||||||
|
};
|
||||||
pic@40000 {
|
pic@40000 {
|
||||||
linux,phandle = <40000>;
|
linux,phandle = <40000>;
|
||||||
clock-frequency = <0>;
|
clock-frequency = <0>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user