MCP55: Cosmetic fixes, switch to u8 et al.
[coreboot.git] / src / southbridge / nvidia / mcp55 / usb2.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Tyan Computer
5  * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
6  * Copyright (C) 2006,2007 AMD
7  * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  */
23
24 #include <console/console.h>
25 #include <device/device.h>
26 #include <device/pci.h>
27 #include <device/pci_ids.h>
28 #include <device/pci_ops.h>
29 #include "mcp55.h"
30 #include <usbdebug.h>
31
32 extern struct ehci_debug_info dbg_info;
33
34 static void usb2_init(struct device *dev)
35 {
36         u32 dword;
37         dword = pci_read_config32(dev, 0xf8);
38         dword |= 40;
39         pci_write_config32(dev, 0xf8, dword);
40 }
41
42 static void usb2_set_resources(struct device *dev)
43 {
44 #if CONFIG_USBDEBUG
45         struct resource *res;
46         unsigned base;
47         unsigned old_debug;
48
49         old_debug = get_ehci_debug();
50         set_ehci_debug(0);
51 #endif
52         pci_dev_set_resources(dev);
53
54 #if CONFIG_USBDEBUG
55         res = find_resource(dev, 0x10);
56         set_ehci_debug(old_debug);
57         if (!res) return;
58         base = res->base;
59         set_ehci_base(base);
60         report_resource_stored(dev, res, "");
61 #endif
62
63 }
64
65 static struct device_operations usb2_ops  = {
66         .read_resources = pci_dev_read_resources,
67         .set_resources  = usb2_set_resources,
68         .enable_resources       = pci_dev_enable_resources,
69         .init           = usb2_init,
70 //      .enable         = mcp55_enable,
71         .scan_bus       = 0,
72         .ops_pci        = &mcp55_pci_ops,
73 };
74
75 static const struct pci_driver usb2_driver __pci_driver = {
76         .ops    = &usb2_ops,
77         .vendor = PCI_VENDOR_ID_NVIDIA,
78         .device = PCI_DEVICE_ID_NVIDIA_MCP55_USB2,
79 };