Attention is currently required from: Jason Glenesk, Raul Rangel, Marshall Dawson. Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50514 )
Change subject: [UNTESTED] soc/amd: move fch_enable_hpet_decode call to common code ......................................................................
[UNTESTED] soc/amd: move fch_enable_hpet_decode call to common code
Change-Id: I1299f0e8a9853b0ed0f2f4279d41a94092867a5a Signed-off-by: Felix Held felix-coreboot@felixheld.de --- M src/soc/amd/cezanne/fch.c M src/soc/amd/common/block/smbus/sm.c M src/soc/amd/picasso/fch.c M src/soc/amd/stoneyridge/southbridge.c 4 files changed, 1 insertion(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/14/50514/1
diff --git a/src/soc/amd/cezanne/fch.c b/src/soc/amd/cezanne/fch.c index 8a9b379..3e2eade 100644 --- a/src/soc/amd/cezanne/fch.c +++ b/src/soc/amd/cezanne/fch.c @@ -52,8 +52,6 @@ void fch_init(void *chip_info) { fch_init_acpi_ports(); - - fch_enable_hpet_decode(); }
void fch_final(void *chip_info) diff --git a/src/soc/amd/common/block/smbus/sm.c b/src/soc/amd/common/block/smbus/sm.c index 0b219e0..8559abf 100644 --- a/src/soc/amd/common/block/smbus/sm.c +++ b/src/soc/amd/common/block/smbus/sm.c @@ -13,6 +13,7 @@ { fch_enable_ioapic_decode(); setup_ioapic(VIO_APIC_VADDR, CONFIG_MAX_CPUS); + fch_enable_hpet_decode(); }
static u32 get_sm_mmio(struct device *dev) diff --git a/src/soc/amd/picasso/fch.c b/src/soc/amd/picasso/fch.c index 6dcb68e..5d62e8e 100644 --- a/src/soc/amd/picasso/fch.c +++ b/src/soc/amd/picasso/fch.c @@ -235,8 +235,6 @@ sb_clk_output_48Mhz();
sb_rfmux_config_override(); - - fch_enable_hpet_decode(); }
void fch_final(void *chip_info) diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c index e6e4ca9..161e3e8 100644 --- a/src/soc/amd/stoneyridge/southbridge.c +++ b/src/soc/amd/stoneyridge/southbridge.c @@ -401,8 +401,6 @@ void fch_init(void *chip_info) { fch_init_acpi_ports(); - - fch_enable_hpet_decode(); }
static void set_sb_aoac(struct aoac_devs *aoac)