* Set USBDEBUG_DEFAULT_PORT in all southbridges and use that value
[coreboot.git] / src / southbridge / amd / sb600 / enable_usbdebug.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
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 <usbdebug.h>
24 #include <device/pci_def.h>
25 #include "sb600.h"
26
27 /* Required for successful build, but currently empty. */
28 void set_debug_port(unsigned int port)
29 {
30         /* TODO: Allow changing the physical USB port used as Debug Port. */
31 }
32
33 void enable_usbdebug(unsigned int port)
34 {
35         device_t dev = PCI_DEV(0, 0x13, 5); /* USB EHCI, D19:F5 */
36
37         /* Select the requested physical USB port (1-15) as the Debug Port. */
38         set_debug_port(port);
39
40         /* Set the EHCI BAR address. */
41         pci_write_config32(dev, EHCI_BAR_INDEX, CONFIG_EHCI_BAR);
42
43         /* Enable access to the EHCI memory space registers. */
44         pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY);
45 }