treewide: Replace CONFIG(ARCH_xx) tests
Once we support building stages for different architectures, such CONFIG(ARCH_xx) tests do not evaluate correctly anymore. Change-Id: I599995b3ed5c4dfd578c87067fe8bfc8c75b9d43 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42183 Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
5edbb1c5d9
commit
7336f97deb
16 changed files with 32 additions and 28 deletions
|
|
@ -145,7 +145,7 @@ void cbmem_add_records_to_cbtable(struct lb_header *header);
|
|||
* and CBMEM_CONSOLE. Sometimes it is necessary to have cbmem_top()
|
||||
* value stored in nvram to enable early recovery on S3 path.
|
||||
*/
|
||||
#if CONFIG(ARCH_X86)
|
||||
#if ENV_X86
|
||||
void backup_top_of_low_cacheable(uintptr_t ramtop);
|
||||
uintptr_t restore_top_of_low_cacheable(void);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@
|
|||
(ENV_DECOMPRESSOR || ENV_BOOTBLOCK || ENV_ROMSTAGE || \
|
||||
(ENV_SEPARATE_VERSTAGE && !CONFIG(VBOOT_STARTS_IN_ROMSTAGE)))
|
||||
|
||||
#if CONFIG(ARCH_X86)
|
||||
#if ENV_X86
|
||||
/* Indicates memory layout is determined with arch/x86/car.ld. */
|
||||
#define ENV_CACHE_AS_RAM (ENV_ROMSTAGE_OR_BEFORE && !CONFIG(RESET_VECTOR_IN_RAM))
|
||||
/* No .data sections with execute-in-place from ROM. */
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ DECLARE_REGION(bl31)
|
|||
* (Does not necessarily mean that the memory is accessible.) */
|
||||
static inline int preram_symbols_available(void)
|
||||
{
|
||||
return !CONFIG(ARCH_X86) || ENV_ROMSTAGE_OR_BEFORE;
|
||||
return !ENV_X86 || ENV_ROMSTAGE_OR_BEFORE;
|
||||
}
|
||||
|
||||
#endif /* __SYMBOLS_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue