Skip to content

Commit

Permalink
usb: dwc3: calculate number of event buffers dynamically
Browse files Browse the repository at this point in the history
This will allow us to only allocate memory when
we actually need.

Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Felipe Balbi committed Dec 12, 2011
1 parent 6c167fc commit 9f622b2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
21 changes: 11 additions & 10 deletions drivers/usb/dwc3/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static void dwc3_free_event_buffers(struct dwc3 *dwc)
struct dwc3_event_buffer *evt;
int i;

for (i = 0; i < DWC3_EVENT_BUFFERS_NUM; i++) {
for (i = 0; i < dwc->num_event_buffers; i++) {
evt = dwc->ev_buffs[i];
if (evt) {
dwc3_free_one_event_buffer(dwc, evt);
Expand All @@ -166,17 +166,19 @@ static void dwc3_free_event_buffers(struct dwc3 *dwc)
/**
* dwc3_alloc_event_buffers - Allocates @num event buffers of size @length
* @dwc: Pointer to out controller context structure
* @num: number of event buffers to allocate
* @length: size of event buffer
*
* Returns 0 on success otherwise negative errno. In error the case, dwc
* may contain some buffers allocated but not all which were requested.
*/
static int __devinit dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned num,
unsigned length)
static int __devinit dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length)
{
int num;
int i;

num = DWC3_NUM_INT(dwc->hwparams.hwparams1);
dwc->num_event_buffers = num;

for (i = 0; i < num; i++) {
struct dwc3_event_buffer *evt;

Expand All @@ -202,7 +204,7 @@ static int __devinit dwc3_event_buffers_setup(struct dwc3 *dwc)
struct dwc3_event_buffer *evt;
int n;

for (n = 0; n < DWC3_EVENT_BUFFERS_NUM; n++) {
for (n = 0; n < dwc->num_event_buffers; n++) {
evt = dwc->ev_buffs[n];
dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n",
evt->buf, (unsigned long long) evt->dma,
Expand All @@ -225,7 +227,7 @@ static void dwc3_event_buffers_cleanup(struct dwc3 *dwc)
struct dwc3_event_buffer *evt;
int n;

for (n = 0; n < DWC3_EVENT_BUFFERS_NUM; n++) {
for (n = 0; n < dwc->num_event_buffers; n++) {
evt = dwc->ev_buffs[n];
dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0);
dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0);
Expand Down Expand Up @@ -289,8 +291,9 @@ static int __devinit dwc3_core_init(struct dwc3 *dwc)
cpu_relax();
} while (true);

ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_NUM,
DWC3_EVENT_BUFFERS_SIZE);
dwc3_cache_hwparams(dwc);

ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
if (ret) {
dev_err(dwc->dev, "failed to allocate event buffers\n");
ret = -ENOMEM;
Expand All @@ -303,8 +306,6 @@ static int __devinit dwc3_core_init(struct dwc3 *dwc)
goto err1;
}

dwc3_cache_hwparams(dwc);

return 0;

err1:
Expand Down
8 changes: 6 additions & 2 deletions drivers/usb/dwc3/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/* Global constants */
#define DWC3_ENDPOINTS_NUM 32

#define DWC3_EVENT_BUFFERS_NUM 2
#define DWC3_EVENT_BUFFERS_MAX 2
#define DWC3_EVENT_BUFFERS_SIZE PAGE_SIZE
#define DWC3_EVENT_TYPE_MASK 0xfe

Expand Down Expand Up @@ -536,6 +536,8 @@ struct dwc3_hwparams {
u32 hwparams8;
};

#define DWC3_NUM_INT(n) (((n) & (0x3f << 15)) >> 15)

/**
* struct dwc3 - representation of our controller
* @ctrl_req: usb control request which is used for ep0
Expand All @@ -555,6 +557,7 @@ struct dwc3_hwparams {
* @regs: base address for our registers
* @regs_size: address space size
* @irq: IRQ number
* @num_event_buffers: calculated number of event buffers
* @maximum_speed: maximum speed requested (mainly for testing purposes)
* @revision: revision register contents
* @is_selfpowered: true when we are selfpowered
Expand Down Expand Up @@ -585,7 +588,7 @@ struct dwc3 {
spinlock_t lock;
struct device *dev;

struct dwc3_event_buffer *ev_buffs[DWC3_EVENT_BUFFERS_NUM];
struct dwc3_event_buffer *ev_buffs[DWC3_EVENT_BUFFERS_MAX];
struct dwc3_ep *eps[DWC3_ENDPOINTS_NUM];

struct usb_gadget gadget;
Expand All @@ -596,6 +599,7 @@ struct dwc3 {

int irq;

u32 num_event_buffers;
u32 maximum_speed;
u32 revision;

Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/dwc3/gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -1925,7 +1925,7 @@ static irqreturn_t dwc3_interrupt(int irq, void *_dwc)

spin_lock(&dwc->lock);

for (i = 0; i < DWC3_EVENT_BUFFERS_NUM; i++) {
for (i = 0; i < dwc->num_event_buffers; i++) {
irqreturn_t status;

status = dwc3_process_event_buf(dwc, i);
Expand Down

0 comments on commit 9f622b2

Please sign in to comment.