2013-06-25 22:17:43 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
2014-02-26 14:19:04 +01:00
|
|
|
#ifndef _RULES_H
|
|
|
|
#define _RULES_H
|
|
|
|
|
|
|
|
/* Useful helpers to tell whether the code is executing in bootblock,
|
|
|
|
* romstage, ramstage or SMM.
|
|
|
|
*/
|
|
|
|
|
2015-04-02 19:44:19 +02:00
|
|
|
#if defined(__BOOTBLOCK__)
|
2014-02-26 14:19:04 +01:00
|
|
|
#define ENV_BOOTBLOCK 1
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
2015-04-28 22:26:23 +02:00
|
|
|
#define ENV_VERSTAGE 0
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "bootblock"
|
2014-02-26 14:19:04 +01:00
|
|
|
|
2015-04-28 22:43:31 +02:00
|
|
|
#elif defined(__ROMSTAGE__)
|
2014-02-26 14:19:04 +01:00
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 1
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
2015-04-28 22:26:23 +02:00
|
|
|
#define ENV_VERSTAGE 0
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "romstage"
|
2014-02-26 14:19:04 +01:00
|
|
|
|
|
|
|
#elif defined(__SMM__)
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 1
|
2015-04-28 22:26:23 +02:00
|
|
|
#define ENV_VERSTAGE 0
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "smm"
|
2015-04-28 22:26:23 +02:00
|
|
|
|
|
|
|
#elif defined(__VERSTAGE__)
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
|
|
|
#define ENV_VERSTAGE 1
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "verstage"
|
2014-08-27 00:39:51 +02:00
|
|
|
|
2015-09-04 23:28:15 +02:00
|
|
|
#elif defined(__RAMSTAGE__)
|
2014-02-26 14:19:04 +01:00
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 1
|
|
|
|
#define ENV_SMM 0
|
2015-04-28 22:26:23 +02:00
|
|
|
#define ENV_VERSTAGE 0
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "ramstage"
|
2015-09-05 19:59:26 +02:00
|
|
|
|
|
|
|
#elif defined(__RMODULE__)
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
|
|
|
#define ENV_VERSTAGE 0
|
|
|
|
#define ENV_RMODULE 1
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "rmodule"
|
2015-09-04 23:28:15 +02:00
|
|
|
|
2016-03-18 18:21:23 +01:00
|
|
|
#elif defined(__POSTCAR__)
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
|
|
|
#define ENV_VERSTAGE 0
|
|
|
|
#define ENV_RMODULE 0
|
|
|
|
#define ENV_POSTCAR 1
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_STRING "postcar"
|
|
|
|
|
2017-03-02 12:01:58 +01:00
|
|
|
#elif defined(__LIBAGESA__)
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
|
|
|
#define ENV_VERSTAGE 0
|
|
|
|
#define ENV_RMODULE 0
|
|
|
|
#define ENV_POSTCAR 0
|
|
|
|
#define ENV_LIBAGESA 1
|
|
|
|
#define ENV_STRING "libagesa"
|
|
|
|
|
2015-09-04 23:28:15 +02:00
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* Default case of nothing set for random blob generation using
|
2017-03-02 12:01:58 +01:00
|
|
|
* create_class_compiler that isn't bound to a stage.
|
2015-09-04 23:28:15 +02:00
|
|
|
*/
|
|
|
|
#define ENV_BOOTBLOCK 0
|
|
|
|
#define ENV_ROMSTAGE 0
|
|
|
|
#define ENV_RAMSTAGE 0
|
|
|
|
#define ENV_SMM 0
|
|
|
|
#define ENV_VERSTAGE 0
|
2015-09-05 19:59:26 +02:00
|
|
|
#define ENV_RMODULE 0
|
2016-03-18 18:21:23 +01:00
|
|
|
#define ENV_POSTCAR 0
|
2017-03-02 12:01:58 +01:00
|
|
|
#define ENV_LIBAGESA 0
|
2015-11-19 17:48:47 +01:00
|
|
|
#define ENV_STRING "UNKNOWN"
|
2014-02-26 14:19:04 +01:00
|
|
|
#endif
|
2013-06-25 22:17:43 +02:00
|
|
|
|
2015-11-13 22:28:41 +01:00
|
|
|
/* Define helpers about the current architecture, based on toolchain.inc. */
|
|
|
|
|
|
|
|
#if defined(__ARCH_arm__)
|
|
|
|
#define ENV_ARM 1
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#if __COREBOOT_ARM_ARCH__ == 4
|
|
|
|
#define ENV_ARMV4 1
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#elif __COREBOOT_ARM_ARCH__ == 7
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 1
|
2016-09-08 19:13:59 +02:00
|
|
|
#if defined(__COREBOOT_ARM_V7_A__)
|
|
|
|
#define ENV_ARMV7_A 1
|
|
|
|
#define ENV_ARMV7_M 0
|
|
|
|
#define ENV_ARMV7_R 0
|
|
|
|
#elif defined(__COREBOOT_ARM_V7_M__)
|
|
|
|
#define ENV_ARMV7_A 0
|
|
|
|
#define ENV_ARMV7_M 1
|
|
|
|
#define ENV_ARMV7_R 0
|
|
|
|
#elif defined(__COREBOOT_ARM_V7_R__)
|
|
|
|
#define ENV_ARMV7_A 0
|
|
|
|
#define ENV_ARMV7_M 0
|
|
|
|
#define ENV_ARMV7_R 1
|
|
|
|
#endif
|
2015-11-13 22:28:41 +01:00
|
|
|
#else
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#endif
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 0
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#elif defined(__ARCH_arm64__)
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 1
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#if __COREBOOT_ARM_ARCH__ == 8
|
|
|
|
#define ENV_ARMV8 1
|
|
|
|
#else
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#endif
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 0
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#elif defined(__ARCH_mips__)
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 1
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 0
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#elif defined(__ARCH_riscv__)
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 1
|
|
|
|
#define ENV_X86 0
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#elif defined(__ARCH_x86_32__)
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 1
|
|
|
|
#define ENV_X86_32 1
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#elif defined(__ARCH_x86_64__)
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 1
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 1
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define ENV_ARM 0
|
|
|
|
#define ENV_ARM64 0
|
|
|
|
#define ENV_ARMV4 0
|
|
|
|
#define ENV_ARMV7 0
|
|
|
|
#define ENV_ARMV8 0
|
|
|
|
#define ENV_MIPS 0
|
|
|
|
#define ENV_RISCV 0
|
|
|
|
#define ENV_X86 0
|
|
|
|
#define ENV_X86_32 0
|
|
|
|
#define ENV_X86_64 0
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-04-18 10:13:32 +02:00
|
|
|
/**
|
|
|
|
* For pre-DRAM stages and post-CAR always build with simple device model, ie.
|
|
|
|
* PCI, PNP and CPU functions operate without use of devicetree. The reason
|
|
|
|
* post-CAR utilizes __SIMPLE_DEVICE__ is for simplicity. Currently there's
|
|
|
|
* no known requirement that devicetree would be needed during that stage.
|
|
|
|
*
|
|
|
|
* For ramstage individual source file may define __SIMPLE_DEVICE__
|
|
|
|
* before including any header files to force that particular source
|
|
|
|
* be built with simple device model.
|
|
|
|
*
|
|
|
|
* For now only x86 is supported.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if ENV_X86 && (defined(__PRE_RAM__) || ENV_SMM || ENV_POSTCAR)
|
|
|
|
#define __SIMPLE_DEVICE__
|
|
|
|
#endif
|
|
|
|
|
2018-04-18 01:33:10 +02:00
|
|
|
/* x86 specific. Indicates that the current stage is running with cache-as-ram
|
|
|
|
* enabled from the beginning of the stage in C code. */
|
|
|
|
#if defined(__PRE_RAM__)
|
|
|
|
#define ENV_CACHE_AS_RAM IS_ENABLED(CONFIG_CACHE_AS_RAM)
|
|
|
|
#else
|
|
|
|
#define ENV_CACHE_AS_RAM 0
|
|
|
|
#endif
|
|
|
|
|
2014-02-26 14:19:04 +01:00
|
|
|
#endif /* _RULES_H */
|