提交 60e1b2a6 编写于 作者: G Gerd Hoffmann

uhci: use enum for uhci_handle_td return codes

Step #1 (separate for better bisectability): replace numbers with names.
Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
上级 50dcc0f8
...@@ -77,6 +77,13 @@ ...@@ -77,6 +77,13 @@
#define NB_PORTS 2 #define NB_PORTS 2
enum {
TD_RESULT_STOP_FRAME = -1,
TD_RESULT_COMPLETE = 0,
TD_RESULT_NEXT_QH = 1,
TD_RESULT_ASYNC = 2,
};
typedef struct UHCIState UHCIState; typedef struct UHCIState UHCIState;
typedef struct UHCIAsync UHCIAsync; typedef struct UHCIAsync UHCIAsync;
typedef struct UHCIQueue UHCIQueue; typedef struct UHCIQueue UHCIQueue;
...@@ -721,13 +728,13 @@ static int uhci_complete_td(UHCIState *s, UHCI_TD *td, UHCIAsync *async, uint32_ ...@@ -721,13 +728,13 @@ static int uhci_complete_td(UHCIState *s, UHCI_TD *td, UHCIAsync *async, uint32_
/* short packet: do not update QH */ /* short packet: do not update QH */
trace_usb_uhci_packet_complete_shortxfer(async->queue->token, trace_usb_uhci_packet_complete_shortxfer(async->queue->token,
async->td); async->td);
return 1; return TD_RESULT_NEXT_QH;
} }
} }
/* success */ /* success */
trace_usb_uhci_packet_complete_success(async->queue->token, async->td); trace_usb_uhci_packet_complete_success(async->queue->token, async->td);
return 0; return TD_RESULT_COMPLETE;
out: out:
switch(ret) { switch(ret) {
...@@ -740,7 +747,7 @@ out: ...@@ -740,7 +747,7 @@ out:
} }
uhci_update_irq(s); uhci_update_irq(s);
trace_usb_uhci_packet_complete_stall(async->queue->token, async->td); trace_usb_uhci_packet_complete_stall(async->queue->token, async->td);
return 1; return TD_RESULT_NEXT_QH;
case USB_RET_BABBLE: case USB_RET_BABBLE:
td->ctrl |= TD_CTRL_BABBLE | TD_CTRL_STALL; td->ctrl |= TD_CTRL_BABBLE | TD_CTRL_STALL;
...@@ -752,13 +759,13 @@ out: ...@@ -752,13 +759,13 @@ out:
uhci_update_irq(s); uhci_update_irq(s);
/* frame interrupted */ /* frame interrupted */
trace_usb_uhci_packet_complete_babble(async->queue->token, async->td); trace_usb_uhci_packet_complete_babble(async->queue->token, async->td);
return -1; return TD_RESULT_STOP_FRAME;
case USB_RET_NAK: case USB_RET_NAK:
td->ctrl |= TD_CTRL_NAK; td->ctrl |= TD_CTRL_NAK;
if (pid == USB_TOKEN_SETUP) if (pid == USB_TOKEN_SETUP)
break; break;
return 1; return TD_RESULT_NEXT_QH;
case USB_RET_IOERROR: case USB_RET_IOERROR:
case USB_RET_NODEV: case USB_RET_NODEV:
...@@ -784,7 +791,7 @@ out: ...@@ -784,7 +791,7 @@ out:
} }
td->ctrl = (td->ctrl & ~(3 << TD_CTRL_ERROR_SHIFT)) | td->ctrl = (td->ctrl & ~(3 << TD_CTRL_ERROR_SHIFT)) |
(err << TD_CTRL_ERROR_SHIFT); (err << TD_CTRL_ERROR_SHIFT);
return 1; return TD_RESULT_NEXT_QH;
} }
static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *int_mask) static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *int_mask)
...@@ -797,7 +804,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in ...@@ -797,7 +804,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
/* Is active ? */ /* Is active ? */
if (!(td->ctrl & TD_CTRL_ACTIVE)) if (!(td->ctrl & TD_CTRL_ACTIVE))
return 1; return TD_RESULT_NEXT_QH;
async = uhci_async_find_td(s, addr, td); async = uhci_async_find_td(s, addr, td);
if (async) { if (async) {
...@@ -805,7 +812,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in ...@@ -805,7 +812,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
async->queue->valid = 32; async->queue->valid = 32;
if (!async->done) if (!async->done)
return 1; return TD_RESULT_NEXT_QH;
uhci_async_unlink(async); uhci_async_unlink(async);
goto done; goto done;
...@@ -814,7 +821,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in ...@@ -814,7 +821,7 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
/* Allocate new packet */ /* Allocate new packet */
async = uhci_async_alloc(uhci_queue_get(s, td), addr); async = uhci_async_alloc(uhci_queue_get(s, td), addr);
if (!async) if (!async)
return 1; return TD_RESULT_NEXT_QH;
/* valid needs to be large enough to handle 10 frame delay /* valid needs to be large enough to handle 10 frame delay
* for initial isochronous requests * for initial isochronous requests
...@@ -848,12 +855,12 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in ...@@ -848,12 +855,12 @@ static int uhci_handle_td(UHCIState *s, uint32_t addr, UHCI_TD *td, uint32_t *in
uhci_async_free(async); uhci_async_free(async);
s->status |= UHCI_STS_HCPERR; s->status |= UHCI_STS_HCPERR;
uhci_update_irq(s); uhci_update_irq(s);
return -1; return TD_RESULT_STOP_FRAME;
} }
if (len == USB_RET_ASYNC) { if (len == USB_RET_ASYNC) {
uhci_async_link(async); uhci_async_link(async);
return 2; return TD_RESULT_ASYNC;
} }
async->packet.result = len; async->packet.result = len;
...@@ -959,7 +966,7 @@ static void uhci_fill_queue(UHCIState *s, UHCI_TD *td) ...@@ -959,7 +966,7 @@ static void uhci_fill_queue(UHCIState *s, UHCI_TD *td)
} }
trace_usb_uhci_td_queue(plink & ~0xf, ptd.ctrl, ptd.token); trace_usb_uhci_td_queue(plink & ~0xf, ptd.ctrl, ptd.token);
ret = uhci_handle_td(s, plink, &ptd, &int_mask); ret = uhci_handle_td(s, plink, &ptd, &int_mask);
assert(ret == 2); /* got USB_RET_ASYNC */ assert(ret == TD_RESULT_ASYNC);
assert(int_mask == 0); assert(int_mask == 0);
plink = ptd.link; plink = ptd.link;
} }
...@@ -1047,15 +1054,15 @@ static void uhci_process_frame(UHCIState *s) ...@@ -1047,15 +1054,15 @@ static void uhci_process_frame(UHCIState *s)
} }
switch (ret) { switch (ret) {
case -1: /* interrupted frame */ case TD_RESULT_STOP_FRAME: /* interrupted frame */
goto out; goto out;
case 1: /* goto next queue */ case TD_RESULT_NEXT_QH:
trace_usb_uhci_td_nextqh(curr_qh & ~0xf, link & ~0xf); trace_usb_uhci_td_nextqh(curr_qh & ~0xf, link & ~0xf);
link = curr_qh ? qh.link : td.link; link = curr_qh ? qh.link : td.link;
continue; continue;
case 2: /* got USB_RET_ASYNC */ case TD_RESULT_ASYNC:
trace_usb_uhci_td_async(curr_qh & ~0xf, link & ~0xf); trace_usb_uhci_td_async(curr_qh & ~0xf, link & ~0xf);
if (is_valid(td.link)) { if (is_valid(td.link)) {
uhci_fill_queue(s, &td); uhci_fill_queue(s, &td);
...@@ -1063,7 +1070,7 @@ static void uhci_process_frame(UHCIState *s) ...@@ -1063,7 +1070,7 @@ static void uhci_process_frame(UHCIState *s)
link = curr_qh ? qh.link : td.link; link = curr_qh ? qh.link : td.link;
continue; continue;
case 0: /* completed TD */ case TD_RESULT_COMPLETE:
trace_usb_uhci_td_complete(curr_qh & ~0xf, link & ~0xf); trace_usb_uhci_td_complete(curr_qh & ~0xf, link & ~0xf);
link = td.link; link = td.link;
td_count++; td_count++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册