blob: 3bf316e4fd05a65362b39c7aac8083b0558bea32 [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Edward O'Callaghan32960e32014-11-23 17:38:52 +11002
Edward O'Callaghan32960e32014-11-23 17:38:52 +11003#include "mainboard.h"
4
Edward O'Callaghan32960e32014-11-23 17:38:52 +11005#include <vendorcode/amd/agesa/f15tn/AGESA.h>
6
Peter Lemenkov6b7d40a2020-01-22 11:40:16 +01007/* Include the files that instantiate the configuration definitions. */
Edward O'Callaghan32960e32014-11-23 17:38:52 +11008#include <vendorcode/amd/agesa/f15tn/Include/AdvancedApi.h>
Edward O'Callaghan32960e32014-11-23 17:38:52 +11009#include <vendorcode/amd/agesa/f15tn/Proc/CPU/cpuFamilyTranslation.h>
10#include <vendorcode/amd/agesa/f15tn/Proc/CPU/Feature/cpuFeatures.h>
11#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
Angel Ponsdb2e1182020-05-22 21:34:10 +020012/* AGESA nonsense: the next two headers depend on heapManager.h */
Edward O'Callaghan32960e32014-11-23 17:38:52 +110013#include <vendorcode/amd/agesa/f15tn/Proc/Common/CreateStruct.h>
14#include <vendorcode/amd/agesa/f15tn/Proc/CPU/cpuEarlyInit.h>
15/* These tables are optional and may be used to adjust memory timing settings */
16#include <vendorcode/amd/agesa/f15tn/Proc/Mem/mm.h>
17#include <vendorcode/amd/agesa/f15tn/Proc/Mem/mn.h>
18
Angel Ponsdb2e1182020-05-22 21:34:10 +020019/* Select the CPU family */
20#define INSTALL_FAMILY_15_MODEL_1x_SUPPORT TRUE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110021
Angel Ponsdb2e1182020-05-22 21:34:10 +020022/* Select the CPU socket type */
23#define INSTALL_FS1_SOCKET_SUPPORT TRUE
24#define INSTALL_FP2_SOCKET_SUPPORT TRUE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110025
Angel Ponsdb2e1182020-05-22 21:34:10 +020026//#define BLDOPT_REMOVE_UDIMMS_SUPPORT TRUE
27//#define BLDOPT_REMOVE_RDIMMS_SUPPORT TRUE
28#define BLDOPT_REMOVE_LRDIMMS_SUPPORT TRUE
29//#define BLDOPT_REMOVE_ECC_SUPPORT TRUE
30#define BLDOPT_REMOVE_SRAT FALSE
31#define BLDOPT_REMOVE_WHEA FALSE
Paul Menzeld354c082020-10-17 13:10:32 +020032#define BLDOPT_REMOVE_CRAT TRUE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110033
Angel Ponsdb2e1182020-05-22 21:34:10 +020034/* Build configuration values here */
35#define BLDCFG_AMD_PLATFORM_TYPE AMD_PLATFORM_MOBILE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110036
Angel Ponsdb2e1182020-05-22 21:34:10 +020037#define BLDCFG_MEMORY_RDIMM_CAPABLE FALSE
38#define BLDCFG_MEMORY_UDIMM_CAPABLE TRUE
39#define BLDCFG_MEMORY_SODIMM_CAPABLE TRUE
40#define BLDCFG_MEMORY_CHANNEL_INTERLEAVING TRUE
41#define BLDCFG_ENABLE_ECC_FEATURE TRUE
42#define BLDCFG_ECC_SYNC_FLOOD FALSE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110043
Elyes HAOUAS58b9eeca2018-05-28 13:40:21 +020044#define BLDCFG_UMA_ALLOCATION_MODE UMA_SPECIFIED
Angel Ponsdb2e1182020-05-22 21:34:10 +020045#define BLDCFG_UMA_ALLOCATION_SIZE 0x2000 /* (0x2000 << 16) = 512M */
Edward O'Callaghan32960e32014-11-23 17:38:52 +110046
Angel Ponsdb2e1182020-05-22 21:34:10 +020047#define BLDCFG_IOMMU_SUPPORT TRUE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110048
Angel Ponsdb2e1182020-05-22 21:34:10 +020049#define BLDCFG_CFG_GNB_HD_AUDIO TRUE
Edward O'Callaghan32960e32014-11-23 17:38:52 +110050
51/*
52 * The GPIO control is not well documented in AGESA, but is in the BKDG
53 *
54 * Eg. FANIN1/GPIO57 on datasheet means power-on default (Function0) is to route
55 * from this ball to hardware monitor as FAN1 tacho input. Selecting Function1
56 * routes this to the GPIO block instead. Seems ACPI GPIOs and related GEVENTs
57 * are mostly in Function1, sometimes Function2.
58 *
59 * Note that the GpioOut bit does not mean that the GPIO is an output. That bit
60 * actually controls the output value, so GpioOut means "default to set".
61 * PullUpB is an inverted logic, so setting this bit means we're actually
62 * disabling the internal pull-up. The PullDown bit is NOT inverted logic.
63 * The output driver can be disabled with the GpioOutEnB bit, which is again,
64 * inverted logic. To make the list more readable, we define a few local macros
65 * to state what we mean.
66 */
67#define OUTPUT_HIGH (GpioOut)
68#define OUTPUT_LOW (0)
69#define INPUT (GpioOutEnB)
70#define PULL_UP (0)
71#define PULL_DOWN (PullDown | PullUpB)
72#define PULL_NONE (PullUpB)
73
Arthur Heymans8d3640d2022-05-16 12:27:36 +020074CONST GPIO_CONTROL lenovo_g505s_gpio[] = {
Edward O'Callaghan32960e32014-11-23 17:38:52 +110075 {57, Function1, OUTPUT_HIGH | PULL_NONE}, /* WLAN enable */
76 {-1}
77};
Angel Ponsdb2e1182020-05-22 21:34:10 +020078#define BLDCFG_FCH_GPIO_CONTROL_LIST (lenovo_g505s_gpio)
Edward O'Callaghan32960e32014-11-23 17:38:52 +110079
Angel Ponsdb2e1182020-05-22 21:34:10 +020080/*
81 * These definitions could be moved to a common Hudson header, should we decide
Edward O'Callaghan32960e32014-11-23 17:38:52 +110082 * to provide our own, saner SCI mapping function
83 */
84#define GEVENT_PIN(gpe) ((gpe) + 0x40)
85#define SCI_MAP_OHCI_12_0 0x58
86#define SCI_MAP_OHCI_13_0 0x59
87#define SCI_MAP_XHCI_10_0 0x78
88#define SCI_MAP_PWRBTN 0x73
89
Arthur Heymans8d3640d2022-05-16 12:27:36 +020090CONST SCI_MAP_CONTROL lenovo_g505s_sci_map[] = {
Elyes HAOUASa342f392018-10-17 10:56:26 +020091 {GEVENT_PIN(EC_SCI_GEVENT), EC_SCI_GPE},
92 {GEVENT_PIN(EC_LID_GEVENT), EC_LID_GPE},
93 {GEVENT_PIN(PCIE_GEVENT), PCIE_GPE},
Edward O'Callaghan32960e32014-11-23 17:38:52 +110094 {SCI_MAP_OHCI_12_0, PME_GPE},
95 {SCI_MAP_OHCI_13_0, PME_GPE},
96 {SCI_MAP_XHCI_10_0, PME_GPE},
97 {SCI_MAP_PWRBTN, PME_GPE},
98};
Angel Ponsdb2e1182020-05-22 21:34:10 +020099#define BLDCFG_FCH_SCI_MAP_LIST (lenovo_g505s_sci_map)
Edward O'Callaghan32960e32014-11-23 17:38:52 +1100100
Angel Ponsdb2e1182020-05-22 21:34:10 +0200101/*
102 * Process the options...
103 * This file include MUST occur AFTER the user option selection settings.
104 * AGESA nonsense: Moving this include up will break AGESA.
105 */
Kyösti Mälkkic8e47422017-08-31 08:52:12 +0300106#include <PlatformInstall.h>