aa3515f684b3ea349da0ededba6ac77d5bfea346
[coreboot.git] / src / include / usbdebug.h
1 /*
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
18 #ifndef USBDEBUG_H
19 #define USBDEBUG_H
20
21 #include <ehci.h>
22
23 struct ehci_debug_info {
24         void *ehci_caps;
25         void *ehci_regs;
26         void *ehci_debug;
27         unsigned devnum;
28         unsigned endpoint_out;
29         unsigned endpoint_in;
30 };
31
32 int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
33 int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
34 int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
35         int value, int index, void *data, int size);
36 int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port);
37 void set_ehci_base(unsigned ehci_base);
38 void set_ehci_debug(unsigned ehci_deug);
39 unsigned get_ehci_debug(void);
40 void set_debug_port(unsigned port);
41 void usbdebug_ram_tx_byte(unsigned char data);
42 void usbdebug_tx_byte(unsigned char data);
43
44 #endif