linux-tegra.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/8] Support UDC on Tegra 20/30/114/124
@ 2017-08-16 10:32 Dmitry Osipenko
       [not found] ` <cover.1502879077.git.digetx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 14+ messages in thread
From: Dmitry Osipenko @ 2017-08-16 10:32 UTC (permalink / raw)
  To: Thierry Reding, Felipe Balbi, Greg Kroah-Hartman, Peter Chen,
	Jonathan Hunter, Stephen Warren
  Cc: Marc Dietrich, Nicolas Chauvet, Michał Mirosław,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

Some time ago Thierry Reding sent out patches that enabled UDC on NVIDIA
Tegra, unfortunately they haven't got enough traction to get into the
kernel. I've rebased those patches and added a fix for the Ethernet USB
Gadget on Tegra20, Marc Dietrich tested UDC driver on AC100 (Tegra20),
Nicolas Chauvet on TK1 (Tegra124) and Michał Mirosław on TF300T (Tegra30).
Like an original patchset, this series adds support for the peripheral
mode only.

Changelog:

V6:
1) Moved 'SKB reserve' quirk setup from f_ncm to u_uther as per Felipe's
   suggestion.

V5:
1) Moved of_device_get_match_data() above clock enabling to not leave clock
   enabled in case of error. The SoC data matching function shouldn't ever
   fail, but let's assume that it could for consistency.

V4:
1) Used of_device_get_match_data() instead of of_match_node() to cleanup
   code a tad.

V3:
1) Specified platform flags directly in the SoC info as per Michał's
   suggestion.

V2:
1) Added comments to each of patched USB Ethernet gadget models.

2) Added explanatory comment about why usb_phy_set_suspend() invocation
   is necessary in tegra_udc_probe().

3) Dropped TrimSlice from patchset because it turned out that it uses USB1
   controller for USB-to-SATA.

4) Moved tegra_defconfig patch before DT patches as per Stephen's suggestion.

5) Changed dr_mode to "peripheral" in DT patches since we don't support role
   mode switching for now.

Dmitry Osipenko (4):
  usb: gadget: f_ncm/u_ether: Move 'SKB reserve' quirk setup to u_ether
  usb: chipidea: udc: Support SKB alignment quirk
  ARM: defconfig: tegra: Enable ChipIdea UDC driver
  ARM: tegra: Enable UDC on AC100

Thierry Reding (4):
  usb: chipidea: Add support for Tegra20/30/114/124
  ARM: tegra: Enable UDC on Beaver
  ARM: tegra: Enable UDC on Dalmore
  ARM: tegra: Enable UDC on Jetson TK1

 arch/arm/boot/dts/tegra114-dalmore.dts    |  10 ++
 arch/arm/boot/dts/tegra124-jetson-tk1.dts |  12 ++-
 arch/arm/boot/dts/tegra20-paz00.dts       |   2 +
 arch/arm/boot/dts/tegra30-beaver.dts      |  10 ++
 arch/arm/configs/tegra_defconfig          |  10 +-
 drivers/usb/chipidea/Makefile             |   1 +
 drivers/usb/chipidea/ci_hdrc_tegra.c      | 155 ++++++++++++++++++++++++++++++
 drivers/usb/chipidea/udc.c                |   3 +
 drivers/usb/gadget/function/f_ncm.c       |   2 -
 drivers/usb/gadget/function/u_ether.c     |   2 +-
 drivers/usb/gadget/function/u_ether.h     |   1 -
 include/linux/usb/chipidea.h              |   1 +
 12 files changed, 199 insertions(+), 10 deletions(-)
 create mode 100644 drivers/usb/chipidea/ci_hdrc_tegra.c

-- 
2.13.3

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

end of thread, other threads:[~2017-09-06 16:36 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-16 10:32 [PATCH v6 0/8] Support UDC on Tegra 20/30/114/124 Dmitry Osipenko
     [not found] ` <cover.1502879077.git.digetx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-08-16 10:32   ` [PATCH v6 1/8] usb: gadget: f_ncm/u_ether: Move 'SKB reserve' quirk setup to u_ether Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 2/8] usb: chipidea: udc: Support SKB alignment quirk Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 3/8] usb: chipidea: Add support for Tegra20/30/114/124 Dmitry Osipenko
     [not found]     ` <2b091105e45234dca93051862e76e711acf482cc.1502879078.git.digetx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-08-16 10:38       ` Dmitry Osipenko
     [not found]         ` <c294106c-8aa8-8438-9825-0d64b6cfc9ed-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-08-25  3:07           ` Peter Chen
2017-08-25  6:41             ` Dmitry Osipenko
2017-09-06 13:21       ` Jon Hunter
     [not found]         ` <d62d98ec-ef73-7bb2-720f-82155871613a-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2017-09-06 16:36           ` Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 4/8] ARM: defconfig: tegra: Enable ChipIdea UDC driver Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 5/8] ARM: tegra: Enable UDC on Beaver Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 6/8] ARM: tegra: Enable UDC on Dalmore Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 7/8] ARM: tegra: Enable UDC on Jetson TK1 Dmitry Osipenko
2017-08-16 10:32   ` [PATCH v6 8/8] ARM: tegra: Enable UDC on AC100 Dmitry Osipenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).