zephyr/soc/xtensa/intel_apl_adsp/main_entry.S
Johan Hedberg 31706c874e soc: xtensa: Add SoC definition for Audio DSP on Intel Apollolake
Create an SoC definition for the Audio DSP on Intel Apollolake

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2020-02-05 10:43:25 -05:00

35 lines
666 B
ArmAsm

/* SPDX-License-Identifier: Apache-2.0
*
* Copyright(c) 2017 Intel Corporation. All rights reserved.
*
* Author: Rander Wang <rander.wang@intel.com>
*/
/*
* Entry point from boot loader.
* Fix link address of this entry to SOF_TEXT_START so that
* it is easy for boot loader to jump to the baseFW because
* the boot loader and baseFW are in different elf file.
*/
// Exports
.global _MainEntry
/**************************************************************************/
.begin literal_prefix .MainEntry
.section .MainEntry.text, "ax"
.align 4
.global _MainEntry
_MainEntry:
j __start
.size _MainEntry, . - _MainEntry
.end literal_prefix