From: Scott Wood <scottwood@freescale.com>
To: Mike Turquette <mturquette@linaro.org>,
Tang Yuantian <Yuantian.Tang@freescale.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>,
Liberman Igal-B31950 <Igal.Liberman@freescale.com>,
Bucur Madalin-Cristian-B32716 <madalin.bucur@freescale.com>,
linux-clk@vger.kernel.org, linux-pm@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, devicetree@vger.kernel.org,
Scott Wood <scottwood@freescale.com>
Subject: [PATCH v2 0/5] clk: qoriq: Move chip-specific knowledge into driver
Date: Sat, 15 Aug 2015 01:41:17 -0500 [thread overview]
Message-ID: <1439620882-20449-1-git-send-email-scottwood@freescale.com> (raw)
The existing device tree bindings are error-prone and inflexible.
Correct the mistake by moving the knowledge into the driver, which
has more flexibility in describing the quirks of each chip. This leaves
the device tree to its proper role of identifying a programming interface
rather than describing its individual registers.
For more detail, see the commit message of patch 3.
Scott Wood (5):
cpufreq: qoriq: Don't look at clock implementation details
powerpc/fsl: Move fsl_guts.h out of arch/powerpc
clk: qoriq: Move chip-specific knowledge into driver
cpufreq: qoriq: Remove frequency masking and minimum
powerpc/fsl: Use new clockgen binding
.../devicetree/bindings/clock/qoriq-clock.txt | 61 +-
arch/powerpc/boot/dts/fsl/b4420si-pre.dtsi | 4 +-
arch/powerpc/boot/dts/fsl/b4860si-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/b4si-post.dtsi | 15 -
arch/powerpc/boot/dts/fsl/p2041si-post.dtsi | 18 -
arch/powerpc/boot/dts/fsl/p2041si-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/p3041si-post.dtsi | 18 -
arch/powerpc/boot/dts/fsl/p3041si-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/p4080si-post.dtsi | 70 --
arch/powerpc/boot/dts/fsl/p4080si-pre.dtsi | 16 +-
arch/powerpc/boot/dts/fsl/p5020si-pre.dtsi | 4 +-
arch/powerpc/boot/dts/fsl/p5040si-post.dtsi | 18 -
arch/powerpc/boot/dts/fsl/p5040si-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/qoriq-clockgen1.dtsi | 50 +-
arch/powerpc/boot/dts/fsl/qoriq-clockgen2.dtsi | 33 +-
arch/powerpc/boot/dts/fsl/t1023si-post.dtsi | 16 -
arch/powerpc/boot/dts/fsl/t102xsi-pre.dtsi | 4 +-
arch/powerpc/boot/dts/fsl/t1040si-post.dtsi | 44 -
arch/powerpc/boot/dts/fsl/t104xsi-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/t2081si-post.dtsi | 22 -
arch/powerpc/boot/dts/fsl/t208xsi-pre.dtsi | 8 +-
arch/powerpc/boot/dts/fsl/t4240si-post.dtsi | 61 -
arch/powerpc/boot/dts/fsl/t4240si-pre.dtsi | 24 +-
arch/powerpc/platforms/85xx/mpc85xx_mds.c | 2 +-
arch/powerpc/platforms/85xx/mpc85xx_rdb.c | 2 +-
arch/powerpc/platforms/85xx/p1022_ds.c | 2 +-
arch/powerpc/platforms/85xx/p1022_rdk.c | 2 +-
arch/powerpc/platforms/85xx/smp.c | 2 +-
arch/powerpc/platforms/85xx/twr_p102x.c | 2 +-
arch/powerpc/platforms/86xx/mpc8610_hpcd.c | 2 +-
drivers/clk/clk-qoriq.c | 1260 ++++++++++++++++----
drivers/cpufreq/qoriq-cpufreq.c | 139 +--
drivers/iommu/fsl_pamu.c | 2 +-
.../asm/fsl_guts.h => include/linux/fsl/guts.h | 6 +-
sound/soc/fsl/mpc8610_hpcd.c | 2 +-
sound/soc/fsl/p1022_ds.c | 2 +-
sound/soc/fsl/p1022_rdk.c | 2 +-
37 files changed, 1176 insertions(+), 777 deletions(-)
rename arch/powerpc/include/asm/fsl_guts.h => include/linux/fsl/guts.h (98%)
--
2.1.4
next reply other threads:[~2015-08-15 6:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-15 6:41 Scott Wood [this message]
2015-08-15 6:41 ` [PATCH v2 1/5] cpufreq: qoriq: Don't look at clock implementation details Scott Wood
2015-08-15 6:41 ` [PATCH v2 2/5] powerpc/fsl: Move fsl_guts.h out of arch/powerpc Scott Wood
2015-08-15 6:41 ` [PATCH v2 3/5] clk: qoriq: Move chip-specific knowledge into driver Scott Wood
2015-08-15 6:41 ` [PATCH v2 4/5] cpufreq: qoriq: Remove frequency masking and minimum Scott Wood
2015-08-15 6:41 ` [PATCH v2 5/5] powerpc/fsl: Use new clockgen binding Scott Wood
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=1439620882-20449-1-git-send-email-scottwood@freescale.com \
--to=scottwood@freescale.com \
--cc=Igal.Liberman@freescale.com \
--cc=Yuantian.Tang@freescale.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=madalin.bucur@freescale.com \
--cc=mturquette@linaro.org \
--cc=rjw@rjwysocki.net \
/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).