Intel: Add common header file for CAR setup

When passing '-ffreestanding' the 'main' romstage.c may no longer
necessarily be considered the entry point.

From the C specification in 5.1.2.1 Freestanding environment;

"In a freestanding environment (in which C program execution may take
place without any benefit of an operating system), the name and type of
the function called at program startup are implementation-defined."

Clang complains about these being missing as Clang is somewhat more
strict about the spec than GNU/GCC is. An advantage here is that a
different entry-point type-signature shall now be warned about at
compile time.

Change-Id: I467001adabd47958c30c9a15e3248e42ed1151f3
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5872
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Edward O'Callaghan
2014-05-26 17:38:23 +10:00
parent 67584f210a
commit 1ab2027955
113 changed files with 119 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
#ifndef _CPU_INTEL_CAR_H
#define _CPU_INTEL_CAR_H
/* std signature of entry-point to romstage.c */
void main(unsigned long bist);
#endif /* _CPU_INTEL_CAR_H */