From: Heiko Stuebner <heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org>
To: arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Caesar Wang <wxt-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
Subject: [GIT PULL 1/2] Rockchip drivers for 4.4
Date: Fri, 09 Oct 2015 02:34:44 +0200 [thread overview]
Message-ID: <160496219.B4xWx83NpX@phil> (raw)
Hi Arnd, Kevin, Olof,
this is the core powerdomain support for the rk3288 (others to follow later).
After 18 rounds it looks now ready for inclusion.
The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v4.4-rockchip-drivers1
for you to fetch changes up to 7c696693a4f54d12714738b45aee3e4302884ade:
soc: rockchip: power-domain: Add power domain driver (2015-10-06 09:53:28 +0200)
----------------------------------------------------------------
Add the power-domain base-driver which currently contains
support for the rk3288 powerdomain layout but can be easily
extended for the socs (including arm64) later on.
A big thanks to Ceasar Wang for pulling through on this
during 18 revisions.
Also included is a fix to the pm-clock handling in the generic
powerdomains to adapt it to the per-user clock handling we now
do, Acked by Rafael Wysocki.
----------------------------------------------------------------
Caesar Wang (3):
dt-bindings: add power-domain header for RK3288 SoCs
dt-bindings: add document of Rockchip power domains
soc: rockchip: power-domain: Add power domain driver
Heiko Stuebner (1):
Merge branch 'v4.4-armsoc/pd-headers' into v4.4-armsoc/drivers
Stephen Boyd (1):
PM / clk: Do not __clk_get passed in clock-references
.../bindings/soc/rockchip/power_domain.txt | 46 ++
drivers/base/power/clock_ops.c | 6 +-
drivers/soc/Kconfig | 1 +
drivers/soc/Makefile | 1 +
drivers/soc/rockchip/Kconfig | 14 +
drivers/soc/rockchip/Makefile | 4 +
drivers/soc/rockchip/pm_domains.c | 490 +++++++++++++++++++++
include/dt-bindings/power/rk3288-power.h | 31 ++
8 files changed, 591 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/rockchip/power_domain.txt
create mode 100644 drivers/soc/rockchip/Kconfig
create mode 100644 drivers/soc/rockchip/Makefile
create mode 100644 drivers/soc/rockchip/pm_domains.c
create mode 100644 include/dt-bindings/power/rk3288-power.h
WARNING: multiple messages have this Message-ID (diff)
From: heiko@sntech.de (Heiko Stuebner)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 1/2] Rockchip drivers for 4.4
Date: Fri, 09 Oct 2015 02:34:44 +0200 [thread overview]
Message-ID: <160496219.B4xWx83NpX@phil> (raw)
Hi Arnd, Kevin, Olof,
this is the core powerdomain support for the rk3288 (others to follow later).
After 18 rounds it looks now ready for inclusion.
The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git tags/v4.4-rockchip-drivers1
for you to fetch changes up to 7c696693a4f54d12714738b45aee3e4302884ade:
soc: rockchip: power-domain: Add power domain driver (2015-10-06 09:53:28 +0200)
----------------------------------------------------------------
Add the power-domain base-driver which currently contains
support for the rk3288 powerdomain layout but can be easily
extended for the socs (including arm64) later on.
A big thanks to Ceasar Wang for pulling through on this
during 18 revisions.
Also included is a fix to the pm-clock handling in the generic
powerdomains to adapt it to the per-user clock handling we now
do, Acked by Rafael Wysocki.
----------------------------------------------------------------
Caesar Wang (3):
dt-bindings: add power-domain header for RK3288 SoCs
dt-bindings: add document of Rockchip power domains
soc: rockchip: power-domain: Add power domain driver
Heiko Stuebner (1):
Merge branch 'v4.4-armsoc/pd-headers' into v4.4-armsoc/drivers
Stephen Boyd (1):
PM / clk: Do not __clk_get passed in clock-references
.../bindings/soc/rockchip/power_domain.txt | 46 ++
drivers/base/power/clock_ops.c | 6 +-
drivers/soc/Kconfig | 1 +
drivers/soc/Makefile | 1 +
drivers/soc/rockchip/Kconfig | 14 +
drivers/soc/rockchip/Makefile | 4 +
drivers/soc/rockchip/pm_domains.c | 490 +++++++++++++++++++++
include/dt-bindings/power/rk3288-power.h | 31 ++
8 files changed, 591 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/soc/rockchip/power_domain.txt
create mode 100644 drivers/soc/rockchip/Kconfig
create mode 100644 drivers/soc/rockchip/Makefile
create mode 100644 drivers/soc/rockchip/pm_domains.c
create mode 100644 include/dt-bindings/power/rk3288-power.h
next reply other threads:[~2015-10-09 0:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-09 0:34 Heiko Stuebner [this message]
2015-10-09 0:34 ` [GIT PULL 1/2] Rockchip drivers for 4.4 Heiko Stuebner
2015-10-09 0:52 ` [GIT PULL 2/2] Rockchip dts32 changes " Heiko Stuebner
2015-10-09 0:52 ` Heiko Stuebner
2015-10-09 15:12 ` Arnd Bergmann
2015-10-09 15:12 ` Arnd Bergmann
2015-10-09 15:09 ` [GIT PULL 1/2] Rockchip drivers " Arnd Bergmann
2015-10-09 15:09 ` Arnd Bergmann
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=160496219.B4xWx83NpX@phil \
--to=heiko-4mtyjxux2i+zqb+pc5nmwq@public.gmane.org \
--cc=arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=wxt-TNX95d0MmH7DzftRWevZcw@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.