All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL 1/2] omap non-urgent fixes for v3.20, part 2
@ 2015-01-26 21:08 Tony Lindgren
  2015-01-26 21:08 ` [GIT PULL 2/2] omap changes to make dm816x usable Tony Lindgren
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Tony Lindgren @ 2015-01-26 21:08 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:

  ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/fixes-not-urgent-pt2

for you to fetch changes up to 20d9448a59770420ead8078fb76948de32765fe6:

  Merge tag 'for-v3.20/omap-hwmod-a' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into omap-for-v3.20/fixes-not-urgent (2015-01-21 16:52:17 -0800)

----------------------------------------------------------------
Non-critical fixes for omap hwmod code via Paul Walmsley <paul@pwsan.com>:

First set of OMAP2+ hwmod patches for Linux v3.20.  These are mostly
fixes for warnings, although there's one DRA7xx patch that fixes
CONFIG_DEBUG_LL for AM572x/DRA7xx SoCs that use UART3 for console,
such as the BeagleBoard-X15.

These patches entered Linux-next starting with the next-20150121 tag.

Basic build, boot, and PM test results can be found here:

http://www.pwsan.com/omap/testlogs/omap-hwmod-a-for-v3.20/20150121142621/

----------------------------------------------------------------
Keerthy (1):
      ARM: OMAP: DRA7: hwmod: Make gpmc software supervised as the smart idle is broken

Lokesh Vutla (2):
      ARM: OMAP2+: hwmod: print error if wait_target_ready() failed
      ARM: DRA7: hwmod: Fix boot crash with DEBUG_LL enabled on UART3

Paul Walmsley (1):
      MAINTAINERS: add maintainer for OMAP hwmod data

Tomi Valkeinen (1):
      ARM: AM43xx: hwmod: set DSS submodule parent hwmods

Tony Lindgren (1):
      Merge tag 'for-v3.20/omap-hwmod-a' of git://git.kernel.org/.../pjw/omap-pending into omap-for-v3.20/fixes-not-urgent

 MAINTAINERS                                | 6 ++++++
 arch/arm/mach-omap2/omap_hwmod.c           | 4 ++--
 arch/arm/mach-omap2/omap_hwmod_43xx_data.c | 2 ++
 arch/arm/mach-omap2/omap_hwmod_7xx_data.c  | 5 +++--
 4 files changed, 13 insertions(+), 4 deletions(-)

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

* [GIT PULL 2/2] omap changes to make dm816x usable
  2015-01-26 21:08 [GIT PULL 1/2] omap non-urgent fixes for v3.20, part 2 Tony Lindgren
  2015-01-26 21:08 ` [GIT PULL 2/2] omap changes to make dm816x usable Tony Lindgren
@ 2015-01-26 21:08 ` Tony Lindgren
  2015-01-26 21:08 ` Tony Lindgren
       [not found] ` <54c6ad94.8182440a.13ff.1604SMTPIN_ADDED_BROKEN@mx.google.com>
  3 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2015-01-26 21:08 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:

  ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/dm816x-data

for you to fetch changes up to 4d38bd1237f5bb67c3d5d183fc41db4bf4dbfb6b:

  ARM: OMAP2+: Add dm816x hwmod support (2015-01-26 09:26:32 -0800)

----------------------------------------------------------------
Patches to add necessary SoC related clockdomain and interconnect
data  to make dm816x boot with basic devices. This finally gets
dm816x into a usable shape for further work to happen after a few
years of stalled effort of making this SoC to work with the mainline
kernel.

As most of the devices are similar to the other omap variants, we
get at least serial, MMC, Ethernet, I2C, EDMA, pinctrl, SPI and GPMC
working for these SoCs with the related device tree changes.

----------------------------------------------------------------
Aida Mynzhasova (1):
      ARM: OMAP2+: Add clock domain support for dm816x

Tony Lindgren (2):
      ARM: OMAP2+: Add board-generic.c entry for ti81xx
      ARM: OMAP2+: Add dm816x hwmod support

 arch/arm/mach-omap2/Makefile                |    4 +
 arch/arm/mach-omap2/board-generic.c         |   36 +
 arch/arm/mach-omap2/clockdomain.h           |    1 +
 arch/arm/mach-omap2/clockdomains81xx_data.c |  194 +++++
 arch/arm/mach-omap2/cm81xx.h                |   61 ++
 arch/arm/mach-omap2/io.c                    |   82 +-
 arch/arm/mach-omap2/omap_hwmod.c            |    2 +-
 arch/arm/mach-omap2/omap_hwmod.h            |    1 +
 arch/arm/mach-omap2/omap_hwmod_81xx_data.c  | 1136 +++++++++++++++++++++++++++
 9 files changed, 1478 insertions(+), 39 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomains81xx_data.c
 create mode 100644 arch/arm/mach-omap2/cm81xx.h
 create mode 100644 arch/arm/mach-omap2/omap_hwmod_81xx_data.c

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

* [GIT PULL 2/2] omap changes to make dm816x usable
  2015-01-26 21:08 [GIT PULL 1/2] omap non-urgent fixes for v3.20, part 2 Tony Lindgren
  2015-01-26 21:08 ` [GIT PULL 2/2] omap changes to make dm816x usable Tony Lindgren
  2015-01-26 21:08 ` Tony Lindgren
@ 2015-01-26 21:08 ` Tony Lindgren
       [not found] ` <54c6ad94.8182440a.13ff.1604SMTPIN_ADDED_BROKEN@mx.google.com>
  3 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2015-01-26 21:08 UTC (permalink / raw)
  To: arm; +Cc: linux-omap, linux-arm-kernel

The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:

  ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/dm816x-data

for you to fetch changes up to 4d38bd1237f5bb67c3d5d183fc41db4bf4dbfb6b:

  ARM: OMAP2+: Add dm816x hwmod support (2015-01-26 09:26:32 -0800)

----------------------------------------------------------------
Patches to add necessary SoC related clockdomain and interconnect
data  to make dm816x boot with basic devices. This finally gets
dm816x into a usable shape for further work to happen after a few
years of stalled effort of making this SoC to work with the mainline
kernel.

As most of the devices are similar to the other omap variants, we
get at least serial, MMC, Ethernet, I2C, EDMA, pinctrl, SPI and GPMC
working for these SoCs with the related device tree changes.

----------------------------------------------------------------
Aida Mynzhasova (1):
      ARM: OMAP2+: Add clock domain support for dm816x

Tony Lindgren (2):
      ARM: OMAP2+: Add board-generic.c entry for ti81xx
      ARM: OMAP2+: Add dm816x hwmod support

 arch/arm/mach-omap2/Makefile                |    4 +
 arch/arm/mach-omap2/board-generic.c         |   36 +
 arch/arm/mach-omap2/clockdomain.h           |    1 +
 arch/arm/mach-omap2/clockdomains81xx_data.c |  194 +++++
 arch/arm/mach-omap2/cm81xx.h                |   61 ++
 arch/arm/mach-omap2/io.c                    |   82 +-
 arch/arm/mach-omap2/omap_hwmod.c            |    2 +-
 arch/arm/mach-omap2/omap_hwmod.h            |    1 +
 arch/arm/mach-omap2/omap_hwmod_81xx_data.c  | 1136 +++++++++++++++++++++++++++
 9 files changed, 1478 insertions(+), 39 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomains81xx_data.c
 create mode 100644 arch/arm/mach-omap2/cm81xx.h
 create mode 100644 arch/arm/mach-omap2/omap_hwmod_81xx_data.c

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

* [GIT PULL 2/2] omap changes to make dm816x usable
  2015-01-26 21:08 [GIT PULL 1/2] omap non-urgent fixes for v3.20, part 2 Tony Lindgren
@ 2015-01-26 21:08 ` Tony Lindgren
  2015-01-26 21:08 ` Tony Lindgren
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2015-01-26 21:08 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:

  ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/dm816x-data

for you to fetch changes up to 4d38bd1237f5bb67c3d5d183fc41db4bf4dbfb6b:

  ARM: OMAP2+: Add dm816x hwmod support (2015-01-26 09:26:32 -0800)

----------------------------------------------------------------
Patches to add necessary SoC related clockdomain and interconnect
data  to make dm816x boot with basic devices. This finally gets
dm816x into a usable shape for further work to happen after a few
years of stalled effort of making this SoC to work with the mainline
kernel.

As most of the devices are similar to the other omap variants, we
get at least serial, MMC, Ethernet, I2C, EDMA, pinctrl, SPI and GPMC
working for these SoCs with the related device tree changes.

----------------------------------------------------------------
Aida Mynzhasova (1):
      ARM: OMAP2+: Add clock domain support for dm816x

Tony Lindgren (2):
      ARM: OMAP2+: Add board-generic.c entry for ti81xx
      ARM: OMAP2+: Add dm816x hwmod support

 arch/arm/mach-omap2/Makefile                |    4 +
 arch/arm/mach-omap2/board-generic.c         |   36 +
 arch/arm/mach-omap2/clockdomain.h           |    1 +
 arch/arm/mach-omap2/clockdomains81xx_data.c |  194 +++++
 arch/arm/mach-omap2/cm81xx.h                |   61 ++
 arch/arm/mach-omap2/io.c                    |   82 +-
 arch/arm/mach-omap2/omap_hwmod.c            |    2 +-
 arch/arm/mach-omap2/omap_hwmod.h            |    1 +
 arch/arm/mach-omap2/omap_hwmod_81xx_data.c  | 1136 +++++++++++++++++++++++++++
 9 files changed, 1478 insertions(+), 39 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomains81xx_data.c
 create mode 100644 arch/arm/mach-omap2/cm81xx.h
 create mode 100644 arch/arm/mach-omap2/omap_hwmod_81xx_data.c

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

* Re: [GIT PULL 2/2] omap changes to make dm816x usable
       [not found] ` <54c6ad94.8182440a.13ff.1604SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2015-01-27  4:30     ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2015-01-27  4:30 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: arm, linux-omap, linux-arm-kernel

On Mon, Jan 26, 2015 at 01:08:19PM -0800, Tony Lindgren wrote:
> The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:
> 
>   ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/dm816x-data
> 
> for you to fetch changes up to 4d38bd1237f5bb67c3d5d183fc41db4bf4dbfb6b:
> 
>   ARM: OMAP2+: Add dm816x hwmod support (2015-01-26 09:26:32 -0800)
> 
> ----------------------------------------------------------------
> Patches to add necessary SoC related clockdomain and interconnect
> data  to make dm816x boot with basic devices. This finally gets
> dm816x into a usable shape for further work to happen after a few
> years of stalled effort of making this SoC to work with the mainline
> kernel.
> 
> As most of the devices are similar to the other omap variants, we
> get at least serial, MMC, Ethernet, I2C, EDMA, pinctrl, SPI and GPMC
> working for these SoCs with the related device tree changes.

Merged into next/soc.

Thanks,


-Olof

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

* [GIT PULL 2/2] omap changes to make dm816x usable
@ 2015-01-27  4:30     ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2015-01-27  4:30 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jan 26, 2015 at 01:08:19PM -0800, Tony Lindgren wrote:
> The following changes since commit 13efcb188984f69e1f97b4d9e7d3663fb782946f:
> 
>   ARM: OMAP2+: Disable omap3 PM init for ti81xx (2015-01-14 17:37:16 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.20/dm816x-data
> 
> for you to fetch changes up to 4d38bd1237f5bb67c3d5d183fc41db4bf4dbfb6b:
> 
>   ARM: OMAP2+: Add dm816x hwmod support (2015-01-26 09:26:32 -0800)
> 
> ----------------------------------------------------------------
> Patches to add necessary SoC related clockdomain and interconnect
> data  to make dm816x boot with basic devices. This finally gets
> dm816x into a usable shape for further work to happen after a few
> years of stalled effort of making this SoC to work with the mainline
> kernel.
> 
> As most of the devices are similar to the other omap variants, we
> get at least serial, MMC, Ethernet, I2C, EDMA, pinctrl, SPI and GPMC
> working for these SoCs with the related device tree changes.

Merged into next/soc.

Thanks,


-Olof

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

end of thread, other threads:[~2015-01-27  4:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-26 21:08 [GIT PULL 1/2] omap non-urgent fixes for v3.20, part 2 Tony Lindgren
2015-01-26 21:08 ` [GIT PULL 2/2] omap changes to make dm816x usable Tony Lindgren
2015-01-26 21:08 ` Tony Lindgren
2015-01-26 21:08 ` Tony Lindgren
     [not found] ` <54c6ad94.8182440a.13ff.1604SMTPIN_ADDED_BROKEN@mx.google.com>
2015-01-27  4:30   ` Olof Johansson
2015-01-27  4:30     ` 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.