From: f.fainelli@gmail.com (Florian Fainelli)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 6/6 V2] Broadcom drivers changes for 4.14
Date: Thu, 24 Aug 2017 17:56:32 -0700 [thread overview]
Message-ID: <20170825005632.29599-1-f.fainelli@gmail.com> (raw)
In-Reply-To: <20170817183748.1450-1-f.fainelli@gmail.com>
The following changes since commit 5771a8c08880cdca3bfb4a3fc6d309d6bba20877:
Linux v4.13-rc1 (2017-07-15 15:22:10 -0700)
are available in the git repository at:
http://github.com/Broadcom/stblinux.git tags/arm-soc/for-4.14/drivers
for you to fetch changes up to ed70bd0aa574d4922382ead47cd370174e31cb0e:
soc bcm: brcmstb: Add support for S2/S3/S5 suspend states (MIPS) (2017-08-24 17:49:43 -0700)
----------------------------------------------------------------
This pull request contains Broadcom ARM/ARM64 SoC drivers changes for 4.14,
please pull the following:
- Markus adds support for the Broadcom STB DDR PHY frontend which supports
dynamic firmware loading and offers the ability to respond with DRAM refresh
rates. He also adds a proper documentation binding document for that
peripheral
- Brian adds support for S2/S3/S5 system suspend/resume modes on ARM-based SoCs
which is not new but had been lingering for a long time.
- Justin adds S2/S3 system suspend/resume modes on MIPS-based SoCs which is a
bit new newer and builds on top of the ARM-based support.
- Florian adds Device Tree binding documents for both ARM and MIPS based systems
describing the necessary nodes for S2/S3/S5 on these SoCs.
----------------------------------------------------------------
Brian Norris (1):
soc: bcm: brcmstb: Add support for S2/S3/S5 suspend states (ARM)
Florian Fainelli (2):
dt-bindings: ARM: brcmstb: Update Broadcom STB Power Management binding
dt-bindings: Document MIPS Broadcom STB power management nodes
Justin Chen (1):
soc bcm: brcmstb: Add support for S2/S3/S5 suspend states (MIPS)
Markus Mayer (2):
dt-bindings: Add bindings for Broadcom STB DRAM Sensors
memory: brcmstb: Add driver for DPFE
.../devicetree/bindings/arm/bcm/brcm,brcmstb.txt | 6 +-
.../bindings/memory-controllers/brcm,dpfe-cpu.txt | 27 +
.../devicetree/bindings/mips/brcm/soc.txt | 153 ++++
MAINTAINERS | 8 +
drivers/memory/Makefile | 1 +
drivers/memory/brcmstb_dpfe.c | 701 ++++++++++++++++++
drivers/soc/bcm/Kconfig | 2 +
drivers/soc/bcm/brcmstb/Kconfig | 9 +
drivers/soc/bcm/brcmstb/Makefile | 1 +
drivers/soc/bcm/brcmstb/pm/Makefile | 3 +
drivers/soc/bcm/brcmstb/pm/aon_defs.h | 113 +++
drivers/soc/bcm/brcmstb/pm/pm-arm.c | 822 +++++++++++++++++++++
drivers/soc/bcm/brcmstb/pm/pm-mips.c | 461 ++++++++++++
drivers/soc/bcm/brcmstb/pm/pm.h | 89 +++
drivers/soc/bcm/brcmstb/pm/s2-arm.S | 76 ++
drivers/soc/bcm/brcmstb/pm/s2-mips.S | 200 +++++
drivers/soc/bcm/brcmstb/pm/s3-mips.S | 146 ++++
17 files changed, 2817 insertions(+), 1 deletion(-)
create mode 100644 Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
create mode 100644 drivers/memory/brcmstb_dpfe.c
create mode 100644 drivers/soc/bcm/brcmstb/Kconfig
create mode 100644 drivers/soc/bcm/brcmstb/pm/Makefile
create mode 100644 drivers/soc/bcm/brcmstb/pm/aon_defs.h
create mode 100644 drivers/soc/bcm/brcmstb/pm/pm-arm.c
create mode 100644 drivers/soc/bcm/brcmstb/pm/pm-mips.c
create mode 100644 drivers/soc/bcm/brcmstb/pm/pm.h
create mode 100644 drivers/soc/bcm/brcmstb/pm/s2-arm.S
create mode 100644 drivers/soc/bcm/brcmstb/pm/s2-mips.S
create mode 100644 drivers/soc/bcm/brcmstb/pm/s3-mips.S
next prev parent reply other threads:[~2017-08-25 0:56 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20170817183748.1450-1-f.fainelli@gmail.com>
2017-08-17 18:37 ` [GIT PULL 1/6] Broadcom soc changes for 4.14 Florian Fainelli
2017-08-21 22:16 ` Florian Fainelli
2017-08-22 16:50 ` Stefan Wahren
2017-08-22 19:32 ` Arnd Bergmann
2017-08-17 18:37 ` [GIT PULL 2/6] Broadcom devicetree " Florian Fainelli
2017-08-18 21:00 ` Arnd Bergmann
2017-08-17 18:37 ` [GIT PULL 3/6] Broadcom devicetree-arm64 " Florian Fainelli
2017-08-18 20:45 ` Arnd Bergmann
2017-08-17 18:37 ` [GIT PULL 4/6] Broadcom defconfig " Florian Fainelli
2017-08-18 20:29 ` Arnd Bergmann
2017-08-17 18:37 ` [GIT PULL 5/6] Broadcom defconfig-arm64 " Florian Fainelli
2017-08-18 21:59 ` Arnd Bergmann
2017-08-17 18:37 ` [GIT PULL 6/6] Broadcom drivers " Florian Fainelli
2017-08-18 21:58 ` Arnd Bergmann
2017-08-18 22:35 ` Florian Fainelli
2017-08-19 20:34 ` Arnd Bergmann
2017-08-19 23:07 ` Florian Fainelli
2017-08-24 19:43 ` [GIT PULL 1/6 V2] Broadcom soc " Florian Fainelli
2017-09-15 23:56 ` Florian Fainelli
2017-08-25 0:56 ` Florian Fainelli [this message]
2017-09-06 0:55 ` [GIT PULL 6/6 V2] Broadcom drivers " Olof Johansson
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=20170825005632.29599-1-f.fainelli@gmail.com \
--to=f.fainelli@gmail.com \
--cc=linux-arm-kernel@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;
as well as URLs for NNTP newsgroup(s).