2011-11-29 18:05:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
* (C) Copyright 2008,2009
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-11-29 18:05:07 +00:00
|
|
|
*/
|
|
|
|
|
2012-10-10 13:12:57 +00:00
|
|
|
#include <common.h>
|
2015-03-05 19:25:32 +00:00
|
|
|
#include <dm.h>
|
2012-10-10 13:12:57 +00:00
|
|
|
#include <pci.h>
|
2015-04-20 13:07:03 +00:00
|
|
|
|
|
|
|
static const struct udevice_id generic_pch_ids[] = {
|
2016-01-19 03:19:21 +00:00
|
|
|
{ .compatible = "intel,pch7" },
|
|
|
|
{ .compatible = "intel,pch9" },
|
2015-04-20 13:07:03 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(generic_pch_drv) = {
|
|
|
|
.name = "pch",
|
|
|
|
.id = UCLASS_PCH,
|
|
|
|
.of_match = generic_pch_ids,
|
|
|
|
};
|