* BigSur: garbled characters during boot
@ 2007-11-25 12:48 Martin Michlmayr
2007-11-25 13:28 ` Atsushi Nemoto
0 siblings, 1 reply; 5+ messages in thread
From: Martin Michlmayr @ 2007-11-25 12:48 UTC (permalink / raw)
To: linux-mips; +Cc: manoj.ekbote, mark.e.mason
When I boot a current kernel from git on a BigSur board I get some
garbled characters:
Synthesized TLB store handler fastpath (31 instructions).
Synthesized TLB modify handler fastpath (30 instructions).
��͡�х�������ɥ��遚����Bzɑ��遪b�������ѕͥ5R�Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
Memory: 250436k/257568k available (2561k kernel code, 6940k reserved, 826k data, 132k init, 0k highmem)
Mount-cache hash table entries: 512
Any idea what this might be?
--
Martin Michlmayr
http://www.cyrius.com/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BigSur: garbled characters during boot
2007-11-25 12:48 BigSur: garbled characters during boot Martin Michlmayr
@ 2007-11-25 13:28 ` Atsushi Nemoto
2007-11-25 13:43 ` Martin Michlmayr
2007-11-25 22:17 ` Thomas Bogendoerfer
0 siblings, 2 replies; 5+ messages in thread
From: Atsushi Nemoto @ 2007-11-25 13:28 UTC (permalink / raw)
To: tbm; +Cc: linux-mips, manoj.ekbote, mark.e.mason
On Sun, 25 Nov 2007 13:48:42 +0100, Martin Michlmayr <tbm@cyrius.com> wrote:
> When I boot a current kernel from git on a BigSur board I get some
> garbled characters:
>
> Synthesized TLB store handler fastpath (31 instructions).
> Synthesized TLB modify handler fastpath (30 instructions).
> ��͡�х�������ɥ��遚����Bzɑ��遪b�������ѕͥ5R�Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
> Memory: 250436k/257568k available (2561k kernel code, 6940k reserved, 826k data, 132k init, 0k highmem)
> Mount-cache hash table entries: 512
>
> Any idea what this might be?
Do you enable EARLY_PRINTK? If so, this might be the console-handover
issue. On the handover, "console handover: boot ..." message will be
printed both early console and new console. If they were same device,
drivers might be confused.
IIRC Maciej have tried to fix this issue a while ago on LKML.
---
Atsushi Nemoto
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BigSur: garbled characters during boot
2007-11-25 13:28 ` Atsushi Nemoto
@ 2007-11-25 13:43 ` Martin Michlmayr
2007-11-26 11:34 ` Maciej W. Rozycki
2007-11-25 22:17 ` Thomas Bogendoerfer
1 sibling, 1 reply; 5+ messages in thread
From: Martin Michlmayr @ 2007-11-25 13:43 UTC (permalink / raw)
To: linux-mips; +Cc: manoj.ekbote, mark.e.mason
* Atsushi Nemoto <anemo@mba.ocn.ne.jp> [2007-11-25 22:28]:
> Do you enable EARLY_PRINTK?
Yes.
> IIRC Maciej have tried to fix this issue a while ago on LKML.
Right, I think I remember that discussion. Did anything come out
of it?
--
Martin Michlmayr
http://www.cyrius.com/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BigSur: garbled characters during boot
2007-11-25 13:43 ` Martin Michlmayr
@ 2007-11-26 11:34 ` Maciej W. Rozycki
0 siblings, 0 replies; 5+ messages in thread
From: Maciej W. Rozycki @ 2007-11-26 11:34 UTC (permalink / raw)
To: Martin Michlmayr; +Cc: linux-mips, manoj.ekbote, mark.e.mason
On Sun, 25 Nov 2007, Martin Michlmayr wrote:
> > IIRC Maciej have tried to fix this issue a while ago on LKML.
>
> Right, I think I remember that discussion. Did anything come out
> of it?
The exact mess encountered is specific to the chip/board used. I haven't
seen too much of clutter on my SWARM, so I just disregarded the issue.
If this is found problematic, I may have a look at the driver to see if
anything can be done. At least CFE sources are available, so if it turns
out to be an issue there, it can be fixed too. All the relevant registers
in the DUART are r/w, so the state can easily be examined and preserved if
need be.
But please feel free to complain to the author of the change -- I am not
sure if the amount of breakage throughout systems is justified by the gain
from the additional message. And there may be a way to implement it in a
less intrusive way.
Maciej
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: BigSur: garbled characters during boot
2007-11-25 13:28 ` Atsushi Nemoto
2007-11-25 13:43 ` Martin Michlmayr
@ 2007-11-25 22:17 ` Thomas Bogendoerfer
1 sibling, 0 replies; 5+ messages in thread
From: Thomas Bogendoerfer @ 2007-11-25 22:17 UTC (permalink / raw)
To: Atsushi Nemoto; +Cc: tbm, linux-mips, manoj.ekbote, mark.e.mason
On Sun, Nov 25, 2007 at 10:28:03PM +0900, Atsushi Nemoto wrote:
> Do you enable EARLY_PRINTK? If so, this might be the console-handover
> issue. On the handover, "console handover: boot ..." message will be
> printed both early console and new console. If they were same device,
> drivers might be confused.
it will not be printed on both consoles, but while early console is
active the real console driver does things to the serial chip,
which might confuse the early console driver/prom.
> IIRC Maciej have tried to fix this issue a while ago on LKML.
this didn't work out for ip22zilog, so I digged through the mess. I
solved the problem by setting up the chip in one go. Before there
was some chip setup during probing, which killed prom_putchar().
Thomas
--
Crap can work. Given enough thrust pigs will fly, but it's not necessary a
good idea. [ RFC1925, 2.3 ]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-11-26 11:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-25 12:48 BigSur: garbled characters during boot Martin Michlmayr
2007-11-25 13:28 ` Atsushi Nemoto
2007-11-25 13:43 ` Martin Michlmayr
2007-11-26 11:34 ` Maciej W. Rozycki
2007-11-25 22:17 ` Thomas Bogendoerfer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox