linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window
@ 2014-09-18 20:11 Tony Lindgren
  2014-09-18 20:11 ` [GIT PULL 2/4] part 2 of omap SoC " Tony Lindgren
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Tony Lindgren @ 2014-09-18 20:11 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 55601c9f24670ba926ebdd4d712ac3b177232330:

  arm: omap: intc: switch over to linear irq domain (2014-09-11 13:05:50 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/intc-part2-for-v3.18

for you to fetch changes up to 64d5947b9ee1284b38b8e212e7c94024452b2bb4:

  irqchip: omap-intc: remove unnecessary comments (2014-09-16 14:45:01 -0700)

----------------------------------------------------------------
Second part of omap intc interrupt controller changes to
move it to drivers.

----------------------------------------------------------------
Felipe Balbi (10):
      arm: omap2: n8x0: move i2c devices to DT
      irqchip: add irq-omap-intc.h header
      arm: omap: irq: move irq.c to drivers/irqchip/
      irqchip: omap-intc: minor improvement to omap_irq_pending()
      irqchip: omap-intc: comment style cleanup
      irqchip: omap-intc: remove unnecesary of_address_to_resource() call
      irqchip: omap-intc: enable IP protection
      irqchip: omap-intc: enable TURBO idle mode
      irqchip: omap-intc: correct maximum number or MIR registers
      irqchip: omap-intc: remove unnecessary comments

 arch/arm/boot/dts/omap2420-n810.dts                |  7 +++
 arch/arm/boot/dts/omap2420-n8x0-common.dtsi        |  6 ++
 arch/arm/mach-omap2/Kconfig                        |  1 +
 arch/arm/mach-omap2/Makefile                       |  3 +-
 arch/arm/mach-omap2/board-n8x0.c                   | 26 +--------
 arch/arm/mach-omap2/common-board-devices.h         |  5 ++
 arch/arm/mach-omap2/common.h                       | 10 +---
 arch/arm/mach-omap2/pdata-quirks.c                 |  2 +
 drivers/irqchip/Kconfig                            |  5 ++
 drivers/irqchip/Makefile                           |  1 +
 .../irq.c => drivers/irqchip/irq-omap-intc.c       | 64 +++++++++++++---------
 include/linux/irqchip/irq-omap-intc.h              | 32 +++++++++++
 12 files changed, 101 insertions(+), 61 deletions(-)
 rename arch/arm/mach-omap2/irq.c => drivers/irqchip/irq-omap-intc.c (89%)
 create mode 100644 include/linux/irqchip/irq-omap-intc.h

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

* [GIT PULL 2/4] part 2 of omap SoC changes for v3.18 merge window
  2014-09-18 20:11 [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window Tony Lindgren
@ 2014-09-18 20:11 ` Tony Lindgren
  2014-09-25 22:07   ` Arnd Bergmann
  2014-09-18 20:11 ` [GIT PULL 3/4] part 2 of omap dts " Tony Lindgren
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Tony Lindgren @ 2014-09-18 20:11 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 377fb3f5d9a34b2913939e0620c1c585b5913bab:

  ARM: OMAP5+: Reuse OMAP4 PM code for OMAP5 and DRA7 (2014-09-09 19:13:41 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/soc-part2-for-v3.18

for you to fetch changes up to 1306c08a7cd7e6136490ab2bc728d2c39741003e:

  ARM: OMAP4+: Remove static iotable mappings for SRAM (2014-09-18 09:47:35 -0700)

----------------------------------------------------------------
Few hwmod changes to support upcoming 8250 driver with DMA,
start using the SRAM driver for some omaps, and update the
defconfig.

----------------------------------------------------------------
Rajendra Nayak (3):
      ARM: AM335x: Get rid of unused sram init function
      ARM: OMAP4+: Move SRAM data to DT
      ARM: OMAP4+: Remove static iotable mappings for SRAM

Tony Lindgren (7):
      ARM: OMAP2+: Add hwmod flag for HWMOD_RECONFIG_IO_CHAIN
      ARM: OMAP3: Use manual idle for UARTs because of DMA errata
      ARM: omap2plus_defconfig: Shrink with savedefconfig
      ARM: omap2plus_defconfig: Add cpufreq to defconfig
      ARM: omap2plus_defconfig: Add support for distros with systemd
      ARM: omap2plus_defconfig: Enable battery and reset drivers
      ARM: omap2plus_defconfig: Enable some display features

 Documentation/devicetree/bindings/arm/omap/mpu.txt |  3 +
 arch/arm/boot/dts/am33xx.dtsi                      |  5 +-
 arch/arm/boot/dts/am4372.dtsi                      |  5 ++
 arch/arm/boot/dts/omap4.dtsi                       |  6 ++
 arch/arm/boot/dts/omap5.dtsi                       |  8 ++-
 arch/arm/configs/omap2plus_defconfig               | 79 +++++++++++++++++-----
 arch/arm/mach-omap2/io.c                           | 17 -----
 arch/arm/mach-omap2/omap4-common.c                 | 22 +++++-
 arch/arm/mach-omap2/omap_hwmod.c                   |  4 +-
 arch/arm/mach-omap2/omap_hwmod.h                   |  4 ++
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         | 12 ++--
 arch/arm/mach-omap2/sram.c                         | 39 +----------
 arch/arm/mach-omap2/sram.h                         |  7 --
 13 files changed, 119 insertions(+), 92 deletions(-)

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

* [GIT PULL 3/4] part 2 of omap dts changes for v3.18 merge window
  2014-09-18 20:11 [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window Tony Lindgren
  2014-09-18 20:11 ` [GIT PULL 2/4] part 2 of omap SoC " Tony Lindgren
@ 2014-09-18 20:11 ` Tony Lindgren
  2014-09-25 22:08   ` Arnd Bergmann
  2014-09-18 20:11 ` [GIT PULL 4/4] omap clean-up " Tony Lindgren
  2014-09-25 21:58 ` [GIT PULL 1/4] part 2 of omap intc changes " Arnd Bergmann
  3 siblings, 1 reply; 8+ messages in thread
From: Tony Lindgren @ 2014-09-18 20:11 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit d27704d1ec2f9ba06247b402c58a6f2febecef78:

  ARM: dts: OMAP2+: Add sub mailboxes device node information (2014-09-11 11:46:30 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/dt-part2-v2-for-v3.18

for you to fetch changes up to f53e3c538da314913e5d3d82c9610f8da42bd894:

  ARM: dts: DRA7: Add PMU nodes (2014-09-18 09:58:10 -0700)

----------------------------------------------------------------
Changes to add dra7 PMU, display support for cm-t54, misc
changes needed for omap3 boards for device tree support.

----------------------------------------------------------------
Dmitry Lifshitz (6):
      ARM: dts: sbc-t54: fix mux mode comment style
      ARM: dts: cm-t54: fix mux mode comment style
      ARM: dts: cm-t54: add HDMI/DVI display data
      ARM: dts: cm-t54: add Startek LCD support
      ARM: dts: cm-t54: add ADS7846 touchscreen support
      ARM: dts: cm-t54: setup omap_dwc3

Lucas Weaver (1):
      ARM: dts: DRA7: Add PMU nodes

Tony Lindgren (5):
      ARM: dts: omap3-overo: Fix UART wake-up events
      ARM: dts: omap: Remove WAKEUPENABLE mux options for UARTs
      ARM: dts: Do not set pulls for I2C lines
      ARM: dts: Add support for Ethernet on some N900 macro boards
      ARM: dts: Enable PMIC idle configuration for LDP

 arch/arm/boot/dts/dra72x.dtsi                      |   5 +
 arch/arm/boot/dts/dra74x.dtsi                      |   6 +
 arch/arm/boot/dts/omap3-beagle-xm.dts              |   4 +-
 arch/arm/boot/dts/omap3-ldp.dts                    |   5 +
 arch/arm/boot/dts/omap3-n900.dts                   |  54 +++-
 .../boot/dts/omap3-overo-common-peripherals.dtsi   |   5 +-
 arch/arm/boot/dts/omap5-cm-t54.dts                 | 272 ++++++++++++++++++++-
 arch/arm/boot/dts/omap5-sbc-t54.dts                |   4 +-
 arch/arm/mach-omap2/pdata-quirks.c                 |   3 +
 9 files changed, 344 insertions(+), 14 deletions(-)

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

* [GIT PULL 4/4] omap clean-up for v3.18 merge window
  2014-09-18 20:11 [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window Tony Lindgren
  2014-09-18 20:11 ` [GIT PULL 2/4] part 2 of omap SoC " Tony Lindgren
  2014-09-18 20:11 ` [GIT PULL 3/4] part 2 of omap dts " Tony Lindgren
@ 2014-09-18 20:11 ` Tony Lindgren
  2014-09-25 22:10   ` Arnd Bergmann
  2014-09-25 21:58 ` [GIT PULL 1/4] part 2 of omap intc changes " Arnd Bergmann
  3 siblings, 1 reply; 8+ messages in thread
From: Tony Lindgren @ 2014-09-18 20:11 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9:

  Linux 3.17-rc1 (2014-08-16 10:40:26 -0600)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/cleanup-for-v3.18

for you to fetch changes up to 3d0cb73e9c85e60206ea9d5191bc0b9a0c4c8a99:

  arm: mach-omap2: Convert pr_warning to pr_warn (2014-09-18 09:53:57 -0700)

----------------------------------------------------------------
Clean-up for omaps for v3.18 merge window:

- Remove unused pieces of the legacy DMA API as we're moving to
  dmaengine API

- Search and replace to standardize on pr_warn instead of pr_warning

----------------------------------------------------------------
Joe Perches (1):
      arm: mach-omap2: Convert pr_warning to pr_warn

Tony Lindgren (1):
      ARM: OMAP: Remove unused pieces of legacy DMA API

 arch/arm/mach-omap2/display.c            |   2 +-
 arch/arm/mach-omap2/hdq1w.c              |   4 +-
 arch/arm/mach-omap2/i2c.c                |   2 +-
 arch/arm/mach-omap2/msdi.c               |   4 +-
 arch/arm/mach-omap2/mux.c                |   2 +-
 arch/arm/mach-omap2/omap_hwmod.c         |  26 +-
 arch/arm/mach-omap2/pdata-quirks.c       |   4 +-
 arch/arm/mach-omap2/pm34xx.c             |   2 +-
 arch/arm/mach-omap2/smartreflex-class3.c |   4 +-
 arch/arm/mach-omap2/sr_device.c          |   2 +-
 arch/arm/mach-omap2/vc.c                 |   2 +-
 arch/arm/mach-omap2/voltage.c            |  22 +-
 arch/arm/mach-omap2/wd_timer.c           |   4 +-
 arch/arm/plat-omap/dma.c                 | 737 +------------------------------
 include/linux/omap-dma.h                 |  37 --
 15 files changed, 46 insertions(+), 808 deletions(-)

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

* [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window
  2014-09-18 20:11 [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window Tony Lindgren
                   ` (2 preceding siblings ...)
  2014-09-18 20:11 ` [GIT PULL 4/4] omap clean-up " Tony Lindgren
@ 2014-09-25 21:58 ` Arnd Bergmann
  3 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2014-09-25 21:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 18 September 2014, Tony Lindgren wrote:
> The following changes since commit 55601c9f24670ba926ebdd4d712ac3b177232330:
> 
>   arm: omap: intc: switch over to linear irq domain (2014-09-11 13:05:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/intc-part2-for-v3.18
> 
> for you to fetch changes up to 64d5947b9ee1284b38b8e212e7c94024452b2bb4:
> 
>   irqchip: omap-intc: remove unnecessary comments (2014-09-16 14:45:01 -0700)
> 
> ----------------------------------------------------------------
> Second part of omap intc interrupt controller changes to
> move it to drivers.
> 
> ----------------------------------------------------------------
> Felipe Balbi (10):
>       arm: omap2: n8x0: move i2c devices to DT
>       irqchip: add irq-omap-intc.h header
>       arm: omap: irq: move irq.c to drivers/irqchip/
>       irqchip: omap-intc: minor improvement to omap_irq_pending()
>       irqchip: omap-intc: comment style cleanup
>       irqchip: omap-intc: remove unnecesary of_address_to_resource() call
>       irqchip: omap-intc: enable IP protection
>       irqchip: omap-intc: enable TURBO idle mode
>       irqchip: omap-intc: correct maximum number or MIR registers
>       irqchip: omap-intc: remove unnecessary comments
> 
>  arch/arm/boot/dts/omap2420-n810.dts                |  7 +++
>  arch/arm/boot/dts/omap2420-n8x0-common.dtsi        |  6 ++
>  arch/arm/mach-omap2/Kconfig                        |  1 +
>  arch/arm/mach-omap2/Makefile                       |  3 +-
>  arch/arm/mach-omap2/board-n8x0.c                   | 26 +--------
>  arch/arm/mach-omap2/common-board-devices.h         |  5 ++
>  arch/arm/mach-omap2/common.h                       | 10 +---
>  arch/arm/mach-omap2/pdata-quirks.c                 |  2 +
>  drivers/irqchip/Kconfig                            |  5 ++
>  drivers/irqchip/Makefile                           |  1 +
>  .../irq.c => drivers/irqchip/irq-omap-intc.c       | 64 +++++++++++++---------
>  include/linux/irqchip/irq-omap-intc.h              | 32 +++++++++++
>  12 files changed, 101 insertions(+), 61 deletions(-)
>  rename arch/arm/mach-omap2/irq.c => drivers/irqchip/irq-omap-intc.c (89%)
>  create mode 100644 include/linux/irqchip/irq-omap-intc.h
> 

Pulled into next/drivers, thanks!

	Arnd

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

* [GIT PULL 2/4] part 2 of omap SoC changes for v3.18 merge window
  2014-09-18 20:11 ` [GIT PULL 2/4] part 2 of omap SoC " Tony Lindgren
@ 2014-09-25 22:07   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2014-09-25 22:07 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 18 September 2014, Tony Lindgren wrote:
> Few hwmod changes to support upcoming 8250 driver with DMA,
> start using the SRAM driver for some omaps, and update the
> defconfig.

Pulled into next/soc, thanks!

	Arnd

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

* [GIT PULL 3/4] part 2 of omap dts changes for v3.18 merge window
  2014-09-18 20:11 ` [GIT PULL 3/4] part 2 of omap dts " Tony Lindgren
@ 2014-09-25 22:08   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2014-09-25 22:08 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 18 September 2014, Tony Lindgren wrote:
> The following changes since commit d27704d1ec2f9ba06247b402c58a6f2febecef78:
> 
>   ARM: dts: OMAP2+: Add sub mailboxes device node information (2014-09-11 11:46:30 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/dt-part2-v2-for-v3.18
> 
> for you to fetch changes up to f53e3c538da314913e5d3d82c9610f8da42bd894:
> 
>   ARM: dts: DRA7: Add PMU nodes (2014-09-18 09:58:10 -0700)
> 
> ----------------------------------------------------------------
> Changes to add dra7 PMU, display support for cm-t54, misc
> changes needed for omap3 boards for device tree support.

Pulled into next/dt, thanks!

	Arnd

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

* [GIT PULL 4/4] omap clean-up for v3.18 merge window
  2014-09-18 20:11 ` [GIT PULL 4/4] omap clean-up " Tony Lindgren
@ 2014-09-25 22:10   ` Arnd Bergmann
  0 siblings, 0 replies; 8+ messages in thread
From: Arnd Bergmann @ 2014-09-25 22:10 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 18 September 2014, Tony Lindgren wrote:
> Clean-up for omaps for v3.18 merge window:
> 
> - Remove unused pieces of the legacy DMA API as we're moving to
>   dmaengine API
> 
> - Search and replace to standardize on pr_warn instead of pr_warning
> 

Nice cleanup!

Merged into next/cleanup, thanks!

	Arnd

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

end of thread, other threads:[~2014-09-25 22:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-18 20:11 [GIT PULL 1/4] part 2 of omap intc changes for v3.18 merge window Tony Lindgren
2014-09-18 20:11 ` [GIT PULL 2/4] part 2 of omap SoC " Tony Lindgren
2014-09-25 22:07   ` Arnd Bergmann
2014-09-18 20:11 ` [GIT PULL 3/4] part 2 of omap dts " Tony Lindgren
2014-09-25 22:08   ` Arnd Bergmann
2014-09-18 20:11 ` [GIT PULL 4/4] omap clean-up " Tony Lindgren
2014-09-25 22:10   ` Arnd Bergmann
2014-09-25 21:58 ` [GIT PULL 1/4] part 2 of omap intc changes " Arnd Bergmann

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).