soc/amd/common/acpimmio/mmio_util: drop enable_acpimmio_decode_pm24

None of the platforms that used enable_acpimmio_decode_pm24 is in the
tree any more, so drop this function.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Iea345a825c4581bf2acb932692ebcad2a7a5b4ed
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76457
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Felix Held 2023-07-14 18:30:26 +02:00 committed by Martin L Roth
parent 8336c72524
commit 5bd68097cb
2 changed files with 0 additions and 12 deletions

View File

@ -41,15 +41,6 @@ DECLARE_ACPIMMIO(acpimmio_acdc_tmr, ACDCTMR);
#undef DECLARE_ACPIMMIO #undef DECLARE_ACPIMMIO
void enable_acpimmio_decode_pm24(void)
{
uint32_t dw;
dw = pm_io_read32(ACPIMMIO_DECODE_REGISTER_24);
dw |= PM_24_ACPIMMIO_DECODE_EN;
pm_io_write32(ACPIMMIO_DECODE_REGISTER_24, dw);
}
void enable_acpimmio_decode_pm04(void) void enable_acpimmio_decode_pm04(void)
{ {
uint32_t dw; uint32_t dw;

View File

@ -78,9 +78,6 @@ extern uint8_t *MAYBE_CONST acpimmio_aoac;
#undef MAYBE_CONST #undef MAYBE_CONST
/* For older discrete FCHs */
void enable_acpimmio_decode_pm24(void);
/* For newer integrated FCHs */ /* For newer integrated FCHs */
void enable_acpimmio_decode_pm04(void); void enable_acpimmio_decode_pm04(void);
void fch_enable_cf9_io(void); void fch_enable_cf9_io(void);