blob: 7af66e609b0f54ab5125296bcf9cf561bc0b0d45 [file] [log] [blame]
Ritul Guru286c2f62021-02-05 23:53:28 +05301/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <console/console.h>
4#include <device/device.h>
Felix Held00792002024-01-26 14:41:14 +01005#include <amdblocks/acpi.h>
Ritul Guru286c2f62021-02-05 23:53:28 +05306#include <amdblocks/amd_pci_util.h>
7#include <FspsUpd.h>
Aamir Bohra9fe70ed2021-03-31 17:35:20 +05308#include <gpio.h>
Ritul Guru286c2f62021-02-05 23:53:28 +05309#include <soc/cpu.h>
10#include <soc/southbridge.h>
11#include <soc/pci_devs.h>
Aamir Bohra9fe70ed2021-03-31 17:35:20 +053012#include <soc/platform_descriptors.h>
Ritul Guru286c2f62021-02-05 23:53:28 +053013#include <types.h>
14#include <commonlib/helpers.h>
Felix Held2bfc6c62021-12-17 18:51:21 +010015#include <soc/amd/picasso/chip.h>
Ritul Guru286c2f62021-02-05 23:53:28 +053016#include "gpio.h"
Aamir Bohra9fe70ed2021-03-31 17:35:20 +053017#include "mainboard.h"
18
19#define MAINBOARD_SHARED_DDI_PORTS 2
Ritul Guru286c2f62021-02-05 23:53:28 +053020
21/* TODO: recheck IRQ tables */
22
Felix Heldcf92ecf2022-10-26 00:59:13 +020023/* 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. */
Felix Held067f7032022-10-25 23:30:43 +020025static const struct fch_irq_routing fch_irq_map[] = {
Ritul Guru286c2f62021-02-05 23:53:28 +053026 { PIRQ_A, 8, 16 },
27 { PIRQ_B, 10, 17 },
28 { PIRQ_C, 11, 18 },
29 { PIRQ_D, 12, 19 },
Felix Held8c410002023-01-14 00:39:08 +010030 { PIRQ_SCI, ACPI_SCI_IRQ, ACPI_SCI_IRQ },
Ritul Guru286c2f62021-02-05 23:53:28 +053031 { 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 },
42
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 },
48};
49
Felix Heldcf92ecf2022-10-26 00:59:13 +020050const struct fch_irq_routing *mb_get_fch_irq_mapping(size_t *length)
Felix Held166932c2022-10-25 23:40:39 +020051{
52 *length = ARRAY_SIZE(fch_irq_map);
53 return fch_irq_map;
54}
55
Aamir Bohra9fe70ed2021-03-31 17:35:20 +053056static void program_display_sel_gpios(void)
57{
58 int idx, port_type;
59 gpio_t display_sel[MAINBOARD_SHARED_DDI_PORTS] = {GPIO_29, GPIO_31};
60
61 for (idx = 0; idx < MAINBOARD_SHARED_DDI_PORTS; idx++) {
62 port_type = get_ddi_port_conn_type(idx);
63
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);
68 }
Aamir Bohra9fe70ed2021-03-31 17:35:20 +053069}
70
Ritul Guru286c2f62021-02-05 23:53:28 +053071static void mainboard_init(void *chip_info)
72{
73 struct soc_amd_picasso_config *cfg = config_of_soc();
74
75 if (!CONFIG(BILBY_LPC))
76 cfg->emmc_config.timing = SD_EMMC_EMMC_HS400;
77
78 mainboard_program_gpios();
79
Aamir Bohra9fe70ed2021-03-31 17:35:20 +053080 program_display_sel_gpios();
81
Ritul Guru286c2f62021-02-05 23:53:28 +053082 /* 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();
87}
88
Ritul Guru286c2f62021-02-05 23:53:28 +053089struct chip_operations mainboard_ops = {
90 .init = mainboard_init,
Ritul Guru286c2f62021-02-05 23:53:28 +053091};