mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
mxs: spl_mem_init: Change EMI port priority
FSL bootlets code set the PORT_PRIORITY_ORDER field of register HW_EMI_CTRL as 0x2, which means: PORT0231 = 0x02 Priority Order: AXI0, AHB2, AHB3, AHB1 Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
This commit is contained in:
parent
39a538d992
commit
fb7383a7a2
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ static void mx23_mem_init(void)
|
|||
early_delay(20000);
|
||||
|
||||
/* Adjust EMI port priority. */
|
||||
clrsetbits_le32(0x80020000, 0x1f << 16, 0x8);
|
||||
clrsetbits_le32(0x80020000, 0x1f << 16, 0x2);
|
||||
early_delay(20000);
|
||||
|
||||
setbits_le32(MXS_DRAM_BASE + 0x40, 1 << 19);
|
||||
|
|
Loading…
Reference in a new issue