public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC PATCH 3/3] ARM: atmel: add RNDIS gadget support
Date: Wed, 4 Sep 2013 14:25:43 +0200	[thread overview]
Message-ID: <201309041425.43291.marex@denx.de> (raw)
In-Reply-To: <5226E7AD.8020607@gmail.com>

Dear Andreas Bie?mann,

> Hi Bo,
> 
> On 09/04/2013 09:42 AM, Bo Shen wrote:
> > Hi Andreas,
> > 
> > On 9/4/2013 15:32, Andreas Bie?mann wrote:
> >> Hi Bo, Marek,
> >> 
> >> On 09/04/2013 04:01 AM, Bo Shen wrote:
> >>> Hi Marek Vasut,
> >>> 
> >>> On 09/04/2013 09:55 AM, Marek Vasut wrote:
> >>>>>> I have considered to put this in driver, however, different Atmel
> >>>>>> SoC have different attributes for each endpoint and different
> >>>>>> number of endpoint.
> >>>>>> 
> >>>>>> for example;
> >>>>>> at91sam9x5: EP("ep1", 1, 1024, 2, 1, 1)
> >>>>>> sama5d3x: EP("ep1", 1, 1024, 3, 1, 0)
> >>>>>> 
> >>>>>> So, if I put this in driver, there will be many #ifdef. If newly SoC
> >>>>>> added, maybe we will need to add #ifdef again. So, I put it here.
> >>>> 
> >>>> Can you not pull it into some header file at least? Having it in the
> >>>> board file
> >>>> will clearly result in duplication.
> >>> 
> >>> OK, I will put it into header file.
> >> 
> >> I'm fine with a header too. But for the records, the mentioned file is
> >> _not_ board code but SoC code.
> > 
> > I will create a header file named atmel_usba_udc.h as other peripheral
> > (at91_udc.h is reserved for full speed usb device), and put it under
> > "arm/arm/include/asm/arch-at91/", the contents as following, does it OK?
> > 
> > ---8>---
> > /*
> > 
> >  * Copyright (C) 2005-2013 Atmel Corporation
> >  *                         Bo Shen <voice.shen@atmel.com>
> >  *
> >  * SPDX-License-Identifier:     GPL-2.0+
> >  */
> > 
> > #ifndef __ATMEL_USBA_UDC_H__
> > #define __ATMEL_USBA_UDC_H__
> > 
> > #include <linux/usb/atmel_usba_udc.h>
> > 
> > #define EP(nam, idx, maxpkt, maxbk, dma, isoc)          \
> > 
> >         [idx] = {                                       \
> >         
> >                 .name   = nam,                          \
> >                 .index  = idx,                          \
> >                 .fifo_size      = maxpkt,               \
> >                 .nr_banks       = maxbk,                \
> >                 .can_dma        = dma,                  \
> >                 .can_isoc       = isoc,                 \
> >         
> >         }
> > 
> > #if defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45) || \
> > 
> >         defined(CONFIG_AT91SAM9X5)
> > 
> > static struct usba_ep_data usba_udc_ep[] = {
> > 
> >         EP("ep0", 0, 64, 1, 0, 0),
> >     
> >     ... ...
> >     
> >         EP("ep6", 6, 1024, 3, 1, 1),
> > 
> > };
> > #elif defined(CONFIG_SAMA5D3)
> > static struct usba_ep_data usba_udc_ep[] = {
> > 
> >         EP("ep0", 0, 64, 1, 0, 0),
> >         ..
> >         EP("ep15", 15, 1024, 2, 0, 0),
> >         
> >                   };
> > 
> > #else
> > # error "NO usba_udc_ep defined"
> > #endif
> > 
> > #undef EP
> > 
> > struct usba_platform_data pdata = {
> > 
> >         .num_ep = ARRAY_SIZE(usba_udc_ep),
> >         .ep     = usba_udc_ep,
> > 
> > };
> > 
> > #endif
> > ---<8---
> 
> I'm fine with that.

Same here, I'm fine with it

Best regards,
Marek Vasut

      reply	other threads:[~2013-09-04 12:25 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-03  3:47 [U-Boot] [RFC PATCH 0/3] USB: atmel: add atmel usba udc driver support Bo Shen
2013-09-03  3:47 ` [U-Boot] [RFC PATCH 1/3] USB: gadget: add atmel usba udc driver Bo Shen
2013-09-03 22:30   ` Marek Vasut
2013-09-04  1:38     ` Bo Shen
2013-09-04  1:55       ` Marek Vasut
2013-09-03  3:47 ` [U-Boot] [RFC PATCH 2/3] ARM: atmel: correct UDPHS name Bo Shen
2013-09-03  3:47 ` [U-Boot] [RFC PATCH 3/3] ARM: atmel: add RNDIS gadget support Bo Shen
2013-09-03 22:31   ` Marek Vasut
2013-09-04  1:46     ` Bo Shen
2013-09-04  1:55       ` Marek Vasut
2013-09-04  2:01         ` Bo Shen
2013-09-04  7:32           ` Andreas Bießmann
2013-09-04  7:42             ` Bo Shen
2013-09-04  7:56               ` Andreas Bießmann
2013-09-04 12:25                 ` Marek Vasut [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201309041425.43291.marex@denx.de \
    --to=marex@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox