soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / mainboard / amd / bilby / mainboard.c
blob7af66e609b0f54ab5125296bcf9cf561bc0b0d45
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>
7 #include <FspsUpd.h>
8 #include <gpio.h>
9 #include <soc/cpu.h>
10 #include <soc/southbridge.h>
11 #include <soc/pci_devs.h>
12 #include <soc/platform_descriptors.h>
13 #include <types.h>
14 #include <commonlib/helpers.h>
15 #include <soc/amd/picasso/chip.h>
16 #include "gpio.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[] = {
26 { PIRQ_A, 8, 16 },
27 { PIRQ_B, 10, 17 },
28 { PIRQ_C, 11, 18 },
29 { PIRQ_D, 12, 19 },
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 },
35 { PIRQ_GPIO, 7, 7 },
36 { PIRQ_I2C2, 6, 6 },
37 { PIRQ_I2C3, 14, 14 },
38 { PIRQ_UART0, 4, 4 },
39 { PIRQ_UART1, 3, 3 },
40 { PIRQ_UART2, 4, 4 },
41 { PIRQ_UART3, 3, 3 },
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);
53 return fch_irq_map;
56 static void program_display_sel_gpios(void)
58 int idx, port_type;
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");
85 else
86 mainboard_program_emmc_gpios();
89 struct chip_operations mainboard_ops = {
90 .init = mainboard_init,