diff options
author | Dave Frodin <dave.frodin@se-eng.com> | 2014-11-21 14:57:03 -0700 |
---|---|---|
committer | Dave Frodin <dave.frodin@se-eng.com> | 2014-12-09 15:33:30 +0100 |
commit | d6aa7cffa3c3987749ada01a7eaedaf3a8823a33 (patch) | |
tree | 5e5ead3d28d7cac6a0f87c3354a957664b5ea713 /src/mainboard/gizmosphere/gizmo2/Kconfig | |
parent | aca2150a4f174ebbd5c9e92c4cac2258138d1618 (diff) |
gizmosphere/gizmo2: Changes to make it gizmo2
The preceding patch copied gizmo2 from the amd/olivehill
board. This commit includes the changes required to make
the code reflect the gizmo2 hardware:
- Update the vendor Kconfig to add gizmo2
- Update the mainboard Kconfig
- Update devicetree
- Add support in for the soldered down DDR3
- Update the CODEC verb data
- Update the graphics connector settings
- Adjust the temperature thresholds for the fan
What's missing:
- Interrupt routing tables
Gizmo2 can boot DOS and Ubuntu 14.10.
Change-Id: I3d7202957c082974689f2a8c04d8cd33dbdc1a89
Signed-off-by: Dave Frodin <dave.frodin@se-eng.com>
Reviewed-on: http://review.coreboot.org/7722
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/mainboard/gizmosphere/gizmo2/Kconfig')
-rw-r--r-- | src/mainboard/gizmosphere/gizmo2/Kconfig | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/mainboard/gizmosphere/gizmo2/Kconfig b/src/mainboard/gizmosphere/gizmo2/Kconfig index ea975502db..9ee3d38a6f 100644 --- a/src/mainboard/gizmosphere/gizmo2/Kconfig +++ b/src/mainboard/gizmosphere/gizmo2/Kconfig @@ -2,6 +2,7 @@ # This file is part of the coreboot project. # # Copyright (C) 2012 Advanced Micro Devices, Inc. +# Copyright (C) 2013-2014 Sage Electronic Engineering # # 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 @@ -17,7 +18,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -if BOARD_AMD_OLIVEHILL +if BOARD_GIZMOSPHERE_GIZMO2 config BOARD_SPECIFIC_OPTIONS # dummy def_bool y @@ -31,14 +32,15 @@ config BOARD_SPECIFIC_OPTIONS # dummy select HAVE_ACPI_TABLES select BOARD_ROMSIZE_KB_4096 select GFXUMA + select SPD_CACHE config MAINBOARD_DIR string - default amd/olivehill + default gizmosphere/gizmo2 config MAINBOARD_PART_NUMBER string - default "DB-FT3" + default "Gizmo2" config HW_MEM_HOLE_SIZEK hex @@ -56,10 +58,6 @@ config IRQ_SLOT_COUNT int default 11 -config ACPI_SSDTX_NUM - int - default 0 - config ONBOARD_VGA_IS_PRIMARY bool default y @@ -68,4 +66,4 @@ config HUDSON_LEGACY_FREE bool default y -endif # BOARD_AMD_OLIVEHILL +endif # BOARD_GIZMOSPHERE_GIZMO2 |