soc/amd: Replace enable_smi_generation()
Change-Id: I9846df34fd2b6b15549fa33d3eda137544fa4219 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41962 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
b264c5ce10
commit
87e6796a90
6 changed files with 4 additions and 8 deletions
|
@ -90,7 +90,7 @@ static const struct mp_ops mp_ops = {
|
||||||
.get_cpu_count = get_cpu_count,
|
.get_cpu_count = get_cpu_count,
|
||||||
.get_smm_info = get_smm_info,
|
.get_smm_info = get_smm_info,
|
||||||
.relocation_handler = relocation_handler,
|
.relocation_handler = relocation_handler,
|
||||||
.post_mp_init = enable_smi_generation,
|
.post_mp_init = global_smi_enable,
|
||||||
};
|
};
|
||||||
|
|
||||||
void mp_init_cpus(struct bus *cpu_bus)
|
void mp_init_cpus(struct bus *cpu_bus)
|
||||||
|
|
|
@ -220,6 +220,4 @@ void disable_gevent_smi(uint8_t gevent);
|
||||||
void gpe_configure_sci(const struct sci_source *scis, size_t num_gpes);
|
void gpe_configure_sci(const struct sci_source *scis, size_t num_gpes);
|
||||||
void soc_route_sci(uint8_t event);
|
void soc_route_sci(uint8_t event);
|
||||||
|
|
||||||
void enable_smi_generation(void);
|
|
||||||
|
|
||||||
#endif /* __SOUTHBRIDGE_AMD_PI_PICASSO_SMI_H__ */
|
#endif /* __SOUTHBRIDGE_AMD_PI_PICASSO_SMI_H__ */
|
||||||
|
|
|
@ -17,7 +17,7 @@ void smm_setup_structures(void *gnvs, void *tcg, void *smi1)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set the EOS bit and enable SMI generation from southbridge */
|
/** Set the EOS bit and enable SMI generation from southbridge */
|
||||||
void enable_smi_generation(void)
|
void global_smi_enable(void)
|
||||||
{
|
{
|
||||||
uint32_t reg = smi_read32(SMI_REG_SMITRIG0);
|
uint32_t reg = smi_read32(SMI_REG_SMITRIG0);
|
||||||
reg &= ~SMITRG0_SMIENB; /* Enable SMI generation */
|
reg &= ~SMITRG0_SMIENB; /* Enable SMI generation */
|
||||||
|
|
|
@ -90,7 +90,7 @@ static const struct mp_ops mp_ops = {
|
||||||
.get_cpu_count = get_cpu_count,
|
.get_cpu_count = get_cpu_count,
|
||||||
.get_smm_info = get_smm_info,
|
.get_smm_info = get_smm_info,
|
||||||
.relocation_handler = relocation_handler,
|
.relocation_handler = relocation_handler,
|
||||||
.post_mp_init = enable_smi_generation,
|
.post_mp_init = global_smi_enable,
|
||||||
};
|
};
|
||||||
|
|
||||||
void mp_init_cpus(struct bus *cpu_bus)
|
void mp_init_cpus(struct bus *cpu_bus)
|
||||||
|
|
|
@ -220,6 +220,4 @@ void disable_gevent_smi(uint8_t gevent);
|
||||||
void gpe_configure_sci(const struct sci_source *scis, size_t num_gpes);
|
void gpe_configure_sci(const struct sci_source *scis, size_t num_gpes);
|
||||||
void soc_route_sci(uint8_t event);
|
void soc_route_sci(uint8_t event);
|
||||||
|
|
||||||
void enable_smi_generation(void);
|
|
||||||
|
|
||||||
#endif /* __SOUTHBRIDGE_AMD_PI_STONEYRIDGE_SMI_H__ */
|
#endif /* __SOUTHBRIDGE_AMD_PI_STONEYRIDGE_SMI_H__ */
|
||||||
|
|
|
@ -16,7 +16,7 @@ void smm_setup_structures(void *gnvs, void *tcg, void *smi1)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set the EOS bit and enable SMI generation from southbridge */
|
/** Set the EOS bit and enable SMI generation from southbridge */
|
||||||
void enable_smi_generation(void)
|
void global_smi_enable(void)
|
||||||
{
|
{
|
||||||
uint32_t reg = smi_read32(SMI_REG_SMITRIG0);
|
uint32_t reg = smi_read32(SMI_REG_SMITRIG0);
|
||||||
reg &= ~SMITRG0_SMIENB; /* Enable SMI generation */
|
reg &= ~SMITRG0_SMIENB; /* Enable SMI generation */
|
||||||
|
|
Loading…
Reference in a new issue