mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 06:23:18 +02:00
Unify target OS and CPU architecture checks
We do CPU architecture checks once for the makefile in arch.h and once for HW access abstraction in hwaccess.c. This patch unifies related files so that they can share the checks to improve maintainability and reduce the chance of inconsistencies. Furthermore, it refines some of the definitions, which - adds "support" for AARCH64 and PPC64, - adds big-endian handling on arm as well as LE handling on PPC64, - fixes compilation of internal.c on AARCH64 and PPC64. Additionally, this patch continues to unify all OS checks in flashrom by adding a new helper macro IS_WINDOWS. The old header file for architecture checking is renamed to platform.h to reflect its broader scope and all new macros are add in there. Corresponding to flashrom svn r1864. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
16
internal.c
16
internal.c
@ -160,14 +160,14 @@ enum chipbustype internal_buses_supported = BUS_NONE;
|
||||
|
||||
int internal_init(void)
|
||||
{
|
||||
#if __FLASHROM_LITTLE_ENDIAN__
|
||||
#if defined __FLASHROM_LITTLE_ENDIAN__
|
||||
int ret = 0;
|
||||
#endif
|
||||
int force_laptop = 0;
|
||||
int not_a_laptop = 0;
|
||||
const char *board_vendor = NULL;
|
||||
const char *board_model = NULL;
|
||||
#if defined (__i386__) || defined (__x86_64__) || defined (__arm__)
|
||||
#if IS_X86 || IS_ARM
|
||||
const char *cb_vendor = NULL;
|
||||
const char *cb_model = NULL;
|
||||
#endif
|
||||
@ -249,7 +249,7 @@ int internal_init(void)
|
||||
return 1;
|
||||
}
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__) || defined (__arm__)
|
||||
#if IS_X86 || IS_ARM
|
||||
if ((cb_parse_table(&cb_vendor, &cb_model) == 0) && (board_vendor != NULL) && (board_model != NULL)) {
|
||||
if (strcasecmp(board_vendor, cb_vendor) || strcasecmp(board_model, cb_model)) {
|
||||
msg_pwarn("Warning: The mainboard IDs set by -p internal:mainboard (%s:%s) do not\n"
|
||||
@ -262,7 +262,7 @@ int internal_init(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
#if IS_X86
|
||||
dmi_init();
|
||||
|
||||
/* In case Super I/O probing would cause pretty explosions. */
|
||||
@ -312,7 +312,7 @@ int internal_init(void)
|
||||
}
|
||||
}
|
||||
|
||||
#if __FLASHROM_LITTLE_ENDIAN__
|
||||
#ifdef __FLASHROM_LITTLE_ENDIAN__
|
||||
/* try to enable it. Failure IS an option, since not all motherboards
|
||||
* really need this to be done, etc., etc.
|
||||
*/
|
||||
@ -323,18 +323,18 @@ int internal_init(void)
|
||||
} else if (ret == ERROR_FATAL)
|
||||
return ret;
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
#if IS_X86
|
||||
/* Probe unconditionally for ITE Super I/O chips. This enables LPC->SPI translation on IT87* and
|
||||
* parallel writes on IT8705F. Also, this handles the manual chip select for Gigabyte's DualBIOS. */
|
||||
init_superio_ite();
|
||||
#endif
|
||||
|
||||
if (board_flash_enable(board_vendor, board_model, cb_vendor, cb_model)) {
|
||||
msg_perr("Aborting to be safe.\n");
|
||||
return 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__i386__) || defined(__x86_64__) || defined (__mips)
|
||||
#if IS_X86 || IS_MIPS
|
||||
register_par_master(&par_master_internal, internal_buses_supported);
|
||||
return 0;
|
||||
#else
|
||||
|
Reference in New Issue
Block a user