From: plagnioj@jcrosoft.com (Jean-Christophe PLAGNIOL-VILLARD)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/9 v2] at91 USB DT support
Date: Wed, 7 Mar 2012 09:49:24 +0100 [thread overview]
Message-ID: <20120307084924.GK21255@game.jcrosoft.org> (raw)
HI,
this is a second version of the patch series to add DT suport for
usb host and device on at91
The following changes since commit 3370718be26d86e7f8587390eee563c289542ee7:
ARM: at91/dt: add Calao DAB-MMX daugther board support for USB-A9G20 (2012-03-02 00:46:21 +0800)
are available in the git repository at:
git at github.com:at91linux/linux-at91.git ..BRANCH.NOT.VERIFIED..
Jean-Christophe PLAGNIOL-VILLARD (9):
ARM: at91: usb ohci add dt support
ARM: at91: dt: enable usb ohci for sam9g20, sam9g45 amd sam9x5
ARM: at91: usb ehci add dt support
ARM: at91: dt: enable usb ehci for sam9g45 and sam9x5
USB: at91: Device udc add dt support
ARM: at91: sam9g20 udc add dt support
usb: add Atmel USBA UDC DT support
ARM: at91: sam9g45 add udc DT support
ARM: at91: sam9x5 add udc DT support
.../devicetree/bindings/usb/atmel-usb.txt | 135 +++++++++++++
arch/arm/boot/dts/at91sam9g20.dtsi | 14 ++
arch/arm/boot/dts/at91sam9g25ek.dts | 17 ++
arch/arm/boot/dts/at91sam9g45.dtsi | 80 ++++++++
arch/arm/boot/dts/at91sam9m10g45ek.dts | 15 ++
arch/arm/boot/dts/at91sam9x5.dtsi | 81 ++++++++
arch/arm/boot/dts/usb_a9g20.dts | 10 +
arch/arm/mach-at91/at91sam9260.c | 1 +
arch/arm/mach-at91/at91sam9g45.c | 4 +
arch/arm/mach-at91/at91sam9x5.c | 7 +-
drivers/usb/Kconfig | 2 +-
drivers/usb/gadget/Kconfig | 4 +-
drivers/usb/gadget/at91_udc.c | 40 ++++-
drivers/usb/gadget/atmel_usba_udc.c | 209 +++++++++++++++-----
drivers/usb/gadget/atmel_usba_udc.h | 1 +
drivers/usb/host/ehci-atmel.c | 24 +++-
drivers/usb/host/ohci-at91.c | 101 ++++++++++-
17 files changed, 688 insertions(+), 57 deletions(-)
create mode 100644 Documentation/devicetree/bindings/usb/atmel-usb.txt
Best Regards,
J.
WARNING: multiple messages have this Message-ID (diff)
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: [PATCH 0/9 v2] at91 USB DT support
Date: Wed, 7 Mar 2012 09:49:24 +0100 [thread overview]
Message-ID: <20120307084924.GK21255@game.jcrosoft.org> (raw)
HI,
this is a second version of the patch series to add DT suport for
usb host and device on at91
The following changes since commit 3370718be26d86e7f8587390eee563c289542ee7:
ARM: at91/dt: add Calao DAB-MMX daugther board support for USB-A9G20 (2012-03-02 00:46:21 +0800)
are available in the git repository at:
git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:at91linux/linux-at91.git ..BRANCH.NOT.VERIFIED..
Jean-Christophe PLAGNIOL-VILLARD (9):
ARM: at91: usb ohci add dt support
ARM: at91: dt: enable usb ohci for sam9g20, sam9g45 amd sam9x5
ARM: at91: usb ehci add dt support
ARM: at91: dt: enable usb ehci for sam9g45 and sam9x5
USB: at91: Device udc add dt support
ARM: at91: sam9g20 udc add dt support
usb: add Atmel USBA UDC DT support
ARM: at91: sam9g45 add udc DT support
ARM: at91: sam9x5 add udc DT support
.../devicetree/bindings/usb/atmel-usb.txt | 135 +++++++++++++
arch/arm/boot/dts/at91sam9g20.dtsi | 14 ++
arch/arm/boot/dts/at91sam9g25ek.dts | 17 ++
arch/arm/boot/dts/at91sam9g45.dtsi | 80 ++++++++
arch/arm/boot/dts/at91sam9m10g45ek.dts | 15 ++
arch/arm/boot/dts/at91sam9x5.dtsi | 81 ++++++++
arch/arm/boot/dts/usb_a9g20.dts | 10 +
arch/arm/mach-at91/at91sam9260.c | 1 +
arch/arm/mach-at91/at91sam9g45.c | 4 +
arch/arm/mach-at91/at91sam9x5.c | 7 +-
drivers/usb/Kconfig | 2 +-
drivers/usb/gadget/Kconfig | 4 +-
drivers/usb/gadget/at91_udc.c | 40 ++++-
drivers/usb/gadget/atmel_usba_udc.c | 209 +++++++++++++++-----
drivers/usb/gadget/atmel_usba_udc.h | 1 +
drivers/usb/host/ehci-atmel.c | 24 +++-
drivers/usb/host/ohci-at91.c | 101 ++++++++++-
17 files changed, 688 insertions(+), 57 deletions(-)
create mode 100644 Documentation/devicetree/bindings/usb/atmel-usb.txt
Best Regards,
J.
next reply other threads:[~2012-03-07 8:49 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-07 8:49 Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-03-07 8:49 ` [PATCH 0/9 v2] at91 USB DT support Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 1/9 v2] ARM: at91: usb ohci add dt support Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:34 ` Russell King - ARM Linux
2012-03-07 9:34 ` Russell King - ARM Linux
2012-03-07 10:33 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 10:33 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 16:45 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 16:45 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 2/9 v2] ARM: at91: dt: enable usb ohci for sam9g20, sam9g45 amd sam9x5 Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 3/9 v2] ARM: at91: usb ehci add dt support Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 4/9] ARM: at91: dt: enable usb ehci for sam9g45 and sam9x5 Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 5/9] USB: at91: Device udc add dt support Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-08 20:53 ` Greg KH
2012-03-08 20:53 ` Greg KH
2012-03-07 9:15 ` [PATCH 6/9] ARM: at91: sam9g20 " Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 7/9] usb: add Atmel USBA UDC DT support Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14 9:27 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14 9:27 ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-08 15:42 ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-08 15:42 ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-18 13:48 ` Jean-Christophe PLAGNIOL-VILLARD
2012-04-18 13:48 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 8/9] ARM: at91: sam9g45 add udc " Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` [PATCH 9/9] ARM: at91: sam9x5 " Jean-Christophe PLAGNIOL-VILLARD
2012-03-07 9:15 ` Jean-Christophe PLAGNIOL-VILLARD
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=20120307084924.GK21255@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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.