blob: 98e1aea998a0eef51fb244e296741e525fe46937 [file] [log] [blame]
Stefan Reinauerbb01f602009-07-21 21:20:45 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
16 */
17
Yinghai Lud57241f2007-02-28 11:17:02 +000018#ifndef USBDEBUG_DIRECT_H
19#define USBDEBUG_DIRECT_H
20
21struct ehci_debug_info {
22 void *ehci_caps;
23 void *ehci_regs;
24 void *ehci_debug;
25 unsigned devnum;
26 unsigned endpoint_out;
27 unsigned endpoint_in;
28};
Stefan Reinauerbb01f602009-07-21 21:20:45 +000029
Stefan Reinauer7e16bf32009-04-21 23:05:13 +000030int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
31int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
32void set_ehci_base(unsigned ehci_base);
33void set_ehci_debug(unsigned ehci_deug);
34unsigned get_ehci_debug(void);
35void set_debug_port(unsigned port);
Stefan Reinauerbb01f602009-07-21 21:20:45 +000036
Yinghai Lud57241f2007-02-28 11:17:02 +000037#endif