From: Shawn Guo <shawnguo@kernel.org>
To: Stephen Boyd <sboyd@kernel.org>
Cc: Fabio Estevam <festevam@gmail.com>,
Stefan Agner <stefan@agner.ch>,
kernel@pengutronix.de, linux-imx@nxp.com,
linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] i.MX clock update for 5.11
Date: Tue, 1 Dec 2020 17:39:22 +0800 [thread overview]
Message-ID: <20201201093921.GX4072@dragon> (raw)
The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:
Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/clk-imx-5.11
for you to fetch changes up to 43d2479687c93ed9b93774ef9b46b37de5b3efcc:
clk: imx: scu: remove the calling of device_is_bound (2020-11-30 21:53:03 +0800)
----------------------------------------------------------------
i.MX clock update for 5.11:
- A series from Abel Vesa to improve clk-gate2 driver and make it more
flexible.
- A patch set from Dong Aisheng to add a new two cells binding for SCU
clocks, so that IMX SCU based platforms like MX8QM and MX8QXP can be
supported with SS (Subsystems).
- Drop of_match_ptr from of_device_id table for i.MX8 clock drivers, as
they can only be probed from device tree.
- Other small cosmetic changes.
----------------------------------------------------------------
Abel Vesa (5):
clk: imx: gate2: Remove the IMX_CLK_GATE2_SINGLE_BIT special case
clk: imx: gate2: Keep the register writing in on place
clk: imx: gate2: Check if clock is enabled against cgr_val
clk: imx: gate2: Add cgr_mask for more flexible number of control bits
clk: imx: gate2: Add locking in is_enabled op
Colin Ian King (1):
clk: imx: remove redundant assignment to pointer np
Dong Aisheng (11):
clk: imx: scu: add two cells binding support
clk: imx: scu: bypass cpu power domains
clk: imx: scu: allow scu clk to take device pointer
clk: imx: scu: add runtime pm support
clk: imx: scu: add suspend/resume support
clk: imx: imx8qxp-lpcg: add parsing clocks from device tree
clk: imx: lpcg: allow lpcg clk to take device pointer
clk: imx: clk-imx8qxp-lpcg: add runtime pm support
clk: imx: lpcg: add suspend/resume support
clk: imx: scu: fix build break when compiled as modules
clk: imx: scu: remove the calling of device_is_bound
Krzysztof Kozlowski (4):
clk: imx8mm: drop of_match_ptr from of_device_id table
clk: imx8mn: drop of_match_ptr from of_device_id table
clk: imx8mp: drop of_match_ptr from of_device_id table
clk: imx8mq: drop of_match_ptr from of_device_id table
Tom Rix (1):
clk: imx: remove unneeded semicolon
Zou Wei (2):
clk: imx: gate2: Remove unused variable ret
clk: imx: scu: Make pd_np with static keyword
drivers/clk/imx/clk-gate2.c | 68 ++++++-----
drivers/clk/imx/clk-imx8mm.c | 2 +-
drivers/clk/imx/clk-imx8mn.c | 2 +-
drivers/clk/imx/clk-imx8mp.c | 4 +-
drivers/clk/imx/clk-imx8mq.c | 2 +-
drivers/clk/imx/clk-imx8qxp-lpcg.c | 139 +++++++++++++++++++++++
drivers/clk/imx/clk-imx8qxp.c | 136 ++++++++++++----------
drivers/clk/imx/clk-lpcg-scu.c | 53 ++++++++-
drivers/clk/imx/clk-pll14xx.c | 2 +-
drivers/clk/imx/clk-scu.c | 227 ++++++++++++++++++++++++++++++++++++-
drivers/clk/imx/clk-scu.h | 56 +++++++--
drivers/clk/imx/clk.h | 27 ++---
12 files changed, 582 insertions(+), 136 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Shawn Guo <shawnguo@kernel.org>
To: Stephen Boyd <sboyd@kernel.org>
Cc: Stefan Agner <stefan@agner.ch>,
linux-imx@nxp.com, kernel@pengutronix.de,
Fabio Estevam <festevam@gmail.com>,
linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] i.MX clock update for 5.11
Date: Tue, 1 Dec 2020 17:39:22 +0800 [thread overview]
Message-ID: <20201201093921.GX4072@dragon> (raw)
The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:
Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/clk-imx-5.11
for you to fetch changes up to 43d2479687c93ed9b93774ef9b46b37de5b3efcc:
clk: imx: scu: remove the calling of device_is_bound (2020-11-30 21:53:03 +0800)
----------------------------------------------------------------
i.MX clock update for 5.11:
- A series from Abel Vesa to improve clk-gate2 driver and make it more
flexible.
- A patch set from Dong Aisheng to add a new two cells binding for SCU
clocks, so that IMX SCU based platforms like MX8QM and MX8QXP can be
supported with SS (Subsystems).
- Drop of_match_ptr from of_device_id table for i.MX8 clock drivers, as
they can only be probed from device tree.
- Other small cosmetic changes.
----------------------------------------------------------------
Abel Vesa (5):
clk: imx: gate2: Remove the IMX_CLK_GATE2_SINGLE_BIT special case
clk: imx: gate2: Keep the register writing in on place
clk: imx: gate2: Check if clock is enabled against cgr_val
clk: imx: gate2: Add cgr_mask for more flexible number of control bits
clk: imx: gate2: Add locking in is_enabled op
Colin Ian King (1):
clk: imx: remove redundant assignment to pointer np
Dong Aisheng (11):
clk: imx: scu: add two cells binding support
clk: imx: scu: bypass cpu power domains
clk: imx: scu: allow scu clk to take device pointer
clk: imx: scu: add runtime pm support
clk: imx: scu: add suspend/resume support
clk: imx: imx8qxp-lpcg: add parsing clocks from device tree
clk: imx: lpcg: allow lpcg clk to take device pointer
clk: imx: clk-imx8qxp-lpcg: add runtime pm support
clk: imx: lpcg: add suspend/resume support
clk: imx: scu: fix build break when compiled as modules
clk: imx: scu: remove the calling of device_is_bound
Krzysztof Kozlowski (4):
clk: imx8mm: drop of_match_ptr from of_device_id table
clk: imx8mn: drop of_match_ptr from of_device_id table
clk: imx8mp: drop of_match_ptr from of_device_id table
clk: imx8mq: drop of_match_ptr from of_device_id table
Tom Rix (1):
clk: imx: remove unneeded semicolon
Zou Wei (2):
clk: imx: gate2: Remove unused variable ret
clk: imx: scu: Make pd_np with static keyword
drivers/clk/imx/clk-gate2.c | 68 ++++++-----
drivers/clk/imx/clk-imx8mm.c | 2 +-
drivers/clk/imx/clk-imx8mn.c | 2 +-
drivers/clk/imx/clk-imx8mp.c | 4 +-
drivers/clk/imx/clk-imx8mq.c | 2 +-
drivers/clk/imx/clk-imx8qxp-lpcg.c | 139 +++++++++++++++++++++++
drivers/clk/imx/clk-imx8qxp.c | 136 ++++++++++++----------
drivers/clk/imx/clk-lpcg-scu.c | 53 ++++++++-
drivers/clk/imx/clk-pll14xx.c | 2 +-
drivers/clk/imx/clk-scu.c | 227 ++++++++++++++++++++++++++++++++++++-
drivers/clk/imx/clk-scu.h | 56 +++++++--
drivers/clk/imx/clk.h | 27 ++---
12 files changed, 582 insertions(+), 136 deletions(-)
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next reply other threads:[~2020-12-01 9:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-01 9:39 Shawn Guo [this message]
2020-12-01 9:39 ` [GIT PULL] i.MX clock update for 5.11 Shawn Guo
2020-12-10 20:58 ` Stephen Boyd
2020-12-10 20:58 ` Stephen Boyd
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=20201201093921.GX4072@dragon \
--to=shawnguo@kernel.org \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-imx@nxp.com \
--cc=sboyd@kernel.org \
--cc=stefan@agner.ch \
/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.