71 lines
2.1 KiB
C
71 lines
2.1 KiB
C
/* init.c - generic U-Boot initialization and finalization */
|
|
/*
|
|
* VAS_EBOOT -- GRand Unified Bootloader
|
|
* Copyright (C) 2016 Free Software Foundation, Inc.
|
|
*
|
|
* VAS_EBOOT is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* VAS_EBOOT is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with VAS_EBOOT. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <VasEBoot/uboot/uboot.h>
|
|
#include <VasEBoot/arm/startup.h>
|
|
#include <VasEBoot/uboot/api_public.h>
|
|
|
|
extern int (*VasEBoot_uboot_syscall_ptr) (int, int *, ...);
|
|
|
|
VasEBoot_uint32_t
|
|
VasEBoot_uboot_get_machine_type (void)
|
|
{
|
|
return VasEBoot_arm_saved_registers.r[1];
|
|
}
|
|
|
|
VasEBoot_addr_t
|
|
VasEBoot_uboot_get_boot_data (void)
|
|
{
|
|
return VasEBoot_arm_saved_registers.r[2];
|
|
}
|
|
|
|
int
|
|
VasEBoot_uboot_api_init (void)
|
|
{
|
|
struct api_signature *start, *end;
|
|
struct api_signature *p;
|
|
VasEBoot_addr_t VasEBoot_uboot_search_hint = VasEBoot_arm_saved_registers.sp;
|
|
if (VasEBoot_uboot_search_hint)
|
|
{
|
|
/* Extended search range to work around Trim Slice U-Boot issue */
|
|
start = (struct api_signature *) ((VasEBoot_uboot_search_hint & ~0x000fffff)
|
|
- 0x00500000);
|
|
end =
|
|
(struct api_signature *) ((VasEBoot_addr_t) start + UBOOT_API_SEARCH_LEN -
|
|
API_SIG_MAGLEN + 0x00500000);
|
|
}
|
|
else
|
|
{
|
|
start = 0;
|
|
end = (struct api_signature *) (256 * 1024 * 1024);
|
|
}
|
|
|
|
/* Structure alignment is (at least) 8 bytes */
|
|
for (p = start; p < end; p = (void *) ((VasEBoot_addr_t) p + 8))
|
|
{
|
|
if (VasEBoot_memcmp (&(p->magic), API_SIG_MAGIC, API_SIG_MAGLEN) == 0)
|
|
{
|
|
VasEBoot_uboot_syscall_ptr = p->syscall;
|
|
return p->version;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|