Add support to run SMM handler in TSEG instead of ASEG
[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         u32 devnum;
31         u32 endpoint_out;
32         u32 endpoint_in;
33 };
34
35 #ifndef __ROMCC__
36 void enable_usbdebug(unsigned int port);
37 int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
38 int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
39 void set_ehci_base(unsigned ehci_base);
40 void set_ehci_debug(unsigned ehci_debug);
41 unsigned get_ehci_debug(void);
42 void set_debug_port(unsigned port);
43 int early_usbdebug_init(void);
44 void usbdebug_tx_byte(unsigned char data);
45 int usbdebug_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info);
46 #endif
47 #endif