blob: c697d8af42b69c0fac10e9eacc79bf7f3c8be11f [file] [log] [blame]
Yinghai Luc65bd562007-02-01 00:10:05 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luc65bd562007-02-01 00:10:05 +00003 *
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.
Yinghai Luc65bd562007-02-01 00:10:05 +000018 */
19
20#include <console/console.h>
21#include <device/device.h>
22#include <device/pci.h>
23#include <device/pci_ids.h>
24#include <device/pci_ops.h>
25#include "mcp55.h"
Kyösti Mälkkie2227a22014-02-05 13:02:55 +020026#include <device/pci_ehci.h>
Yinghai Luc65bd562007-02-01 00:10:05 +000027
Yinghai Luc65bd562007-02-01 00:10:05 +000028static void usb2_init(struct device *dev)
29{
Uwe Hermannc7f0c8f2011-01-04 19:51:33 +000030 u32 dword;
Yinghai Luc65bd562007-02-01 00:10:05 +000031 dword = pci_read_config32(dev, 0xf8);
32 dword |= 40;
33 pci_write_config32(dev, 0xf8, dword);
34}
35
Yinghai Luc65bd562007-02-01 00:10:05 +000036static struct device_operations usb2_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030037 .read_resources = pci_ehci_read_resources,
38 .set_resources = pci_dev_set_resources,
Yinghai Luc65bd562007-02-01 00:10:05 +000039 .enable_resources = pci_dev_enable_resources,
40 .init = usb2_init,
41// .enable = mcp55_enable,
42 .scan_bus = 0,
Jonathan Kollaschdca8b1b2010-10-29 20:40:06 +000043 .ops_pci = &mcp55_pci_ops,
Yinghai Luc65bd562007-02-01 00:10:05 +000044};
45
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000046static const struct pci_driver usb2_driver __pci_driver = {
Yinghai Luc65bd562007-02-01 00:10:05 +000047 .ops = &usb2_ops,
48 .vendor = PCI_VENDOR_ID_NVIDIA,
49 .device = PCI_DEVICE_ID_NVIDIA_MCP55_USB2,
50};