All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/5] non-urgent omap fixes for v4.10
@ 2016-11-15 21:22 Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
                   ` (11 more replies)
  0 siblings, 12 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/fixes-not-urgent-signed

for you to fetch changes up to 5c02b01d234f8410010c952069d3fb9ec5d9124a:

  ARM: OMAP2+: pm-debug: Use seq_putc() in two functions (2016-11-09 15:33:33 -0700)

----------------------------------------------------------------
Non-urgent fixes for omaps for v4.10 merge window:

- Fix mismatched interrupt numbers for tps65217, these are not yet
  used

- Remove unused omapdss_early_init_of()

- Use seq_putc() for pm-debug.c

----------------------------------------------------------------
Laurent Pinchart (1):
      ARM: OMAP2+: Remove the omapdss_early_init_of() function

Markus Elfring (1):
      ARM: OMAP2+: pm-debug: Use seq_putc() in two functions

Milo Kim (1):
      mfd: tps65217: Fix mismatched interrupt number

 arch/arm/mach-omap2/board-generic.c |  2 --
 arch/arm/mach-omap2/common.h        |  1 -
 arch/arm/mach-omap2/display.c       |  5 -----
 arch/arm/mach-omap2/pm-debug.c      |  5 ++---
 include/linux/mfd/tps65217.h        | 11 +++++------
 5 files changed, 7 insertions(+), 17 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 2/5] omap soc changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` Tony Lindgren
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/soc-signed

for you to fetch changes up to 2bb6375f5c03cc5bf510402b646c1a23046b3f12:

  Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc (2016-11-14 15:58:18 -0800)

----------------------------------------------------------------
SoC changes for omaps for v4.10 merge window:

- Add hwmod interconnect target wrapper module data for crypto
  accelerators for am3xxx, am43xx and dra7

- Add support for dra71x family of SoCs

- PM fixes for omap4/5 needed for omap5 cpuidle

----------------------------------------------------------------
Joel Fernandes (4):
      ARM: DRA7: hwmod: Add data for DES IP
      ARM: DRA7: hwmod: Add data for AES IP
      ARM: DRA7: hwmod: Add data for RNG IP
      ARM: OMAP: DRA7xx: Make L4SEC clock domain SWSUP only

Lokesh Vutla (4):
      ARM: DRA7: hwmod: Add data for SHA IP
      ARM: AM43xx: hwmod: Add data for DES
      ARM: AMx3xx: hwmod: Add data for RNG
      ARM: OMAP2+: board-generic: add support for DRA71x family

Nishanth Menon (1):
      ARM: DRA7: hwmod: Do not register RTC on DRA71

Santosh Shilimkar (1):
      ARM: OMAP5: Add basic cpuidle MPU CSWR support

Tony Lindgren (4):
      ARM: OMAP5: Fix build for PM code
      ARM: OMAP5: Fix mpuss_early_init
      ARM: OMAP4+: Fix bad fallthrough for cpuidle
      Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc

 .../devicetree/bindings/arm/omap/omap.txt          |   6 +
 arch/arm/mach-omap2/Makefile                       |   2 +-
 arch/arm/mach-omap2/board-generic.c                |   1 +
 arch/arm/mach-omap2/clockdomains7xx_data.c         |   2 +-
 arch/arm/mach-omap2/common.h                       |  38 ++++-
 arch/arm/mach-omap2/cpuidle44xx.c                  |  80 ++++++++-
 arch/arm/mach-omap2/io.c                           |   3 +-
 arch/arm/mach-omap2/omap-mpuss-lowpower.c          |  37 +++--
 arch/arm/mach-omap2/omap4-sar-layout.h             |   2 +
 .../mach-omap2/omap_hwmod_33xx_43xx_common_data.h  |   2 +
 .../omap_hwmod_33xx_43xx_interconnect_data.c       |   8 +
 .../mach-omap2/omap_hwmod_33xx_43xx_ipblock_data.c |  29 ++++
 arch/arm/mach-omap2/omap_hwmod_33xx_data.c         |  35 ----
 arch/arm/mach-omap2/omap_hwmod_43xx_data.c         |  34 ++++
 arch/arm/mach-omap2/omap_hwmod_7xx_data.c          | 182 ++++++++++++++++++++-
 arch/arm/mach-omap2/pm44xx.c                       |   2 +-
 arch/arm/mach-omap2/prcm43xx.h                     |   2 +
 17 files changed, 405 insertions(+), 60 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 2/5] omap soc changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 3/5] omap device tree " Tony Lindgren
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/soc-signed

for you to fetch changes up to 2bb6375f5c03cc5bf510402b646c1a23046b3f12:

  Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc (2016-11-14 15:58:18 -0800)

----------------------------------------------------------------
SoC changes for omaps for v4.10 merge window:

- Add hwmod interconnect target wrapper module data for crypto
  accelerators for am3xxx, am43xx and dra7

- Add support for dra71x family of SoCs

- PM fixes for omap4/5 needed for omap5 cpuidle

----------------------------------------------------------------
Joel Fernandes (4):
      ARM: DRA7: hwmod: Add data for DES IP
      ARM: DRA7: hwmod: Add data for AES IP
      ARM: DRA7: hwmod: Add data for RNG IP
      ARM: OMAP: DRA7xx: Make L4SEC clock domain SWSUP only

Lokesh Vutla (4):
      ARM: DRA7: hwmod: Add data for SHA IP
      ARM: AM43xx: hwmod: Add data for DES
      ARM: AMx3xx: hwmod: Add data for RNG
      ARM: OMAP2+: board-generic: add support for DRA71x family

Nishanth Menon (1):
      ARM: DRA7: hwmod: Do not register RTC on DRA71

Santosh Shilimkar (1):
      ARM: OMAP5: Add basic cpuidle MPU CSWR support

Tony Lindgren (4):
      ARM: OMAP5: Fix build for PM code
      ARM: OMAP5: Fix mpuss_early_init
      ARM: OMAP4+: Fix bad fallthrough for cpuidle
      Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc

 .../devicetree/bindings/arm/omap/omap.txt          |   6 +
 arch/arm/mach-omap2/Makefile                       |   2 +-
 arch/arm/mach-omap2/board-generic.c                |   1 +
 arch/arm/mach-omap2/clockdomains7xx_data.c         |   2 +-
 arch/arm/mach-omap2/common.h                       |  38 ++++-
 arch/arm/mach-omap2/cpuidle44xx.c                  |  80 ++++++++-
 arch/arm/mach-omap2/io.c                           |   3 +-
 arch/arm/mach-omap2/omap-mpuss-lowpower.c          |  37 +++--
 arch/arm/mach-omap2/omap4-sar-layout.h             |   2 +
 .../mach-omap2/omap_hwmod_33xx_43xx_common_data.h  |   2 +
 .../omap_hwmod_33xx_43xx_interconnect_data.c       |   8 +
 .../mach-omap2/omap_hwmod_33xx_43xx_ipblock_data.c |  29 ++++
 arch/arm/mach-omap2/omap_hwmod_33xx_data.c         |  35 ----
 arch/arm/mach-omap2/omap_hwmod_43xx_data.c         |  34 ++++
 arch/arm/mach-omap2/omap_hwmod_7xx_data.c          | 182 ++++++++++++++++++++-
 arch/arm/mach-omap2/pm44xx.c                       |   2 +-
 arch/arm/mach-omap2/prcm43xx.h                     |   2 +
 17 files changed, 405 insertions(+), 60 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 3/5] omap device tree changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
                   ` (2 preceding siblings ...)
  2016-11-15 21:22 ` [GIT PULL 3/5] omap device tree " Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 4/5] drop unused omap platform_data " Tony Lindgren
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/dt-signed

for you to fetch changes up to 7e2f8c0ae670327cbe0348ad2f3df7d9a55a8e5d:

  ARM: dts: Add minimal support for motorola droid 4 xt894 (2016-11-15 10:28:49 -0800)

----------------------------------------------------------------
Device tree changes for omaps for v4.10 merge window:

- A series of patches to configure tps65217 PMIC interrupts for
  power button, charger and usb and use them on am335x

- Configure EEPROM, LEDs and USR1 button for omap5 boards

- Add tscadc DMA properites for am33xx and am4372

- Configure baltos-ir5221 both musb channels to host mode

- Configure internal and external RTC clocks for am335x boards

- Don't reset gpio3 block on baltos

- Remove pinmux for dra72-evm for erratum i869, fix the regulators
  and seprate out tps65917 support

- Add dra718-evm support

- Add minimal droid 4 xt894 support

----------------------------------------------------------------
H. Nikolaus Schaller (3):
      ARM: dts: omap5 uevm: add EEPROM
      ARM: dts: omap5 uevm: add LEDs
      ARM: dts: omap5 uevm: add USR1 button

Keerthy (3):
      ARM: dts: AM335X-bone-common: Add the internal and external clock nodes for rtc
      ARM: dts: AM335X-evm: Add the internal and external clock nodes for rtc
      ARM: dts: AM335X-evmsk: Add the internal and external clock nodes for rtc

Lokesh Vutla (3):
      ARM: dts: dra72-evm: Remove pinmux configurations for erratum i869
      ARM: dts: dra72-evm: Fix modelling of regulators
      ARM: dts: dra72: Add separate dtsi for tps65917

Milo Kim (7):
      ARM: dts: tps65217: Specify the interrupt controller
      ARM: dts: tps65217: Add the charger device
      ARM: dts: tps65217: Add the power button device
      ARM: dts: am335x: Support the PMIC interrupt
      dt-bindings: mfd: Provide human readable defines for TPS65217 interrupts
      ARM: dts: am335x: Add the charger interrupt
      ARM: dts: am335x: Add the power button interrupt

Mugunthan V N (2):
      ARM: dts: am33xx: add DMA properties for tscadc
      ARM: dts: am4372: add DMA properties for tscadc

Nishanth Menon (1):
      ARM: dts: Add support for dra718-evm

Tony Lindgren (1):
      ARM: dts: Add minimal support for motorola droid 4 xt894

Yegor Yefremov (2):
      ARM: dts: am335x-baltos-ir5221: use both musb channels in host mode
      ARM: dts: am335x-baltos: don't reset gpio3 block

 arch/arm/boot/dts/Makefile                 |   4 +-
 arch/arm/boot/dts/am335x-baltos-ir5221.dts |   2 +-
 arch/arm/boot/dts/am335x-baltos.dtsi       |   4 +
 arch/arm/boot/dts/am335x-bone-common.dtsi  |  22 ++
 arch/arm/boot/dts/am335x-evm.dts           |   5 +
 arch/arm/boot/dts/am335x-evmsk.dts         |   5 +
 arch/arm/boot/dts/am33xx.dtsi              |   4 +
 arch/arm/boot/dts/am4372.dtsi              |   2 +
 arch/arm/boot/dts/dra71-evm.dts            | 230 +++++++++++++++++++
 arch/arm/boot/dts/dra72-evm-common.dtsi    | 348 ++++-------------------------
 arch/arm/boot/dts/dra72-evm-revc.dts       |  21 +-
 arch/arm/boot/dts/dra72-evm-tps65917.dtsi  | 134 +++++++++++
 arch/arm/boot/dts/dra72-evm.dts            |  14 +-
 arch/arm/boot/dts/omap4-droid4-xt894.dts   | 188 ++++++++++++++++
 arch/arm/boot/dts/omap5-uevm.dts           |  92 ++++++++
 arch/arm/boot/dts/tps65217.dtsi            |  12 +
 include/dt-bindings/mfd/tps65217.h         |  26 +++
 17 files changed, 787 insertions(+), 326 deletions(-)
 create mode 100644 arch/arm/boot/dts/dra71-evm.dts
 create mode 100644 arch/arm/boot/dts/dra72-evm-tps65917.dtsi
 create mode 100644 arch/arm/boot/dts/omap4-droid4-xt894.dts
 create mode 100644 include/dt-bindings/mfd/tps65217.h

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 3/5] omap device tree changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
  2016-11-15 21:22 ` Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` Tony Lindgren
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/dt-signed

for you to fetch changes up to 7e2f8c0ae670327cbe0348ad2f3df7d9a55a8e5d:

  ARM: dts: Add minimal support for motorola droid 4 xt894 (2016-11-15 10:28:49 -0800)

----------------------------------------------------------------
Device tree changes for omaps for v4.10 merge window:

- A series of patches to configure tps65217 PMIC interrupts for
  power button, charger and usb and use them on am335x

- Configure EEPROM, LEDs and USR1 button for omap5 boards

- Add tscadc DMA properites for am33xx and am4372

- Configure baltos-ir5221 both musb channels to host mode

- Configure internal and external RTC clocks for am335x boards

- Don't reset gpio3 block on baltos

- Remove pinmux for dra72-evm for erratum i869, fix the regulators
  and seprate out tps65917 support

- Add dra718-evm support

- Add minimal droid 4 xt894 support

----------------------------------------------------------------
H. Nikolaus Schaller (3):
      ARM: dts: omap5 uevm: add EEPROM
      ARM: dts: omap5 uevm: add LEDs
      ARM: dts: omap5 uevm: add USR1 button

Keerthy (3):
      ARM: dts: AM335X-bone-common: Add the internal and external clock nodes for rtc
      ARM: dts: AM335X-evm: Add the internal and external clock nodes for rtc
      ARM: dts: AM335X-evmsk: Add the internal and external clock nodes for rtc

Lokesh Vutla (3):
      ARM: dts: dra72-evm: Remove pinmux configurations for erratum i869
      ARM: dts: dra72-evm: Fix modelling of regulators
      ARM: dts: dra72: Add separate dtsi for tps65917

Milo Kim (7):
      ARM: dts: tps65217: Specify the interrupt controller
      ARM: dts: tps65217: Add the charger device
      ARM: dts: tps65217: Add the power button device
      ARM: dts: am335x: Support the PMIC interrupt
      dt-bindings: mfd: Provide human readable defines for TPS65217 interrupts
      ARM: dts: am335x: Add the charger interrupt
      ARM: dts: am335x: Add the power button interrupt

Mugunthan V N (2):
      ARM: dts: am33xx: add DMA properties for tscadc
      ARM: dts: am4372: add DMA properties for tscadc

Nishanth Menon (1):
      ARM: dts: Add support for dra718-evm

Tony Lindgren (1):
      ARM: dts: Add minimal support for motorola droid 4 xt894

Yegor Yefremov (2):
      ARM: dts: am335x-baltos-ir5221: use both musb channels in host mode
      ARM: dts: am335x-baltos: don't reset gpio3 block

 arch/arm/boot/dts/Makefile                 |   4 +-
 arch/arm/boot/dts/am335x-baltos-ir5221.dts |   2 +-
 arch/arm/boot/dts/am335x-baltos.dtsi       |   4 +
 arch/arm/boot/dts/am335x-bone-common.dtsi  |  22 ++
 arch/arm/boot/dts/am335x-evm.dts           |   5 +
 arch/arm/boot/dts/am335x-evmsk.dts         |   5 +
 arch/arm/boot/dts/am33xx.dtsi              |   4 +
 arch/arm/boot/dts/am4372.dtsi              |   2 +
 arch/arm/boot/dts/dra71-evm.dts            | 230 +++++++++++++++++++
 arch/arm/boot/dts/dra72-evm-common.dtsi    | 348 ++++-------------------------
 arch/arm/boot/dts/dra72-evm-revc.dts       |  21 +-
 arch/arm/boot/dts/dra72-evm-tps65917.dtsi  | 134 +++++++++++
 arch/arm/boot/dts/dra72-evm.dts            |  14 +-
 arch/arm/boot/dts/omap4-droid4-xt894.dts   | 188 ++++++++++++++++
 arch/arm/boot/dts/omap5-uevm.dts           |  92 ++++++++
 arch/arm/boot/dts/tps65217.dtsi            |  12 +
 include/dt-bindings/mfd/tps65217.h         |  26 +++
 17 files changed, 787 insertions(+), 326 deletions(-)
 create mode 100644 arch/arm/boot/dts/dra71-evm.dts
 create mode 100644 arch/arm/boot/dts/dra72-evm-tps65917.dtsi
 create mode 100644 arch/arm/boot/dts/omap4-droid4-xt894.dts
 create mode 100644 include/dt-bindings/mfd/tps65217.h

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 4/5] drop unused omap platform_data for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
                   ` (4 preceding siblings ...)
  2016-11-15 21:22 ` [GIT PULL 4/5] drop unused omap platform_data " Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` [GIT PULL 5/5] omap defconfig changes " Tony Lindgren
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/legacy-signed

for you to fetch changes up to 19944b3a4a30163656b26e9d2ca659657113ac3e:

  ARM: OMAP2+: Drop legacy sdram timings (2016-11-10 16:07:32 -0700)

----------------------------------------------------------------
Legacy platform_data removal for omaps for v4.10 merge window.
We've dropped the last legacy boot board-*.c files for mach-omap2
for v4.9 so now we can start removing the unused platform_data.

All of the below has been unused since v4.9 merge window:

- Drop legacy pmic init code

- Apply seq_puts() fixes for legacy mux code, then drop it

- Drop legacy serial init

- Drop legacy i2c init

- Drop legacy PM init

- Drop legacy twl4030 platform init

- Drop legacy USB host init

- Drop legacy muxing for tusb6010, n8x0 is still using it's
  platform init via pdata-quirks.c

- Drop legacy musb init

- Drop hwmod related legacy mux code

- Drop legacy hwmod data for omap3

- Drop legacy smsc911x and smc91x init

- Drop legacy board flash init

- Drop legacy ads7846 init

- Drop legacy sdram timings

----------------------------------------------------------------
Javier Martinez Canillas (2):
      ARM: OMAP2+: Remove legacy smsc911x and smc91x GPMC support
      ARM: OMAP2+: Remove legacy board-flash.c

Markus Elfring (2):
      ARM: OMAP2+: mux: Replace three seq_printf() calls by seq_puts()
      ARM: OMAP2+: mux: Use seq_putc() in omap_mux_dbg_signal_show()

Nicolae Rosia (5):
      ARM: OMAP4: kill omap4_pmic_init and omap4_pmic_get_config
      ARM: OMAP3: kill omap3_pmic_get_config and twl_{get,set}_voltage
      ARM: OMAP3: kill omap3_pmic_init
      ARM: OMAP2: kill omap2_pmic_init
      ARM: OMAP: kill omap_pmic_init

Tony Lindgren (12):
      ARM: OMAP2+: Remove legacy serial.c
      ARM: OMAP2+: Remove legacy i2c.c platform init code
      ARM: OMAP2+: Remove legacy PM init
      ARM: OMAP2+: Remove legacy twl4030 platform init code
      ARM: OMAP2+: Remove legacy usb-host.c platform init code
      ARM: OMAP2+: Remove legacy muxing for usb-tusb6010.c
      ARM: OMAP2+: Remove legacy usb-musb.c platform init code
      ARM: OMAP2+: Remove legacy hwmod mux code
      ARM: OMAP2+: Remove legacy mux code
      ARM: OMAP2+: Remove legacy data from hwmod for omap3
      ARM: OMAP2+: Drop legacy ads7846 init
      ARM: OMAP2+: Drop legacy sdram timings

 arch/arm/mach-omap1/Kconfig                        |   26 +
 arch/arm/mach-omap1/i2c.c                          |   83 +
 arch/arm/mach-omap2/Makefile                       |   16 +-
 arch/arm/mach-omap2/board-flash.c                  |  242 ---
 arch/arm/mach-omap2/board-flash.h                  |   56 -
 arch/arm/mach-omap2/common-board-devices.c         |  102 -
 arch/arm/mach-omap2/common-board-devices.h         |    8 -
 arch/arm/mach-omap2/common.h                       |    9 -
 arch/arm/mach-omap2/devices.c                      |    1 -
 arch/arm/mach-omap2/dss-common.c                   |   37 -
 arch/arm/mach-omap2/dss-common.h                   |   13 -
 arch/arm/mach-omap2/gpmc-smsc911x.c                |  100 -
 arch/arm/mach-omap2/gpmc-smsc911x.h                |   35 -
 arch/arm/mach-omap2/hsmmc.c                        |   88 -
 arch/arm/mach-omap2/i2c.c                          |   97 -
 arch/arm/mach-omap2/io.c                           |    1 -
 arch/arm/mach-omap2/msdi.c                         |    1 -
 arch/arm/mach-omap2/mux.c                          | 1153 -----------
 arch/arm/mach-omap2/mux.h                          |  352 ----
 arch/arm/mach-omap2/mux34xx.c                      | 2061 --------------------
 arch/arm/mach-omap2/mux34xx.h                      |  402 ----
 arch/arm/mach-omap2/omap_hwmod.c                   |  107 +-
 .../omap_hwmod_2xxx_3xxx_interconnect_data.c       |  149 +-
 .../mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c |  201 +-
 .../mach-omap2/omap_hwmod_2xxx_interconnect_data.c |    4 -
 arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c |    1 -
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |  787 +-------
 arch/arm/mach-omap2/omap_hwmod_common_data.h       |   15 -
 arch/arm/mach-omap2/pdata-quirks.c                 |    1 -
 arch/arm/mach-omap2/pm.c                           |   66 +-
 arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h |   51 -
 arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h  |   55 -
 arch/arm/mach-omap2/sdram-nokia.c                  |  299 ---
 arch/arm/mach-omap2/sdram-nokia.h                  |   12 -
 arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h     |   51 -
 .../mach-omap2/sdram-qimonda-hyb18m512160af-6.h    |   54 -
 arch/arm/mach-omap2/serial.c                       |  332 ----
 arch/arm/mach-omap2/twl-common.c                   |  564 ------
 arch/arm/mach-omap2/twl-common.h                   |   66 -
 arch/arm/mach-omap2/usb-host.c                     |  496 -----
 arch/arm/mach-omap2/usb-musb.c                     |  106 -
 arch/arm/mach-omap2/usb-tusb6010.c                 |   21 -
 arch/arm/plat-omap/Kconfig                         |   26 -
 arch/arm/plat-omap/Makefile                        |    3 -
 arch/arm/plat-omap/i2c.c                           |  116 --
 45 files changed, 160 insertions(+), 8306 deletions(-)
 delete mode 100644 arch/arm/mach-omap2/board-flash.c
 delete mode 100644 arch/arm/mach-omap2/board-flash.h
 delete mode 100644 arch/arm/mach-omap2/common-board-devices.c
 delete mode 100644 arch/arm/mach-omap2/dss-common.c
 delete mode 100644 arch/arm/mach-omap2/dss-common.h
 delete mode 100644 arch/arm/mach-omap2/gpmc-smsc911x.c
 delete mode 100644 arch/arm/mach-omap2/gpmc-smsc911x.h
 delete mode 100644 arch/arm/mach-omap2/mux.c
 delete mode 100644 arch/arm/mach-omap2/mux.h
 delete mode 100644 arch/arm/mach-omap2/mux34xx.c
 delete mode 100644 arch/arm/mach-omap2/mux34xx.h
 delete mode 100644 arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h
 delete mode 100644 arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h
 delete mode 100644 arch/arm/mach-omap2/sdram-nokia.c
 delete mode 100644 arch/arm/mach-omap2/sdram-nokia.h
 delete mode 100644 arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h
 delete mode 100644 arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h
 delete mode 100644 arch/arm/mach-omap2/serial.c
 delete mode 100644 arch/arm/mach-omap2/twl-common.c
 delete mode 100644 arch/arm/mach-omap2/twl-common.h
 delete mode 100644 arch/arm/mach-omap2/usb-host.c
 delete mode 100644 arch/arm/mach-omap2/usb-musb.c
 delete mode 100644 arch/arm/plat-omap/i2c.c

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 4/5] drop unused omap platform_data for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
                   ` (3 preceding siblings ...)
  2016-11-15 21:22 ` Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` Tony Lindgren
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/legacy-signed

for you to fetch changes up to 19944b3a4a30163656b26e9d2ca659657113ac3e:

  ARM: OMAP2+: Drop legacy sdram timings (2016-11-10 16:07:32 -0700)

----------------------------------------------------------------
Legacy platform_data removal for omaps for v4.10 merge window.
We've dropped the last legacy boot board-*.c files for mach-omap2
for v4.9 so now we can start removing the unused platform_data.

All of the below has been unused since v4.9 merge window:

- Drop legacy pmic init code

- Apply seq_puts() fixes for legacy mux code, then drop it

- Drop legacy serial init

- Drop legacy i2c init

- Drop legacy PM init

- Drop legacy twl4030 platform init

- Drop legacy USB host init

- Drop legacy muxing for tusb6010, n8x0 is still using it's
  platform init via pdata-quirks.c

- Drop legacy musb init

- Drop hwmod related legacy mux code

- Drop legacy hwmod data for omap3

- Drop legacy smsc911x and smc91x init

- Drop legacy board flash init

- Drop legacy ads7846 init

- Drop legacy sdram timings

----------------------------------------------------------------
Javier Martinez Canillas (2):
      ARM: OMAP2+: Remove legacy smsc911x and smc91x GPMC support
      ARM: OMAP2+: Remove legacy board-flash.c

Markus Elfring (2):
      ARM: OMAP2+: mux: Replace three seq_printf() calls by seq_puts()
      ARM: OMAP2+: mux: Use seq_putc() in omap_mux_dbg_signal_show()

Nicolae Rosia (5):
      ARM: OMAP4: kill omap4_pmic_init and omap4_pmic_get_config
      ARM: OMAP3: kill omap3_pmic_get_config and twl_{get,set}_voltage
      ARM: OMAP3: kill omap3_pmic_init
      ARM: OMAP2: kill omap2_pmic_init
      ARM: OMAP: kill omap_pmic_init

Tony Lindgren (12):
      ARM: OMAP2+: Remove legacy serial.c
      ARM: OMAP2+: Remove legacy i2c.c platform init code
      ARM: OMAP2+: Remove legacy PM init
      ARM: OMAP2+: Remove legacy twl4030 platform init code
      ARM: OMAP2+: Remove legacy usb-host.c platform init code
      ARM: OMAP2+: Remove legacy muxing for usb-tusb6010.c
      ARM: OMAP2+: Remove legacy usb-musb.c platform init code
      ARM: OMAP2+: Remove legacy hwmod mux code
      ARM: OMAP2+: Remove legacy mux code
      ARM: OMAP2+: Remove legacy data from hwmod for omap3
      ARM: OMAP2+: Drop legacy ads7846 init
      ARM: OMAP2+: Drop legacy sdram timings

 arch/arm/mach-omap1/Kconfig                        |   26 +
 arch/arm/mach-omap1/i2c.c                          |   83 +
 arch/arm/mach-omap2/Makefile                       |   16 +-
 arch/arm/mach-omap2/board-flash.c                  |  242 ---
 arch/arm/mach-omap2/board-flash.h                  |   56 -
 arch/arm/mach-omap2/common-board-devices.c         |  102 -
 arch/arm/mach-omap2/common-board-devices.h         |    8 -
 arch/arm/mach-omap2/common.h                       |    9 -
 arch/arm/mach-omap2/devices.c                      |    1 -
 arch/arm/mach-omap2/dss-common.c                   |   37 -
 arch/arm/mach-omap2/dss-common.h                   |   13 -
 arch/arm/mach-omap2/gpmc-smsc911x.c                |  100 -
 arch/arm/mach-omap2/gpmc-smsc911x.h                |   35 -
 arch/arm/mach-omap2/hsmmc.c                        |   88 -
 arch/arm/mach-omap2/i2c.c                          |   97 -
 arch/arm/mach-omap2/io.c                           |    1 -
 arch/arm/mach-omap2/msdi.c                         |    1 -
 arch/arm/mach-omap2/mux.c                          | 1153 -----------
 arch/arm/mach-omap2/mux.h                          |  352 ----
 arch/arm/mach-omap2/mux34xx.c                      | 2061 --------------------
 arch/arm/mach-omap2/mux34xx.h                      |  402 ----
 arch/arm/mach-omap2/omap_hwmod.c                   |  107 +-
 .../omap_hwmod_2xxx_3xxx_interconnect_data.c       |  149 +-
 .../mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c |  201 +-
 .../mach-omap2/omap_hwmod_2xxx_interconnect_data.c |    4 -
 arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c |    1 -
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |  787 +-------
 arch/arm/mach-omap2/omap_hwmod_common_data.h       |   15 -
 arch/arm/mach-omap2/pdata-quirks.c                 |    1 -
 arch/arm/mach-omap2/pm.c                           |   66 +-
 arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h |   51 -
 arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h  |   55 -
 arch/arm/mach-omap2/sdram-nokia.c                  |  299 ---
 arch/arm/mach-omap2/sdram-nokia.h                  |   12 -
 arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h     |   51 -
 .../mach-omap2/sdram-qimonda-hyb18m512160af-6.h    |   54 -
 arch/arm/mach-omap2/serial.c                       |  332 ----
 arch/arm/mach-omap2/twl-common.c                   |  564 ------
 arch/arm/mach-omap2/twl-common.h                   |   66 -
 arch/arm/mach-omap2/usb-host.c                     |  496 -----
 arch/arm/mach-omap2/usb-musb.c                     |  106 -
 arch/arm/mach-omap2/usb-tusb6010.c                 |   21 -
 arch/arm/plat-omap/Kconfig                         |   26 -
 arch/arm/plat-omap/Makefile                        |    3 -
 arch/arm/plat-omap/i2c.c                           |  116 --
 45 files changed, 160 insertions(+), 8306 deletions(-)
 delete mode 100644 arch/arm/mach-omap2/board-flash.c
 delete mode 100644 arch/arm/mach-omap2/board-flash.h
 delete mode 100644 arch/arm/mach-omap2/common-board-devices.c
 delete mode 100644 arch/arm/mach-omap2/dss-common.c
 delete mode 100644 arch/arm/mach-omap2/dss-common.h
 delete mode 100644 arch/arm/mach-omap2/gpmc-smsc911x.c
 delete mode 100644 arch/arm/mach-omap2/gpmc-smsc911x.h
 delete mode 100644 arch/arm/mach-omap2/mux.c
 delete mode 100644 arch/arm/mach-omap2/mux.h
 delete mode 100644 arch/arm/mach-omap2/mux34xx.c
 delete mode 100644 arch/arm/mach-omap2/mux34xx.h
 delete mode 100644 arch/arm/mach-omap2/sdram-hynix-h8mbx00u0mer-0em.h
 delete mode 100644 arch/arm/mach-omap2/sdram-micron-mt46h32m32lf-6.h
 delete mode 100644 arch/arm/mach-omap2/sdram-nokia.c
 delete mode 100644 arch/arm/mach-omap2/sdram-nokia.h
 delete mode 100644 arch/arm/mach-omap2/sdram-numonyx-m65kxxxxam.h
 delete mode 100644 arch/arm/mach-omap2/sdram-qimonda-hyb18m512160af-6.h
 delete mode 100644 arch/arm/mach-omap2/serial.c
 delete mode 100644 arch/arm/mach-omap2/twl-common.c
 delete mode 100644 arch/arm/mach-omap2/twl-common.h
 delete mode 100644 arch/arm/mach-omap2/usb-host.c
 delete mode 100644 arch/arm/mach-omap2/usb-musb.c
 delete mode 100644 arch/arm/plat-omap/i2c.c

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 5/5] omap defconfig changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
                   ` (6 preceding siblings ...)
  2016-11-15 21:22 ` [GIT PULL 5/5] omap defconfig changes " Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
       [not found] ` <582b7c9a.d549620a.d6a1a.22c0SMTPIN_ADDED_BROKEN@mx.google.com>
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/defconfig-signed

for you to fetch changes up to 9c106e4efab2ec96daebb7bdd0bb61602fd52e7a:

  ARM: omap2plus_defconfig: Run make savedefconfig to save some space (2016-11-15 11:01:24 -0800)

----------------------------------------------------------------
Defconfig changes for omaps for v4.10 merge window:

- Enable tsc2004 touchscreen as a loadable module

- Enable REGULATOR_GPIO, dra71-evm needs this for MMC voltage

- Enable LP873x PMICs for dra71x-evm

- Run make savedefconfig to save some space and make it
  easier to generate minimal patches against it

----------------------------------------------------------------
Adam Ford (1):
      ARM: omap2plus_defconfig: Enable TOUCHSCREEN_TSC2004

Lokesh Vutla (2):
      ARM: omap2plus_defconfig: Enable REGULATOR_GPIO
      ARM: omap2plus_defconfig: Enable LP873X support

Tony Lindgren (1):
      ARM: omap2plus_defconfig: Run make savedefconfig to save some space

 arch/arm/configs/omap2plus_defconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 5/5] omap defconfig changes for v4.10
  2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
                   ` (5 preceding siblings ...)
  2016-11-15 21:22 ` Tony Lindgren
@ 2016-11-15 21:22 ` Tony Lindgren
  2016-11-15 21:22 ` Tony Lindgren
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-15 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/defconfig-signed

for you to fetch changes up to 9c106e4efab2ec96daebb7bdd0bb61602fd52e7a:

  ARM: omap2plus_defconfig: Run make savedefconfig to save some space (2016-11-15 11:01:24 -0800)

----------------------------------------------------------------
Defconfig changes for omaps for v4.10 merge window:

- Enable tsc2004 touchscreen as a loadable module

- Enable REGULATOR_GPIO, dra71-evm needs this for MMC voltage

- Enable LP873x PMICs for dra71x-evm

- Run make savedefconfig to save some space and make it
  easier to generate minimal patches against it

----------------------------------------------------------------
Adam Ford (1):
      ARM: omap2plus_defconfig: Enable TOUCHSCREEN_TSC2004

Lokesh Vutla (2):
      ARM: omap2plus_defconfig: Enable REGULATOR_GPIO
      ARM: omap2plus_defconfig: Enable LP873X support

Tony Lindgren (1):
      ARM: omap2plus_defconfig: Run make savedefconfig to save some space

 arch/arm/configs/omap2plus_defconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [GIT PULL 2/5] omap soc changes for v4.10
       [not found] ` <582b7c9a.d549620a.d6a1a.22c0SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2016-11-19  0:43     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:43 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, arm, linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:20PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/soc-signed
> 
> for you to fetch changes up to 2bb6375f5c03cc5bf510402b646c1a23046b3f12:
> 
>   Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc (2016-11-14 15:58:18 -0800)
> 
> ----------------------------------------------------------------
> SoC changes for omaps for v4.10 merge window:
> 
> - Add hwmod interconnect target wrapper module data for crypto
>   accelerators for am3xxx, am43xx and dra7
> 
> - Add support for dra71x family of SoCs
> 
> - PM fixes for omap4/5 needed for omap5 cpuidle

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 2/5] omap soc changes for v4.10
@ 2016-11-19  0:43     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:20PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/soc-signed
> 
> for you to fetch changes up to 2bb6375f5c03cc5bf510402b646c1a23046b3f12:
> 
>   Merge branch 'omap-for-v4.10/cpuidle-v2' into omap-for-v4.10/soc (2016-11-14 15:58:18 -0800)
> 
> ----------------------------------------------------------------
> SoC changes for omaps for v4.10 merge window:
> 
> - Add hwmod interconnect target wrapper module data for crypto
>   accelerators for am3xxx, am43xx and dra7
> 
> - Add support for dra71x family of SoCs
> 
> - PM fixes for omap4/5 needed for omap5 cpuidle

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [GIT PULL 3/5] omap device tree changes for v4.10
       [not found] ` <582b7c9b.0111620a.395b.cabdSMTPIN_ADDED_BROKEN@mx.google.com>
@ 2016-11-19  0:48     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:48 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, arm, linux-arm-kernel

Hi,

On Tue, Nov 15, 2016 at 01:22:21PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/dt-signed
> 
> for you to fetch changes up to 7e2f8c0ae670327cbe0348ad2f3df7d9a55a8e5d:
> 
>   ARM: dts: Add minimal support for motorola droid 4 xt894 (2016-11-15 10:28:49 -0800)
> 
> ----------------------------------------------------------------
> Device tree changes for omaps for v4.10 merge window:
> 
> - A series of patches to configure tps65217 PMIC interrupts for
>   power button, charger and usb and use them on am335x
> 
> - Configure EEPROM, LEDs and USR1 button for omap5 boards
> 
> - Add tscadc DMA properites for am33xx and am4372
> 
> - Configure baltos-ir5221 both musb channels to host mode
> 
> - Configure internal and external RTC clocks for am335x boards
> 
> - Don't reset gpio3 block on baltos
> 
> - Remove pinmux for dra72-evm for erratum i869, fix the regulators
>   and seprate out tps65917 support
> 
> - Add dra718-evm support
> 
> - Add minimal droid 4 xt894 support

Another phone, cool to see even though it's no longer being sold.

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 3/5] omap device tree changes for v4.10
@ 2016-11-19  0:48     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:48 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Tue, Nov 15, 2016 at 01:22:21PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/dt-signed
> 
> for you to fetch changes up to 7e2f8c0ae670327cbe0348ad2f3df7d9a55a8e5d:
> 
>   ARM: dts: Add minimal support for motorola droid 4 xt894 (2016-11-15 10:28:49 -0800)
> 
> ----------------------------------------------------------------
> Device tree changes for omaps for v4.10 merge window:
> 
> - A series of patches to configure tps65217 PMIC interrupts for
>   power button, charger and usb and use them on am335x
> 
> - Configure EEPROM, LEDs and USR1 button for omap5 boards
> 
> - Add tscadc DMA properites for am33xx and am4372
> 
> - Configure baltos-ir5221 both musb channels to host mode
> 
> - Configure internal and external RTC clocks for am335x boards
> 
> - Don't reset gpio3 block on baltos
> 
> - Remove pinmux for dra72-evm for erratum i869, fix the regulators
>   and seprate out tps65917 support
> 
> - Add dra718-evm support
> 
> - Add minimal droid 4 xt894 support

Another phone, cool to see even though it's no longer being sold.

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [GIT PULL 4/5] drop unused omap platform_data for v4.10
       [not found] ` <582b7c9c.5790620a.e95a2.d669SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2016-11-19  0:50     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:50 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, arm, linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:22PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/legacy-signed
> 
> for you to fetch changes up to 19944b3a4a30163656b26e9d2ca659657113ac3e:
> 
>   ARM: OMAP2+: Drop legacy sdram timings (2016-11-10 16:07:32 -0700)
> 
> ----------------------------------------------------------------
> Legacy platform_data removal for omaps for v4.10 merge window.
> We've dropped the last legacy boot board-*.c files for mach-omap2
> for v4.9 so now we can start removing the unused platform_data.
> 
> All of the below has been unused since v4.9 merge window:
> 
> - Drop legacy pmic init code
> 
> - Apply seq_puts() fixes for legacy mux code, then drop it
> 
> - Drop legacy serial init
> 
> - Drop legacy i2c init
> 
> - Drop legacy PM init
> 
> - Drop legacy twl4030 platform init
> 
> - Drop legacy USB host init
> 
> - Drop legacy muxing for tusb6010, n8x0 is still using it's
>   platform init via pdata-quirks.c
> 
> - Drop legacy musb init
> 
> - Drop hwmod related legacy mux code
> 
> - Drop legacy hwmod data for omap3
> 
> - Drop legacy smsc911x and smc91x init
> 
> - Drop legacy board flash init
> 
> - Drop legacy ads7846 init
> 
> - Drop legacy sdram timings

[...]

>  45 files changed, 160 insertions(+), 8306 deletions(-)

Nice!!


Merged into next/soc, since we don't really track a cleanup branch any more.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 4/5] drop unused omap platform_data for v4.10
@ 2016-11-19  0:50     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:50 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:22PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/legacy-signed
> 
> for you to fetch changes up to 19944b3a4a30163656b26e9d2ca659657113ac3e:
> 
>   ARM: OMAP2+: Drop legacy sdram timings (2016-11-10 16:07:32 -0700)
> 
> ----------------------------------------------------------------
> Legacy platform_data removal for omaps for v4.10 merge window.
> We've dropped the last legacy boot board-*.c files for mach-omap2
> for v4.9 so now we can start removing the unused platform_data.
> 
> All of the below has been unused since v4.9 merge window:
> 
> - Drop legacy pmic init code
> 
> - Apply seq_puts() fixes for legacy mux code, then drop it
> 
> - Drop legacy serial init
> 
> - Drop legacy i2c init
> 
> - Drop legacy PM init
> 
> - Drop legacy twl4030 platform init
> 
> - Drop legacy USB host init
> 
> - Drop legacy muxing for tusb6010, n8x0 is still using it's
>   platform init via pdata-quirks.c
> 
> - Drop legacy musb init
> 
> - Drop hwmod related legacy mux code
> 
> - Drop legacy hwmod data for omap3
> 
> - Drop legacy smsc911x and smc91x init
> 
> - Drop legacy board flash init
> 
> - Drop legacy ads7846 init
> 
> - Drop legacy sdram timings

[...]

>  45 files changed, 160 insertions(+), 8306 deletions(-)

Nice!!


Merged into next/soc, since we don't really track a cleanup branch any more.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [GIT PULL 5/5] omap defconfig changes for v4.10
       [not found] ` <582b7c9d.473f630a.d4410.a225SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2016-11-19  0:50     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:50 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-omap, arm, linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:23PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/defconfig-signed
> 
> for you to fetch changes up to 9c106e4efab2ec96daebb7bdd0bb61602fd52e7a:
> 
>   ARM: omap2plus_defconfig: Run make savedefconfig to save some space (2016-11-15 11:01:24 -0800)
> 
> ----------------------------------------------------------------
> Defconfig changes for omaps for v4.10 merge window:
> 
> - Enable tsc2004 touchscreen as a loadable module
> 
> - Enable REGULATOR_GPIO, dra71-evm needs this for MMC voltage
> 
> - Enable LP873x PMICs for dra71x-evm
> 
> - Run make savedefconfig to save some space and make it
>   easier to generate minimal patches against it

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 5/5] omap defconfig changes for v4.10
@ 2016-11-19  0:50     ` Olof Johansson
  0 siblings, 0 replies; 19+ messages in thread
From: Olof Johansson @ 2016-11-19  0:50 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Nov 15, 2016 at 01:22:23PM -0800, Tony Lindgren wrote:
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.10/defconfig-signed
> 
> for you to fetch changes up to 9c106e4efab2ec96daebb7bdd0bb61602fd52e7a:
> 
>   ARM: omap2plus_defconfig: Run make savedefconfig to save some space (2016-11-15 11:01:24 -0800)
> 
> ----------------------------------------------------------------
> Defconfig changes for omaps for v4.10 merge window:
> 
> - Enable tsc2004 touchscreen as a loadable module
> 
> - Enable REGULATOR_GPIO, dra71-evm needs this for MMC voltage
> 
> - Enable LP873x PMICs for dra71x-evm
> 
> - Run make savedefconfig to save some space and make it
>   easier to generate minimal patches against it

Merged, thanks.


-Olof

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [GIT PULL 3/5] omap device tree changes for v4.10
  2016-11-19  0:48     ` Olof Johansson
@ 2016-11-19  1:23       ` Tony Lindgren
  -1 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-19  1:23 UTC (permalink / raw)
  To: Olof Johansson; +Cc: linux-omap, arm, linux-arm-kernel

* Olof Johansson <olof@lixom.net> [161118 17:10]:
> On Tue, Nov 15, 2016 at 01:22:21PM -0800, Tony Lindgren wrote:
> > - Add minimal droid 4 xt894 support
> 
> Another phone, cool to see even though it's no longer being sold.

Plenty of them around at about $30 or so used :)

Regards,

Tony

^ permalink raw reply	[flat|nested] 19+ messages in thread

* [GIT PULL 3/5] omap device tree changes for v4.10
@ 2016-11-19  1:23       ` Tony Lindgren
  0 siblings, 0 replies; 19+ messages in thread
From: Tony Lindgren @ 2016-11-19  1:23 UTC (permalink / raw)
  To: linux-arm-kernel

* Olof Johansson <olof@lixom.net> [161118 17:10]:
> On Tue, Nov 15, 2016 at 01:22:21PM -0800, Tony Lindgren wrote:
> > - Add minimal droid 4 xt894 support
> 
> Another phone, cool to see even though it's no longer being sold.

Plenty of them around at about $30 or so used :)

Regards,

Tony

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2016-11-19  1:23 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-15 21:22 [GIT PULL 1/5] non-urgent omap fixes for v4.10 Tony Lindgren
2016-11-15 21:22 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
2016-11-15 21:22 ` Tony Lindgren
2016-11-15 21:22 ` [GIT PULL 3/5] omap device tree " Tony Lindgren
2016-11-15 21:22 ` Tony Lindgren
2016-11-15 21:22 ` [GIT PULL 4/5] drop unused omap platform_data " Tony Lindgren
2016-11-15 21:22 ` Tony Lindgren
2016-11-15 21:22 ` [GIT PULL 5/5] omap defconfig changes " Tony Lindgren
2016-11-15 21:22 ` Tony Lindgren
     [not found] ` <582b7c9a.d549620a.d6a1a.22c0SMTPIN_ADDED_BROKEN@mx.google.com>
2016-11-19  0:43   ` [GIT PULL 2/5] omap soc " Olof Johansson
2016-11-19  0:43     ` Olof Johansson
     [not found] ` <582b7c9b.0111620a.395b.cabdSMTPIN_ADDED_BROKEN@mx.google.com>
2016-11-19  0:48   ` [GIT PULL 3/5] omap device tree " Olof Johansson
2016-11-19  0:48     ` Olof Johansson
2016-11-19  1:23     ` Tony Lindgren
2016-11-19  1:23       ` Tony Lindgren
     [not found] ` <582b7c9c.5790620a.e95a2.d669SMTPIN_ADDED_BROKEN@mx.google.com>
2016-11-19  0:50   ` [GIT PULL 4/5] drop unused omap platform_data " Olof Johansson
2016-11-19  0:50     ` Olof Johansson
     [not found] ` <582b7c9d.473f630a.d4410.a225SMTPIN_ADDED_BROKEN@mx.google.com>
2016-11-19  0:50   ` [GIT PULL 5/5] omap defconfig changes " Olof Johansson
2016-11-19  0:50     ` Olof Johansson

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.