From: Yu Chen <chenyu56@huawei.com>
To: chenyu56@huawei.com, xuwei5@hisilicon.com, robh+dt@kernel.org,
mark.rutland@arm.com, catalin.marinas@arm.com,
will.deacon@arm.com, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, arnd@arndb.de, olof@lixom.net,
timur@codeaurora.org, khilman@baylibre.com,
gregory.clement@free-electrons.com, narmstrong@baylibre.com,
yamada.masahiro@socionext.com, robh@kernel.org, heiko@sntech.de,
damm+renesas@opensource.se, krzk@kernel.org, balbi@kernel.org,
gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: wangbinghui@hisilicon.com, suzhuangluan@hisilicon.com
Subject: [RFC 0/3] USB: Modify dwc3 code for support Hikey960
Date: Tue, 24 Oct 2017 14:06:07 +0800 [thread overview]
Message-ID: <20171024060610.10712-1-chenyu56@huawei.com> (raw)
The HiKey960 development platform is based around the HiSilicon Kirin960.
The patch sets add support for usb of HiKey960.
Fan Ning (3):
Add document for usb of Hikey960
Modify dwc3 code for support usb of Hikey960
Modify device tree for support Hikey960
.../devicetree/bindings/usb/hisilicon-usb.txt | 38 +
arch/arm64/boot/dts/hisilicon/hi3660.dtsi | 39 +
arch/arm64/configs/defconfig | 5 +
drivers/usb/dwc3/Kconfig | 26 +
drivers/usb/dwc3/Makefile | 5 +
drivers/usb/dwc3/core.c | 78 +-
drivers/usb/dwc3/core.h | 19 +-
drivers/usb/dwc3/dwc3-hi3660.c | 310 +++
drivers/usb/dwc3/dwc3-hisi.c | 1972 ++++++++++++++++++++
drivers/usb/dwc3/dwc3-hisi.h | 293 +++
drivers/usb/dwc3/dwc3-otg.c | 360 ++++
drivers/usb/dwc3/dwc3-otg.h | 133 ++
drivers/usb/dwc3/ep0.c | 55 +-
drivers/usb/dwc3/gadget.c | 20 +-
drivers/usb/dwc3/hisi_hikey_gpio.c | 300 +++
drivers/usb/dwc3/host.c | 13 +
drivers/usb/dwc3/io.h | 14 +
include/linux/hisi/log/hisi_log.h | 143 ++
include/linux/hisi/usb/hisi_hikey_gpio.h | 24 +
include/linux/hisi/usb/hisi_usb.h | 57 +
20 files changed, 3896 insertions(+), 8 deletions(-)
create mode 100644 Documentation/devicetree/bindings/usb/hisilicon-usb.txt
mode change 100644 => 100755 arch/arm64/boot/dts/hisilicon/hi3660.dtsi
create mode 100644 drivers/usb/dwc3/dwc3-hi3660.c
create mode 100644 drivers/usb/dwc3/dwc3-hisi.c
create mode 100644 drivers/usb/dwc3/dwc3-hisi.h
create mode 100644 drivers/usb/dwc3/dwc3-otg.c
create mode 100644 drivers/usb/dwc3/dwc3-otg.h
create mode 100644 drivers/usb/dwc3/hisi_hikey_gpio.c
create mode 100644 include/linux/hisi/log/hisi_log.h
create mode 100644 include/linux/hisi/usb/hisi_hikey_gpio.h
create mode 100644 include/linux/hisi/usb/hisi_usb.h
--
2.11.GIT
next reply other threads:[~2017-10-24 6:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-24 6:06 Yu Chen [this message]
2017-10-24 6:06 ` [RFC 1/3] USB: Add document for usb of Hikey960 Yu Chen
[not found] ` <20171024060610.10712-2-chenyu56-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-10-27 3:47 ` Rob Herring
[not found] ` <20171024060610.10712-1-chenyu56-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-10-24 6:06 ` [RFC 2/3] USB: dwc3: Modify dwc3 code for support " Yu Chen
[not found] ` <20171024060610.10712-3-chenyu56-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-10-24 8:25 ` Felipe Balbi
2017-10-24 10:19 ` Chen Yu
[not found] ` <bbf80ebf-13c6-b589-6b38-6b09ce4119bb-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-10-24 10:41 ` Chen Yu
2017-10-24 6:06 ` [RFC 3/3] arm64: dts: Modify device tree for support Hikey960 Yu Chen
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=20171024060610.10712-1-chenyu56@huawei.com \
--to=chenyu56@huawei.com \
--cc=arnd@arndb.de \
--cc=balbi@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=damm+renesas@opensource.se \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=gregory.clement@free-electrons.com \
--cc=heiko@sntech.de \
--cc=khilman@baylibre.com \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=narmstrong@baylibre.com \
--cc=olof@lixom.net \
--cc=robh+dt@kernel.org \
--cc=robh@kernel.org \
--cc=suzhuangluan@hisilicon.com \
--cc=timur@codeaurora.org \
--cc=wangbinghui@hisilicon.com \
--cc=will.deacon@arm.com \
--cc=xuwei5@hisilicon.com \
--cc=yamada.masahiro@socionext.com \
/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;
as well as URLs for NNTP newsgroup(s).