blob: 1ff04dfbc0f4850fac4d353004afe1897057ae5f [file] [log] [blame]
Morgan Tsai1602dd52007-10-29 21:00:14 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Morgan Tsai1602dd52007-10-29 21:00:14 +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.
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
Paul Menzela46a7122013-02-23 18:37:27 +010021 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Morgan Tsai1602dd52007-10-29 21:00:14 +000022 */
23
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000024/* TODO: Check whether this actually works (might be copy-paste leftover). */
25
Kyösti Mälkki1fd75082013-06-11 16:32:01 +030026// Use simple device model for this file even in ramstage
27#define __SIMPLE_DEVICE__
28
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000029#include <stdint.h>
Patrick Georgi5692c572010-10-05 13:40:31 +000030#include <arch/io.h>
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000031#include <usbdebug.h>
32#include <device/pci_def.h>
Patrick Georgi5692c572010-10-05 13:40:31 +000033#include "sis966.h"
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000034
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000035void set_debug_port(unsigned int port)
Morgan Tsai1602dd52007-10-29 21:00:14 +000036{
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000037 u32 dword;
38 device_t dev = PCI_DEV(0, SIS966_DEVN_BASE + 2, 1); /* USB EHCI */
Morgan Tsai1602dd52007-10-29 21:00:14 +000039
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000040 /* Write the port number to 0x74[15:12]. */
41 dword = pci_read_config32(dev, 0x74);
42 dword &= ~(0xf << 12);
43 dword |= (port << 12);
44 pci_write_config32(dev, 0x74, dword);
Morgan Tsai1602dd52007-10-29 21:00:14 +000045}
46
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000047void enable_usbdebug(unsigned int port)
Morgan Tsai1602dd52007-10-29 21:00:14 +000048{
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000049 device_t dev = PCI_DEV(0, SIS966_DEVN_BASE + 2, 1); /* USB EHCI */
50
51 /* Mark the requested physical USB port (1-15) as the Debug Port. */
Morgan Tsai1602dd52007-10-29 21:00:14 +000052 set_debug_port(port);
Morgan Tsai1602dd52007-10-29 21:00:14 +000053
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000054 /* Set the EHCI BAR address. */
Patrick Georgi5692c572010-10-05 13:40:31 +000055 pci_write_config32(dev, EHCI_BAR_INDEX, CONFIG_EHCI_BAR);
Uwe Hermanndc3aa7a2010-09-25 23:47:15 +000056
57 /* Enable access to the EHCI memory space registers. */
58 pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
59}