summaryrefslogtreecommitdiffstats
path: root/src/mainboard/ibase
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-10-25 14:05:17 +0200
committerMartin Roth <martinroth@google.com>2019-10-27 17:55:34 +0000
commit6df210b0c23b28bd3758fc8871b99752c9c825e9 (patch)
tree6b02034389ef3205306a57dd0ac59bb2bcd4b370 /src/mainboard/ibase
parentede8dd0b9c0dcf1a2f1478e5cb4e035c148b9ed1 (diff)
downloadcoreboot-6df210b0c23b28bd3758fc8871b99752c9c825e9.tar.gz
coreboot-6df210b0c23b28bd3758fc8871b99752c9c825e9.tar.bz2
coreboot-6df210b0c23b28bd3758fc8871b99752c9c825e9.zip
mb/(ich7): Use macro instead of magic number
Change-Id: Ida291ed9f3a509e9b96a5c254433db6f8028bfb2 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36322 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/ibase')
-rw-r--r--src/mainboard/ibase/mb899/romstage.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/ibase/mb899/romstage.c b/src/mainboard/ibase/mb899/romstage.c
index 1c3202f710fd..f1ecc1f0407a 100644
--- a/src/mainboard/ibase/mb899/romstage.c
+++ b/src/mainboard/ibase/mb899/romstage.c
@@ -149,12 +149,12 @@ static void early_ich7_init(void)
uint32_t reg32;
// program secondary mlt XXX byte?
- pci_write_config8(PCI_DEV(0, 0x1e, 0), 0x1b, 0x20);
+ pci_write_config8(PCI_DEV(0, 0x1e, 0), SMLT, 0x20);
// reset rtc power status
- reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa4);
- reg8 &= ~(1 << 2);
- pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa4, reg8);
+ reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
+ reg8 &= ~RTC_BATTERY_DEAD;
+ pci_write_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3, reg8);
// usb transient disconnect
reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xad);