mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-19 21:01:51 +02:00
board: ti: am62p|j722s: Add ti_set_fdt_env for fdtfile
stdboot and legacy boot depend on fdtfile. Since findfdt is getting deprecated, move the rest of k3 platforms dependent on findfdt to ti_set_fdt_env. Populate fdtfile by calling ti_set_fdt_env in board files. Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
This commit is contained in:
parent
899b088674
commit
42acb8dab8
@ -13,6 +13,7 @@
|
|||||||
#include <env.h>
|
#include <env.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
|
#include "../common/fdt_ops.h"
|
||||||
|
|
||||||
struct efi_fw_image fw_images[] = {
|
struct efi_fw_image fw_images[] = {
|
||||||
{
|
{
|
||||||
@ -61,3 +62,11 @@ int dram_init_banksize(void)
|
|||||||
{
|
{
|
||||||
return fdtdec_setup_memory_banksize();
|
return fdtdec_setup_memory_banksize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if IS_ENABLED(CONFIG_BOARD_LATE_INIT)
|
||||||
|
int board_late_init(void)
|
||||||
|
{
|
||||||
|
ti_set_fdt_env(NULL, NULL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#include <env.h>
|
#include <env.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
|
#include "../common/fdt_ops.h"
|
||||||
|
|
||||||
int board_init(void)
|
int board_init(void)
|
||||||
{
|
{
|
||||||
@ -27,3 +28,11 @@ int dram_init_banksize(void)
|
|||||||
{
|
{
|
||||||
return fdtdec_setup_memory_banksize();
|
return fdtdec_setup_memory_banksize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if IS_ENABLED(CONFIG_BOARD_LATE_INIT)
|
||||||
|
int board_late_init(void)
|
||||||
|
{
|
||||||
|
ti_set_fdt_env(NULL, NULL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user