blob: 9a9156829ec25fe943d8f2ff4d0eac8c78e57754 [file] [log] [blame]
efdesign9895b66112011-07-20 13:23:04 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
efdesign9895b66112011-07-20 13:23:04 -060014 */
15
Kyösti Mälkki526c2fb2014-07-10 22:16:58 +030016#include "AGESA.h"
efdesign9895b66112011-07-20 13:23:04 -060017#include "amdlib.h"
Kyösti Mälkki6e74b2c2014-12-16 07:34:58 +020018#include <northbridge/amd/agesa/agesawrapper.h>
Kyösti Mälkki26f297e2014-05-26 11:27:54 +030019#include <northbridge/amd/agesa/BiosCallOuts.h>
efdesign9895b66112011-07-20 13:23:04 -060020#include "Ids.h"
efdesign9895b66112011-07-20 13:23:04 -060021#include "heapManager.h"
Kimarie Hooteef45f92013-03-08 13:54:10 -070022#include <arch/io.h>
Kimarie Hooteef45f92013-03-08 13:54:10 -070023
24#ifdef __PRE_RAM__
25/* These defines are used to select the appropriate socket for the SPD read
26 * because this is a multi-socket design.
27 */
28#define PCI_REG_GPIO_56_to_53_CNTRL (0x52)
29#define GPIO_OUT_BIT_GPIO53 (BIT0)
30#define GPIO_OUT_BIT_GPIO54 (BIT1)
31#define GPIO_OUT_ENABLE_BIT_GPIO53 (BIT4)
32#define GPIO_OUT_ENABLE_BIT_GPIO54 (BIT5)
33
34#define GPIO_OUT_BIT_GPIO54_to_53_MASK \
35 (GPIO_OUT_BIT_GPIO54 | GPIO_OUT_BIT_GPIO53)
36#define GPIO_OUT_ENABLE_BIT_GPIO54_to_53_MASK \
37 (GPIO_OUT_ENABLE_BIT_GPIO54 | GPIO_OUT_ENABLE_BIT_GPIO53)
38
39static UINT8 select_socket(UINT8 socket_id)
40{
Antonello Dettori6fec83a2016-11-08 18:44:46 +010041 pci_devfn_t sm_dev = PCI_DEV(0, 0x14, 0); //SMBus
Kimarie Hooteef45f92013-03-08 13:54:10 -070042 UINT8 value = 0;
43 UINT8 gpio56_to_53 = 0;
44
45 /* Configure GPIO54,53 to select the desired socket
46 * GPIO54,53 control the HC4052 S1,S0
47 * S1 S0 true table
48 * 0 0 channel 1 (Socket1)
49 * 0 1 channel 2 (Socket2)
50 * 1 0 channel 3 (Socket3)
51 * 1 1 channel 4 (Socket4)
52 */
53 gpio56_to_53 = pci_read_config8(sm_dev, PCI_REG_GPIO_56_to_53_CNTRL);
54 value = gpio56_to_53 & (~GPIO_OUT_BIT_GPIO54_to_53_MASK);
55 value |= socket_id;
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060056 value &= (~GPIO_OUT_ENABLE_BIT_GPIO54_to_53_MASK); // 0 = Output Enabled, 1 = Tristate
Kimarie Hooteef45f92013-03-08 13:54:10 -070057 pci_write_config8(sm_dev, PCI_REG_GPIO_56_to_53_CNTRL, value);
58
59 return gpio56_to_53;
60}
61
62static void restore_socket(UINT8 original_value)
63{
Antonello Dettori6fec83a2016-11-08 18:44:46 +010064 pci_devfn_t sm_dev = PCI_DEV(0, 0x14, 0); //SMBus
Kimarie Hooteef45f92013-03-08 13:54:10 -070065 pci_write_config8(sm_dev, PCI_REG_GPIO_56_to_53_CNTRL, original_value);
66}
67#endif
efdesign9895b66112011-07-20 13:23:04 -060068
Stefan Reinauerdd132a52015-07-30 11:16:37 -070069static AGESA_STATUS board_ReadSpd (UINT32 Func, UINTN Data, VOID *ConfigPtr);
Kyösti Mälkkic0096012014-05-05 18:56:33 +030070
Kyösti Mälkki6025efa2014-05-05 13:20:56 +030071#include <stdlib.h>
72const BIOS_CALLOUT_STRUCT BiosCallouts[] =
efdesign9895b66112011-07-20 13:23:04 -060073{
Kyösti Mälkki5e19fa42014-05-04 23:13:54 +030074 {AGESA_DO_RESET, agesa_Reset },
Kyösti Mälkkic0096012014-05-05 18:56:33 +030075 {AGESA_READ_SPD, board_ReadSpd },
Kyösti Mälkkic459f962014-05-04 17:07:45 +030076 {AGESA_READ_SPD_RECOVERY, agesa_NoopUnsupported },
Kyösti Mälkki6b4b1512014-05-05 12:05:53 +030077 {AGESA_RUNFUNC_ONAP, agesa_RunFuncOnAp },
Kyösti Mälkkic459f962014-05-04 17:07:45 +030078 {AGESA_GET_IDS_INIT_DATA, agesa_EmptyIdsInitData },
79 {AGESA_HOOKBEFORE_DQS_TRAINING, agesa_NoopSuccess },
80 {AGESA_HOOKBEFORE_DRAM_INIT, agesa_NoopSuccess },
81 {AGESA_HOOKBEFORE_EXIT_SELF_REF, agesa_NoopSuccess },
efdesign9895b66112011-07-20 13:23:04 -060082};
Kyösti Mälkki6025efa2014-05-05 13:20:56 +030083const int BiosCalloutsLen = ARRAY_SIZE(BiosCallouts);
efdesign9895b66112011-07-20 13:23:04 -060084
Stefan Reinauerdd132a52015-07-30 11:16:37 -070085static AGESA_STATUS board_ReadSpd (UINT32 Func, UINTN Data, VOID *ConfigPtr)
efdesign9895b66112011-07-20 13:23:04 -060086{
87 AGESA_STATUS Status;
Kimarie Hooteef45f92013-03-08 13:54:10 -070088#ifdef __PRE_RAM__
89 UINT8 original_value = 0;
90
91 if (ConfigPtr == NULL)
92 return AGESA_ERROR;
93
94 original_value = select_socket(((AGESA_READ_SPD_PARAMS *)ConfigPtr)->SocketId);
95
Kyösti Mälkkia1ebbc42014-10-17 22:33:22 +030096 Status = agesa_ReadSpd (Func, Data, ConfigPtr);
Kimarie Hooteef45f92013-03-08 13:54:10 -070097
98 restore_socket(original_value);
99#else
100 Status = AGESA_UNSUPPORTED;
101#endif
efdesign9895b66112011-07-20 13:23:04 -0600102
103 return Status;
104}