From: Tony Lindgren <tony@atomide.com>
To: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org
Subject: [PATCH 00/11] Make omap24xx booting device tree based for v3.14 merge window
Date: Thu, 14 Nov 2013 16:09:47 -0800 [thread overview]
Message-ID: <1384474198-20756-1-git-send-email-tony@atomide.com> (raw)
Hi all,
Here are some early patches for the v3.14 merge window to make
omap2 booting device tree based before we make omap3 device
tree only. Otherwise we cannot remove the shared platform data
between omap2 and 3 for things like some hwmod entries.
I've added minimal support for 2430sdp to boot it to serial
console with ethernet working, and kept n8x0 support using
the legacy init for the drivers. Then the old H4 I have not
updated as I'm not using it.
Hopefully if there are still people using n8x0 they can
pick up the work from here on removing the rest of the legacy
platform data init as we're planning to drop those things
completely over next few merge cycles.
Note that these patches are against mainline commit 10d0c9705
as there are few device tree related fixes to stuff the resources.
These also depend on the recently posted fixes series
"[PATCH 0/8] Various omap device tree usability fixes for v3.13
merge window"
Cheers,
Tony
Tony Lindgren (11):
ARM: dts: Add basic device tree support for omap2430 sdp
ARM: dts: Add basic Nokia N8X0 support
ARM: OMAP2+: Add support for board specific auxdata quirks
ARM: OMAP2+: Add device tree compatible revision checks for n8x0
ARM: OMAP2+: Make n8x0 behave better with device tree based booting
ARM: OMAP2+: Add quirks support for n8x0
ARM: OMAP2+: Remove legacy booting support for n8x0
ARM: OMAP2+: Remove board file for H4
ARM: OMAP2+: Remove legacy board file for 2430sdp
ARM: OMAP2+: Remove legacy mux code for omap2
ARM: OMAP2+: Remove legacy hwmod entries for omap2
arch/arm/boot/dts/Makefile | 4 +
arch/arm/boot/dts/omap2420-n800.dts | 8 +
arch/arm/boot/dts/omap2420-n810-wimax.dts | 8 +
arch/arm/boot/dts/omap2420-n810.dts | 8 +
arch/arm/boot/dts/omap2420-n8x0-common.dtsi | 34 +
arch/arm/boot/dts/omap2430-sdp.dts | 49 ++
arch/arm/mach-omap2/Kconfig | 13 -
arch/arm/mach-omap2/Makefile | 4 -
arch/arm/mach-omap2/board-2430sdp.c | 273 -------
arch/arm/mach-omap2/board-h4.c | 365 ----------
arch/arm/mach-omap2/board-n8x0.c | 190 ++---
arch/arm/mach-omap2/common-board-devices.h | 1 +
arch/arm/mach-omap2/msdi.c | 69 --
arch/arm/mach-omap2/mux.h | 2 -
arch/arm/mach-omap2/mux2420.c | 690 ------------------
arch/arm/mach-omap2/mux2420.h | 282 --------
arch/arm/mach-omap2/mux2430.c | 793 ---------------------
arch/arm/mach-omap2/mux2430.h | 370 ----------
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 137 ----
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 266 -------
.../mach-omap2/omap_hwmod_2xxx_interconnect_data.c | 155 ----
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 68 --
arch/arm/mach-omap2/omap_hwmod_common_data.h | 5 -
arch/arm/mach-omap2/pdata-quirks.c | 46 +-
24 files changed, 200 insertions(+), 3640 deletions(-)
create mode 100644 arch/arm/boot/dts/omap2420-n800.dts
create mode 100644 arch/arm/boot/dts/omap2420-n810-wimax.dts
create mode 100644 arch/arm/boot/dts/omap2420-n810.dts
create mode 100644 arch/arm/boot/dts/omap2420-n8x0-common.dtsi
create mode 100644 arch/arm/boot/dts/omap2430-sdp.dts
delete mode 100644 arch/arm/mach-omap2/board-2430sdp.c
delete mode 100644 arch/arm/mach-omap2/board-h4.c
delete mode 100644 arch/arm/mach-omap2/mux2420.c
delete mode 100644 arch/arm/mach-omap2/mux2420.h
delete mode 100644 arch/arm/mach-omap2/mux2430.c
delete mode 100644 arch/arm/mach-omap2/mux2430.h
--
1.8.1.1
next reply other threads:[~2013-11-15 0:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-15 0:09 Tony Lindgren [this message]
2013-11-15 0:09 ` [PATCH 01/11] ARM: dts: Add basic device tree support for omap2430 sdp Tony Lindgren
2013-11-15 0:09 ` [PATCH 02/11] ARM: dts: Add basic Nokia N8X0 support Tony Lindgren
2013-11-15 0:09 ` [PATCH 03/11] ARM: OMAP2+: Add support for board specific auxdata quirks Tony Lindgren
2013-11-15 0:09 ` [PATCH 04/11] ARM: OMAP2+: Add device tree compatible revision checks for n8x0 Tony Lindgren
2013-11-15 0:09 ` [PATCH 05/11] ARM: OMAP2+: Make n8x0 behave better with device tree based booting Tony Lindgren
2013-11-15 0:09 ` [PATCH 06/11] ARM: OMAP2+: Add quirks support for n8x0 Tony Lindgren
2013-11-15 0:09 ` [PATCH 07/11] ARM: OMAP2+: Remove legacy booting " Tony Lindgren
2013-11-15 0:09 ` [PATCH 08/11] ARM: OMAP2+: Remove board file for H4 Tony Lindgren
2013-11-15 0:09 ` [PATCH 09/11] ARM: OMAP2+: Remove legacy board file for 2430sdp Tony Lindgren
2013-11-15 0:09 ` [PATCH 10/11] ARM: OMAP2+: Remove legacy mux code for omap2 Tony Lindgren
2013-11-15 0:09 ` [PATCH 11/11] ARM: OMAP2+: Remove legacy hwmod entries " Tony Lindgren
2013-11-15 18:47 ` [PATCH 00/11] Make omap24xx booting device tree based for v3.14 merge window Aaro Koskinen
2013-11-15 19:02 ` Tony Lindgren
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=1384474198-20756-1-git-send-email-tony@atomide.com \
--to=tony@atomide.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.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).