Add support for Intel Panther Point PCH
[coreboot.git] / src / southbridge / intel / bd82x6x / usb_debug.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2009 coresystems GmbH
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  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <stdint.h>
21 #include <arch/io.h>
22 #include <arch/romcc_io.h>
23 #include <console/console.h>
24 #include <usbdebug.h>
25 #include <device/pci_def.h>
26 #include "pch.h"
27
28 /* Required for successful build, but currently empty. */
29 void set_debug_port(unsigned int port)
30 {
31         /* Not needed, the ICH* southbridges hardcode physical USB port 1. */
32 }
33
34 void enable_usbdebug(unsigned int port)
35 {
36         u32 dbgctl;
37         device_t dev = PCI_DEV(0, 0x1d, 7); /* USB EHCI, D29:F7 */
38
39         /* Set the EHCI BAR address. */
40         pci_write_config32(dev, EHCI_BAR_INDEX, CONFIG_EHCI_BAR);
41
42         /* Enable access to the EHCI memory space registers. */
43         pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
44
45         /* Force ownership of the Debug Port to the EHCI controller. */
46         printk(BIOS_DEBUG, "Enabling OWNER_CNT\n");
47         dbgctl = read32(CONFIG_EHCI_BAR + CONFIG_EHCI_DEBUG_OFFSET);
48         dbgctl |= (1 << 30);
49         write32(CONFIG_EHCI_BAR + CONFIG_EHCI_DEBUG_OFFSET, dbgctl);
50 }
51