b85393742d
inlucde ---> include Change-Id: I38987119ddabb08c457c9a7c8aecb8025fe2d9d3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55161 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
22 lines
532 B
C
22 lines
532 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
|
* This file contains #define constants used by both the Linux
|
|
* trampoline C-code and assembly language code. As such it can only
|
|
* contain preprocessor macros. Do not include C language
|
|
* declarations in this file.
|
|
*/
|
|
|
|
#ifndef LINUX_TRAMPOLINE_H__
|
|
#define LINUX_TRAMPOLINE_H__
|
|
|
|
/*
|
|
* Trampoline entry point
|
|
* TODO: any better place?
|
|
*/
|
|
#define TRAMPOLINE_ENTRY_LOC 0x40000
|
|
|
|
#define LINUX_PARAM_LOC 0x90000
|
|
#define COMMAND_LINE_LOC 0x91000
|
|
|
|
#endif /* LINUX_TRAMPOLINE_H__ */
|