Use common GPL-header format in CK804 files, add missing ones (trivial).
[coreboot.git] / src / southbridge / nvidia / ck804 / ck804_usb.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  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of 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, MA  02110-1301 USA
19  */
20
21 #include <console/console.h>
22 #include <device/device.h>
23 #include <device/pci.h>
24 #include <device/pci_ids.h>
25 #include <device/pci_ops.h>
26 #include "ck804.h"
27
28 static void usb1_init(struct device *dev)
29 {
30         struct southbridge_nvidia_ck804_config const *conf = dev->chip_info;
31         if (conf->usb1_hc_reset) {
32                 /*
33                  * Somehow the warm reset does not really reset the USB
34                  * controller. Later, during boot, when the Bus Master bit is
35                  * set, the USB controller trashes the memory, causing weird
36                  * misbehavior. Was detected on Sun Ultra40, where mptable
37                  * was damaged.
38                  */
39                 uint32_t bar0 = pci_read_config32(dev, 0x10);
40                 uint32_t *regs = (uint32_t *) (bar0 & ~0xfff);
41
42                 /* OHCI USB HCCommandStatus Register, HostControllerReset bit */
43                 regs[2] |= 1;
44         }
45 }
46
47 static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
48 {
49         pci_write_config32(dev, 0x40,
50                            ((device & 0xffff) << 16) | (vendor & 0xffff));
51 }
52
53 static struct pci_operations lops_pci = {
54         .set_subsystem = lpci_set_subsystem,
55 };
56
57 static struct device_operations usb_ops = {
58         .read_resources   = pci_dev_read_resources,
59         .set_resources    = pci_dev_set_resources,
60         .enable_resources = pci_dev_enable_resources,
61         .init             = usb1_init,
62         // .enable        = ck804_enable,
63         .scan_bus         = 0,
64         .ops_pci          = &lops_pci,
65 };
66
67 static const struct pci_driver usb_driver __pci_driver = {
68         .ops    = &usb_ops,
69         .vendor = PCI_VENDOR_ID_NVIDIA,
70         .device = PCI_DEVICE_ID_NVIDIA_CK804_USB,
71 };