diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-12-13 13:44:33 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-12-13 13:44:33 +0000 |
commit | 29c7dfcadc49262271dba95697dab841ea076d17 (patch) | |
tree | cf62961c1f4db7493ac98bbd8f6f5f89a841eb2e /src/mainboard/asus/Kconfig | |
parent | cb6c9e09422e4f9a2419997d6e49ab3a7a18690c (diff) |
Add support for the ASUS M2N-E board.
This is an AMD K8 + NVIDIA MCP55 + ITE IT8716F mainboard.
It has a working hda_verb.h file for HD audio, and a fanctl.c file is
used to enable the CPU fan (among others) so that we don't kill the
CPU due to excessive heat.
Even though some TODOs remain of course, it works good enough to
successfully boot Linux (e.g. via SeaBIOS).
The full status report is available at:
http://www.coreboot.org/ASUS_M2N-E
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6170 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/Kconfig')
-rw-r--r-- | src/mainboard/asus/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/asus/Kconfig b/src/mainboard/asus/Kconfig index 6848d8b79a..bf8742a3f0 100644 --- a/src/mainboard/asus/Kconfig +++ b/src/mainboard/asus/Kconfig @@ -27,6 +27,8 @@ config BOARD_ASUS_A8V_E_SE bool "A8V-E SE" config BOARD_ASUS_A8V_E_DELUXE bool "A8V-E Deluxe" +config BOARD_ASUS_M2N_E + bool "M2N-E" config BOARD_ASUS_M2V bool "M2V" config BOARD_ASUS_M2V_MX_SE @@ -57,6 +59,7 @@ endchoice source "src/mainboard/asus/a8n_e/Kconfig" source "src/mainboard/asus/a8v-e_se/Kconfig" source "src/mainboard/asus/a8v-e_deluxe/Kconfig" +source "src/mainboard/asus/m2n-e/Kconfig" source "src/mainboard/asus/m2v/Kconfig" source "src/mainboard/asus/m2v-mx_se/Kconfig" source "src/mainboard/asus/m4a785-m/Kconfig" @@ -74,4 +77,8 @@ config MAINBOARD_VENDOR string default "ASUS" +config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID + hex + default 0x1043 + endif # VENDOR_ASUS |