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>
14 #include <commonlib/helpers.h>
15 #include <soc/amd/picasso/chip.h>
17 #include "mainboard.h"
19 #define MAINBOARD_SHARED_DDI_PORTS 2
21 /* TODO: recheck IRQ tables */
23 /* The IRQ mapping in fch_irq_map ends up getting written to the indirect address space that is
24 accessed via I/O ports 0xc00/0xc01. */
25 static const struct fch_irq_routing fch_irq_map
[] = {
30 { PIRQ_SCI
, ACPI_SCI_IRQ
, ACPI_SCI_IRQ
},
31 { PIRQ_SD
, PIRQ_NC
, 16 },
32 { PIRQ_SDIO
, PIRQ_NC
, 16 },
33 { PIRQ_SATA
, PIRQ_NC
, 19 },
34 { PIRQ_EMMC
, PIRQ_NC
, 17 },
37 { PIRQ_I2C3
, 14, 14 },
43 /* The MISC registers are not interrupt numbers */
44 { PIRQ_MISC
, 0xfa, 0x00 },
45 { PIRQ_MISC0
, 0x91, 0x00 },
46 { PIRQ_MISC1
, 0x00, 0x00 },
47 { PIRQ_MISC2
, 0x00, 0x00 },
50 const struct fch_irq_routing
*mb_get_fch_irq_mapping(size_t *length
)
52 *length
= ARRAY_SIZE(fch_irq_map
);
56 static void program_display_sel_gpios(void)
59 gpio_t display_sel
[MAINBOARD_SHARED_DDI_PORTS
] = {GPIO_29
, GPIO_31
};
61 for (idx
= 0; idx
< MAINBOARD_SHARED_DDI_PORTS
; idx
++) {
62 port_type
= get_ddi_port_conn_type(idx
);
64 if (port_type
== HDMI
)
65 gpio_output(display_sel
[idx
], 0);
66 else if (port_type
== DP
)
67 gpio_output(display_sel
[idx
], 1);
71 static void mainboard_init(void *chip_info
)
73 struct soc_amd_picasso_config
*cfg
= config_of_soc();
75 if (!CONFIG(BILBY_LPC
))
76 cfg
->emmc_config
.timing
= SD_EMMC_EMMC_HS400
;
78 mainboard_program_gpios();
80 program_display_sel_gpios();
82 /* Re-muxing LPCCLK0 can hang the system if LPC is in use. */
83 if (CONFIG(BILBY_LPC
))
84 printk(BIOS_INFO
, "eMMC not available due to LPC requirement\n");
86 mainboard_program_emmc_gpios();
89 struct chip_operations mainboard_ops
= {
90 .init
= mainboard_init
,