blob: 990312aa340c43f6496f5dd849bf7c40c1d8b662 [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
Yinghai Lud57241f2007-02-28 11:17:02 +000043struct ehci_debug_info {
44 void *ehci_caps;
45 void *ehci_regs;
46 void *ehci_debug;
Stefan Reinauer16ce01b2011-01-28 08:05:54 +000047 u32 devnum;
48 u32 endpoint_out;
49 u32 endpoint_in;
Sven Schnelle82704c62012-07-26 14:31:40 +020050 char buf[8];
51 u8 bufidx;
Yinghai Lud57241f2007-02-28 11:17:02 +000052};
Stefan Reinauerbb01f602009-07-21 21:20:45 +000053
Sven Schnelle20fc6312011-10-30 09:57:35 +010054void enable_usbdebug(unsigned int port);
Stefan Reinauer7e16bf32009-04-21 23:05:13 +000055int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
56int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
57void set_ehci_base(unsigned ehci_base);
Stefan Reinauer16ce01b2011-01-28 08:05:54 +000058void set_ehci_debug(unsigned ehci_debug);
Stefan Reinauer7e16bf32009-04-21 23:05:13 +000059unsigned get_ehci_debug(void);
60void set_debug_port(unsigned port);
Stefan Reinauer16ce01b2011-01-28 08:05:54 +000061int early_usbdebug_init(void);
Sven Schnelle82704c62012-07-26 14:31:40 +020062void usbdebug_tx_byte(struct ehci_debug_info *info, unsigned char data);
63void usbdebug_tx_flush(struct ehci_debug_info *info);
Sven Schnelle20fc6312011-10-30 09:57:35 +010064int usbdebug_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info);
65#endif