• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <amdblocks/amd_pci_util.h>
4 #include <device/device.h>
5 
6 /*
7  * This controls the device -> IRQ routing.
8  *
9  */
10 static const struct fch_irq_routing fch_irq_map[] = {
11 };
12 
mb_get_fch_irq_mapping(size_t * length)13 const struct fch_irq_routing *mb_get_fch_irq_mapping(size_t *length)
14 {
15 	*length = ARRAY_SIZE(fch_irq_map);
16 	return fch_irq_map;
17 }
18 
mainboard_init(void * chip_info)19 static void mainboard_init(void *chip_info)
20 {
21 }
22 
mainboard_enable(struct device * dev)23 static void mainboard_enable(struct device *dev)
24 {
25 }
26 
27 struct chip_operations mainboard_ops = {
28 	.init = mainboard_init,
29 	.enable_dev = mainboard_enable,
30 };
31