/* SPDX-License-Identifier: GPL-2.0-only */ #include #include #include "mainboard.h" static const fsp_dxio_descriptor pco_dxio_descriptors[] = { { /* MXM - Entry 0 */ .port_present = true, .engine_type = PCIE_ENGINE, .start_logical_lane = 15, .end_logical_lane = 8, .device_number = 1, .function_number = 1, .link_aspm = ASPM_L1, .link_aspm_L1_1 = true, .link_aspm_L1_2 = true, .turn_off_unused_lanes = true, .clk_req = CLK_REQ3 }, { /* DEVICE_ID_DT - Entry 1 */ .port_present = true, .engine_type = PCIE_ENGINE, .start_logical_lane = 4, .end_logical_lane = 7, .device_number = 1, .function_number = 2, .link_aspm = ASPM_L1, .link_aspm_L1_1 = true, .link_aspm_L1_2 = true, .turn_off_unused_lanes = true, .clk_req = CLK_REQ4 }, { /* PCIE M.2 x2 - Entry 2 */ .port_present = true, .engine_type = PCIE_ENGINE, .start_logical_lane = 0, .end_logical_lane = 3, .device_number = 1, .function_number = 5, .link_aspm = ASPM_L1, .link_aspm_L1_1 = true, .link_aspm_L1_2 = true, .turn_off_unused_lanes = true, .clk_req = CLK_REQ2 }, }; static const fsp_ddi_descriptor pco_ddi_descriptors[] = { { /* DDI0 - DP */ .connector_type = CONFIG_DDI0_CONNECTOR_TYPE, .aux_index = AUX1, .hdp_index = HDP1 }, { /* DDI1 - DP */ .connector_type = CONFIG_DDI1_CONNECTOR_TYPE, .aux_index = AUX2, .hdp_index = HDP2 }, { /* DDI2 - DP */ .connector_type = DP, .aux_index = AUX3, .hdp_index = HDP3, }, { /* DDI3 - DP */ .connector_type = DP, .aux_index = AUX4, .hdp_index = HDP4, } }; int get_ddi_port_conn_type(uint8_t port_num) { return pco_ddi_descriptors[port_num].connector_type; } void mainboard_get_dxio_ddi_descriptors( const fsp_dxio_descriptor **dxio_descs, size_t *dxio_num, const fsp_ddi_descriptor **ddi_descs, size_t *ddi_num) { *dxio_descs = pco_dxio_descriptors; *dxio_num = ARRAY_SIZE(pco_dxio_descriptors); *ddi_descs = pco_ddi_descriptors; *ddi_num = ARRAY_SIZE(pco_ddi_descriptors); }