-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xtensa: xtfpga: introduce SoC I/O bus
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
- Loading branch information
Max Filippov
committed
Apr 6, 2014
1 parent
6555910
commit 08a7bbf
Showing
3 changed files
with
64 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
/ { | ||
flash: flash@f8000000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "cfi-flash"; | ||
reg = <0xf8000000 0x01000000>; | ||
bank-width = <2>; | ||
device-width = <2>; | ||
partition@0x0 { | ||
label = "boot loader area"; | ||
reg = <0x00000000 0x00400000>; | ||
soc { | ||
flash: flash@08000000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "cfi-flash"; | ||
reg = <0x08000000 0x01000000>; | ||
bank-width = <2>; | ||
device-width = <2>; | ||
partition@0x0 { | ||
label = "boot loader area"; | ||
reg = <0x00000000 0x00400000>; | ||
}; | ||
partition@0x400000 { | ||
label = "kernel image"; | ||
reg = <0x00400000 0x00600000>; | ||
}; | ||
partition@0xa00000 { | ||
label = "data"; | ||
reg = <0x00a00000 0x005e0000>; | ||
}; | ||
partition@0xfe0000 { | ||
label = "boot environment"; | ||
reg = <0x00fe0000 0x00020000>; | ||
}; | ||
}; | ||
partition@0x400000 { | ||
label = "kernel image"; | ||
reg = <0x00400000 0x00600000>; | ||
}; | ||
partition@0xa00000 { | ||
label = "data"; | ||
reg = <0x00a00000 0x005e0000>; | ||
}; | ||
partition@0xfe0000 { | ||
label = "boot environment"; | ||
reg = <0x00fe0000 0x00020000>; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
/ { | ||
flash: flash@f8000000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "cfi-flash"; | ||
reg = <0xf8000000 0x00400000>; | ||
bank-width = <2>; | ||
device-width = <2>; | ||
partition@0x0 { | ||
label = "boot loader area"; | ||
reg = <0x00000000 0x003f0000>; | ||
soc { | ||
flash: flash@08000000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "cfi-flash"; | ||
reg = <0x08000000 0x00400000>; | ||
bank-width = <2>; | ||
device-width = <2>; | ||
partition@0x0 { | ||
label = "boot loader area"; | ||
reg = <0x00000000 0x003f0000>; | ||
}; | ||
partition@0x3f0000 { | ||
label = "boot environment"; | ||
reg = <0x003f0000 0x00010000>; | ||
}; | ||
}; | ||
partition@0x3f0000 { | ||
label = "boot environment"; | ||
reg = <0x003f0000 0x00010000>; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters