mb/google/brya: Create rull variant
[coreboot2.git] / src / mainboard / facebook / fbg1701 / mainboard.c
blob7838bab5283ab2d24b48eb1cc8425eef80e08396
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
5 /*
6 * Declare the resources we are using
7 */
8 static void mainboard_reserve_resources(struct device *dev)
10 unsigned int idx = 0;
11 struct resource *res;
14 * CPLD: Reserve the IRQ here all others are within the default LPC
15 * range 0 to 1000h
17 res = new_resource(dev, idx++);
18 res->base = 0x7;
19 res->size = 0x1;
20 res->flags = IORESOURCE_IRQ | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
23 static void mainboard_enable(struct device *dev)
25 mainboard_reserve_resources(dev);
28 struct chip_operations mainboard_ops = {
29 .enable_dev = mainboard_enable,