blob: ac16346f2a147992c4c0058a55de7541bcc30532 [file] [log] [blame]
Werner Zehe5a1fc72021-07-01 13:40:11 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <baseboard/variants.h>
Werner Zeh4cec1a22021-06-11 06:55:50 +02004#include <bootstate.h>
Werner Zehc2f85c62021-07-23 11:39:04 +02005#include <console/console.h>
Werner Zehe5a1fc72021-07-01 13:40:11 +02006#include <device/device.h>
Werner Zeh78ec7502021-06-11 07:05:06 +02007#include <device/pci_def.h>
8#include <device/pci_ops.h>
9#include <device/pci_ids.h>
Werner Zehc2f85c62021-07-23 11:39:04 +020010#include <hwilib.h>
11#include <i210.h>
Werner Zehe5a1fc72021-07-01 13:40:11 +020012#include <soc/gpio.h>
Werner Zeh2d046932021-11-03 07:26:44 +010013#include <soc/ramstage.h>
Werner Zehc2f85c62021-07-23 11:39:04 +020014#include <string.h>
Werner Zeh4cec1a22021-06-11 06:55:50 +020015#include <timer.h>
16#include <timestamp.h>
Werner Zehc2f85c62021-07-23 11:39:04 +020017
18#define MAX_PATH_DEPTH 12
19#define MAX_NUM_MAPPINGS 10
20
21/** \brief This function can decide if a given MAC address is valid or not.
22 * Currently, addresses filled with 0xff or 0x00 are not valid.
23 * @param mac Buffer to the MAC address to check
24 * @return 0 if address is not valid, otherwise 1
25 */
26static uint8_t is_mac_adr_valid(uint8_t mac[MAC_ADDR_LEN])
27{
28 for (size_t i = 0; i < MAC_ADDR_LEN; i++) {
29 if (mac[i] != 0x00 && mac[i] != 0xff)
30 return 1;
31 if (mac[i] != mac[0])
32 return 1;
33 }
34 return 0;
35}
36
37/** \brief This function will search for a MAC address which can be assigned
38 * to a MACPHY.
39 * @param dev pointer to PCI device
40 * @param mac buffer where to store the MAC address
41 * @return cb_err CB_ERR or CB_SUCCESS
42 */
43enum cb_err mainboard_get_mac_address(struct device *dev, uint8_t mac[MAC_ADDR_LEN])
44{
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020045 struct bus *parent = dev->upstream;
Werner Zehc2f85c62021-07-23 11:39:04 +020046 uint8_t buf[16], mapping[16], i = 0, chain_len = 0;
47
48 memset(buf, 0, sizeof(buf));
49 memset(mapping, 0, sizeof(mapping));
50
51 /* The first entry in the tree is the device itself. */
52 buf[0] = dev->path.pci.devfn;
53 chain_len = 1;
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020054 for (i = 1; i < MAX_PATH_DEPTH && parent->dev->upstream->subordinate; i++) {
Werner Zehc2f85c62021-07-23 11:39:04 +020055 buf[i] = parent->dev->path.pci.devfn;
56 chain_len++;
Arthur Heymans7fcd4d52023-08-24 15:12:19 +020057 parent = parent->dev->upstream;
Werner Zehc2f85c62021-07-23 11:39:04 +020058 }
59 if (i == MAX_PATH_DEPTH) {
60 /* The path is deeper than MAX_PATH_DEPTH devices, error. */
61 printk(BIOS_ERR, "Too many bridges for %s\n", dev_path(dev));
62 return CB_ERR;
63 }
64 /*
65 * Now construct the mapping based on the device chain starting from
66 * root bridge device to the device itself.
67 */
68 mapping[0] = 1;
69 mapping[1] = chain_len;
70 for (i = 0; i < chain_len; i++)
71 mapping[i + 4] = buf[chain_len - i - 1];
72
73 /* Open main hwinfo block */
74 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
75 return CB_ERR;
76 /* Now try to find a valid MAC address in hwinfo for this mapping. */
77 for (i = 0; i < MAX_NUM_MAPPINGS; i++) {
78 if (hwilib_get_field(XMac1Mapping + i, buf, 16) != 16)
79 continue;
80 if (memcmp(buf, mapping, chain_len + 4))
81 continue;
82 /* There is a matching mapping available, get MAC address. */
83 if (hwilib_get_field(XMac1 + i, mac, MAC_ADDR_LEN) == MAC_ADDR_LEN) {
84 if (is_mac_adr_valid(mac))
85 return CB_SUCCESS;
86 }
87 return CB_ERR;
88 }
89 /* No MAC address found for */
90 return CB_ERR;
91}
Werner Zehe5a1fc72021-07-01 13:40:11 +020092
Werner Zeh4cec1a22021-06-11 06:55:50 +020093static void wait_for_legacy_dev(void *unused)
94{
95 uint32_t legacy_delay, us_since_boot;
96 struct stopwatch sw;
97
98 /* Open main hwinfo block. */
99 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
100 return;
101
102 /* Get legacy delay parameter from hwinfo. */
Elyes Haouas486240f2022-11-18 15:21:03 +0100103 if (hwilib_get_field(LegacyDelay, (uint8_t *)&legacy_delay,
Werner Zeh4cec1a22021-06-11 06:55:50 +0200104 sizeof(legacy_delay)) != sizeof(legacy_delay))
105 return;
106
107 us_since_boot = get_us_since_boot();
108 /* No need to wait if the time since boot is already long enough.*/
109 if (us_since_boot > legacy_delay)
110 return;
111 stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
112 printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
113 legacy_delay - us_since_boot, legacy_delay);
114 stopwatch_wait_until_expired(&sw);
115 printk(BIOS_NOTICE, "done!\n");
116}
117
Werner Zeh2d046932021-11-03 07:26:44 +0100118void mainboard_silicon_init_params(FSP_S_CONFIG *params)
119{
120 /* Disable CPU power states (C-states) */
121 params->Cx = 0;
122
123 /* Set maximum package C-state to PkgC0C1 */
124 params->PkgCStateLimit = 0;
Werner Zeh9916eb42021-11-03 10:37:57 +0100125
126 /* Disable P-States */
127 params->MaxRatio = 0;
Werner Zeh9f7e0182021-11-03 11:44:43 +0100128
129 /* Disable PMC low power modes */
130 params->PmcLpmS0ixSubStateEnableMask = 0;
131 params->PmcV1p05PhyExtFetControlEn = 0;
132 params->PmcV1p05IsExtFetControlEn = 0;
Werner Zeh2d046932021-11-03 07:26:44 +0100133}
134
Werner Zehe5a1fc72021-07-01 13:40:11 +0200135static void mainboard_init(void *chip_info)
136{
137 const struct pad_config *pads;
138 size_t num;
139
140 pads = variant_gpio_table(&num);
141 gpio_configure_pads(pads, num);
142}
143
Werner Zeh78ec7502021-06-11 07:05:06 +0200144static void mainboard_final(void *chip_info)
145{
146 struct device *dev;
147
Mario Scheithauerd7f45ea2021-08-24 12:43:45 +0200148 /* Do board specific things */
149 variant_mainboard_final();
150
Werner Zeh78ec7502021-06-11 07:05:06 +0200151 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE)) {
152 /* Set Master Enable for on-board PCI devices if allowed. */
Felix Singer43b7f412022-03-07 04:34:52 +0100153 dev = dev_find_device(PCI_VID_SIEMENS, 0x403e, 0);
Werner Zeh78ec7502021-06-11 07:05:06 +0200154 if (dev)
155 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
156
Felix Singer43b7f412022-03-07 04:34:52 +0100157 dev = dev_find_device(PCI_VID_SIEMENS, 0x403f, 0);
Werner Zeh78ec7502021-06-11 07:05:06 +0200158 if (dev)
159 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
160 }
161}
162
Mario Scheithauerd7f45ea2021-08-24 12:43:45 +0200163/* The following function performs board specific things. */
164void __weak variant_mainboard_final(void)
165{
166}
167
Werner Zehe5a1fc72021-07-01 13:40:11 +0200168struct chip_operations mainboard_ops = {
Werner Zeh78ec7502021-06-11 07:05:06 +0200169 .init = mainboard_init,
170 .final = mainboard_final
Werner Zehe5a1fc72021-07-01 13:40:11 +0200171};
Werner Zeh4cec1a22021-06-11 06:55:50 +0200172
173BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);