-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rockchip: rk3328: add spl board file support
rk3328 spl is locate at dram, so do not have strict size limit, suppose to enable storage media controller driver, load ATF and U-Boot, then boot into ATF. Change-Id: I60d0e2b278dc09b04bd098f682c06bd5fb6cecf7 Signed-off-by: Kever Yang <[email protected]>
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* (C) Copyright 2016 Rockchip Electronics Co., Ltd | ||
* | ||
* SPDX-License-Identifier: GPL-2.0+ | ||
*/ | ||
|
||
#include <common.h> | ||
#include <debug_uart.h> | ||
#include <dm.h> | ||
#include <dm/pinctrl.h> | ||
#include <ram.h> | ||
#include <spl.h> | ||
#include <asm/io.h> | ||
#include <asm/arch/cru_rk3328.h> | ||
#include <asm/arch/grf_rk3328.h> | ||
#include <asm/arch/hardware.h> | ||
#include <asm/arch/periph.h> | ||
#include <asm/arch/timer.h> | ||
|
||
DECLARE_GLOBAL_DATA_PTR; | ||
|
||
void board_debug_uart_init(void) | ||
{ | ||
} | ||
|
||
void board_init_f(ulong dummy) | ||
{ | ||
struct udevice *dev; | ||
int ret; | ||
|
||
ret = spl_early_init(); | ||
if (ret) { | ||
debug("spl_early_init() failed: %d\n", ret); | ||
hang(); | ||
} | ||
|
||
preloader_console_init(); | ||
|
||
ret = uclass_get_device(UCLASS_RAM, 0, &dev); | ||
if (ret) { | ||
debug("DRAM init failed: %d\n", ret); | ||
return; | ||
} | ||
} | ||
|
||
u32 spl_boot_mode(const u32 boot_device) | ||
{ | ||
return MMCSD_MODE_RAW; | ||
} | ||
|
||
u32 spl_boot_device(void) | ||
{ | ||
return BOOT_DEVICE_MMC1; | ||
} | ||
|
||
#ifdef CONFIG_SPL_LOAD_FIT | ||
int board_fit_config_name_match(const char *name) | ||
{ | ||
/* Just empty function now - can't decide what to choose */ | ||
debug("%s: %s\n", __func__, name); | ||
|
||
return 0; | ||
} | ||
#endif |