Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63971 )
Change subject: mb/biostar/a68n_5200: Use pci_or_config8() ......................................................................
mb/biostar/a68n_5200: Use pci_or_config8()
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I4be0a4ad980b4167eaaafc22399b680abf011553 --- M src/mainboard/biostar/a68n_5200/bootblock.c 1 file changed, 2 insertions(+), 8 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/63971/1
diff --git a/src/mainboard/biostar/a68n_5200/bootblock.c b/src/mainboard/biostar/a68n_5200/bootblock.c index 70bc10c..af9a5ec 100644 --- a/src/mainboard/biostar/a68n_5200/bootblock.c +++ b/src/mainboard/biostar/a68n_5200/bootblock.c @@ -28,8 +28,6 @@
void bootblock_mainboard_early_init(void) { - u8 byte; - /* Enable the AcpiMmio space */ pm_io_write8(0x24, 1);
@@ -38,14 +36,10 @@ pci_write_config32(dev, 0x44, 0xff03ffd5);
/* enable SIO LPC decode */ - byte = pci_read_config8(dev, 0x48); - byte |= 3; /* 2e, 2f */ - pci_write_config8(dev, 0x48, byte); + pci_or_config8(dev, 0x48, 3);
/* enable serial decode */ - byte = pci_read_config8(dev, 0x44); - byte |= (1 << 6); /* 0x3f8 */ - pci_write_config8(dev, 0x44, byte); + pci_or_config8(dev, 0x44, 1 << 6);
/* enable SIO clock */ sbxxx_enable_48mhzout();