GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Copyright (C) 2016 Imagination Technologies
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <fdt_support.h>
|
||||
|
||||
int ft_board_setup(void *blob, bd_t *bd)
|
||||
{
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
u64 mem_start[2], mem_size[2];
|
||||
int mem_regions;
|
||||
|
||||
mem_start[0] = 0;
|
||||
mem_size[0] = min_t(u64, 256llu << 20, gd->ram_size);
|
||||
mem_regions = 1;
|
||||
|
||||
if (gd->ram_size > mem_size[0]) {
|
||||
mem_start[1] = 0x80000000 + mem_size[0];
|
||||
mem_size[1] = gd->ram_size - mem_size[0];
|
||||
mem_regions++;
|
||||
}
|
||||
|
||||
return fdt_fixup_memory_banks(blob, mem_start, mem_size, mem_regions);
|
||||
}
|
||||
Reference in New Issue
Block a user