a0ea5f64e1a740bc2c52f654a79f9019f69af25e
[coreboot.git] / src / southbridge / intel / i82801dx / i82801dx_usb2.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2003 Tyan
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <device/device.h>
24 #include <device/pci.h>
25 #include <device/pci_ids.h>
26 #include <device/pci_ops.h>
27 #include "i82801dx.h"
28
29 static void usb2_init(struct device *dev)
30 {
31         u32 cmd;
32         printk(BIOS_DEBUG, "USB: Setting up controller.. ");
33         cmd = pci_read_config32(dev, PCI_COMMAND);
34         pci_write_config32(dev, PCI_COMMAND,
35                            cmd | PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
36                            PCI_COMMAND_MASTER | PCI_COMMAND_INVALIDATE);
37         printk(BIOS_DEBUG, "done.\n");
38 }
39
40 static struct device_operations usb2_ops = {
41         .read_resources = pci_dev_read_resources,
42         .set_resources = pci_dev_set_resources,
43         .enable_resources = pci_dev_enable_resources,
44         .init = usb2_init,
45         .scan_bus = 0,
46         .enable = i82801dx_enable,
47 };
48
49 /* 82801DB/DBM USB 2.0 */
50 static const struct pci_driver usb2_driver __pci_driver = {
51         .ops = &usb2_ops,
52         .vendor = PCI_VENDOR_ID_INTEL,
53         .device = PCI_DEVICE_ID_INTEL_82801DB_EHCI,
54 };