mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
Orion5x: Correct DRAM bank detection
This commit is contained in:
parent
81a9ab21ca
commit
286a5b253a
2 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,7 @@ u32 orion5x_sdram_bar(enum memory_bank bank)
|
|||
{
|
||||
struct orion5x_ddr_addr_decode_registers *winregs =
|
||||
(struct orion5x_ddr_addr_decode_registers *)
|
||||
ORION5X_CPU_WIN_BASE;
|
||||
ORION5X_DRAM_BASE;
|
||||
|
||||
u32 result = 0;
|
||||
u32 enable = 0x01 & winregs[bank].size;
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#define ORION5X_REGISTER(x) (ORION5X_REGS_PHY_BASE + x)
|
||||
|
||||
/* Documented registers */
|
||||
#define ORION5X_DRAM_BASE (ORION5X_REGISTER(0x01500))
|
||||
#define ORION5X_TWSI_BASE (ORION5X_REGISTER(0x11000))
|
||||
#define ORION5X_UART0_BASE (ORION5X_REGISTER(0x12000))
|
||||
#define ORION5X_UART1_BASE (ORION5X_REGISTER(0x12100))
|
||||
|
|
Loading…
Reference in a new issue