Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4007
-gerrit
commit e76e17ea41cd13cbe01e03be998edf2228f4d578 Author: Edward O'Callaghan eocallaghan@alterapraxis.com Date: Sat Nov 2 03:17:28 2013 +1100
Add inital work on supporting the Acer Aspire 5520 ICW50 laptop (WIP).
Change-Id: I33217e23d97d0e158f696809e5228a559de1a0b7 Signed-off-by: Edward O'Callaghan eocallaghan@alterapraxis.com --- src/mainboard/Kconfig | 3 +++ src/mainboard/acer/Kconfig | 35 +++++++++++++++++++++++++ src/mainboard/acer/fuquene/Kconfig | 52 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+)
diff --git a/src/mainboard/Kconfig b/src/mainboard/Kconfig index fdb0eac..89d1340 100644 --- a/src/mainboard/Kconfig +++ b/src/mainboard/Kconfig @@ -8,6 +8,8 @@ config VENDOR_AAEON bool "Aaeon" config VENDOR_ABIT bool "Abit" +config VENDOR_ACER + bool "Acer" config VENDOR_ADLINK bool "ADLINK" config VENDOR_ADVANSUS @@ -142,6 +144,7 @@ endchoice source "src/mainboard/a-trend/Kconfig" source "src/mainboard/aaeon/Kconfig" source "src/mainboard/abit/Kconfig" +source "src/mainboard/acer/Kconfig" source "src/mainboard/adlink/Kconfig" source "src/mainboard/advansus/Kconfig" source "src/mainboard/advantech/Kconfig" diff --git a/src/mainboard/acer/Kconfig b/src/mainboard/acer/Kconfig new file mode 100644 index 0000000..c0af794 --- /dev/null +++ b/src/mainboard/acer/Kconfig @@ -0,0 +1,35 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2013 Edward O'Callaghan eocallaghan@alterapraxis.com +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## +if VENDOR_ACER + +choice + prompt "Mainboard model" + +config BOARD_ACER_FUQUENE + bool "Fuquene" + +endchoice + +source "src/mainboard/acer/fuquene/Kconfig" + +config MAINBOARD_VENDOR + string + default "Acer" + +endif # VENDOR_ACER diff --git a/src/mainboard/acer/fuquene/Kconfig b/src/mainboard/acer/fuquene/Kconfig new file mode 100644 index 0000000..741fe94 --- /dev/null +++ b/src/mainboard/acer/fuquene/Kconfig @@ -0,0 +1,52 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2013 Edward O'Callaghan eocallaghan@alterapraxis.com +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## +if BOARD_ACER_FUQUENE + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + select ARCH_X86 + select CPU_AMD_SOCKET_S1G1 + select NORTHBRIDGE_AMD_AMDK8 + select SOUTHBRIDGE_AMD_RS690 + select SOUTHBRIDGE_AMD_SB600 + select SUPERIO_ITE_IT8712F + select HAVE_ACPI_TABLES + select HAVE_MP_TABLE + select HAVE_PIRQ_TABLE + select HAVE_OPTION_TABLE + select SB_HT_CHAIN_UNITID_OFFSET_ONLY + select BOARD_ROMSIZE_KB_1024 + select RAMINIT_SYSINFO + select QRANK_DIMM_SUPPORT + select SET_FIDVID + + +config MAINBOARD_DIR + string + default acer/fuquene + +config MAINBOARD_PART_NUMBER + string + default "FUQUENE" + +config IRQ_SLOT_COUNT + int + default 9 + +endif # BOARD_ACER_FUQUENE