blob: 39f16972ecb53944fdd46fe0ce5d3d29d767e3f3 [file] [log] [blame]
Angel Pons5c596802020-04-03 01:21:01 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jones91135fe2016-09-20 20:36:08 -06002
Marc Jones91135fe2016-09-20 20:36:08 -06003#include <device/device.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -07004#include <amdblocks/agesawrapper.h>
Richard Spiegel2bbc3dc2017-12-06 16:14:58 -07005#include <amdblocks/amd_pci_util.h>
Elyes Haouas9aebc192023-01-30 20:02:03 +01006#include <gpio.h>
Justin TerAvest3fe3f042018-02-14 19:10:15 -07007#include <soc/southbridge.h>
8
9#include "gpio.h"
Marc Jones91135fe2016-09-20 20:36:08 -060010
Felix Heldcf92ecf2022-10-26 00:59:13 +020011/* The IRQ mapping in fch_irq_map ends up getting written to the indirect address space that is
12 accessed via I/O ports 0xc00/0xc01. */
Felix Held9a1da4b2022-10-25 22:45:58 +020013static const struct fch_irq_routing fch_irq_map[] = {
14 { PIRQ_A, 3, 16 },
15 { PIRQ_B, 4, 17 },
16 { PIRQ_C, 5, 18 },
17 { PIRQ_D, 7, 19 },
18 { PIRQ_E, 11, 20 },
19 { PIRQ_F, 10, 21 },
20 { PIRQ_G, PIRQ_NC, 22 },
21 { PIRQ_H, PIRQ_NC, 23 },
22 { PIRQ_SCI, PIRQ_NC, 9 },
23 { PIRQ_SMBUS, PIRQ_NC, PIRQ_NC },
24 { PIRQ_HDA, 3, 16 },
25 { PIRQ_SD, PIRQ_NC, 16 },
26 { PIRQ_SDIO, PIRQ_NC, PIRQ_NC },
27 { PIRQ_EHCI, 5, 18 },
28 { PIRQ_XHCI, 4, 18 },
29 { PIRQ_SATA, PIRQ_NC, 19 },
30 { PIRQ_GPIO, 7, 7 },
31 { PIRQ_I2C0, 3, 3 },
32 { PIRQ_I2C1, 15, 15 },
33 { PIRQ_I2C2, 6, 6 },
34 { PIRQ_I2C3, 14, 14 },
35 { PIRQ_UART0, 10, 10 },
36 { PIRQ_UART1, 11, 11 },
37
38 /* The MISC registers are not interrupt numbers */
39 { PIRQ_MISC, 0xfa, 0x00 },
40 { PIRQ_MISC0, 0xf1, 0x00 },
41 { PIRQ_MISC1, 0x00, 0x00 },
42 { PIRQ_MISC2, 0x00, 0x00 },
Marc Jones91135fe2016-09-20 20:36:08 -060043};
44
Felix Heldcf92ecf2022-10-26 00:59:13 +020045const struct fch_irq_routing *mb_get_fch_irq_mapping(size_t *length)
Felix Held9a1da4b2022-10-25 22:45:58 +020046{
47 *length = ARRAY_SIZE(fch_irq_map);
48 return fch_irq_map;
49}
50
Justin TerAvest3fe3f042018-02-14 19:10:15 -070051static void mainboard_init(void *chip_info)
52{
53 size_t num_gpios;
Richard Spiegel6fcb9b02018-04-18 08:06:33 -070054 const struct soc_amd_gpio *gpios;
Justin TerAvest3fe3f042018-02-14 19:10:15 -070055 gpios = gpio_table(&num_gpios);
Felix Held7011fa12021-09-22 16:36:12 +020056 gpio_configure_pads(gpios, num_gpios);
Justin TerAvest3fe3f042018-02-14 19:10:15 -070057}
Marc Jones91135fe2016-09-20 20:36:08 -060058
Marc Jones91135fe2016-09-20 20:36:08 -060059struct chip_operations mainboard_ops = {
Justin TerAvest3fe3f042018-02-14 19:10:15 -070060 .init = mainboard_init,
Marc Jones91135fe2016-09-20 20:36:08 -060061};