Now that the VIA code is run above 1Meg (like other boards), it should
[coreboot.git] / src / include / usbdebug.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 AMD
5  * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
6  *
7  * 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
21 #ifndef USBDEBUG_H
22 #define USBDEBUG_H
23
24 #include <ehci.h>
25
26 struct ehci_debug_info {
27         void *ehci_caps;
28         void *ehci_regs;
29         void *ehci_debug;
30         unsigned devnum;
31         unsigned endpoint_out;
32         unsigned endpoint_in;
33 };
34
35 int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
36 int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
37 int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
38         int value, int index, void *data, int size);
39 int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port);
40 void set_ehci_base(unsigned ehci_base);
41 void set_ehci_debug(unsigned ehci_deug);
42 unsigned get_ehci_debug(void);
43 void set_debug_port(unsigned port);
44 void early_usbdebug_init(void);
45 void usbdebug_ram_tx_byte(unsigned char data);
46 void usbdebug_tx_byte(unsigned char data);
47
48 #endif