Commit 696c8b12 authored by Felipe Balbi's avatar Felipe Balbi

usb: dwc3: drop ev_buffs array

we will be using a single event buffer and that
renders ev_buffs array unnecessary. Let's remove it
in favor of a single pointer to a single event
buffer.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 660e9bde
...@@ -204,7 +204,7 @@ static void dwc3_free_event_buffers(struct dwc3 *dwc) ...@@ -204,7 +204,7 @@ static void dwc3_free_event_buffers(struct dwc3 *dwc)
{ {
struct dwc3_event_buffer *evt; struct dwc3_event_buffer *evt;
evt = dwc->ev_buffs[0]; evt = dwc->ev_buf;
if (evt) if (evt)
dwc3_free_one_event_buffer(dwc, evt); dwc3_free_one_event_buffer(dwc, evt);
} }
...@@ -221,17 +221,12 @@ static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length) ...@@ -221,17 +221,12 @@ static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
{ {
struct dwc3_event_buffer *evt; struct dwc3_event_buffer *evt;
dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs),
GFP_KERNEL);
if (!dwc->ev_buffs)
return -ENOMEM;
evt = dwc3_alloc_one_event_buffer(dwc, length); evt = dwc3_alloc_one_event_buffer(dwc, length);
if (IS_ERR(evt)) { if (IS_ERR(evt)) {
dev_err(dwc->dev, "can't allocate event buffer\n"); dev_err(dwc->dev, "can't allocate event buffer\n");
return PTR_ERR(evt); return PTR_ERR(evt);
} }
dwc->ev_buffs[0] = evt; dwc->ev_buf = evt;
return 0; return 0;
} }
...@@ -246,7 +241,7 @@ static int dwc3_event_buffers_setup(struct dwc3 *dwc) ...@@ -246,7 +241,7 @@ static int dwc3_event_buffers_setup(struct dwc3 *dwc)
{ {
struct dwc3_event_buffer *evt; struct dwc3_event_buffer *evt;
evt = dwc->ev_buffs[0]; evt = dwc->ev_buf;
dwc3_trace(trace_dwc3_core, dwc3_trace(trace_dwc3_core,
"Event buf %p dma %08llx length %d\n", "Event buf %p dma %08llx length %d\n",
evt->buf, (unsigned long long) evt->dma, evt->buf, (unsigned long long) evt->dma,
...@@ -269,7 +264,7 @@ static void dwc3_event_buffers_cleanup(struct dwc3 *dwc) ...@@ -269,7 +264,7 @@ static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
{ {
struct dwc3_event_buffer *evt; struct dwc3_event_buffer *evt;
evt = dwc->ev_buffs[0]; evt = dwc->ev_buf;
evt->lpos = 0; evt->lpos = 0;
......
...@@ -753,7 +753,7 @@ struct dwc3 { ...@@ -753,7 +753,7 @@ struct dwc3 {
struct platform_device *xhci; struct platform_device *xhci;
struct resource xhci_resources[DWC3_XHCI_RESOURCES_NUM]; struct resource xhci_resources[DWC3_XHCI_RESOURCES_NUM];
struct dwc3_event_buffer **ev_buffs; struct dwc3_event_buffer *ev_buf;
struct dwc3_ep *eps[DWC3_ENDPOINTS_NUM]; struct dwc3_ep *eps[DWC3_ENDPOINTS_NUM];
struct usb_gadget gadget; struct usb_gadget gadget;
......
...@@ -2609,7 +2609,7 @@ static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc) ...@@ -2609,7 +2609,7 @@ static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc)
int left; int left;
u32 reg; u32 reg;
evt = dwc->ev_buffs[0]; evt = dwc->ev_buf;
left = evt->count; left = evt->count;
if (!(evt->flags & DWC3_EVENT_PENDING)) if (!(evt->flags & DWC3_EVENT_PENDING))
...@@ -2668,7 +2668,7 @@ static irqreturn_t dwc3_check_event_buf(struct dwc3 *dwc) ...@@ -2668,7 +2668,7 @@ static irqreturn_t dwc3_check_event_buf(struct dwc3 *dwc)
u32 count; u32 count;
u32 reg; u32 reg;
evt = dwc->ev_buffs[0]; evt = dwc->ev_buf;
count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0));
count &= DWC3_GEVNTCOUNT_MASK; count &= DWC3_GEVNTCOUNT_MASK;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment