1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <baseboard/variants.h>
5 #include <console/console.h>
6 #include <device/device.h>
7 #include <device/pci_def.h>
8 #include <device/pci_ops.h>
9 #include <device/pci_ids.h>
13 #include <soc/ramstage.h>
16 #include <timestamp.h>
18 #define MAX_PATH_DEPTH 12
19 #define MAX_NUM_MAPPINGS 10
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
26 static uint8_t is_mac_adr_valid(uint8_t mac
[MAC_ADDR_LEN
])
28 for (size_t i
= 0; i
< MAC_ADDR_LEN
; i
++) {
29 if (mac
[i
] != 0x00 && mac
[i
] != 0xff)
37 /** \brief This function will search for a MAC address which can be assigned
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
43 enum cb_err
mainboard_get_mac_address(struct device
*dev
, uint8_t mac
[MAC_ADDR_LEN
])
45 struct bus
*parent
= dev
->upstream
;
46 uint8_t buf
[16], mapping
[16], i
= 0, chain_len
= 0;
48 memset(buf
, 0, sizeof(buf
));
49 memset(mapping
, 0, sizeof(mapping
));
51 /* The first entry in the tree is the device itself. */
52 buf
[0] = dev
->path
.pci
.devfn
;
54 for (i
= 1; i
< MAX_PATH_DEPTH
&& parent
->dev
->upstream
->subordinate
; i
++) {
55 buf
[i
] = parent
->dev
->path
.pci
.devfn
;
57 parent
= parent
->dev
->upstream
;
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
));
65 * Now construct the mapping based on the device chain starting from
66 * root bridge device to the device itself.
69 mapping
[1] = chain_len
;
70 for (i
= 0; i
< chain_len
; i
++)
71 mapping
[i
+ 4] = buf
[chain_len
- i
- 1];
73 /* Open main hwinfo block */
74 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS
)
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)
80 if (memcmp(buf
, mapping
, chain_len
+ 4))
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
))
89 /* No MAC address found for */
93 static void wait_for_legacy_dev(void *unused
)
95 uint32_t legacy_delay
, us_since_boot
;
98 /* Open main hwinfo block. */
99 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS
)
102 /* Get legacy delay parameter from hwinfo. */
103 if (hwilib_get_field(LegacyDelay
, (uint8_t *)&legacy_delay
,
104 sizeof(legacy_delay
)) != sizeof(legacy_delay
))
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
)
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");
118 void mainboard_silicon_init_params(FSP_S_CONFIG
*params
)
120 /* Disable CPU power states (C-states) */
123 /* Set maximum package C-state to PkgC0C1 */
124 params
->PkgCStateLimit
= 0;
126 /* Disable P-States */
127 params
->MaxRatio
= 0;
129 /* Disable PMC low power modes */
130 params
->PmcLpmS0ixSubStateEnableMask
= 0;
131 params
->PmcV1p05PhyExtFetControlEn
= 0;
132 params
->PmcV1p05IsExtFetControlEn
= 0;
135 static void mainboard_init(void *chip_info
)
137 const struct pad_config
*pads
;
140 pads
= variant_gpio_table(&num
);
141 gpio_configure_pads(pads
, num
);
144 static void mainboard_final(void *chip_info
)
148 /* Do board specific things */
149 variant_mainboard_final();
151 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE
)) {
152 /* Set Master Enable for on-board PCI devices if allowed. */
153 dev
= dev_find_device(PCI_VID_SIEMENS
, 0x403e, 0);
155 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
157 dev
= dev_find_device(PCI_VID_SIEMENS
, 0x403f, 0);
159 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
163 /* The following function performs board specific things. */
164 void __weak
variant_mainboard_final(void)
168 struct chip_operations mainboard_ops
= {
169 .init
= mainboard_init
,
170 .final
= mainboard_final
173 BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE
, BS_ON_ENTRY
, wait_for_legacy_dev
, NULL
);