All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: linux-arm-kernel@lists.arm.linux.org.uk, linux-omap@vger.kernel.org
Subject: git-pull-request for omap2-upstream branch for next merge window (Was: [PATCH 00/16] Omap2 patches for post 2.6.26)
Date: Sat, 23 Aug 2008 16:37:12 -0700	[thread overview]
Message-ID: <20080823233711.GM4713@atomide.com> (raw)
In-Reply-To: <20080820072310.GA28862@atomide.com>

* Tony Lindgren <tony@atomide.com> [080820 00:23]:
> Hi,
> 
> * Russell King - ARM Linux <linux@arm.linux.org.uk> [080820 00:23]:
> > On Fri, Jun 06, 2008 at 06:47:41PM -0700, Tony Lindgren wrote:
> > > This patch series contains various omap2 patchs from linux-omap tree.
> > > Big chunk of the patches still improve the clock code. Also more
> > > clean-up to allow compiling omap2 and omap3 support into the same
> > > kernel. The patch also adds core omap3430 support, but no board
> > > files or PM at at this point.
> > 
> > Apart from the comments I've made, the rest seem "fine" as far as I can
> > tell.

<snip>

Here's the pull request for you assuming your don't have other comments.

I'll be out of town next week, so if there are other comments I won't
be able to refresh the patches until I get back.

Regards,

Tony


The following changes since commit dcac5512382d8df4476ce2e9c13e9540b3801d32:
  Russell King (1):
        Merge branch 'omap2-clock' of git://git.kernel.org/.../tmlind/linux-omap-2.6.git

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git omap2-upstream

Jouni Hogander (1):
      ARM: OMAP2 Provide function to enable/disable uart clocks

Kevin Hilman (1):
      ARM: OMAP2: Implement CPUfreq frequency table based on PRCM table

Paul Walmsley (6):
      ARM: OMAP2: Add non-CORE DPLL rate set code and M,N programming
      ARM: OMAP: Fix sparse, checkpatch warnings in OMAP2/3 PRCM/PM code
      ARM: OMAP2: Move sys_clkout2 clk to core_clkdm
      ARM: OMAP2: Add missing SSI L4 interface clock
      ARM: OMAP2: Fix sparse, checkpatch warnings fro GPMC code
      ARM: OMAP2: Fix sparse, checkpatch warnings in OMAP2/3 IRQ code

Syed Mohammed Khasim (1):
      ARM: OMAP2: Add minimal omap3430 support

Tony Lindgren (5):
      ARM: OMAP2: Move sleep.S into sleep24xx.S
      ARM: OMAP2: Remove OMAP_PRM_REGADDR
      ARM: OMAP2: Remove OMAP_CM_REGADDR
      ARM: OMAP2: Use omap_globals for CPU detection for multi-omap
      ARM: OMAP2: Misc updates from linux-omap tree

Vikram Pandita (1):
      ARM: OMAP2: Add pinmux support for omap34xx

 arch/arm/mach-omap1/devices.c                   |    2 +-
 arch/arm/mach-omap2/Kconfig                     |   12 +-
 arch/arm/mach-omap2/Makefile                    |    6 +-
 arch/arm/mach-omap2/clock.c                     |  124 ++++----
 arch/arm/mach-omap2/clock.h                     |    3 +-
 arch/arm/mach-omap2/clock24xx.c                 |  148 ++++++--
 arch/arm/mach-omap2/clock24xx.h                 |  335 ++++++++++--------
 arch/arm/mach-omap2/clock34xx.c                 |  141 ++++++++-
 arch/arm/mach-omap2/clock34xx.h                 |  431 ++++++++++++-----------
 arch/arm/mach-omap2/cm-regbits-34xx.h           |    7 +
 arch/arm/mach-omap2/cm.h                        |   17 +-
 arch/arm/mach-omap2/devices.c                   |  229 ++++++++++--
 arch/arm/mach-omap2/gpmc.c                      |   70 +++--
 arch/arm/mach-omap2/id.c                        |   67 +++-
 arch/arm/mach-omap2/io.c                        |  147 ++++++--
 arch/arm/mach-omap2/irq.c                       |   66 ++--
 arch/arm/mach-omap2/memory.c                    |    3 +-
 arch/arm/mach-omap2/memory.h                    |    7 +
 arch/arm/mach-omap2/mux.c                       |  186 ++++++++++-
 arch/arm/mach-omap2/pm.c                        |    4 +-
 arch/arm/mach-omap2/prm-regbits-34xx.h          |    9 +
 arch/arm/mach-omap2/prm.h                       |  166 ++++-----
 arch/arm/mach-omap2/serial.c                    |  112 +++----
 arch/arm/mach-omap2/{sleep.S => sleep24xx.S}    |   32 +-
 arch/arm/mach-omap2/sram242x.S                  |    5 +
 arch/arm/mach-omap2/sram243x.S                  |    5 +
 arch/arm/plat-omap/Kconfig                      |    9 +-
 arch/arm/plat-omap/common.c                     |    5 +
 arch/arm/plat-omap/cpu-omap.c                   |   57 +++-
 arch/arm/plat-omap/devices.c                    |  116 +++++--
 arch/arm/plat-omap/include/mach/board-2430sdp.h |    6 +-
 arch/arm/plat-omap/include/mach/board-apollon.h |    6 +
 arch/arm/plat-omap/include/mach/board-h4.h      |    5 +-
 arch/arm/plat-omap/include/mach/board.h         |    2 +
 arch/arm/plat-omap/include/mach/clock.h         |   11 +-
 arch/arm/plat-omap/include/mach/common.h        |    8 +
 arch/arm/plat-omap/include/mach/control.h       |   17 +-
 arch/arm/plat-omap/include/mach/cpu.h           |    5 +
 arch/arm/plat-omap/include/mach/debug-macro.S   |   12 +
 arch/arm/plat-omap/include/mach/entry-macro.S   |   12 +-
 arch/arm/plat-omap/include/mach/gpio.h          |    2 +
 arch/arm/plat-omap/include/mach/gpmc.h          |    7 +
 arch/arm/plat-omap/include/mach/hardware.h      |    2 +-
 arch/arm/plat-omap/include/mach/io.h            |   57 +++
 arch/arm/plat-omap/include/mach/irqs.h          |   71 ++++
 arch/arm/plat-omap/include/mach/mcbsp.h         |    2 +-
 arch/arm/plat-omap/include/mach/memory.h        |    2 +-
 arch/arm/plat-omap/include/mach/mmc.h           |    4 +
 arch/arm/plat-omap/include/mach/mux.h           |  147 +++++++-
 arch/arm/plat-omap/include/mach/omap1510.h      |    2 +
 arch/arm/plat-omap/include/mach/omap16xx.h      |    7 +-
 arch/arm/plat-omap/include/mach/omap24xx.h      |    2 +-
 arch/arm/plat-omap/include/mach/omapfb.h        |    3 +
 arch/arm/plat-omap/include/mach/pm.h            |    3 +-
 arch/arm/plat-omap/include/mach/powerdomain.h   |    1 +
 arch/arm/plat-omap/include/mach/prcm.h          |    5 +-
 arch/arm/plat-omap/include/mach/sdrc.h          |    2 +
 arch/arm/plat-omap/include/mach/serial.h        |    6 +
 arch/arm/plat-omap/include/mach/system.h        |    6 +-
 59 files changed, 2071 insertions(+), 865 deletions(-)
 rename arch/arm/mach-omap2/{sleep.S => sleep24xx.S} (85%)

  reply	other threads:[~2008-08-23 23:37 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-19 21:23 [PATCH 00/16] Omap2 patches for post 2.6.26 Russell King - ARM Linux
2008-08-20  7:23 ` Tony Lindgren
2008-08-23 23:37   ` Tony Lindgren [this message]
2008-08-26  8:06     ` git-pull-request for omap2-upstream branch for next merge window (Was: [PATCH 00/16] Omap2 patches for post 2.6.26) Russell King - ARM Linux
2008-08-26 16:01       ` Nicolas Pitre
2008-08-26 16:26         ` Russell King - ARM Linux
2008-08-26 17:34           ` Nicolas Pitre
2008-08-26 18:28             ` Nicolas Pitre
2008-08-26 18:49               ` Russell King - ARM Linux
2008-09-02 22:21                 ` Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080823233711.GM4713@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-arm-kernel@lists.arm.linux.org.uk \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is 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.