diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2017-06-23 16:11:11 +0800 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-07-11 12:13:45 +0200 |
commit | 975e4abad2fabfb8aa3f0391e0ef07cc3aede905 (patch) | |
tree | 33709601143f118432d377c93cae3ad825d43dbd /board/geekbuying | |
parent | c541a7a12a233f3c77290ae6359c94fee9838e00 (diff) | |
download | u-boot-975e4abad2fabfb8aa3f0391e0ef07cc3aede905.tar.gz |
rockchip: correct the bank0 ram size
The bank0 ram size should be the DRAM size minus reserved size,
the DRAM size may be 1GB, 2GB, 4GB, we can not hard code it.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Added DECLARE_GLOBAL_DATA_PTR for RK3328, RK3368 and RK3399:
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'board/geekbuying')
-rw-r--r-- | board/geekbuying/geekbox/geekbox.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/geekbuying/geekbox/geekbox.c b/board/geekbuying/geekbox/geekbox.c index 422a03878e..88b67f9d5f 100644 --- a/board/geekbuying/geekbox/geekbox.c +++ b/board/geekbuying/geekbox/geekbox.c @@ -12,11 +12,3 @@ int board_init(void) { return 0; } - -int dram_init_banksize(void) -{ - gd->bd->bi_dram[0].start = 0; - gd->bd->bi_dram[0].size = 0x80000000; - - return 0; -} |