| 1476 | } |
| 1477 | |
| 1478 | static void |
| 1479 | decode_win_usb_dump(u_long base) |
| 1480 | { |
| 1481 | int i; |
| 1482 | |
| 1483 | if (pm_is_disabled(CPU_PM_CTRL_USB(usb_port - 1))) |
| 1484 | return; |
| 1485 | |
| 1486 | for (i = 0; i < MV_WIN_USB_MAX; i++) |
| 1487 | printf("USB window#%d: c 0x%08x, b 0x%08x\n", i, |
| 1488 | win_usb_cr_read(base, i), win_usb_br_read(base, i)); |
| 1489 | } |
| 1490 | |
| 1491 | /* |
| 1492 | * Set USB decode windows. |
nothing calls this directly
no test coverage detected