2013-05-08 08:06:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013, Google Inc.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011
|
|
|
|
* Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
|
|
|
|
* - Added prep subcommand support
|
|
|
|
* - Reorganized source - modeled after powerpc version
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2013-05-08 08:06:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <fdt_support.h>
|
2014-07-12 13:24:07 +00:00
|
|
|
#include <asm/armv7.h>
|
2013-05-08 08:06:03 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2014-07-12 13:24:06 +00:00
|
|
|
int arch_fixup_fdt(void *blob)
|
2013-05-08 08:06:03 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
2014-07-12 13:24:07 +00:00
|
|
|
int bank, ret;
|
2013-05-08 08:06:03 +00:00
|
|
|
u64 start[CONFIG_NR_DRAM_BANKS];
|
|
|
|
u64 size[CONFIG_NR_DRAM_BANKS];
|
|
|
|
|
|
|
|
for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
|
|
|
|
start[bank] = bd->bi_dram[bank].start;
|
|
|
|
size[bank] = bd->bi_dram[bank].size;
|
|
|
|
}
|
|
|
|
|
2014-07-12 13:24:07 +00:00
|
|
|
ret = fdt_fixup_memory_banks(blob, start, size, CONFIG_NR_DRAM_BANKS);
|
|
|
|
#if defined(CONFIG_ARMV7_NONSEC) || defined(CONFIG_ARMV7_VIRT)
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = armv7_update_dt(blob);
|
|
|
|
#endif
|
|
|
|
return ret;
|
2013-05-08 08:06:03 +00:00
|
|
|
}
|