From: Jules Maselbas <jmaselbas@kalray.eu>
To: Barebox List <barebox@lists.infradead.org>
Cc: Jules Maselbas <jmaselbas@kalray.eu>
Subject: [PATCH v2 0/7] usb: dwc2 host driver
Date: Wed, 22 Jan 2020 16:49:01 +0100 [thread overview]
Message-ID: <20200122154908.22635-1-jmaselbas@kalray.eu> (raw)
Hi,
This patchset add USB host support for the DWC2 controller
As I said before, this driver comes from U-Boot and is modified
with some part taken from Linux.
I've only tested this driver on our custom SoC (k1c MPPA Coolidge)
using an external ULPI phy. More tests are welcome.
changes since rfc:
- error message for timeout in wait bit set/clear
- in the commit 'Fix toggle reset': pipe is used instead of
wIndex field from setup packet to get epnum and in.
---
Jules Maselbas (7):
usb: dwc2: Add host controller driver
usb: dwc2: host: Read dr_mode from device tree
usb: dwc2: host: Rework roothub interface
usb: dwc2: host: Handle dma mapping errors
usb: dwc2: host: Dynamic fifo size support from Linux
usb: dwc2: host: Fix toggle reset
usb: dwc2: host: Rewrite dwc2_hc_init
drivers/usb/Kconfig | 2 +
drivers/usb/Makefile | 1 +
drivers/usb/dwc2/Kconfig | 4 +
drivers/usb/dwc2/Makefile | 1 +
drivers/usb/dwc2/core.c | 703 ++++++++++++++++++++++++++++++++
drivers/usb/dwc2/core.h | 546 +++++++++++++++++++++++++
drivers/usb/dwc2/dwc2.c | 103 +++++
drivers/usb/dwc2/dwc2.h | 42 ++
drivers/usb/dwc2/host.c | 747 +++++++++++++++++++++++++++++++++
drivers/usb/dwc2/regs.h | 839 ++++++++++++++++++++++++++++++++++++++
drivers/usb/dwc2/rhub.c | 384 +++++++++++++++++
11 files changed, 3372 insertions(+)
create mode 100644 drivers/usb/dwc2/Kconfig
create mode 100644 drivers/usb/dwc2/Makefile
create mode 100644 drivers/usb/dwc2/core.c
create mode 100644 drivers/usb/dwc2/core.h
create mode 100644 drivers/usb/dwc2/dwc2.c
create mode 100644 drivers/usb/dwc2/dwc2.h
create mode 100644 drivers/usb/dwc2/host.c
create mode 100644 drivers/usb/dwc2/regs.h
create mode 100644 drivers/usb/dwc2/rhub.c
--
2.21.0.196.g041f5ea
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2020-01-22 15:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-22 15:49 Jules Maselbas [this message]
2020-01-22 15:49 ` [PATCH v2 1/7] usb: dwc2: Add host controller driver Jules Maselbas
2020-01-24 14:32 ` Sascha Hauer
2020-01-27 17:23 ` Jules Maselbas
2020-01-28 8:01 ` Sascha Hauer
2020-01-22 15:49 ` [PATCH v2 2/7] usb: dwc2: host: Read dr_mode from device tree Jules Maselbas
2020-01-22 15:49 ` [PATCH v2 3/7] usb: dwc2: host: Rework roothub interface Jules Maselbas
2020-01-22 15:49 ` [PATCH v2 4/7] usb: dwc2: host: Handle dma mapping errors Jules Maselbas
2020-01-22 15:49 ` [PATCH v2 5/7] usb: dwc2: host: Dynamic fifo size support from Linux Jules Maselbas
2020-01-22 15:49 ` [PATCH v2 6/7] usb: dwc2: host: Fix toggle reset Jules Maselbas
2020-01-22 15:49 ` [PATCH v2 7/7] usb: dwc2: host: Rewrite dwc2_hc_init Jules Maselbas
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=20200122154908.22635-1-jmaselbas@kalray.eu \
--to=jmaselbas@kalray.eu \
--cc=barebox@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox