All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rajesh Bhagat <rajesh.bhagat@nxp.com>
To: <linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<devicetree@vger.kernel.org>
Cc: <Peter.Chen@nxp.com>, <gregkh@linuxfoundation.org>,
	<kishon@ti.com>, <robh+dt@kernel.org>, <shawnguo@kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	Rajesh Bhagat <rajesh.bhagat@nxp.com>
Subject: [PATCH v2 0/5] drivers: usb: chipidea: Add qoriq platform
Date: Sat, 9 Jul 2016 10:00:51 +0530	[thread overview]
Message-ID: <1468038656-10345-1-git-send-email-rajesh.bhagat@nxp.com> (raw)

Adds qoriq platform driver for chipidea controller as well as
qoriq usb 2.0 phy driver. Also, enables chipidea driver and QorIQ
USB 2.0 PHY driver on LS1021A platform.

Rajesh Bhagat (5):
  drivers: usb: chipidea: Add qoriq platform driver
  usb: DT binding documentation for qoriq usb 2.0 controller
  drivers: usb: phy: Add qoriq usb 2.0 phy driver support
  phy: DT binding documentation for qoriq usb 2.0 phy
  arm: dts: ls1021a: enable chipidea driver and USB 2.0 PHY driver

 .../devicetree/bindings/phy/qoriq-usb2-phy.txt     |  22 ++
 .../devicetree/bindings/usb/ci-hdrc-qoriq.txt      |  34 +++
 arch/arm/boot/dts/ls1021a.dtsi                     |  15 +-
 drivers/phy/Kconfig                                |   8 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-qoriq-usb2.c                       | 228 ++++++++++++++++++++
 drivers/phy/phy-qoriq-usb2.h                       |  50 +++++
 drivers/usb/chipidea/Makefile                      |   2 +
 drivers/usb/chipidea/ci_hdrc_qoriq.c               | 237 +++++++++++++++++++++
 drivers/usb/chipidea/ci_hdrc_qoriq.h               |  65 ++++++
 10 files changed, 661 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/phy/qoriq-usb2-phy.txt
 create mode 100644 Documentation/devicetree/bindings/usb/ci-hdrc-qoriq.txt
 create mode 100644 drivers/phy/phy-qoriq-usb2.c
 create mode 100644 drivers/phy/phy-qoriq-usb2.h
 create mode 100644 drivers/usb/chipidea/ci_hdrc_qoriq.c
 create mode 100644 drivers/usb/chipidea/ci_hdrc_qoriq.h

-- 
2.6.2.198.g614a2ac

WARNING: multiple messages have this Message-ID (diff)
From: Rajesh Bhagat <rajesh.bhagat-3arQi8VN3Tc@public.gmane.org>
To: linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: Peter.Chen-3arQi8VN3Tc@public.gmane.org,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org,
	kishon-l0cyMroinI0@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	shawnguo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	Rajesh Bhagat <rajesh.bhagat-3arQi8VN3Tc@public.gmane.org>
Subject: [PATCH v2 0/5] drivers: usb: chipidea: Add qoriq platform
Date: Sat, 9 Jul 2016 10:00:51 +0530	[thread overview]
Message-ID: <1468038656-10345-1-git-send-email-rajesh.bhagat@nxp.com> (raw)

Adds qoriq platform driver for chipidea controller as well as
qoriq usb 2.0 phy driver. Also, enables chipidea driver and QorIQ
USB 2.0 PHY driver on LS1021A platform.

Rajesh Bhagat (5):
  drivers: usb: chipidea: Add qoriq platform driver
  usb: DT binding documentation for qoriq usb 2.0 controller
  drivers: usb: phy: Add qoriq usb 2.0 phy driver support
  phy: DT binding documentation for qoriq usb 2.0 phy
  arm: dts: ls1021a: enable chipidea driver and USB 2.0 PHY driver

 .../devicetree/bindings/phy/qoriq-usb2-phy.txt     |  22 ++
 .../devicetree/bindings/usb/ci-hdrc-qoriq.txt      |  34 +++
 arch/arm/boot/dts/ls1021a.dtsi                     |  15 +-
 drivers/phy/Kconfig                                |   8 +
 drivers/phy/Makefile                               |   1 +
 drivers/phy/phy-qoriq-usb2.c                       | 228 ++++++++++++++++++++
 drivers/phy/phy-qoriq-usb2.h                       |  50 +++++
 drivers/usb/chipidea/Makefile                      |   2 +
 drivers/usb/chipidea/ci_hdrc_qoriq.c               | 237 +++++++++++++++++++++
 drivers/usb/chipidea/ci_hdrc_qoriq.h               |  65 ++++++
 10 files changed, 661 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/devicetree/bindings/phy/qoriq-usb2-phy.txt
 create mode 100644 Documentation/devicetree/bindings/usb/ci-hdrc-qoriq.txt
 create mode 100644 drivers/phy/phy-qoriq-usb2.c
 create mode 100644 drivers/phy/phy-qoriq-usb2.h
 create mode 100644 drivers/usb/chipidea/ci_hdrc_qoriq.c
 create mode 100644 drivers/usb/chipidea/ci_hdrc_qoriq.h

-- 
2.6.2.198.g614a2ac

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2016-07-09  5:04 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-09  4:30 Rajesh Bhagat [this message]
2016-07-09  4:30 ` [PATCH v2 0/5] drivers: usb: chipidea: Add qoriq platform Rajesh Bhagat
2016-07-09  4:30 ` [PATCH v2 1/5] drivers: usb: chipidea: Add qoriq platform driver Rajesh Bhagat
2016-07-09  4:30   ` Rajesh Bhagat
2016-07-09  5:53   ` kbuild test robot
2016-07-09  5:53     ` kbuild test robot
2016-07-09  5:53     ` kbuild test robot
2016-07-09  5:59   ` kbuild test robot
2016-07-09  5:59     ` kbuild test robot
2016-07-09  5:59     ` kbuild test robot
2016-07-09  6:13   ` kbuild test robot
2016-07-09  6:13     ` kbuild test robot
2016-07-09  6:13     ` kbuild test robot
2016-07-11  6:43   ` Peter Chen
2016-07-11  6:43     ` Peter Chen
2016-07-11  6:43     ` Peter Chen
2016-07-12  3:59     ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-15  7:13       ` Peter Chen
2016-07-15  7:13         ` Peter Chen
2016-07-15  7:13         ` Peter Chen
2016-07-15  8:13         ` Rajesh Bhagat
2016-07-15  8:13           ` Rajesh Bhagat
2016-07-15  8:13           ` Rajesh Bhagat
2016-07-09  4:30 ` [PATCH v2 2/5] usb: DT binding documentation for qoriq usb 2.0 controller Rajesh Bhagat
2016-07-09  4:30   ` Rajesh Bhagat
2016-07-11  6:48   ` Peter Chen
2016-07-11  6:48     ` Peter Chen
2016-07-12  3:59     ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-15  7:15       ` Peter Chen
2016-07-15  7:15         ` Peter Chen
2016-07-15  7:15         ` Peter Chen
2016-07-15  8:13         ` Rajesh Bhagat
2016-07-15  8:13           ` Rajesh Bhagat
2016-07-15  8:13           ` Rajesh Bhagat
2016-07-16  0:28   ` Rob Herring
2016-07-16  0:28     ` Rob Herring
2016-07-16  0:28     ` Rob Herring
2016-07-09  4:30 ` [PATCH v2 3/5] drivers: usb: phy: Add qoriq usb 2.0 phy driver support Rajesh Bhagat
2016-07-09  4:30   ` Rajesh Bhagat
2016-07-11  6:54   ` Peter Chen
2016-07-11  6:54     ` Peter Chen
2016-07-12  3:59     ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-12  3:59       ` Rajesh Bhagat
2016-07-09  4:30 ` [PATCH v2 4/5] phy: DT binding documentation for qoriq usb 2.0 phy Rajesh Bhagat
2016-07-09  4:30   ` Rajesh Bhagat
2016-07-16  0:35   ` Rob Herring
2016-07-16  0:35     ` Rob Herring
2016-07-09  4:30 ` [PATCH v2 5/5] arm: dts: ls1021a: enable chipidea driver and USB 2.0 PHY driver Rajesh Bhagat
2016-07-09  4:30   ` Rajesh Bhagat

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=1468038656-10345-1-git-send-email-rajesh.bhagat@nxp.com \
    --to=rajesh.bhagat@nxp.com \
    --cc=Peter.Chen@nxp.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=kishon@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=shawnguo@kernel.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.