2007-02-28 12:17:02 +01:00
|
|
|
#include <part/fallback_boot.h>
|
|
|
|
#include "../lib/usbdebug_direct.c"
|
|
|
|
static void early_usbdebug_direct_init(void)
|
|
|
|
{
|
|
|
|
struct ehci_debug_info *dbg_info =
|
2009-06-30 17:17:49 +02:00
|
|
|
(struct ehci_debug_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - sizeof (struct ehci_debug_info));
|
2007-02-28 12:17:02 +01:00
|
|
|
|
|
|
|
usbdebug_direct_init(EHCI_BAR, EHCI_DEBUG_OFFSET, dbg_info);
|
|
|
|
}
|
|
|
|
void usbdebug_direct_tx_byte(unsigned char data)
|
|
|
|
{
|
|
|
|
struct ehci_debug_info *dbg_info;
|
2009-06-30 17:17:49 +02:00
|
|
|
dbg_info = (struct ehci_debug_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - sizeof (struct ehci_debug_info)); // in Cache
|
2007-02-28 12:17:02 +01:00
|
|
|
if (dbg_info->ehci_debug) {
|
|
|
|
dbgp_bulk_write_x(dbg_info, &data, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void usbdebug_direct_ram_tx_byte(unsigned char data)
|
|
|
|
{
|
|
|
|
struct ehci_debug_info *dbg_info;
|
|
|
|
dbg_info = (struct ehci_debug_info *)((CONFIG_LB_MEM_TOPK<<10) - sizeof (struct ehci_debug_info)); //in RAM
|
|
|
|
if (dbg_info->ehci_debug) {
|
|
|
|
dbgp_bulk_write_x(dbg_info, &data, 1);
|
|
|
|
}
|
|
|
|
}
|