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: twebb <taliaferro62@gmail.com>,
	linux-arm-kernel@lists.arm.linux.org.uk,
	linux-omap@vger.kernel.org
Subject: git pull request for minimal omap3 support one more time
Date: Fri, 10 Oct 2008 14:35:34 +0300	[thread overview]
Message-ID: <20081010113533.GU3044@atomide.com> (raw)
In-Reply-To: <20081010092520.GK3044@atomide.com>

* Tony Lindgren <tony@atomide.com> [081010 12:41]:
> * Tony Lindgren <tony@atomide.com> [081010 12:15]:
> > * Russell King - ARM Linux <linux@arm.linux.org.uk> [081010 11:42]:
> > > On Thu, Oct 09, 2008 at 06:17:25PM +0300, Tony Lindgren wrote:
> > > > Sure, I'll post a minimal LDP patch separately tomorrow. I don't have
> > > > an LDP so I can't verify it boots though.
> > > 
> > > Unfortunately, Linus has been unpredictable, and released 2.6.27 last
> > > night, rather than the usual one week after -rc9.
> > > 
> > > What this means is that the merge window is now open, and I shouldn't
> > > be accepting anything else into my kernel tree.
> > > 
> > > However, if you can get LDP in by this evening, I'll pull it into the
> > > tree.  That will be the final devel code merged into my tree for 2.6.28.
> > 
> > Sure. Here's the minimal board patch for LDP with it's defconfig
> > in the following mail. Also added to the omap3-upstream queue.
> 
> Here's the defconfig.

And here's the updated pull request for you with the LDP patches added.

I also changed the title of the Overo patches to say OMAP3 instead of
OMAP2 for consistency.

Note that this will also pull the already posted omap2-upstream as
omap3-upstream is based on that.

Tony


The following changes since commit 56f68556d7bbb51dd158c74deb09c783345bfbbd:
  Russell King (1):
        Merge unstable branch 'omap-rmk'

are available in the git repository at:

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

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

Nishant Kamat (2):
      ARM: OMAP3: Add basic board support for OMAP LDP
      ARM: OMAP3: Add default kernel config for OMAP LDP

Paul Walmsley (2):
      ARM: OMAP2: Fix sparse, checkpatch warnings fro GPMC code, use ioremap
      ARM: OMAP2: Fix sparse, checkpatch warnings in OMAP2/3 IRQ code

Steve Sakoman (2):
      ARM: OMAP3: Add support for the Gumstix Overo board (rev 3)
      ARM: OMAP3: Defconfig for the Gumstix Overo board (rev 3)

Syed Mohammed, Khasim (3):
      ARM: OMAP3: Add minimal omap3430 support
      ARM: OMAP3: Add minimal Beagle board support
      ARM: OMAP3: Add Beagle defconfig

Tony Lindgren (3):
      ARM: OMAP2: Move sleep.S into sleep24xx.S
      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/Makefile                                  |    1 +
 arch/arm/configs/omap3_beagle_defconfig            | 1321 ++++++++++++++
 arch/arm/configs/omap_ldp_defconfig                | 1044 +++++++++++
 arch/arm/configs/overo_defconfig                   | 1885 ++++++++++++++++++++
 arch/arm/mach-omap1/devices.c                      |    2 +-
 arch/arm/mach-omap2/Kconfig                        |   22 +-
 arch/arm/mach-omap2/Makefile                       |    9 +-
 arch/arm/mach-omap2/board-ldp.c                    |   86 +
 arch/arm/mach-omap2/board-omap3beagle.c            |  244 +++
 arch/arm/mach-omap2/board-overo.c                  |  242 +++
 arch/arm/mach-omap2/clock.h                        |    1 +
 arch/arm/mach-omap2/devices.c                      |  225 ++-
 arch/arm/mach-omap2/gpmc.c                         |   86 +-
 arch/arm/mach-omap2/id.c                           |   39 +-
 arch/arm/mach-omap2/io.c                           |  145 ++-
 arch/arm/mach-omap2/irq.c                          |   79 +-
 arch/arm/mach-omap2/memory.c                       |   14 +
 arch/arm/mach-omap2/memory.h                       |    7 +
 arch/arm/mach-omap2/mux.c                          |  245 +++-
 arch/arm/mach-omap2/serial.c                       |  100 +-
 arch/arm/mach-omap2/{sleep.S => sleep24xx.S}       |   32 +-
 arch/arm/mach-omap2/sram34xx.S                     |  179 ++
 arch/arm/mm/Kconfig                                |    2 +-
 arch/arm/plat-omap/Kconfig                         |    9 +-
 arch/arm/plat-omap/common.c                        |    4 +
 arch/arm/plat-omap/devices.c                       |   26 +-
 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-ldp.h        |   36 +
 .../arm/plat-omap/include/mach/board-omap3beagle.h |   33 +
 arch/arm/plat-omap/include/mach/board-overo.h      |   26 +
 arch/arm/plat-omap/include/mach/board.h            |    2 +
 arch/arm/plat-omap/include/mach/common.h           |    3 +
 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             |   12 +
 arch/arm/plat-omap/include/mach/hardware.h         |   10 +-
 arch/arm/plat-omap/include/mach/io.h               |    3 -
 arch/arm/plat-omap/include/mach/irqs.h             |   41 +
 arch/arm/plat-omap/include/mach/mcbsp.h            |    2 +-
 arch/arm/plat-omap/include/mach/memory.h           |    2 +-
 arch/arm/plat-omap/include/mach/mux.h              |  180 ++-
 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/sdrc.h             |    2 +
 arch/arm/plat-omap/include/mach/serial.h           |    6 +
 arch/arm/plat-omap/include/mach/sram.h             |   10 +
 arch/arm/plat-omap/include/mach/system.h           |    2 +-
 arch/arm/plat-omap/io.c                            |   32 +-
 arch/arm/plat-omap/sram.c                          |   53 +-
 57 files changed, 6261 insertions(+), 325 deletions(-)
 create mode 100644 arch/arm/configs/omap3_beagle_defconfig
 create mode 100644 arch/arm/configs/omap_ldp_defconfig
 create mode 100644 arch/arm/configs/overo_defconfig
 create mode 100644 arch/arm/mach-omap2/board-ldp.c
 create mode 100644 arch/arm/mach-omap2/board-omap3beagle.c
 create mode 100644 arch/arm/mach-omap2/board-overo.c
 rename arch/arm/mach-omap2/{sleep.S => sleep24xx.S} (85%)
 create mode 100644 arch/arm/mach-omap2/sram34xx.S
 create mode 100644 arch/arm/plat-omap/include/mach/board-ldp.h
 create mode 100644 arch/arm/plat-omap/include/mach/board-omap3beagle.h
 create mode 100644 arch/arm/plat-omap/include/mach/board-overo.h

  reply	other threads:[~2008-10-10 11:35 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-03 12:09 [PATCH 0/0] Add minimal omap34xx support Tony Lindgren
2008-10-03 12:09 ` [PATCH 01/05] ARM: OMAP2: Add minimal omap3430 support Tony Lindgren
2008-10-03 12:09   ` [PATCH 02/05] ARM: OMAP3: Add minimal Beagle board support Tony Lindgren
2008-10-03 12:09     ` [PATCH 03/05] ARM: OMAP3: Add Beagle defconfig Tony Lindgren
2008-10-03 12:09       ` [PATCH 04/05] ARM: OMAP2: Add support for the Gumstix Overo board (rev 3) Tony Lindgren
2008-10-03 12:09         ` [PATCH 05/05] ARM: OMAP2: defconfig " Tony Lindgren
2008-10-03 12:50         ` [PATCH 04/05] ARM: OMAP2: Add support " Tony Lindgren
2008-10-06 14:38           ` Tony Lindgren
2008-10-08  8:21       ` [PATCH 03/05] ARM: OMAP3: Add Beagle defconfig, v2 Tony Lindgren
2008-10-09 14:51     ` [PATCH 02/05] ARM: OMAP3: Add minimal Beagle board support Russell King - ARM Linux
2008-10-10  8:51       ` Tony Lindgren
2008-10-05  8:01   ` [PATCH 01/05] ARM: OMAP2: Add minimal omap3430 support Tony Lindgren
2008-10-06 14:35     ` Tony Lindgren
2008-10-08  8:19   ` [PATCH 01/05] ARM: OMAP2: Add minimal omap3430 support, v2 Tony Lindgren
2008-10-09 14:47   ` [PATCH 01/05] ARM: OMAP2: Add minimal omap3430 support Russell King - ARM Linux
2008-10-09 15:09     ` Tony Lindgren
2008-10-03 15:52 ` [PATCH 0/0] Add minimal omap34xx support twebb
2008-10-04  7:05   ` Tony Lindgren
2008-10-04 12:42     ` twebb
2008-10-04 20:37       ` Felipe Balbi
2008-10-09 14:54     ` Russell King - ARM Linux
2008-10-09 15:17       ` Tony Lindgren
2008-10-10  7:32         ` Russell King - ARM Linux
2008-10-10  9:15           ` [PATCH] ARM: OMAP3: Add basic board support for OMAP LDP (Re: [PATCH 0/0] Add minimal omap34xx support) Tony Lindgren
2008-10-10  9:25             ` [PATCH] ARM: OMAP3: Add default kernel config " Tony Lindgren
2008-10-10 11:35               ` Tony Lindgren [this message]
2008-10-13 13:32                 ` git pull request for minimal omap3 support one more time Russell King - ARM Linux
2008-10-14 17:19                   ` Tony Lindgren
2008-10-14 18:51                     ` Russell King - ARM Linux
2008-10-14 20:35                       ` Tony Lindgren
2008-10-14 20:55                         ` Tony Lindgren
2008-10-15  6:02                     ` Jarkko Nikula
2008-10-15 18:34                       ` Tony Lindgren
2008-10-08  7:50 ` git pull request for minimal omap3 support (Re: [PATCH 0/0] Add minimal omap34xx support) Tony Lindgren
2008-10-08  8:12   ` Tony Lindgren
2008-10-08 14:58     ` 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=20081010113533.GU3044@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 \
    --cc=taliaferro62@gmail.com \
    /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.