From: Tony Lindgren <tony@atomide.com>
To: "Gadiyar, Anand" <gadiyar@ti.com>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>,
"linux-arm-kernel@lists.arm.linux.org.uk"
<linux-arm-kernel@lists.arm.linux.org.uk>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: Re: [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v3
Date: Tue, 31 Mar 2009 07:50:14 -0700 [thread overview]
Message-ID: <20090331145013.GB1685@atomide.com> (raw)
In-Reply-To: <5A47E75E594F054BAF48C5E4FC4B92AB02FB085DF0@dbde02.ent.ti.com>
[-- Attachment #1: Type: text/plain, Size: 1649 bytes --]
* Gadiyar, Anand <gadiyar@ti.com> [090331 06:38]:
> > > * Tony Lindgren <tony@atomide.com> [090316 11:14]:
> > > > * Russell King - ARM Linux <linux@arm.linux.org.uk> [090315 08:48]:
> > > > > On Sun, Mar 15, 2009 at 03:47:01PM +0000, Russell King - ARM Linux wrote:
> > > > > > On Fri, Mar 13, 2009 at 03:47:26PM -0700, Tony Lindgren wrote:
> > > > > > > +#include <mach/mcspi.h>
> > > > > > > +#include <mach/gpio.h>
> > > > > >
> > > > > > Shouldn't this be linux/gpio.h ?
> > > > >
> > > > > Note that Syed Mohammed Khasim <x0khasim@ti.com> address is not valid.
> > > >
> > > > Thanks, updated patch below.
> > >
> > > Oops, forgot to run stg refresh before sending out this, v3 below
> > >
> > > Tony
> > >
> >
> > Tony, Russell,
> >
> > Sorry for not catching this before it got merged.
> >
> > I could not run the 3430 SDP defconfig from mainline. The image hangs at
> > "Starting kernel ...". Enabling CONFIG_DEBUG_LL does not help.
> >
> > The omap_3430sdp_defconfig seems to have too many differences from the
> > defconfigs for other OMAP3 boards. In fact, it's not even similar to the
> > file present in the linux-omap tree.
> >
> > So I took the SDP defconfig from the l-o tree and replaced the one on
> > mainline with it. And we have a compile break in a display file. Removing
> > CONFIG_FB_OMAP works around the compile break.
> >
> > Please consider merging this patch (l-o SDP defconfig minus CONFIG_FB_OMAP)
> > so that we can finally use an SDP with mainline.
> >
>
>
> Oops. Now, this doesn't work for me either. Sorry for the noise.
What do you get with CONFIG_DEBUG_LL and the attached hack applied?
Tony
[-- Attachment #2: debug-ll.hack --]
[-- Type: text/plain, Size: 674 bytes --]
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -44,6 +44,10 @@ void asmlinkage __attribute__((weak)) early_printk(const char *fmt, ...)
#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
+#ifdef CONFIG_DEBUG_LL
+extern void printascii(char *);
+#endif
+
/* printk's without a loglevel use this.. */
#define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
@@ -667,6 +671,9 @@ asmlinkage int vprintk(const char *fmt, va_list args)
printed_len += vscnprintf(printk_buf + printed_len,
sizeof(printk_buf) - printed_len, fmt, args);
+#ifdef CONFIG_DEBUG_LL
+ printascii(printk_buf);
+#endif
/*
* Copy the output into log_buf. If the caller didn't provide
[-- Attachment #3: Type: text/plain, Size: 271 bytes --]
-------------------------------------------------------------------
List admin: http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm-kernel
FAQ: http://www.arm.linux.org.uk/mailinglists/faq.php
Etiquette: http://www.arm.linux.org.uk/mailinglists/etiquette.php
next prev parent reply other threads:[~2009-03-31 14:50 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-13 22:43 [PATCH 0/4] Omap board updates for merge window after 2.6.29 Tony Lindgren
2009-03-13 22:44 ` [PATCH 1/4] ARM: OMAP3: Add SMSC911X support to Overo platform (V2) Tony Lindgren
2009-03-15 15:38 ` Russell King - ARM Linux
2009-03-15 16:36 ` Steve Sakoman
2009-03-15 17:00 ` Russell King - ARM Linux
2009-03-15 17:13 ` Steve Sakoman
2009-03-15 17:37 ` Russell King - ARM Linux
2009-03-16 18:08 ` Tony Lindgren
2009-03-17 8:18 ` Steve.Glendinning
2009-03-13 22:46 ` [PATCH 2/4] ARM: OMAP3: Add ADS7846 touchscreen support to Overo platform Tony Lindgren
2009-03-16 20:38 ` [PATCH 2/4] ARM: OMAP3: Add ADS7846 touchscreen support to Overo platform, v2 Tony Lindgren
2009-03-16 21:57 ` Felipe Balbi
2009-03-24 3:54 ` [PATCH 2/4] ARM: OMAP3: Add ADS7846 touchscreen support to Overo platform, v3 Tony Lindgren
2009-03-13 22:47 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP Tony Lindgren
2009-03-15 15:47 ` Russell King - ARM Linux
2009-03-15 15:48 ` Russell King - ARM Linux
2009-03-16 18:14 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v2 Tony Lindgren
2009-03-16 18:22 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v3 Tony Lindgren
2009-03-23 19:05 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v4 Tony Lindgren
2009-03-31 11:42 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v3 Gadiyar, Anand
2009-03-31 13:37 ` Gadiyar, Anand
2009-03-31 14:50 ` Tony Lindgren [this message]
2009-03-31 18:48 ` Russell King - ARM Linux
2009-04-01 8:25 ` Gadiyar, Anand
2009-04-01 8:47 ` Syed Mohammed, Khasim
2009-04-01 19:04 ` Paul Walmsley
2009-04-01 22:07 ` Tony Lindgren
2009-04-01 23:18 ` Kevin Hilman
2009-04-02 0:00 ` [PATCH] ARM: Do early I/O mapping if spinlock debugging is enabled (Re: [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v3) Tony Lindgren
2009-04-02 7:38 ` Russell King - ARM Linux
2009-04-02 14:54 ` Tony Lindgren
2009-04-02 4:33 ` [PATCH 3/4] ARM: OMAP3: Add support for 3430 SDP, v3 Pandita, Vikram
2009-04-02 20:01 ` Pandita, Vikram
2009-04-03 19:14 ` Paul Walmsley
2009-04-03 19:25 ` Gadiyar, Anand
2009-04-04 11:18 ` Gadiyar, Anand
2009-04-03 23:12 ` Kevin Hilman
2009-04-03 23:29 ` Paul Walmsley
2009-03-13 22:48 ` [PATCH 4/4] ARM OMAP3: Initial support for Nokia RX-51 Tony Lindgren
2009-03-15 15:47 ` Russell King - ARM Linux
2009-03-16 18:21 ` [PATCH 4/4] ARM OMAP3: Initial support for Nokia RX-51, v2 Tony Lindgren
2009-03-24 2:52 ` [PATCH 0/4] Omap board updates for merge window after 2.6.29 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=20090331145013.GB1685@atomide.com \
--to=tony@atomide.com \
--cc=gadiyar@ti.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.