From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 0/9] atmel: add ehci support
Date: Wed, 23 Jan 2013 20:28:18 +0100 [thread overview]
Message-ID: <20130123192818.GW1906@pengutronix.de> (raw)
In-Reply-To: <20130121200712.GJ26329@game.jcrosoft.org>
On Mon, Jan 21, 2013 at 09:07:12PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> HI,
>
> the following patch series add the ehci support to atmel
>
> it also allow to discover the caps resources via cr_capbase
> so no need to hardcode it anymore
>
> The following changes since commit 3de3b677ee3adc4e10235b623a8e0aa45be48893:
>
> Makefile: move cmd_check_file_size to Makefile.lib (2013-01-20 12:51:28 +0100)
>
> are available in the git repository at:
>
> git://git.jcrosoft.org/barebox.git delivery/atmel_usb_ehci
>
Applied, thanks
Sascha
> for you to fetch changes up to 44aea6f57969984648a0686ce698b14e55e55752:
>
> at91sam9x5ek: add usb support (2013-01-17 22:45:45 +0800)
>
> ----------------------------------------------------------------
> Jean-Christophe PLAGNIOL-VILLARD (9):
> usb: add parameters info on usb device
> usb: fix for USB_ST_STALLED status reporting in ehci_submit_async()
> ehci: if caps ressource is not provided discover it via cr_capbase
> ehci: add atmel support
> at91: usb: allow to specicfy inverted vbus
> at91sam9g45: add ehci support
> at91sam9m10g45ek: add usb support
> at91sam9x5: add ehci support
> at91sam9x5ek: add usb support
>
> arch/arm/boards/at91sam9m10g45ek/init.c | 20 ++++++++++++++++++++
> arch/arm/boards/at91sam9x5ek/init.c | 20 +++++++++++++++-----
> arch/arm/configs/at91sam9m10g45ek_defconfig | 6 ++++++
> arch/arm/configs/at91sam9x5ek_defconfig | 6 ++++++
> arch/arm/mach-at91/at91rm9200_devices.c | 9 +++++++++
> arch/arm/mach-at91/at91sam9260_devices.c | 9 +++++++++
> arch/arm/mach-at91/at91sam9261_devices.c | 9 +++++++++
> arch/arm/mach-at91/at91sam9263_devices.c | 3 ++-
> arch/arm/mach-at91/at91sam9g45.c | 1 +
> arch/arm/mach-at91/at91sam9g45_devices.c | 25 ++++++++++++++++++++++++-
> arch/arm/mach-at91/at91sam9n12_devices.c | 3 ++-
> arch/arm/mach-at91/at91sam9x5.c | 1 +
> arch/arm/mach-at91/at91sam9x5_devices.c | 25 ++++++++++++++++++++++++-
> arch/arm/mach-at91/include/mach/board.h | 2 ++
> drivers/usb/core/usb.c | 14 ++++++++++++++
> drivers/usb/host/Kconfig | 5 +++++
> drivers/usb/host/Makefile | 1 +
> drivers/usb/host/ehci-atmel.c | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> drivers/usb/host/ehci-hcd.c | 18 ++++++++++++++----
> 19 files changed, 260 insertions(+), 13 deletions(-)
> create mode 100644 drivers/usb/host/ehci-atmel.c
>
> Best Regards,
> J.
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2013-01-23 19:28 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-21 20:07 [PATCH 0/9] atmel: add ehci support Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 1/9] usb: add parameters info on usb device Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 2/9] usb: fix for USB_ST_STALLED status reporting in ehci_submit_async() Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 3/9] ehci: if caps ressource is not provided discover it via cr_capbase Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 4/9] ehci: add atmel support Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 5/9] at91: usb: allow to specicfy inverted vbus Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 6/9] at91sam9g45: add ehci support Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 7/9] at91sam9m10g45ek: add usb support Jean-Christophe PLAGNIOL-VILLARD
2013-01-22 8:30 ` Sascha Hauer
2013-01-22 14:15 ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-22 14:24 ` Sascha Hauer
2013-01-22 14:46 ` Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 8/9] at91sam9x5: add ehci support Jean-Christophe PLAGNIOL-VILLARD
2013-01-21 20:09 ` [PATCH 9/9] at91sam9x5ek: add usb support Jean-Christophe PLAGNIOL-VILLARD
2013-01-23 19:28 ` Sascha Hauer [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=20130123192818.GW1906@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=plagnioj@jcrosoft.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.