All of lore.kernel.org
 help / color / mirror / Atom feed
From: Florian Fainelli <florian@openwrt.org>
To: "Dea_RU" <dryukovz@mail.ru>
Cc: linux-mips@linux-mips.org
Subject: Re: TI AR7 7200 - no boot
Date: Wed, 3 Mar 2010 11:24:45 +0100	[thread overview]
Message-ID: <201003031124.46336.florian@openwrt.org> (raw)
In-Reply-To: <27766331.post@talk.nabble.com>

Hi,

On Wednesday 03 March 2010 11:11:31 Dea_RU wrote:
> I build kernel 2.6.33 for TI AR7 cpu 7200 version.
> 
> boot halt on console init stage/
[snip]
> 
> CONFIG_MIPS=y
> 
> CONFIG_AR7=y
> CONFIG_LOONGSON_UART_BASE=y
> CONFIG_RWSEM_GENERIC_SPINLOCK=y
> CONFIG_ARCH_SUPPORTS_OPROFILE=y
> CONFIG_GENERIC_FIND_NEXT_BIT=y
> CONFIG_GENERIC_HWEIGHT=y
> CONFIG_GENERIC_CALIBRATE_DELAY=y
> CONFIG_GENERIC_CLOCKEVENTS=y
> CONFIG_GENERIC_TIME=y
> CONFIG_GENERIC_CMOS_UPDATE=y
> CONFIG_SCHED_OMIT_FRAME_POINTER=y
> CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
> CONFIG_BOOT_RAW=y
[snip]
> 
> what wrong ????
> 
> kernels from open-wrt booting with log:
> ==============================
> (psbl)
> 
> Booting...
> Linux version 2.6.26.8 (agb@arrakis) (gcc version 4.1.2) #1 Wed Dec 2
> 15:14:35 UTC 2009
> console [early0] enabled
> CPU revision is: 00018448 (MIPS 4KEc)
> Clocks: Sync 2:1 mode
> Clocks: Setting CPU clock
> Adjusted requested frequency 211000000 to 211968000
> Clocks: base = 35328000, frequency = 211968000, prediv = 1, postdiv = 1,
> postdiv2 = -1, mul = 6
> Clocks: Setting DSP clock
> Clocks: base = 25000000, frequency = 105984000, prediv = 1, postdiv = 2,
> postdiv2 = 1, mul = 10
> Clocks: Setting USB clock
> Adjusted requested frequency 48000000 to 47863741
> Clocks: base = 105984000, frequency = 48000000, prediv = 1, postdiv = 31,
> postdiv2 = -1, mul = 14
> TI AR7 (TNETD7200), ID: 0x002b, Revision: 0x11
> Determined physical RAM map:
>  memory: 01000000 @ 14000000 (usable)
> Initrd not found or empty - disabling initrd
> Zone PFN ranges:
>   Normal      81920 ->    86016
> Movable zone start PFN for each node
> early_node_map[1] active PFN ranges
>     0:    81920 ->    86016
> Built 1 zonelists in Zone order, mobility grouping off.  Total pages: 4064
> Kernel command line: init=/etc/preinit rootfstype=squashfs,jffs2,
> console=ttyS0,9600n8
> Primary instruction cache 16kB, VIPT, 4-way, linesize 16 bytes.
> Primary data cache 8kB, 4-way, VIPT, no aliases, linesize 16 bytes
> PID hash table entries: 64 (order: 6, 256 bytes)
> Dentry cache hash table entries: 2048 (order: 1, 8192 bytes)
> Inode-cache hash table entries: 1024 (order: 0, 4096 bytes)
> Memory: 12560k/16384k available (2001k kernel code, 3824k reserved, 417k
> data, 124k init, 0k highmem)
> SLUB: Genslabs=6, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
> Mount-cache hash table entries: 512
> net_namespace: 644 bytes
> NET: Registered protocol family 16
> NET: Registered protocol family 2
> IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
> TCP established hash table entries: 512 (order: 0, 4096 bytes)
> TCP bind hash table entries: 512 (order: -1, 2048 bytes)
> TCP: Hash tables configured (established 512 bind 512)
> TCP reno registered
> NET: Registered protocol family 1
> squashfs: version 3.0 (2006/03/15) Phillip Lougher
> Registering mini_fo version $Id$
> JFFS2 version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
> msgmni has been set to 24
> io scheduler noop registered
> io scheduler deadline registered (default)
> Serial: 8250/16550 driver $Revision: 1.90 $ 2 ports, IRQ sharing disabled
> serial8250: ttyS0 at MMIO 0x8610e00 (irq = 15) is a TI-AR7
> 

You have one of these devices with bogus UART, (there are quite some out there)
can you try with the following patch and tell me if that gives you an usable console:

diff --git a/arch/mips/ar7/platform.c b/arch/mips/ar7/platform.c
index 246df7a..15cbeeb 100644
--- a/arch/mips/ar7/platform.c
+++ b/arch/mips/ar7/platform.c
@@ -551,6 +551,7 @@ static int __init ar7_register_uarts(void)
        uart_port.irq           = AR7_IRQ_UART0;
        uart_port.mapbase       = AR7_REGS_UART0;
        uart_port.membase       = ioremap(uart_port.mapbase, 256);
+       uart_port.flags         = UPF_IOREMAP | UPF_BOOT_AUTOCONF;

        res = early_serial_setup(&uart_port);
        if (res)
@@ -562,6 +563,7 @@ static int __init ar7_register_uarts(void)
                uart_port.irq           = AR7_IRQ_UART1;
                uart_port.mapbase       = UR8_REGS_UART1;
                uart_port.membase       = ioremap(uart_port.mapbase, 256);
+               uart_port.flags         = UPF_IOREMAP | UPF_BOOT_AUTOCONF;

                res = early_serial_setup(&uart_port);
                if (res)


Thanks.
-- 
Regards, Florian

  reply	other threads:[~2010-03-03 10:25 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-03 10:11 TI AR7 7200 - no boot Dea_RU
2010-03-03 10:24 ` Florian Fainelli [this message]
2010-03-03 10:59   ` Dea_RU
2010-03-03 12:58     ` Dea_RU
2010-03-03 13:04       ` Florian Fainelli
2010-03-03 14:24         ` Dea_RU
2010-03-03 19:20           ` Dea_RU
2010-03-03 20:05             ` Florian Fainelli
2010-03-03 15:54         ` Alexander Clouter

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=201003031124.46336.florian@openwrt.org \
    --to=florian@openwrt.org \
    --cc=dryukovz@mail.ru \
    --cc=linux-mips@linux-mips.org \
    /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.