All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/2] add support for the R-Car H2 and M2 xHCI controllers
@ 2014-05-29  1:31 ` Yoshihiro Shimoda
  0 siblings, 0 replies; 2+ messages in thread
From: Yoshihiro Shimoda @ 2014-05-29  1:31 UTC (permalink / raw)
  To: mathias.nyman@intel.com, Greg Kroah-Hartman,
	linux-usb@vger.kernel.org, Gregory CLEMENT
  Cc: SH-Linux, Magnus Damm, Geert Uytterhoeven, Grant Likely,
	Rob Herring, devicetree@vger.kernel.org

This patch set adds the USB xHCI support for the R-Car H2 and M2 SoCs.
These SoCs use an xHCI but still need specific initialization, mainly
to setup the firmware downloading and the specific registers.

This patch set is based on the usb-next branch of Greg usb.git tree.
(commit id = ff1fcd50bc2459744e6f948310bc18eb7d6e8c72)


This patch series has a Gregory CLEMENT's patch. Since the patch needed to
fix some things, I modified the patch:
http://marc.info/?l=linux-usb&m\x140025742005303&w=2
http://marc.info/?l=linux-usb&m\x140088117126268&w=2


Changes since v2:
 - Fix goto direction in patch 1.
 - Remove some unnecessary checks in patch 1.
 - Add MODULE_FIRMWARE() in patch 2.
 - Add a comment about xhci_rcar_init_quirk() in patch 2.

Changes since v1 (about patch 2 only because patch 1 and 3 ware applied):
 - Fix some typos in patch 2.
 - Remove duplicated #define in patch 2.
 - Remove usb_phy framework calling in patch 2.
 - Change prototype of xhci_rcar_start() in patch 2.
 - Change compatible strings from "renesas,r8a779[01]-xhci" to
   "renesas,xhci-r8a779[01]" in patch 2. Because of Renesas SoC
   maintainer's comment:
    http://marc.info/?l=linux-sh&m\x140109049002958&w=2

 - Rewrite the custom get_unaligned_le32() and add comment about it in patch 2.


Gregory CLEMENT (1):
  usb: host: xhci-plat: add optional PHY support

Yoshihiro Shimoda (1):
  usb: host: xhci-plat: add support for the R-Car H2 and M2 xHCI
    controllers

 drivers/usb/host/Kconfig     |    8 +++
 drivers/usb/host/Makefile    |    3 +
 drivers/usb/host/xhci-plat.c |   45 +++++++++++-
 drivers/usb/host/xhci-rcar.c |  162 ++++++++++++++++++++++++++++++++++++++++++
 drivers/usb/host/xhci-rcar.h |   27 +++++++
 drivers/usb/host/xhci.h      |    2 +
 6 files changed, 246 insertions(+), 1 deletion(-)
 create mode 100644 drivers/usb/host/xhci-rcar.c
 create mode 100644 drivers/usb/host/xhci-rcar.h

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH v3 0/2] add support for the R-Car H2 and M2 xHCI controllers
@ 2014-05-29  1:31 ` Yoshihiro Shimoda
  0 siblings, 0 replies; 2+ messages in thread
From: Yoshihiro Shimoda @ 2014-05-29  1:31 UTC (permalink / raw)
  To: mathias.nyman@intel.com, Greg Kroah-Hartman,
	linux-usb@vger.kernel.org, Gregory CLEMENT
  Cc: SH-Linux, Magnus Damm, Geert Uytterhoeven, Grant Likely,
	Rob Herring, devicetree@vger.kernel.org

This patch set adds the USB xHCI support for the R-Car H2 and M2 SoCs.
These SoCs use an xHCI but still need specific initialization, mainly
to setup the firmware downloading and the specific registers.

This patch set is based on the usb-next branch of Greg usb.git tree.
(commit id = ff1fcd50bc2459744e6f948310bc18eb7d6e8c72)


This patch series has a Gregory CLEMENT's patch. Since the patch needed to
fix some things, I modified the patch:
http://marc.info/?l=linux-usb&m=140025742005303&w=2
http://marc.info/?l=linux-usb&m=140088117126268&w=2


Changes since v2:
 - Fix goto direction in patch 1.
 - Remove some unnecessary checks in patch 1.
 - Add MODULE_FIRMWARE() in patch 2.
 - Add a comment about xhci_rcar_init_quirk() in patch 2.

Changes since v1 (about patch 2 only because patch 1 and 3 ware applied):
 - Fix some typos in patch 2.
 - Remove duplicated #define in patch 2.
 - Remove usb_phy framework calling in patch 2.
 - Change prototype of xhci_rcar_start() in patch 2.
 - Change compatible strings from "renesas,r8a779[01]-xhci" to
   "renesas,xhci-r8a779[01]" in patch 2. Because of Renesas SoC
   maintainer's comment:
    http://marc.info/?l=linux-sh&m=140109049002958&w=2

 - Rewrite the custom get_unaligned_le32() and add comment about it in patch 2.


Gregory CLEMENT (1):
  usb: host: xhci-plat: add optional PHY support

Yoshihiro Shimoda (1):
  usb: host: xhci-plat: add support for the R-Car H2 and M2 xHCI
    controllers

 drivers/usb/host/Kconfig     |    8 +++
 drivers/usb/host/Makefile    |    3 +
 drivers/usb/host/xhci-plat.c |   45 +++++++++++-
 drivers/usb/host/xhci-rcar.c |  162 ++++++++++++++++++++++++++++++++++++++++++
 drivers/usb/host/xhci-rcar.h |   27 +++++++
 drivers/usb/host/xhci.h      |    2 +
 6 files changed, 246 insertions(+), 1 deletion(-)
 create mode 100644 drivers/usb/host/xhci-rcar.c
 create mode 100644 drivers/usb/host/xhci-rcar.h

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-29  1:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-29  1:31 [PATCH v3 0/2] add support for the R-Car H2 and M2 xHCI controllers Yoshihiro Shimoda
2014-05-29  1:31 ` Yoshihiro Shimoda

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.