diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-05-08 21:47:55 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-05-12 21:08:07 +0200 |
commit | dd2e35edc14b71b81e9600c7e46a5e934f03d51e (patch) | |
tree | 23d9932a4042e38e28a04f9e8ca2ef5c1ecf1f19 /src/mainboard/gigabyte/ga-g41m-es2l | |
parent | 55cad16ca5261179aa95726ee8e7f6610ba92913 (diff) | |
download | coreboot-dd2e35edc14b71b81e9600c7e46a5e934f03d51e.tar.xz |
mb/gigabyte/ga-g41m-es2l: Don't disable PATA
This board features a PATA port.
TESTED PATA drive works in SeaBIOS and OS.
Change-Id: I74dc72c22e6c4fed07f28ef7d88adde54656ae39
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/19627
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/gigabyte/ga-g41m-es2l')
-rw-r--r-- | src/mainboard/gigabyte/ga-g41m-es2l/romstage.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/gigabyte/ga-g41m-es2l/romstage.c b/src/mainboard/gigabyte/ga-g41m-es2l/romstage.c index 0a1470b112..229f028d9a 100644 --- a/src/mainboard/gigabyte/ga-g41m-es2l/romstage.c +++ b/src/mainboard/gigabyte/ga-g41m-es2l/romstage.c @@ -102,7 +102,8 @@ static void mb_gpio_init(void) RCBA8(0x31ff); RCBA32(0x3410) = 0x00190464; - RCBA32(0x3418) = 0x003c0063; + RCBA32(FD) = FD_PCIE6 | FD_PCIE5 | FD_PCIE4 | FD_PCIE3 | FD_ACMOD + | FD_ACAUD | 1; RCBA32(0x341c) = 0x00000000; RCBA32(0x3430) = 0x00000001; RCBA32(0x3e00) = 0xff000001; |