blob: 6f273952cfb621e5b40ac0faf18a7cc8b82a4875 [file] [log] [blame]
Marc Jones24484842017-05-04 21:17:45 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <console/console.h>
17#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <device/pci_ops.h>
21#include <device/pci_ehci.h>
22#include <arch/io.h>
23#include <soc/hudson.h>
24
25static struct pci_operations lops_pci = {
26 .set_subsystem = pci_dev_set_subsystem,
27};
28
29static void usb_init(struct device *dev)
30{
31}
32
33static struct device_operations usb_ops = {
34 .read_resources = pci_ehci_read_resources,
35 .set_resources = pci_dev_set_resources,
36 .enable_resources = pci_dev_enable_resources,
37 .init = usb_init,
38 .scan_bus = 0,
39 .ops_pci = &lops_pci,
40};
41
42static const unsigned short pci_device_ids[] = {
43 PCI_DEVICE_ID_AMD_SB900_USB_18_0,
44 PCI_DEVICE_ID_AMD_SB900_USB_18_2,
45 PCI_DEVICE_ID_AMD_SB900_USB_20_5,
46 PCI_DEVICE_ID_AMD_CZ_USB_0,
47 PCI_DEVICE_ID_AMD_CZ_USB_1,
48 PCI_DEVICE_ID_AMD_CZ_USB3_0,
49 0
50};
51
52static const struct pci_driver usb_0_driver __pci_driver = {
53 .ops = &usb_ops,
54 .vendor = PCI_VENDOR_ID_AMD,
55 .devices = pci_device_ids,
56};