We don't support SDRAM init in 64-bit mode since it is essentially impossible to get into that mode before SDRAM set up. Provide dummy functions for now. At some point we will need to pass the SDRAM parameters through from SPL. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>master
parent
45cc9e4cc5
commit
1b4086307e
@ -0,0 +1,18 @@ |
||||
/*
|
||||
* Copyright (c) 2016 Google, Inc |
||||
* |
||||
* SPDX-License-Identifier: GPL-2.0 |
||||
*/ |
||||
|
||||
#include <common.h> |
||||
|
||||
DECLARE_GLOBAL_DATA_PTR; |
||||
|
||||
int dram_init(void) |
||||
{ |
||||
gd->ram_size = 1ULL << 31; |
||||
gd->bd->bi_dram[0].start = 0; |
||||
gd->bd->bi_dram[0].size = gd->ram_size; |
||||
|
||||
return 0; |
||||
} |
Loading…
Reference in new issue