399486e8fb
Instead of adding regparm(0) to each assembler function called by coreboot, add an asmlinkage macro (like the Linux kernel does) that can be different per architecture (and that is empty on ARM right now) Change-Id: I7ad10c463f6c552f1201f77ae24ed354ac48e2d9 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1973 Reviewed-by: David Hendricks <dhendrix@chromium.org> Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
25 lines
702 B
C
25 lines
702 B
C
#ifndef CPU_CPU_H
|
|
#define CPU_CPU_H
|
|
|
|
#include <arch/cpu.h>
|
|
|
|
#if !defined(__ROMCC__)
|
|
void cpu_initialize(unsigned int cpu_index);
|
|
struct bus;
|
|
void initialize_cpus(struct bus *cpu_bus);
|
|
void asmlinkage secondary_cpu_init(unsigned int cpu_index);
|
|
|
|
#if CONFIG_HAVE_SMI_HANDLER
|
|
void smm_init(void);
|
|
void smm_lock(void);
|
|
void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
|
|
#endif
|
|
|
|
#define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver")))
|
|
/** start of compile time generated pci driver array */
|
|
extern struct cpu_driver cpu_drivers[];
|
|
/** end of compile time generated pci driver array */
|
|
extern struct cpu_driver ecpu_drivers[];
|
|
#endif /* !__ROMCC__ */
|
|
|
|
#endif /* CPU_CPU_H */
|