提交 83199ca4 编写于 作者: A Anthony Liguori

Merge remote-tracking branch 'kraxel/usb.57' into staging

* kraxel/usb.57:
  ehci: improve expire time calculation
  ehci: implement Interrupt Threshold Control support
  ehci: raise irq in the frame timer
  uhci: initialize expire_time when loading v1 vmstate
  usb: add usb attached scsi emulation
  scsi: add free_request callback
qemu usb storage emulation
--------------------------
Qemu has two emulations for usb storage devices.
Number one emulates the classic bulk-only transport protocol which is
used by 99% of the usb sticks on the marked today and is called
"usb-storage". Usage (hooking up to xhci, other host controllers work
too):
qemu ${other_vm_args} \
-drive if=none,id=stick,file=/path/to/file.img \
-device nec-usb-xhci,id=xhci \
-device usb-storage,bus=xhci.0,drive=stick
Number two is the newer usb attached scsi transport. This one doesn't
automagically create a scsi disk, so you have to explicitly attach one
manually. Multiple logical units are supported. Here is an example
with tree logical units:
qemu ${other_vm_args} \
-drive if=none,id=uas-disk1,file=/path/to/file1.img \
-drive if=none,id=uas-disk2,file=/path/to/file2.img \
-drive if=none,id=uas-cdrom,media=cdrom,file=/path/to/image.iso \
-device nec-usb-xhci,id=xhci \
-device usb-uas,id=uas,bus=xhci.0 \
-device scsi-hd,bus=uas.0,scsi-id=0,lun=0,drive=uas-disk1 \
-device scsi-hd,bus=uas.0,scsi-id=0,lun=1,drive=uas-disk2 \
-device scsi-cd,bus=uas.0,scsi-id=0,lun=5,drive=uas-cdrom
enjoy,
Gerd
--
Gerd Hoffmann <kraxel@redhat.com>
...@@ -1354,6 +1354,7 @@ static const char *scsi_command_name(uint8_t cmd) ...@@ -1354,6 +1354,7 @@ static const char *scsi_command_name(uint8_t cmd)
SCSIRequest *scsi_req_ref(SCSIRequest *req) SCSIRequest *scsi_req_ref(SCSIRequest *req)
{ {
assert(req->refcount > 0);
req->refcount++; req->refcount++;
return req; return req;
} }
...@@ -1362,6 +1363,10 @@ void scsi_req_unref(SCSIRequest *req) ...@@ -1362,6 +1363,10 @@ void scsi_req_unref(SCSIRequest *req)
{ {
assert(req->refcount > 0); assert(req->refcount > 0);
if (--req->refcount == 0) { if (--req->refcount == 0) {
SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, req->dev->qdev.parent_bus);
if (bus->info->free_request && req->hba_private) {
bus->info->free_request(bus, req->hba_private);
}
if (req->ops->free_req) { if (req->ops->free_req) {
req->ops->free_req(req); req->ops->free_req(req);
} }
......
...@@ -134,6 +134,7 @@ struct SCSIBusInfo { ...@@ -134,6 +134,7 @@ struct SCSIBusInfo {
void (*save_request)(QEMUFile *f, SCSIRequest *req); void (*save_request)(QEMUFile *f, SCSIRequest *req);
void *(*load_request)(QEMUFile *f, SCSIRequest *req); void *(*load_request)(QEMUFile *f, SCSIRequest *req);
void (*free_request)(SCSIBus *bus, void *priv);
}; };
#define TYPE_SCSI_BUS "SCSI" #define TYPE_SCSI_BUS "SCSI"
......
...@@ -11,3 +11,4 @@ common-obj-y += core.o bus.o desc.o dev-hub.o ...@@ -11,3 +11,4 @@ common-obj-y += core.o bus.o desc.o dev-hub.o
common-obj-y += host-$(HOST_USB).o dev-bluetooth.o common-obj-y += host-$(HOST_USB).o dev-bluetooth.o
common-obj-y += dev-hid.o dev-storage.o dev-wacom.o common-obj-y += dev-hid.o dev-storage.o dev-wacom.o
common-obj-y += dev-serial.o dev-network.o dev-audio.o common-obj-y += dev-serial.o dev-network.o dev-audio.o
common-obj-y += dev-uas.o
此差异已折叠。
...@@ -420,6 +420,7 @@ struct EHCIState { ...@@ -420,6 +420,7 @@ struct EHCIState {
USBPort ports[NB_PORTS]; USBPort ports[NB_PORTS];
USBPort *companion_ports[NB_PORTS]; USBPort *companion_ports[NB_PORTS];
uint32_t usbsts_pending; uint32_t usbsts_pending;
uint32_t usbsts_frindex;
EHCIQueueHead aqueues; EHCIQueueHead aqueues;
EHCIQueueHead pqueues; EHCIQueueHead pqueues;
...@@ -558,34 +559,45 @@ static inline void ehci_clear_usbsts(EHCIState *s, int mask) ...@@ -558,34 +559,45 @@ static inline void ehci_clear_usbsts(EHCIState *s, int mask)
s->usbsts &= ~mask; s->usbsts &= ~mask;
} }
static inline void ehci_set_interrupt(EHCIState *s, int intr) /* update irq line */
static inline void ehci_update_irq(EHCIState *s)
{ {
int level = 0; int level = 0;
// TODO honour interrupt threshold requests
ehci_set_usbsts(s, intr);
if ((s->usbsts & USBINTR_MASK) & s->usbintr) { if ((s->usbsts & USBINTR_MASK) & s->usbintr) {
level = 1; level = 1;
} }
trace_usb_ehci_interrupt(level, s->usbsts, s->usbintr); trace_usb_ehci_irq(level, s->frindex, s->usbsts, s->usbintr);
qemu_set_irq(s->irq, level); qemu_set_irq(s->irq, level);
} }
static inline void ehci_record_interrupt(EHCIState *s, int intr) /* flag interrupt condition */
static inline void ehci_raise_irq(EHCIState *s, int intr)
{ {
s->usbsts_pending |= intr; s->usbsts_pending |= intr;
} }
static inline void ehci_commit_interrupt(EHCIState *s) /*
* Commit pending interrupts (added via ehci_raise_irq),
* at the rate allowed by "Interrupt Threshold Control".
*/
static inline void ehci_commit_irq(EHCIState *s)
{ {
uint32_t itc;
if (!s->usbsts_pending) { if (!s->usbsts_pending) {
return; return;
} }
ehci_set_interrupt(s, s->usbsts_pending); if (s->usbsts_frindex > s->frindex) {
return;
}
itc = (s->usbcmd >> 16) & 0xff;
s->usbsts |= s->usbsts_pending;
s->usbsts_pending = 0; s->usbsts_pending = 0;
s->usbsts_frindex = s->frindex + itc;
ehci_update_irq(s);
} }
static void ehci_update_halt(EHCIState *s) static void ehci_update_halt(EHCIState *s)
...@@ -849,7 +861,8 @@ static void ehci_attach(USBPort *port) ...@@ -849,7 +861,8 @@ static void ehci_attach(USBPort *port)
*portsc |= PORTSC_CONNECT; *portsc |= PORTSC_CONNECT;
*portsc |= PORTSC_CSC; *portsc |= PORTSC_CSC;
ehci_set_interrupt(s, USBSTS_PCD); ehci_raise_irq(s, USBSTS_PCD);
ehci_commit_irq(s);
} }
static void ehci_detach(USBPort *port) static void ehci_detach(USBPort *port)
...@@ -878,7 +891,8 @@ static void ehci_detach(USBPort *port) ...@@ -878,7 +891,8 @@ static void ehci_detach(USBPort *port)
*portsc &= ~(PORTSC_CONNECT|PORTSC_PED); *portsc &= ~(PORTSC_CONNECT|PORTSC_PED);
*portsc |= PORTSC_CSC; *portsc |= PORTSC_CSC;
ehci_set_interrupt(s, USBSTS_PCD); ehci_raise_irq(s, USBSTS_PCD);
ehci_commit_irq(s);
} }
static void ehci_child_detach(USBPort *port, USBDevice *child) static void ehci_child_detach(USBPort *port, USBDevice *child)
...@@ -997,6 +1011,8 @@ static void ehci_reset(void *opaque) ...@@ -997,6 +1011,8 @@ static void ehci_reset(void *opaque)
s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH; s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH;
s->usbsts = USBSTS_HALT; s->usbsts = USBSTS_HALT;
s->usbsts_pending = 0;
s->usbsts_frindex = 0;
s->astate = EST_INACTIVE; s->astate = EST_INACTIVE;
s->pstate = EST_INACTIVE; s->pstate = EST_INACTIVE;
...@@ -1188,7 +1204,7 @@ static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val) ...@@ -1188,7 +1204,7 @@ static void ehci_mem_writel(void *ptr, target_phys_addr_t addr, uint32_t val)
val &= USBSTS_RO_MASK; // bits 6 through 31 are RO val &= USBSTS_RO_MASK; // bits 6 through 31 are RO
ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC
val = s->usbsts; val = s->usbsts;
ehci_set_interrupt(s, 0); ehci_update_irq(s);
break; break;
case USBINTR: case USBINTR:
...@@ -1419,18 +1435,18 @@ static void ehci_execute_complete(EHCIQueue *q) ...@@ -1419,18 +1435,18 @@ static void ehci_execute_complete(EHCIQueue *q)
case USB_RET_NODEV: case USB_RET_NODEV:
q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR); q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR);
set_field(&q->qh.token, 0, QTD_TOKEN_CERR); set_field(&q->qh.token, 0, QTD_TOKEN_CERR);
ehci_record_interrupt(q->ehci, USBSTS_ERRINT); ehci_raise_irq(q->ehci, USBSTS_ERRINT);
break; break;
case USB_RET_STALL: case USB_RET_STALL:
q->qh.token |= QTD_TOKEN_HALT; q->qh.token |= QTD_TOKEN_HALT;
ehci_record_interrupt(q->ehci, USBSTS_ERRINT); ehci_raise_irq(q->ehci, USBSTS_ERRINT);
break; break;
case USB_RET_NAK: case USB_RET_NAK:
set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT); set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT);
return; /* We're not done yet with this transaction */ return; /* We're not done yet with this transaction */
case USB_RET_BABBLE: case USB_RET_BABBLE:
q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE); q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
ehci_record_interrupt(q->ehci, USBSTS_ERRINT); ehci_raise_irq(q->ehci, USBSTS_ERRINT);
break; break;
default: default:
/* should not be triggerable */ /* should not be triggerable */
...@@ -1441,7 +1457,7 @@ static void ehci_execute_complete(EHCIQueue *q) ...@@ -1441,7 +1457,7 @@ static void ehci_execute_complete(EHCIQueue *q)
} else if ((p->usb_status > p->tbytes) && (p->pid == USB_TOKEN_IN)) { } else if ((p->usb_status > p->tbytes) && (p->pid == USB_TOKEN_IN)) {
p->usb_status = USB_RET_BABBLE; p->usb_status = USB_RET_BABBLE;
q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE); q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE);
ehci_record_interrupt(q->ehci, USBSTS_ERRINT); ehci_raise_irq(q->ehci, USBSTS_ERRINT);
} else { } else {
// TODO check 4.12 for splits // TODO check 4.12 for splits
...@@ -1462,7 +1478,7 @@ static void ehci_execute_complete(EHCIQueue *q) ...@@ -1462,7 +1478,7 @@ static void ehci_execute_complete(EHCIQueue *q)
q->qh.token &= ~QTD_TOKEN_ACTIVE; q->qh.token &= ~QTD_TOKEN_ACTIVE;
if (q->qh.token & QTD_TOKEN_IOC) { if (q->qh.token & QTD_TOKEN_IOC) {
ehci_record_interrupt(q->ehci, USBSTS_INT); ehci_raise_irq(q->ehci, USBSTS_INT);
} }
} }
...@@ -1597,12 +1613,12 @@ static int ehci_process_itd(EHCIState *ehci, ...@@ -1597,12 +1613,12 @@ static int ehci_process_itd(EHCIState *ehci,
/* 3.3.2: XACTERR is only allowed on IN transactions */ /* 3.3.2: XACTERR is only allowed on IN transactions */
if (dir) { if (dir) {
itd->transact[i] |= ITD_XACT_XACTERR; itd->transact[i] |= ITD_XACT_XACTERR;
ehci_record_interrupt(ehci, USBSTS_ERRINT); ehci_raise_irq(ehci, USBSTS_ERRINT);
} }
break; break;
case USB_RET_BABBLE: case USB_RET_BABBLE:
itd->transact[i] |= ITD_XACT_BABBLE; itd->transact[i] |= ITD_XACT_BABBLE;
ehci_record_interrupt(ehci, USBSTS_ERRINT); ehci_raise_irq(ehci, USBSTS_ERRINT);
break; break;
case USB_RET_NAK: case USB_RET_NAK:
/* no data for us, so do a zero-length transfer */ /* no data for us, so do a zero-length transfer */
...@@ -1620,7 +1636,7 @@ static int ehci_process_itd(EHCIState *ehci, ...@@ -1620,7 +1636,7 @@ static int ehci_process_itd(EHCIState *ehci,
} }
} }
if (itd->transact[i] & ITD_XACT_IOC) { if (itd->transact[i] & ITD_XACT_IOC) {
ehci_record_interrupt(ehci, USBSTS_INT); ehci_raise_irq(ehci, USBSTS_INT);
} }
itd->transact[i] &= ~ITD_XACT_ACTIVE; itd->transact[i] &= ~ITD_XACT_ACTIVE;
} }
...@@ -2208,8 +2224,6 @@ static void ehci_advance_state(EHCIState *ehci, int async) ...@@ -2208,8 +2224,6 @@ static void ehci_advance_state(EHCIState *ehci, int async)
} }
} }
while (again); while (again);
ehci_commit_interrupt(ehci);
} }
static void ehci_advance_async_state(EHCIState *ehci) static void ehci_advance_async_state(EHCIState *ehci)
...@@ -2255,7 +2269,7 @@ static void ehci_advance_async_state(EHCIState *ehci) ...@@ -2255,7 +2269,7 @@ static void ehci_advance_async_state(EHCIState *ehci)
ehci_queues_tag_unused_async(ehci); ehci_queues_tag_unused_async(ehci);
DPRINTF("ASYNC: doorbell request acknowledged\n"); DPRINTF("ASYNC: doorbell request acknowledged\n");
ehci->usbcmd &= ~USBCMD_IAAD; ehci->usbcmd &= ~USBCMD_IAAD;
ehci_set_interrupt(ehci, USBSTS_IAA); ehci_raise_irq(ehci, USBSTS_IAA);
} }
break; break;
...@@ -2328,12 +2342,17 @@ static void ehci_update_frindex(EHCIState *ehci, int frames) ...@@ -2328,12 +2342,17 @@ static void ehci_update_frindex(EHCIState *ehci, int frames)
ehci->frindex += 8; ehci->frindex += 8;
if (ehci->frindex == 0x00002000) { if (ehci->frindex == 0x00002000) {
ehci_set_interrupt(ehci, USBSTS_FLR); ehci_raise_irq(ehci, USBSTS_FLR);
} }
if (ehci->frindex == 0x00004000) { if (ehci->frindex == 0x00004000) {
ehci_set_interrupt(ehci, USBSTS_FLR); ehci_raise_irq(ehci, USBSTS_FLR);
ehci->frindex = 0; ehci->frindex = 0;
if (ehci->usbsts_frindex > 0x00004000) {
ehci->usbsts_frindex -= 0x00004000;
} else {
ehci->usbsts_frindex = 0;
}
} }
} }
} }
...@@ -2341,7 +2360,7 @@ static void ehci_update_frindex(EHCIState *ehci, int frames) ...@@ -2341,7 +2360,7 @@ static void ehci_update_frindex(EHCIState *ehci, int frames)
static void ehci_frame_timer(void *opaque) static void ehci_frame_timer(void *opaque)
{ {
EHCIState *ehci = opaque; EHCIState *ehci = opaque;
int schedules = 0; int need_timer = 0;
int64_t expire_time, t_now; int64_t expire_time, t_now;
uint64_t ns_elapsed; uint64_t ns_elapsed;
int frames, skipped_frames; int frames, skipped_frames;
...@@ -2352,8 +2371,8 @@ static void ehci_frame_timer(void *opaque) ...@@ -2352,8 +2371,8 @@ static void ehci_frame_timer(void *opaque)
frames = ns_elapsed / FRAME_TIMER_NS; frames = ns_elapsed / FRAME_TIMER_NS;
if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) { if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) {
schedules++; need_timer++;
expire_time = t_now + (get_ticks_per_sec() / FRAME_TIMER_FREQ); ehci->async_stepdown = 0;
if (frames > ehci->maxframes) { if (frames > ehci->maxframes) {
skipped_frames = frames - ehci->maxframes; skipped_frames = frames - ehci->maxframes;
...@@ -2372,8 +2391,6 @@ static void ehci_frame_timer(void *opaque) ...@@ -2372,8 +2391,6 @@ static void ehci_frame_timer(void *opaque)
if (ehci->async_stepdown < ehci->maxframes / 2) { if (ehci->async_stepdown < ehci->maxframes / 2) {
ehci->async_stepdown++; ehci->async_stepdown++;
} }
expire_time = t_now + (get_ticks_per_sec()
* ehci->async_stepdown / FRAME_TIMER_FREQ);
ehci_update_frindex(ehci, frames); ehci_update_frindex(ehci, frames);
ehci->last_run_ns += FRAME_TIMER_NS * frames; ehci->last_run_ns += FRAME_TIMER_NS * frames;
} }
...@@ -2382,11 +2399,19 @@ static void ehci_frame_timer(void *opaque) ...@@ -2382,11 +2399,19 @@ static void ehci_frame_timer(void *opaque)
* called * called
*/ */
if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) { if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) {
schedules++; need_timer++;
qemu_bh_schedule(ehci->async_bh); ehci_advance_async_state(ehci);
}
ehci_commit_irq(ehci);
if (ehci->usbsts_pending) {
need_timer++;
ehci->async_stepdown = 0;
} }
if (schedules) { if (need_timer) {
expire_time = t_now + (get_ticks_per_sec()
* (ehci->async_stepdown+1) / FRAME_TIMER_FREQ);
qemu_mod_timer(ehci->frame_timer, expire_time); qemu_mod_timer(ehci->frame_timer, expire_time);
} }
} }
......
...@@ -388,11 +388,23 @@ static const VMStateDescription vmstate_uhci_port = { ...@@ -388,11 +388,23 @@ static const VMStateDescription vmstate_uhci_port = {
} }
}; };
static int uhci_post_load(void *opaque, int version_id)
{
UHCIState *s = opaque;
if (version_id < 2) {
s->expire_time = qemu_get_clock_ns(vm_clock) +
(get_ticks_per_sec() / FRAME_TIMER_FREQ);
}
return 0;
}
static const VMStateDescription vmstate_uhci = { static const VMStateDescription vmstate_uhci = {
.name = "uhci", .name = "uhci",
.version_id = 2, .version_id = 2,
.minimum_version_id = 1, .minimum_version_id = 1,
.minimum_version_id_old = 1, .minimum_version_id_old = 1,
.post_load = uhci_post_load,
.fields = (VMStateField []) { .fields = (VMStateField []) {
VMSTATE_PCI_DEVICE(dev, UHCIState), VMSTATE_PCI_DEVICE(dev, UHCIState),
VMSTATE_UINT8_EQUAL(num_ports_vmstate, UHCIState), VMSTATE_UINT8_EQUAL(num_ports_vmstate, UHCIState),
......
...@@ -258,7 +258,7 @@ usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d" ...@@ -258,7 +258,7 @@ usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d"
usb_ehci_data(int rw, uint32_t cpage, uint32_t offset, uint32_t addr, uint32_t len, uint32_t bufpos) "write %d, cpage %d, offset 0x%03x, addr 0x%08x, len %d, bufpos %d" usb_ehci_data(int rw, uint32_t cpage, uint32_t offset, uint32_t addr, uint32_t len, uint32_t bufpos) "write %d, cpage %d, offset 0x%03x, addr 0x%08x, len %d, bufpos %d"
usb_ehci_queue_action(void *q, const char *action) "q %p: %s" usb_ehci_queue_action(void *q, const char *action) "q %p: %s"
usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s" usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s"
usb_ehci_interrupt(uint32_t level, uint32_t sts, uint32_t mask) "level %d, sts 0x%x, mask 0x%x" usb_ehci_irq(uint32_t level, uint32_t frindex, uint32_t sts, uint32_t mask) "level %d, frindex 0x%04x, sts 0x%x, mask 0x%x"
# hw/usb/hcd-uhci.c # hw/usb/hcd-uhci.c
usb_uhci_reset(void) "=== RESET ===" usb_uhci_reset(void) "=== RESET ==="
...@@ -347,6 +347,20 @@ usb_hub_clear_port_feature(int addr, int nr, const char *f) "dev %d, port %d, fe ...@@ -347,6 +347,20 @@ usb_hub_clear_port_feature(int addr, int nr, const char *f) "dev %d, port %d, fe
usb_hub_attach(int addr, int nr) "dev %d, port %d" usb_hub_attach(int addr, int nr) "dev %d, port %d"
usb_hub_detach(int addr, int nr) "dev %d, port %d" usb_hub_detach(int addr, int nr) "dev %d, port %d"
# hw/usb/dev-uas.c
usb_uas_reset(int addr) "dev %d"
usb_uas_command(int addr, uint16_t tag, int lun, uint32_t lun64_1, uint32_t lun64_2) "dev %d, tag 0x%x, lun %d, lun64 %08x-%08x"
usb_uas_response(int addr, uint16_t tag, uint8_t code) "dev %d, tag 0x%x, code 0x%x"
usb_uas_sense(int addr, uint16_t tag, uint8_t status) "dev %d, tag 0x%x, status 0x%x"
usb_uas_read_ready(int addr, uint16_t tag) "dev %d, tag 0x%x"
usb_uas_write_ready(int addr, uint16_t tag) "dev %d, tag 0x%x"
usb_uas_xfer_data(int addr, uint16_t tag, uint32_t copy, uint32_t uoff, uint32_t usize, uint32_t soff, uint32_t ssize) "dev %d, tag 0x%x, copy %d, usb-pkt %d/%d, scsi-buf %d/%d"
usb_uas_scsi_data(int addr, uint16_t tag, uint32_t bytes) "dev %d, tag 0x%x, bytes %d"
usb_uas_scsi_complete(int addr, uint16_t tag, uint32_t status, uint32_t resid) "dev %d, tag 0x%x, status 0x%x, residue %d"
usb_uas_tmf_abort_task(int addr, uint16_t tag, uint16_t task_tag) "dev %d, tag 0x%x, task-tag 0x%x"
usb_uas_tmf_logical_unit_reset(int addr, uint16_t tag, int lun) "dev %d, tag 0x%x, lun %d"
usb_uas_tmf_unsupported(int addr, uint16_t tag, uint32_t function) "dev %d, tag 0x%x, function 0x%x"
# hw/usb/host-linux.c # hw/usb/host-linux.c
usb_host_open_started(int bus, int addr) "dev %d:%d" usb_host_open_started(int bus, int addr) "dev %d:%d"
usb_host_open_success(int bus, int addr) "dev %d:%d" usb_host_open_success(int bus, int addr) "dev %d:%d"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册