mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
driver/ddr: Add 256 byte interleaving support
Freescale LayerScape SoCs support controller interleaving on 256 byte size. This interleaving is mandoratory. Signed-off-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
6b9e309a8a
commit
6b1e1254f3
6 changed files with 26 additions and 2 deletions
|
@ -228,6 +228,9 @@ void board_add_ram_info(int use_default)
|
|||
puts(" DDR Controller Interleaving Mode: ");
|
||||
|
||||
switch ((cs0_config >> 24) & 0xf) {
|
||||
case FSL_DDR_256B_INTERLEAVING:
|
||||
puts("256B");
|
||||
break;
|
||||
case FSL_DDR_CACHE_LINE_INTERLEAVING:
|
||||
puts("cache line");
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue