mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
UPSTREAM: usb: xhci: refine xhci_decode_trb()
Replace 'TRB_FIELD_TO_TYPE(field3)' with 'type' to simplify
code.
Change-Id: I0553a13c372bf130c195706e597701c691885093
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: William Wu <william.wu@rock-chips.com>
(cherry picked from commit d2561626b9)
This commit is contained in:
@@ -2160,7 +2160,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
sprintf(str,
|
||||
"LINK %08x%08x intr %d type '%s' flags %c:%c:%c:%c",
|
||||
field1, field0, GET_INTR_TARGET(field2),
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_IOC ? 'I' : 'i',
|
||||
field3 & TRB_CHAIN ? 'C' : 'c',
|
||||
field3 & TRB_TC ? 'T' : 't',
|
||||
@@ -2181,7 +2181,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
EVENT_TRB_LEN(field2), TRB_TO_SLOT_ID(field3),
|
||||
/* Macro decrements 1, maybe it shouldn't?!? */
|
||||
TRB_TO_EP_INDEX(field3) + 1,
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & EVENT_DATA ? 'E' : 'e',
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
|
||||
@@ -2198,7 +2198,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
(field1 & 0xff0000) >> 16,
|
||||
TRB_LEN(field2), GET_TD_SIZE(field2),
|
||||
GET_INTR_TARGET(field2),
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_IDT ? 'I' : 'i',
|
||||
field3 & TRB_IOC ? 'I' : 'i',
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
@@ -2207,7 +2207,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
sprintf(str, "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c:%c:%c:%c",
|
||||
field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2),
|
||||
GET_INTR_TARGET(field2),
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_IDT ? 'I' : 'i',
|
||||
field3 & TRB_IOC ? 'I' : 'i',
|
||||
field3 & TRB_CHAIN ? 'C' : 'c',
|
||||
@@ -2220,7 +2220,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
sprintf(str, "Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c",
|
||||
field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2),
|
||||
GET_INTR_TARGET(field2),
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_IOC ? 'I' : 'i',
|
||||
field3 & TRB_CHAIN ? 'C' : 'c',
|
||||
field3 & TRB_ENT ? 'E' : 'e',
|
||||
@@ -2234,7 +2234,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
"Buffer %08x%08x length %d TD size %d intr %d type '%s' flags %c:%c:%c:%c:%c:%c:%c:%c",
|
||||
field1, field0, TRB_LEN(field2), GET_TD_SIZE(field2),
|
||||
GET_INTR_TARGET(field2),
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_BEI ? 'B' : 'b',
|
||||
field3 & TRB_IDT ? 'I' : 'i',
|
||||
field3 & TRB_IOC ? 'I' : 'i',
|
||||
@@ -2249,21 +2249,21 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_ENABLE_SLOT:
|
||||
sprintf(str,
|
||||
"%s: flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
break;
|
||||
case TRB_DISABLE_SLOT:
|
||||
case TRB_NEG_BANDWIDTH:
|
||||
sprintf(str,
|
||||
"%s: slot %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
break;
|
||||
case TRB_ADDR_DEV:
|
||||
sprintf(str,
|
||||
"%s: ctx %08x%08x slot %d flags %c:%c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
field3 & TRB_BSR ? 'B' : 'b',
|
||||
@@ -2272,7 +2272,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_CONFIG_EP:
|
||||
sprintf(str,
|
||||
"%s: ctx %08x%08x slot %d flags %c:%c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
field3 & TRB_DC ? 'D' : 'd',
|
||||
@@ -2281,7 +2281,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_EVAL_CONTEXT:
|
||||
sprintf(str,
|
||||
"%s: ctx %08x%08x slot %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
@@ -2289,7 +2289,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_RESET_EP:
|
||||
sprintf(str,
|
||||
"%s: ctx %08x%08x slot %d ep %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
/* Macro decrements 1, maybe it shouldn't?!? */
|
||||
@@ -2299,7 +2299,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_STOP_RING:
|
||||
sprintf(str,
|
||||
"%s: slot %d sp %d ep %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
TRB_TO_SUSPEND_PORT(field3),
|
||||
/* Macro decrements 1, maybe it shouldn't?!? */
|
||||
@@ -2309,7 +2309,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_SET_DEQ:
|
||||
sprintf(str,
|
||||
"%s: deq %08x%08x stream %d slot %d ep %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_STREAM_ID(field2),
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
@@ -2320,14 +2320,14 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_RESET_DEV:
|
||||
sprintf(str,
|
||||
"%s: slot %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
break;
|
||||
case TRB_FORCE_EVENT:
|
||||
sprintf(str,
|
||||
"%s: event %08x%08x vf intr %d vf id %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_VF_INTR_TARGET(field2),
|
||||
TRB_TO_VF_ID(field3),
|
||||
@@ -2336,14 +2336,14 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_SET_LT:
|
||||
sprintf(str,
|
||||
"%s: belt %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
TRB_TO_BELT(field3),
|
||||
field3 & TRB_CYCLE ? 'C' : 'c');
|
||||
break;
|
||||
case TRB_GET_BW:
|
||||
sprintf(str,
|
||||
"%s: ctx %08x%08x slot %d speed %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field1, field0,
|
||||
TRB_TO_SLOT_ID(field3),
|
||||
TRB_TO_DEV_SPEED(field3),
|
||||
@@ -2352,7 +2352,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
case TRB_FORCE_HEADER:
|
||||
sprintf(str,
|
||||
"%s: info %08x%08x%08x pkt type %d roothub port %d flags %c",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field2, field1, field0 & 0xffffffe0,
|
||||
TRB_TO_PACKET_TYPE(field0),
|
||||
TRB_TO_ROOTHUB_PORT(field3),
|
||||
@@ -2361,7 +2361,7 @@ static inline const char *xhci_decode_trb(u32 field0, u32 field1, u32 field2,
|
||||
default:
|
||||
sprintf(str,
|
||||
"type '%s' -> raw %08x %08x %08x %08x",
|
||||
xhci_trb_type_string(TRB_FIELD_TO_TYPE(field3)),
|
||||
xhci_trb_type_string(type),
|
||||
field0, field1, field2, field3);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user