CPU: Move SMM prototypes under x86

Change-Id: Iefbc17dcfcf312338d94b2c2945c7fac3b23bff6
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/17732
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Kyösti Mälkki 2016-12-06 13:58:56 +02:00
parent c895b7def1
commit cd6d281fbe
3 changed files with 5 additions and 5 deletions

View File

@ -163,6 +163,10 @@ int cpu_cpuid_extended_level(void);
int cpu_have_cpuid(void); int cpu_have_cpuid(void);
int cpu_phys_address_size(void); int cpu_phys_address_size(void);
void smm_init(void);
void smm_lock(void);
void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
#ifndef __SIMPLE_DEVICE__ #ifndef __SIMPLE_DEVICE__
struct device; struct device;

View File

@ -9,10 +9,6 @@ struct bus;
void initialize_cpus(struct bus *cpu_bus); void initialize_cpus(struct bus *cpu_bus);
void asmlinkage secondary_cpu_init(unsigned int cpu_index); void asmlinkage secondary_cpu_init(unsigned int cpu_index);
void smm_init(void);
void smm_lock(void);
void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
#define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver"))) #define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver")))
#ifndef __SIMPLE_DEVICE__ #ifndef __SIMPLE_DEVICE__
/** start of compile time generated pci driver array */ /** start of compile time generated pci driver array */

View File

@ -760,7 +760,7 @@ static void detect_hw_variant( device_t dev )
} }
} }
static void smm_lock( void ) void smm_lock(void)
{ {
/* LOCK the SMM memory window and enable normal SMM. /* LOCK the SMM memory window and enable normal SMM.
* After running this function, only a full reset can * After running this function, only a full reset can