* [GIT PULL 1/3] omap dts changes for v4.3, part2
@ 2015-07-22 9:41 Tony Lindgren
2015-07-22 9:41 ` [GIT PULL 2/3] drop few more legacy boards for v4.3 Tony Lindgren
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Tony Lindgren @ 2015-07-22 9:41 UTC (permalink / raw)
To: linux-arm-kernel
The following changes since commit 80edaaead3687b47ba3760588306937439ebd7bd:
ARM: dts: am335x-evm: Switch using simple-audio-card for audio support (2015-07-14 04:28:25 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.3/dt-pt2
for you to fetch changes up to f9d50fef4b6447527c2be1ad07499221c2511391:
ARM: OMAP2+: omap3-pandora: add wifi support (2015-07-21 04:07:42 -0700)
----------------------------------------------------------------
More omap dts changes for v4.3 merge window:
- Add missing devices for pandora. Note that we're adding wl1251
WLAN and LCD backlight support for now using legacy pdata as that
allows us to drop the legacy board file for pandora in another
series of patches
- Enable power button support for omap5-uevm
- Add aliases for am437x UARTs
- Add support for phyCORE phyBOARD-WEGA-AM335x rdk and
phyCORE-AM335x SoM
- Use u16 values for tsc2046 on omap3-lilly
----------------------------------------------------------------
Aparna Balasubramanian (1):
ARM: dts: omap5-uevm: Add Palmas power button support
Fugang Duan (1):
ARM: dts: omap3: correct the format of u16 values for tsc2046 node
Grazvydas Ignotas (4):
ARM: dts: omap3-pandora: miscellaneous corrections
ARM: dts: omap3-pandora: add support for usb host and 32k buffer
ARM: OMAP2+: omap3-pandora: add backlight support
ARM: OMAP2+: omap3-pandora: add wifi support
Sekhar Nori (1):
ARM: dts: am437x: add aliases for all UART instances
Teresa Remmet (2):
ARM: dts: Add support for phyCORE-AM335x SoM
ARM: dts: Add phyBOARD-WEGA-AM335x rdk
.../devicetree/bindings/arm/omap/omap.txt | 3 +
arch/arm/boot/dts/Makefile | 3 +-
arch/arm/boot/dts/am335x-phycore-som.dtsi | 368 +++++++++++++++++++++
arch/arm/boot/dts/am335x-wega-rdk.dts | 22 ++
arch/arm/boot/dts/am335x-wega.dtsi | 151 +++++++++
arch/arm/boot/dts/am4372.dtsi | 5 +
arch/arm/boot/dts/am437x-gp-evm.dts | 1 -
arch/arm/boot/dts/omap3-lilly-a83x.dtsi | 12 +-
arch/arm/boot/dts/omap3-pandora-1ghz.dts | 2 +-
arch/arm/boot/dts/omap3-pandora-600mhz.dts | 2 +-
arch/arm/boot/dts/omap3-pandora-common.dtsi | 54 ++-
arch/arm/boot/dts/omap5-uevm.dts | 7 +
arch/arm/mach-omap2/pdata-quirks.c | 113 +++++++
13 files changed, 729 insertions(+), 14 deletions(-)
create mode 100644 arch/arm/boot/dts/am335x-phycore-som.dtsi
create mode 100644 arch/arm/boot/dts/am335x-wega-rdk.dts
create mode 100644 arch/arm/boot/dts/am335x-wega.dtsi
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 2/3] drop few more legacy boards for v4.3
2015-07-22 9:41 [GIT PULL 1/3] omap dts changes for v4.3, part2 Tony Lindgren
@ 2015-07-22 9:41 ` Tony Lindgren
2015-07-22 9:41 ` [GIT PULL 3/3] defconfig changes " Tony Lindgren
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2015-07-22 9:41 UTC (permalink / raw)
To: linux-arm-kernel
The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.3/legacy-v2-signed
for you to fetch changes up to 7fcf7e061edd368fac7fe4841a7f9e54c83b3ec8:
ARM: OMAP2+: Remove legacy booting support for Pandora (2015-07-16 04:12:32 -0700)
----------------------------------------------------------------
Drop more omap3 legacy board-*.c files for v4.3. This time we're
dropping the board files for omap3logic and omap3pandora.
The reason for dropping these now rather than later is that now
we can simply revert the patches in case of unexpected issues as
we are not dropping any platform data at this point.
This leaves us with only the following board-*.c files:
BOARD REASON NEEDED
board-ldp.c Still used in RMKs boot test system
board-rx51-*.c Needs /proc/atags support for user space
Once we have the n900 legacy user space issues sorted out for
/proc/atags and system_rev, we can drop the remaining two
board-*.c files. And then one merge window after that we can
drop the legacy booting support assuming no unexpected issues
are found.
----------------------------------------------------------------
Tony Lindgren (2):
ARM: OMAP2+: Remove legacy booting support for LogicPD Torpedo
ARM: OMAP2+: Remove legacy booting support for Pandora
arch/arm/mach-omap2/Kconfig | 20 -
arch/arm/mach-omap2/Makefile | 3 -
arch/arm/mach-omap2/board-omap3logic.c | 249 ------------
arch/arm/mach-omap2/board-omap3pandora.c | 633 -------------------------------
4 files changed, 905 deletions(-)
delete mode 100644 arch/arm/mach-omap2/board-omap3logic.c
delete mode 100644 arch/arm/mach-omap2/board-omap3pandora.c
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 3/3] defconfig changes for v4.3
2015-07-22 9:41 [GIT PULL 1/3] omap dts changes for v4.3, part2 Tony Lindgren
2015-07-22 9:41 ` [GIT PULL 2/3] drop few more legacy boards for v4.3 Tony Lindgren
@ 2015-07-22 9:41 ` Tony Lindgren
[not found] ` <55af65a1.a95c460a.3a00.6dfcSMTPIN_ADDED_BROKEN@mx.google.com>
[not found] ` <55af65af.c65f460a.1c26.7cc3SMTPIN_ADDED_BROKEN@mx.google.com>
3 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2015-07-22 9:41 UTC (permalink / raw)
To: linux-arm-kernel
The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap omap-for-v4.3/defconfig
for you to fetch changes up to da104dc845afbebcad6d87bd5810c266a426f4dc:
ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR (2015-07-16 00:54:53 -0700)
----------------------------------------------------------------
Sekhar Nori (4):
ARM: omap2plus_defconfig: enable support for TI ADC
ARM: omap2plus_defconfig: enable support for TI touchscreen
ARM: omap2plus_defconfig: enable support for TI CPTS
ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR
arch/arm/configs/omap2plus_defconfig | 7 +++++++
1 file changed, 7 insertions(+)
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 1/3] omap dts changes for v4.3, part2
[not found] <55af6598.225c460a.382ab.1e97SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2015-07-22 23:25 ` Olof Johansson
0 siblings, 0 replies; 7+ messages in thread
From: Olof Johansson @ 2015-07-22 23:25 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jul 22, 2015 at 02:41:16AM -0700, Tony Lindgren wrote:
> The following changes since commit 80edaaead3687b47ba3760588306937439ebd7bd:
>
> ARM: dts: am335x-evm: Switch using simple-audio-card for audio support (2015-07-14 04:28:25 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.3/dt-pt2
>
> for you to fetch changes up to f9d50fef4b6447527c2be1ad07499221c2511391:
>
> ARM: OMAP2+: omap3-pandora: add wifi support (2015-07-21 04:07:42 -0700)
>
> ----------------------------------------------------------------
> More omap dts changes for v4.3 merge window:
>
> - Add missing devices for pandora. Note that we're adding wl1251
> WLAN and LCD backlight support for now using legacy pdata as that
> allows us to drop the legacy board file for pandora in another
> series of patches
>
> - Enable power button support for omap5-uevm
>
> - Add aliases for am437x UARTs
>
> - Add support for phyCORE phyBOARD-WEGA-AM335x rdk and
> phyCORE-AM335x SoM
>
> - Use u16 values for tsc2046 on omap3-lilly
Merged, thanks!
-Olof
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 2/3] drop few more legacy boards for v4.3
[not found] ` <55af65a1.a95c460a.3a00.6dfcSMTPIN_ADDED_BROKEN@mx.google.com>
@ 2015-07-22 23:26 ` Olof Johansson
0 siblings, 0 replies; 7+ messages in thread
From: Olof Johansson @ 2015-07-22 23:26 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jul 22, 2015 at 02:41:17AM -0700, Tony Lindgren wrote:
> The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
>
> Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.3/legacy-v2-signed
>
> for you to fetch changes up to 7fcf7e061edd368fac7fe4841a7f9e54c83b3ec8:
>
> ARM: OMAP2+: Remove legacy booting support for Pandora (2015-07-16 04:12:32 -0700)
>
> ----------------------------------------------------------------
> Drop more omap3 legacy board-*.c files for v4.3. This time we're
> dropping the board files for omap3logic and omap3pandora.
>
> The reason for dropping these now rather than later is that now
> we can simply revert the patches in case of unexpected issues as
> we are not dropping any platform data at this point.
>
> This leaves us with only the following board-*.c files:
>
> BOARD REASON NEEDED
> board-ldp.c Still used in RMKs boot test system
> board-rx51-*.c Needs /proc/atags support for user space
>
> Once we have the n900 legacy user space issues sorted out for
> /proc/atags and system_rev, we can drop the remaining two
> board-*.c files. And then one merge window after that we can
> drop the legacy booting support assuming no unexpected issues
> are found.
Very cool! Merged this into next/cleanup now.
-Olof
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 3/3] defconfig changes for v4.3g
[not found] ` <55af65af.c65f460a.1c26.7cc3SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2015-07-22 23:30 ` Olof Johansson
2015-07-23 6:27 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Olof Johansson @ 2015-07-22 23:30 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jul 22, 2015 at 02:41:18AM -0700, Tony Lindgren wrote:
> The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
>
> Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap omap-for-v4.3/defconfig
>
> for you to fetch changes up to da104dc845afbebcad6d87bd5810c266a426f4dc:
>
> ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR (2015-07-16 00:54:53 -0700)
>
> ----------------------------------------------------------------
> Sekhar Nori (4):
> ARM: omap2plus_defconfig: enable support for TI ADC
> ARM: omap2plus_defconfig: enable support for TI touchscreen
> ARM: omap2plus_defconfig: enable support for TI CPTS
> ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR
I think you meant to send this pull request for
tags/omap-for-v4.3/defconfig-signed instead, so that's what I merged.
Thanks,
-Olof
^ permalink raw reply [flat|nested] 7+ messages in thread
* [GIT PULL 3/3] defconfig changes for v4.3g
2015-07-22 23:30 ` [GIT PULL 3/3] defconfig changes for v4.3g Olof Johansson
@ 2015-07-23 6:27 ` Tony Lindgren
0 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2015-07-23 6:27 UTC (permalink / raw)
To: linux-arm-kernel
* Olof Johansson <olof@lixom.net> [150722 16:45]:
> On Wed, Jul 22, 2015 at 02:41:18AM -0700, Tony Lindgren wrote:
> > The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
> >
> > Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
> >
> > are available in the git repository at:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap omap-for-v4.3/defconfig
> >
> > for you to fetch changes up to da104dc845afbebcad6d87bd5810c266a426f4dc:
> >
> > ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR (2015-07-16 00:54:53 -0700)
> >
> > ----------------------------------------------------------------
> > Sekhar Nori (4):
> > ARM: omap2plus_defconfig: enable support for TI ADC
> > ARM: omap2plus_defconfig: enable support for TI touchscreen
> > ARM: omap2plus_defconfig: enable support for TI CPTS
> > ARM: omap2plus_defconfig: enable support for M25P80 SPI NOR
>
> I think you meant to send this pull request for
> tags/omap-for-v4.3/defconfig-signed instead, so that's what I merged.
Oops indeed thanks.
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-07-23 6:27 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-22 9:41 [GIT PULL 1/3] omap dts changes for v4.3, part2 Tony Lindgren
2015-07-22 9:41 ` [GIT PULL 2/3] drop few more legacy boards for v4.3 Tony Lindgren
2015-07-22 9:41 ` [GIT PULL 3/3] defconfig changes " Tony Lindgren
[not found] ` <55af65a1.a95c460a.3a00.6dfcSMTPIN_ADDED_BROKEN@mx.google.com>
2015-07-22 23:26 ` [GIT PULL 2/3] drop few more legacy boards " Olof Johansson
[not found] ` <55af65af.c65f460a.1c26.7cc3SMTPIN_ADDED_BROKEN@mx.google.com>
2015-07-22 23:30 ` [GIT PULL 3/3] defconfig changes for v4.3g Olof Johansson
2015-07-23 6:27 ` Tony Lindgren
[not found] <55af6598.225c460a.382ab.1e97SMTPIN_ADDED_BROKEN@mx.google.com>
2015-07-22 23:25 ` [GIT PULL 1/3] omap dts changes for v4.3, part2 Olof Johansson
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).