From: Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: Florian Fainelli
<f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Ray Jui <rjui-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Scott Branden <sbranden-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Jon Mason <jonmason-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
"maintainer:BROADCOM IPROC ARM ARCHITECTURE"
<bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w@public.gmane.org>,
Michael Turquette
<mturquette-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>,
Stephen Boyd <sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
Russell King <linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org>,
Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
Olof Johansson <olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org>,
"open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS"
<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
open list <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
"open list:COMMON CLK FRAMEWORK"
<linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: [PATCH 00/10] ARM: bcm: Add support for Broadcom Hurricane 2 SoC
Date: Mon, 25 Sep 2017 17:09:21 -0700 [thread overview]
Message-ID: <20170926000931.670-1-f.fainelli@gmail.com> (raw)
Hi all,
This patch series adds basic (boot to prompt with essential peripherals
working) support for Broadcom's Hurricane 2 SoC which is found in switching
applications.
This is also an iProc-family chip with a number of variations, including
some in the clock controller that I have not been able to identify yet.
Florian Fainelli (10):
MAINTAINERS: Update Broadcom iProc regexp with Hurricane 2
dt-bindings: Add documentation for Broadcom Hurricane 2 SoCs
ARM: bcm: Add support for Broadcom Hurricane 2 SoC
dt-bindings: Document Broadcom Hurricane 2 clocks
clk: bcm: Add Broadcom Hurricane 2 clock support
ARM: dts: Add Broadcom Hurricane 2 DTS include file
ARM: debug: Add Hurricane 2 UART2 debug addresses
dt-bindings: Add Ubiquiti Networks vendor prefix
ARM: dts: Hurricane 2: Add basic support for Ubiquiti UniFi Switch 8
ARM: multi_v7_defconfig: Enable CONFIG_ARCH_BCM_HR2
.../devicetree/bindings/arm/bcm/brcm,hr2.txt | 14 +
.../bindings/clock/brcm,iproc-clocks.txt | 14 +
.../devicetree/bindings/vendor-prefixes.txt | 1 +
MAINTAINERS | 1 +
arch/arm/Kconfig.debug | 10 +-
arch/arm/boot/dts/Makefile | 2 +
arch/arm/boot/dts/bcm-hr2.dtsi | 368 +++++++++++++++++++++
arch/arm/boot/dts/bcm53340-ubnt-unifi-switch8.dts | 85 +++++
arch/arm/configs/multi_v7_defconfig | 1 +
arch/arm/mach-bcm/Kconfig | 9 +
arch/arm/mach-bcm/Makefile | 3 +
arch/arm/mach-bcm/bcm_hr2.c | 25 ++
drivers/clk/bcm/Kconfig | 9 +
drivers/clk/bcm/Makefile | 1 +
drivers/clk/bcm/clk-hr2.c | 27 ++
15 files changed, 569 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/arm/bcm/brcm,hr2.txt
create mode 100644 arch/arm/boot/dts/bcm-hr2.dtsi
create mode 100644 arch/arm/boot/dts/bcm53340-ubnt-unifi-switch8.dts
create mode 100644 arch/arm/mach-bcm/bcm_hr2.c
create mode 100644 drivers/clk/bcm/clk-hr2.c
--
2.14.1
--
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
next reply other threads:[~2017-09-26 0:09 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-26 0:09 Florian Fainelli [this message]
2017-09-26 0:09 ` [PATCH 01/10] MAINTAINERS: Update Broadcom iProc regexp with Hurricane 2 Florian Fainelli
2017-09-26 0:09 ` [PATCH 02/10] dt-bindings: Add documentation for Broadcom Hurricane 2 SoCs Florian Fainelli
2017-09-26 0:09 ` [PATCH 03/10] ARM: bcm: Add support for Broadcom Hurricane 2 SoC Florian Fainelli
2017-09-26 0:09 ` [PATCH 04/10] dt-bindings: Document Broadcom Hurricane 2 clocks Florian Fainelli
2017-09-26 0:09 ` [PATCH 05/10] clk: bcm: Add Broadcom Hurricane 2 clock support Florian Fainelli
[not found] ` <20170926000931.670-6-f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-09-26 14:58 ` Jon Mason
2017-09-26 0:09 ` [PATCH 06/10] ARM: dts: Add Broadcom Hurricane 2 DTS include file Florian Fainelli
2017-09-26 0:09 ` [PATCH 07/10] ARM: debug: Add Hurricane 2 UART2 debug addresses Florian Fainelli
2017-09-26 0:09 ` [PATCH 08/10] dt-bindings: Add Ubiquiti Networks vendor prefix Florian Fainelli
2017-09-26 0:09 ` [PATCH 09/10] ARM: dts: Hurricane 2: Add basic support for Ubiquiti UniFi Switch 8 Florian Fainelli
2017-09-26 0:09 ` [PATCH 10/10] ARM: multi_v7_defconfig: Enable CONFIG_ARCH_BCM_HR2 Florian Fainelli
2017-09-26 15:00 ` [PATCH 00/10] ARM: bcm: Add support for Broadcom Hurricane 2 SoC Jon Mason
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=20170926000931.670-1-f.fainelli@gmail.com \
--to=f.fainelli-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=arnd-r2nGTMty4D4@public.gmane.org \
--cc=bcm-kernel-feedback-list-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=jonmason-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=mturquette-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
--cc=olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org \
--cc=rjui-dY08KVG/lbpWk0Htik3J/w@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=sbranden-dY08KVG/lbpWk0Htik3J/w@public.gmane.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;
as well as URLs for NNTP newsgroup(s).