blob: 2728be0e4f1be2b73b13f6114e3d683cb758a960 [file] [log] [blame]
Stefan Reinauerbb01f602009-07-21 21:20:45 +00001/*
2 * This file is part of the coreboot project.
3 *
Uwe Hermann06694a82010-09-23 18:16:46 +00004 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
6 *
Stefan Reinauerbb01f602009-07-21 21:20:45 +00007 * 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
Stefan Reinauer56394482010-05-25 16:02:28 +000021#ifndef USBDEBUG_H
22#define USBDEBUG_H
Yinghai Lud57241f2007-02-28 11:17:02 +000023
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030024#define EHCI_BAR_INDEX 0x10
25
26#ifndef __PRE_RAM__
27#if !CONFIG_USBDEBUG
28#define pci_ehci_read_resources pci_dev_read_resources
29#else
30/* Relocation of EHCI Debug Port BAR
31 *
32 * PCI EHCI controller with Debug Port capability shall replace
33 * pci_dev_read_resources() with pci_ehci_read_resources() in its
34 * declaration of device_operations for .read_resources.
35 * This installs a hook to reconfigure usbdebug when resource allocator
36 * assigns a new BAR for the device.
37 */
38struct device;
39void pci_ehci_read_resources(struct device *dev);
40#endif
41#endif
Myles Watson127e9762010-08-04 19:29:11 +000042
Kyösti Mälkki026ff3e2013-07-08 18:11:44 +030043struct dbgp_pipe;
Kyösti Mälkki4d409b52013-07-05 21:38:54 +030044
Sven Schnelle20fc6312011-10-30 09:57:35 +010045void enable_usbdebug(unsigned int port);
Stefan Reinauer7e16bf32009-04-21 23:05:13 +000046void set_debug_port(unsigned port);
Kyösti Mälkki4d409b52013-07-05 21:38:54 +030047
Kyösti Mälkki9e7806a2013-07-06 11:56:49 +030048int usbdebug_init(void);
Kyösti Mälkki026ff3e2013-07-08 18:11:44 +030049
50struct dbgp_pipe *dbgp_console_output(void);
51struct dbgp_pipe *dbgp_console_input(void);
52int dbgp_ep_is_active(struct dbgp_pipe *pipe);
53int dbgp_bulk_write_x(struct dbgp_pipe *pipe, const char *bytes, int size);
54int dbgp_bulk_read_x(struct dbgp_pipe *pipe, void *data, int size);
55void usbdebug_tx_byte(struct dbgp_pipe *pipe, unsigned char data);
56void usbdebug_tx_flush(struct dbgp_pipe *pipe);
Sven Schnelle20fc6312011-10-30 09:57:35 +010057#endif