From: Nishanth Menon <nm-l0cyMroinI0@public.gmane.org>
To: Kevin Hilman <khilman-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Benoit Cousson <bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>,
Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>,
Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org>
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Nishanth Menon <nm-l0cyMroinI0@public.gmane.org>
Subject: [PATCH V6 00/15] ARM: OMAP3+: support cpufreq-cpu0 for device tree boot
Date: Wed, 9 Oct 2013 16:28:49 -0500 [thread overview]
Message-ID: <1381354144-7134-1-git-send-email-nm@ti.com> (raw)
Hi,
The series is based on Tero's V8 of patches[1] - enables the use of
cpufreq-cpu0 generic driver for all OMAP and related derivatives.
I will stop copy pasting the series complete history and point at [2].
Main changes since V5:
- no more clock driver as part of this series[3] - instead depend on clock
conversion[1].
- added DRA7/OMAP5
Notes:
- i have organized the series such that
* patches 1-6 could go to Tony/Kevin/Paul trees
* Dts series is further split up given continued uncertaininty of v8 clock dts
nodes into two sets
- patches 7-10 are based on Benoit's for_13/dts branch and can apply
there independently.
- patches 11-15 are dependent on 7-10 patches + clock nodes being
available.
- Given the uncertainity with clock nodes, I recommend we get rid of the
dependencies (1-10) and decide on clock nodes once the story is clearer.
- if we feel I should squash up clock nodes 9+14, 10+15, I can do that
as well.
Series is built on top of V3.12-rc4 + the following maintainer tree merges
git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt for_3.13/dts
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tag 'fixes-against-v3.12-rc3-take2' and omap-for-v3.13/soc branch
Available here: https://github.com/nmenon/linux-2.6-playground/commits/push/cpufreq-cpu0-omap-all-v6
Test Script: http://pastebin.pandaboard.org/index.php/view/64137893
Test-log:
BeagleBoard-XM (OMAP36xx): http://pastebin.pandaboard.org/index.php/view/64740438
PandaBoard-ES (OMAP4460): http://pastebin.pandaboard.org/index.php/view/13763478
BeagleBone-Black(AM335x): http://pastebin.pandaboard.org/index.php/view/46018613
OMAP5uEVM (OMAP5432): http://pastebin.pandaboard.org/index.php/view/54353148
DRA7-EVM (DRA7xx): http://pastebin.pandaboard.org/index.php/view/70955776
J Keerthy (5):
ARM: dts: dra7-evm: add smps123 supply for CPU
ARM: dts: OMAP5: Add CPU OPP table
ARM: dts: DRA7: Add CPU OPP table
ARM: dts: OMAP5: add clock nodes for CPU
ARM: dts: DRA7: add clock nodes for CPU
Nishanth Menon (10):
ARM: OMAP3+: do not register non-dt OPP tables for device tree boot
ARM: OMAP2+: AM33XX: add lateinit hook for calling pm late init
ARM: OMAP2+: AM43XX: add lateinit hook for calling pm late init
ARM: OMAP2+: OMAP5: add lateinit hook for calling pm late init
ARM: OMAP2+: DRA7: add lateinit hook for calling pm late init
ARM: OMAP3+: use cpu0-cpufreq driver in device tree supported boot
ARM: dts: omap5-uevm: add smps123 supply for CPU
ARM: dts: OMAP3: add clock nodes for CPU
ARM: dts: OMAP4: add clock nodes for CPU
ARM: dts: AM33XX: add clock nodes for CPU
arch/arm/boot/dts/am33xx.dtsi | 4 ++++
arch/arm/boot/dts/dra7-evm.dts | 4 ++++
arch/arm/boot/dts/dra7.dtsi | 13 ++++++++++++-
arch/arm/boot/dts/omap3.dtsi | 5 +++++
arch/arm/boot/dts/omap4.dtsi | 5 +++++
arch/arm/boot/dts/omap5-uevm.dts | 4 ++++
arch/arm/boot/dts/omap5.dtsi | 15 ++++++++++++++-
arch/arm/mach-omap2/board-generic.c | 4 ++++
arch/arm/mach-omap2/common.h | 4 ++++
arch/arm/mach-omap2/io.c | 24 ++++++++++++++++++++++++
arch/arm/mach-omap2/opp.c | 4 ++++
arch/arm/mach-omap2/pm.c | 12 +++++++++---
12 files changed, 93 insertions(+), 5 deletions(-)
[1] http://marc.info/?t=138133284200006&r=1&w=2
[2] http://marc.info/?l=linux-arm-kernel&m=136804009618594&w=2
[3] http://marc.info/?t=136804008400001&r=1&w=2
Regards,
Nishanth Menon
--
1.7.9.5
--
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:[~2013-10-09 21:28 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-09 21:28 Nishanth Menon [this message]
2013-10-09 21:28 ` [PATCH V6 01/15] ARM: OMAP3+: do not register non-dt OPP tables for device tree boot Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 02/15] ARM: OMAP2+: AM33XX: add lateinit hook for calling pm late init Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 03/15] ARM: OMAP2+: AM43XX: " Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 04/15] ARM: OMAP2+: OMAP5: " Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 05/15] ARM: OMAP2+: DRA7: " Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 06/15] ARM: OMAP3+: use cpu0-cpufreq driver in device tree supported boot Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 07/15] ARM: dts: omap5-uevm: add smps123 supply for CPU Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 08/15] ARM: dts: dra7-evm: " Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 09/15] ARM: dts: OMAP5: Add CPU OPP table Nishanth Menon
2013-10-09 23:24 ` [PATCH V6 10/15] ARM: dts: DRA7: " Nishanth Menon
2013-10-10 5:32 ` [PATCH V6 02/15] ARM: OMAP2+: AM33XX: add lateinit hook for calling pm late init Joel Fernandes
2013-10-10 13:32 ` Nishanth Menon
2013-10-10 15:20 ` Joel Fernandes
2013-10-10 15:23 ` Joel Fernandes
2013-10-10 15:45 ` Nishanth Menon
2013-10-10 15:53 ` Joel Fernandes
2013-10-11 16:11 ` Tony Lindgren
2013-10-10 13:33 ` Vaibhav Bedia
2013-10-09 23:30 ` Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 03/15] ARM: OMAP2+: AM43XX: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 04/15] ARM: OMAP2+: OMAP5: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 05/15] ARM: OMAP2+: DRA7: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 06/15] ARM: OMAP3+: use cpu0-cpufreq driver in device tree supported boot Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 07/15] ARM: dts: omap5-uevm: add smps123 supply for CPU Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 08/15] ARM: dts: dra7-evm: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 09/15] ARM: dts: OMAP5: Add CPU OPP table Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 11/15] ARM: dts: OMAP3: add clock nodes for CPU Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 12/15] ARM: dts: OMAP4: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 13/15] ARM: dts: AM33XX: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 14/15] ARM: dts: OMAP5: " Nishanth Menon
2013-10-09 23:30 ` [PATCH V6 15/15] ARM: dts: DRA7: " Nishanth Menon
2013-10-09 23:31 ` [PATCH V6 00/15] ARM: OMAP3+: support cpufreq-cpu0 for device tree boot Nishanth Menon
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=1381354144-7134-1-git-send-email-nm@ti.com \
--to=nm-l0cymroini0@public.gmane.org \
--cc=bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=khilman-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=t-kristo-l0cyMroinI0@public.gmane.org \
--cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@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).