mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
fix most usbdebug warnings and fix function names.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5587 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
da3237376f
commit
75a05dc0b9
18 changed files with 79 additions and 78 deletions
|
@ -83,7 +83,7 @@ static int dbgp_wait_until_complete(struct ehci_dbg_port *ehci_debug)
|
|||
unsigned ctrl;
|
||||
int loop = 0x100000;
|
||||
do {
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
/* Stop when the transaction is finished */
|
||||
if (ctrl & DBGP_DONE)
|
||||
break;
|
||||
|
@ -94,7 +94,7 @@ static int dbgp_wait_until_complete(struct ehci_dbg_port *ehci_debug)
|
|||
/* Now that we have observed the completed transaction,
|
||||
* clear the done bit.
|
||||
*/
|
||||
write32(&ehci_debug->control, ctrl | DBGP_DONE);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl | DBGP_DONE);
|
||||
return (ctrl & DBGP_ERROR) ? -DBGP_ERRCODE(ctrl) : DBGP_LEN(ctrl);
|
||||
}
|
||||
|
||||
|
@ -119,9 +119,9 @@ static int dbgp_wait_until_done(struct ehci_dbg_port *ehci_debug, unsigned ctrl)
|
|||
|
||||
int loop = 3;
|
||||
retry:
|
||||
write32(&ehci_debug->control, ctrl | DBGP_GO);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl | DBGP_GO);
|
||||
ret = dbgp_wait_until_complete(ehci_debug);
|
||||
pids = read32(&ehci_debug->pids);
|
||||
pids = read32((unsigned long)&ehci_debug->pids);
|
||||
lpid = DBGP_PID_GET(pids);
|
||||
|
||||
if (ret < 0)
|
||||
|
@ -151,8 +151,8 @@ static void dbgp_set_data(struct ehci_dbg_port *ehci_debug, const void *buf, int
|
|||
lo |= bytes[i] << (8*i);
|
||||
for (; i < 8 && i < size; i++)
|
||||
hi |= bytes[i] << (8*(i - 4));
|
||||
write32(&ehci_debug->data03, lo);
|
||||
write32(&ehci_debug->data47, hi);
|
||||
write32((unsigned long)&ehci_debug->data03, lo);
|
||||
write32((unsigned long)&ehci_debug->data47, hi);
|
||||
}
|
||||
|
||||
static void dbgp_get_data(struct ehci_dbg_port *ehci_debug, void *buf, int size)
|
||||
|
@ -160,8 +160,8 @@ static void dbgp_get_data(struct ehci_dbg_port *ehci_debug, void *buf, int size)
|
|||
unsigned char *bytes = buf;
|
||||
unsigned lo, hi;
|
||||
int i;
|
||||
lo = read32(&ehci_debug->data03);
|
||||
hi = read32(&ehci_debug->data47);
|
||||
lo = read32((unsigned long)&ehci_debug->data03);
|
||||
hi = read32((unsigned long)&ehci_debug->data47);
|
||||
for (i = 0; i < 4 && i < size; i++)
|
||||
bytes[i] = (lo >> (8*i)) & 0xff;
|
||||
for (; i < 8 && i < size; i++)
|
||||
|
@ -177,17 +177,17 @@ static int dbgp_bulk_write(struct ehci_dbg_port *ehci_debug, unsigned devnum, un
|
|||
|
||||
addr = DBGP_EPADDR(devnum, endpoint);
|
||||
|
||||
pids = read32(&ehci_debug->pids);
|
||||
pids = read32((unsigned long)&ehci_debug->pids);
|
||||
pids = DBGP_PID_UPDATE(pids, USB_PID_OUT);
|
||||
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl = DBGP_LEN_UPDATE(ctrl, size);
|
||||
ctrl |= DBGP_OUT;
|
||||
ctrl |= DBGP_GO;
|
||||
|
||||
dbgp_set_data(ehci_debug, bytes, size);
|
||||
write32(&ehci_debug->address, addr);
|
||||
write32(&ehci_debug->pids, pids);
|
||||
write32((unsigned long)&ehci_debug->address, addr);
|
||||
write32((unsigned long)&ehci_debug->pids, pids);
|
||||
|
||||
ret = dbgp_wait_until_done(ehci_debug, ctrl);
|
||||
if (ret < 0) {
|
||||
|
@ -211,16 +211,16 @@ static int dbgp_bulk_read(struct ehci_dbg_port *ehci_debug, unsigned devnum, uns
|
|||
|
||||
addr = DBGP_EPADDR(devnum, endpoint);
|
||||
|
||||
pids = read32(&ehci_debug->pids);
|
||||
pids = read32((unsigned long)&ehci_debug->pids);
|
||||
pids = DBGP_PID_UPDATE(pids, USB_PID_IN);
|
||||
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl = DBGP_LEN_UPDATE(ctrl, size);
|
||||
ctrl &= ~DBGP_OUT;
|
||||
ctrl |= DBGP_GO;
|
||||
|
||||
write32(&ehci_debug->address, addr);
|
||||
write32(&ehci_debug->pids, pids);
|
||||
write32((unsigned long)&ehci_debug->address, addr);
|
||||
write32((unsigned long)&ehci_debug->pids, pids);
|
||||
ret = dbgp_wait_until_done(ehci_debug, ctrl);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
@ -256,15 +256,15 @@ static int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, i
|
|||
pids = DBGP_PID_SET(USB_PID_DATA0, USB_PID_SETUP);
|
||||
addr = DBGP_EPADDR(devnum, 0);
|
||||
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl = DBGP_LEN_UPDATE(ctrl, sizeof(req));
|
||||
ctrl |= DBGP_OUT;
|
||||
ctrl |= DBGP_GO;
|
||||
|
||||
/* Send the setup message */
|
||||
dbgp_set_data(ehci_debug, &req, sizeof(req));
|
||||
write32(&ehci_debug->address, addr);
|
||||
write32(&ehci_debug->pids, pids);
|
||||
write32((unsigned long)&ehci_debug->address, addr);
|
||||
write32((unsigned long)&ehci_debug->pids, pids);
|
||||
ret = dbgp_wait_until_done(ehci_debug, ctrl);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
@ -282,25 +282,25 @@ static int ehci_reset_port(struct ehci_regs *ehci_regs, int port)
|
|||
int loop;
|
||||
|
||||
/* Reset the usb debug port */
|
||||
portsc = read32(&ehci_regs->port_status[port - 1]);
|
||||
portsc = read32((unsigned long)&ehci_regs->port_status[port - 1]);
|
||||
portsc &= ~PORT_PE;
|
||||
portsc |= PORT_RESET;
|
||||
write32(&ehci_regs->port_status[port - 1], portsc);
|
||||
write32((unsigned long)&ehci_regs->port_status[port - 1], portsc);
|
||||
|
||||
delay = HUB_ROOT_RESET_TIME;
|
||||
for (delay_time = 0; delay_time < HUB_RESET_TIMEOUT;
|
||||
delay_time += delay) {
|
||||
dbgp_mdelay(delay);
|
||||
|
||||
portsc = read32(&ehci_regs->port_status[port - 1]);
|
||||
portsc = read32((unsigned long)&ehci_regs->port_status[port - 1]);
|
||||
if (portsc & PORT_RESET) {
|
||||
/* force reset to complete */
|
||||
loop = 2;
|
||||
write32(&ehci_regs->port_status[port - 1],
|
||||
write32((unsigned long)&ehci_regs->port_status[port - 1],
|
||||
portsc & ~(PORT_RWC_BITS | PORT_RESET));
|
||||
do {
|
||||
dbgp_mdelay(delay);
|
||||
portsc = read32(&ehci_regs->port_status[port - 1]);
|
||||
portsc = read32((unsigned long)&ehci_regs->port_status[port - 1]);
|
||||
delay_time += delay;
|
||||
} while ((portsc & PORT_RESET) && (--loop > 0));
|
||||
if (!loop) {
|
||||
|
@ -329,7 +329,7 @@ static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port)
|
|||
int ret, reps;
|
||||
for (reps = 0; reps < 3; reps++) {
|
||||
dbgp_mdelay(100);
|
||||
status = read32(&ehci_regs->status);
|
||||
status = read32((unsigned long)&ehci_regs->status);
|
||||
if (status & STS_PCD) {
|
||||
ret = ehci_reset_port(ehci_regs, port);
|
||||
if (ret == 0)
|
||||
|
@ -346,7 +346,7 @@ static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port)
|
|||
#else
|
||||
#define dbgp_printk(fmt_arg...) do {} while(0)
|
||||
#endif
|
||||
static void usbdebug_direct_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info)
|
||||
static void usbdebug_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info)
|
||||
{
|
||||
struct ehci_caps *ehci_caps;
|
||||
struct ehci_regs *ehci_regs;
|
||||
|
@ -356,7 +356,6 @@ static void usbdebug_direct_init(unsigned ehci_bar, unsigned offset, struct ehci
|
|||
struct usb_debug_descriptor dbgp_desc;
|
||||
unsigned ctrl, devnum;
|
||||
int ret;
|
||||
unsigned delay_time, delay;
|
||||
int loop;
|
||||
|
||||
unsigned cmd, status, portsc, hcs_params, debug_port, n_ports, new_debug_port;
|
||||
|
@ -366,16 +365,18 @@ static void usbdebug_direct_init(unsigned ehci_bar, unsigned offset, struct ehci
|
|||
unsigned playtimes = 3;
|
||||
|
||||
ehci_caps = (struct ehci_caps *)ehci_bar;
|
||||
ehci_regs = (struct ehci_regs *)(ehci_bar + HC_LENGTH(read32(&ehci_caps->hc_capbase)));
|
||||
ehci_regs = (struct ehci_regs *)(ehci_bar + HC_LENGTH(read32((unsigned long)&ehci_caps->hc_capbase)));
|
||||
ehci_debug = (struct ehci_dbg_port *)(ehci_bar + offset);
|
||||
|
||||
info->ehci_debug = (void *)0;
|
||||
|
||||
new_debug_port = 0;
|
||||
|
||||
try_next_time:
|
||||
port_map_tried = 0;
|
||||
|
||||
try_next_port:
|
||||
hcs_params = read32(&ehci_caps->hcs_params);
|
||||
hcs_params = read32((unsigned long)&ehci_caps->hcs_params);
|
||||
debug_port = HCS_DEBUG_PORT(hcs_params);
|
||||
n_ports = HCS_N_PORTS(hcs_params);
|
||||
|
||||
|
@ -385,7 +386,7 @@ try_next_port:
|
|||
|
||||
#if 1
|
||||
for (i = 1; i <= n_ports; i++) {
|
||||
portsc = read32(&ehci_regs->port_status[i-1]);
|
||||
portsc = read32((unsigned long)&ehci_regs->port_status[i-1]);
|
||||
dbgp_printk("PORTSC #%d: %08x\n", i, portsc);
|
||||
}
|
||||
#endif
|
||||
|
@ -400,11 +401,11 @@ try_next_port:
|
|||
|
||||
/* Reset the EHCI controller */
|
||||
loop = 10;
|
||||
cmd = read32(&ehci_regs->command);
|
||||
cmd = read32((unsigned long)&ehci_regs->command);
|
||||
cmd |= CMD_RESET;
|
||||
write32(&ehci_regs->command, cmd);
|
||||
write32((unsigned long)&ehci_regs->command, cmd);
|
||||
do {
|
||||
cmd = read32(&ehci_regs->command);
|
||||
cmd = read32((unsigned long)&ehci_regs->command);
|
||||
} while ((cmd & CMD_RESET) && (--loop > 0));
|
||||
|
||||
if(!loop)
|
||||
|
@ -413,24 +414,24 @@ try_next_port:
|
|||
dbgp_printk("EHCI controller reset successfully.\n");
|
||||
|
||||
/* Claim ownership, but do not enable yet */
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl |= DBGP_OWNER;
|
||||
ctrl &= ~(DBGP_ENABLED | DBGP_INUSE);
|
||||
write32(&ehci_debug->control, ctrl);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl);
|
||||
|
||||
/* Start the ehci running */
|
||||
cmd = read32(&ehci_regs->command);
|
||||
cmd = read32((unsigned long)&ehci_regs->command);
|
||||
cmd &= ~(CMD_LRESET | CMD_IAAD | CMD_PSE | CMD_ASE | CMD_RESET);
|
||||
cmd |= CMD_RUN;
|
||||
write32(&ehci_regs->command, cmd);
|
||||
write32((unsigned long)&ehci_regs->command, cmd);
|
||||
|
||||
/* Ensure everything is routed to the EHCI */
|
||||
write32(&ehci_regs->configured_flag, FLAG_CF);
|
||||
write32((unsigned long)&ehci_regs->configured_flag, FLAG_CF);
|
||||
|
||||
/* Wait until the controller is no longer halted */
|
||||
loop = 10;
|
||||
do {
|
||||
status = read32(&ehci_regs->status);
|
||||
status = read32((unsigned long)&ehci_regs->status);
|
||||
} while ((status & STS_HALT) && (--loop>0));
|
||||
|
||||
if(!loop) {
|
||||
|
@ -448,21 +449,21 @@ try_next_port:
|
|||
dbgp_printk("EHCI done waiting for port.\n");
|
||||
|
||||
/* Enable the debug port */
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl |= DBGP_CLAIM;
|
||||
write32(&ehci_debug->control, ctrl);
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
if ((ctrl & DBGP_CLAIM) != DBGP_CLAIM) {
|
||||
dbgp_printk("No device in EHCI debug port.\n");
|
||||
write32(&ehci_debug->control, ctrl & ~DBGP_CLAIM);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl & ~DBGP_CLAIM);
|
||||
goto err;
|
||||
}
|
||||
dbgp_printk("EHCI debug port enabled.\n");
|
||||
|
||||
/* Completely transfer the debug device to the debug controller */
|
||||
portsc = read32(&ehci_regs->port_status[debug_port - 1]);
|
||||
portsc = read32((unsigned long)&ehci_regs->port_status[debug_port - 1]);
|
||||
portsc &= ~PORT_PE;
|
||||
write32(&ehci_regs->port_status[debug_port - 1], portsc);
|
||||
write32((unsigned long)&ehci_regs->port_status[debug_port - 1], portsc);
|
||||
|
||||
dbgp_mdelay(100);
|
||||
|
||||
|
@ -529,9 +530,9 @@ try_next_port:
|
|||
return;
|
||||
err:
|
||||
/* Things didn't work so remove my claim */
|
||||
ctrl = read32(&ehci_debug->control);
|
||||
ctrl = read32((unsigned long)&ehci_debug->control);
|
||||
ctrl &= ~(DBGP_CLAIM | DBGP_OUT);
|
||||
write32((unsigned long)&ehci_debug->control, ctrl);
|
||||
write32((unsigned long)(unsigned long)&ehci_debug->control, ctrl);
|
||||
|
||||
next_debug_port:
|
||||
port_map_tried |= (1<<(debug_port-1));
|
||||
|
|
|
@ -321,8 +321,8 @@ void main(unsigned long bist)
|
|||
uart_init();
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
i82801gx_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
i82801gx_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
|
||||
|
|
|
@ -200,8 +200,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
sis966_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
sis966_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
|
||||
|
|
|
@ -213,8 +213,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
|
||||
|
|
|
@ -237,8 +237,8 @@ void main(unsigned long bist)
|
|||
uart_init();
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
i82801gx_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
i82801gx_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
|
||||
console_init();
|
||||
|
|
|
@ -381,8 +381,8 @@ void main(unsigned long bist)
|
|||
uart_init();
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
i82801gx_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
i82801gx_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
|
||||
console_init();
|
||||
|
|
|
@ -182,8 +182,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
uart_init();
|
||||
report_bist_failure(bist); /* Halt upon BIST failure. */
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
|
||||
|
|
|
@ -186,8 +186,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
|
||||
val = cpuid_eax(1);
|
||||
|
|
|
@ -199,8 +199,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
|
||||
|
|
|
@ -291,8 +291,8 @@ void main(unsigned long bist)
|
|||
uart_init();
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
i82801gx_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
i82801gx_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
|
||||
console_init();
|
||||
|
|
|
@ -193,8 +193,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
console_init();
|
||||
printk(BIOS_DEBUG, "*sysinfo range: [%p,%p]\n",sysinfo,sysinfo+1);
|
||||
|
|
|
@ -181,8 +181,8 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
report_bist_failure(bist);
|
||||
|
||||
#if CONFIG_USBDEBUG_DIRECT
|
||||
mcp55_enable_usbdebug_direct(DBGP_DEFAULT);
|
||||
early_usbdebug_direct_init();
|
||||
mcp55_enable_usbdebug(DBGP_DEFAULT);
|
||||
early_usbdebug_init();
|
||||
#endif
|
||||
|
||||
val = cpuid_eax(1);
|
||||
|
|
|
@ -17,15 +17,15 @@
|
|||
|
||||
#include "../lib/usbdebug.c"
|
||||
|
||||
static void early_usbdebug_direct_init(void)
|
||||
static void early_usbdebug_init(void)
|
||||
{
|
||||
struct ehci_debug_info *dbg_info = (struct ehci_debug_info *)
|
||||
(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - sizeof(struct ehci_debug_info));
|
||||
|
||||
usbdebug_direct_init(EHCI_BAR, EHCI_DEBUG_OFFSET, dbg_info);
|
||||
usbdebug_init(EHCI_BAR, EHCI_DEBUG_OFFSET, dbg_info);
|
||||
}
|
||||
|
||||
void usbdebug_direct_tx_byte(unsigned char data)
|
||||
void usbdebug_tx_byte(unsigned char data)
|
||||
{
|
||||
struct ehci_debug_info *dbg_info;
|
||||
|
||||
|
@ -38,7 +38,7 @@ void usbdebug_direct_tx_byte(unsigned char data)
|
|||
}
|
||||
}
|
||||
|
||||
void usbdebug_direct_ram_tx_byte(unsigned char data)
|
||||
void usbdebug_ram_tx_byte(unsigned char data)
|
||||
{
|
||||
struct ehci_debug_info *dbg_info;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#define EHCI_BAR 0xFEF00000
|
||||
#define EHCI_DEBUG_OFFSET 0xE0
|
||||
|
||||
static void sb600_enable_usbdebug_direct(u32 port)
|
||||
static void sb600_enable_usbdebug(u32 port)
|
||||
{
|
||||
set_debug_port(port);
|
||||
pci_write_config32(PCI_DEV(0, SB600_DEVN_BASE + 0x13, 5),
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#define EHCI_BAR 0xFEF00000
|
||||
#define EHCI_DEBUG_OFFSET 0xE0
|
||||
|
||||
static void sb700_enable_usbdebug_direct(u32 port)
|
||||
static void sb700_enable_usbdebug(u32 port)
|
||||
{
|
||||
set_debug_port(port);
|
||||
pci_write_config32(PCI_DEV(0, SB700_DEVN_BASE + 0x13, 5),
|
||||
|
|
|
@ -36,7 +36,7 @@ void set_debug_port(unsigned port)
|
|||
write32(EHCI_BAR + EHCI_DEBUG_OFFSET, dbgctl);
|
||||
}
|
||||
|
||||
static void i82801gx_enable_usbdebug_direct(unsigned port)
|
||||
static void i82801gx_enable_usbdebug(unsigned port)
|
||||
{
|
||||
pci_write_config32(PCI_DEV(0, 0x1d, 7), EHCI_BAR_INDEX, EHCI_BAR);
|
||||
pci_write_config8(PCI_DEV(0, 0x1d, 7), 0x04, 0x2); // Memory Space Enable
|
||||
|
|
|
@ -41,7 +41,7 @@ static void set_debug_port(unsigned port)
|
|||
|
||||
}
|
||||
|
||||
static void mcp55_enable_usbdebug_direct(unsigned port)
|
||||
static void mcp55_enable_usbdebug(unsigned port)
|
||||
{
|
||||
set_debug_port(port);
|
||||
pci_write_config32(PCI_DEV(0, MCP55_DEVN_BASE+2, 1), EHCI_BAR_INDEX, EHCI_BAR);
|
||||
|
|
|
@ -41,7 +41,7 @@ static void set_debug_port(unsigned port)
|
|||
|
||||
}
|
||||
|
||||
static void sis966_enable_usbdebug_direct(unsigned port)
|
||||
static void sis966_enable_usbdebug(unsigned port)
|
||||
{
|
||||
set_debug_port(port);
|
||||
pci_write_config32(PCI_DEV(0, SIS966_DEVN_BASE+2, 1), EHCI_BAR_INDEX, EHCI_BAR);
|
||||
|
|
Loading…
Add table
Reference in a new issue