1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <device/device.h>
5 #include <amdblocks/acpi.h>
6 #include <amdblocks/amd_pci_util.h>
10 #include <soc/southbridge.h>
11 #include <soc/pci_devs.h>
12 #include <soc/platform_descriptors.h>
15 #include <commonlib/helpers.h>
16 #include <soc/amd/picasso/chip.h>
18 #include "mainboard.h"
20 #define MAINBOARD_SHARED_DDI_PORTS 2
22 /* TODO: recheck IRQ tables */
24 /* The IRQ mapping in fch_irq_map ends up getting written to the indirect address space that is
25 accessed via I/O ports 0xc00/0xc01. */
26 static const struct fch_irq_routing fch_irq_map
[] = {
31 { PIRQ_SCI
, ACPI_SCI_IRQ
, ACPI_SCI_IRQ
},
32 { PIRQ_SD
, PIRQ_NC
, 16 },
33 { PIRQ_SDIO
, PIRQ_NC
, 16 },
34 { PIRQ_SATA
, PIRQ_NC
, 19 },
35 { PIRQ_EMMC
, PIRQ_NC
, 17 },
38 { PIRQ_I2C3
, 14, 14 },
44 /* The MISC registers are not interrupt numbers */
45 { PIRQ_MISC
, 0xfa, 0x00 },
46 { PIRQ_MISC0
, 0x91, 0x00 },
47 { PIRQ_MISC1
, 0x00, 0x00 },
48 { PIRQ_MISC2
, 0x00, 0x00 },
51 const struct fch_irq_routing
*mb_get_fch_irq_mapping(size_t *length
)
53 *length
= ARRAY_SIZE(fch_irq_map
);
57 static void program_display_sel_gpios(void)
60 gpio_t display_sel
[MAINBOARD_SHARED_DDI_PORTS
] = {GPIO_29
, GPIO_31
};
62 for (idx
= 0; idx
< MAINBOARD_SHARED_DDI_PORTS
; idx
++) {
63 port_type
= get_ddi_port_conn_type(idx
);
65 if (port_type
== HDMI
)
66 gpio_output(display_sel
[idx
], 0);
67 else if (port_type
== DP
)
68 gpio_output(display_sel
[idx
], 1);
72 static void mainboard_init(void *chip_info
)
74 struct soc_amd_picasso_config
*cfg
= config_of_soc();
76 if (!CONFIG(BILBY_LPC
))
77 cfg
->emmc_config
.timing
= SD_EMMC_EMMC_HS400
;
79 mainboard_program_gpios();
81 program_display_sel_gpios();
83 /* Re-muxing LPCCLK0 can hang the system if LPC is in use. */
84 if (CONFIG(BILBY_LPC
))
85 printk(BIOS_INFO
, "eMMC not available due to LPC requirement\n");
87 mainboard_program_emmc_gpios();
90 struct chip_operations mainboard_ops
= {
91 .init
= mainboard_init
,