]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/x86/cpu/coreboot/pci.c
armv8/ls1043aqds: add QSPI boot support
[people/ms/u-boot.git] / arch / x86 / cpu / coreboot / pci.c
1 /*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2008,2009
4 * Graeme Russ, <graeme.russ@gmail.com>
5 *
6 * (C) Copyright 2002
7 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12 #include <common.h>
13 #include <dm.h>
14 #include <pci.h>
15
16 static const struct udevice_id generic_pch_ids[] = {
17 { .compatible = "intel,pch" },
18 { }
19 };
20
21 U_BOOT_DRIVER(generic_pch_drv) = {
22 .name = "pch",
23 .id = UCLASS_PCH,
24 .of_match = generic_pch_ids,
25 };