2021-08-04 13:43:58 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Google LLC
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <autoconf.h>
|
|
|
|
#include <linker/sections.h>
|
|
|
|
#include <devicetree.h>
|
|
|
|
|
|
|
|
#include <linker/linker-defs.h>
|
|
|
|
#include <linker/linker-tool.h>
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
{
|
2021-09-28 15:15:37 +08:00
|
|
|
LINKER_DT_RESERVED_MEM_REGIONS()
|
2021-08-04 13:43:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2021-09-28 15:15:37 +08:00
|
|
|
LINKER_DT_RESERVED_MEM_SECTIONS()
|
2021-08-04 13:43:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#include <arch/arm64/scripts/linker.ld>
|