<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>P {MARGIN-TOP: 0mm; MARGIN-BOTTOM: 0mm}</style>
</head>
<body>
<div style="FONT-FAMILY: Arial; FONT-SIZE: 10pt" id="ezFormProc_div">
<div style="FONT-FAMILY: Arial" id="msgbody">
<div>
<div style="LINE-HEIGHT: 15pt"><br>
Hi&nbsp;all,</div>
<div style="LINE-HEIGHT: 15pt">I managed to make the busybox shell appear on the LCD. I changed the frame buffer allocation method :</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;</div>
<div style="LINE-HEIGHT: 15pt">from&nbsp; (method 1)</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fb-&gt;fb.screen_base = dma_alloc_writecombine(&amp;pdev-&gt;dev, framesize, &amp;fbpaddr, GFP_KERNEL);</div>
<div style="LINE-HEIGHT: 15pt">to&nbsp; (method 2)&nbsp;</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fb-&gt;fb.screen_base = alloc_pages_exact(framesize, GFP_KERNEL | __GFP_ZERO);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fbpaddr = virt_to_phys(fb-&gt;fb.screen_base);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; framesize = PAGE_ALIGN(framesize);<br>
</div>
<div style="LINE-HEIGHT: 15pt">When the texts scroll up, it's somewhat bleared. like bit lines are not drawn hurridly..When the scroll is slow, it maintains the character form. Of course when it's not moving everything is clean..</div>
<div style="LINE-HEIGHT: 15pt">After the first 'enter' key, it stops. At this state, interrupt masks are all on.(all interrupts blocked)</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;</div>
<div style="LINE-HEIGHT: 15pt">I have some questions.</div>
<div style="LINE-HEIGHT: 15pt">Q1 : what's the difference of method 1 and 2? I understand in method 1, it tells the kernel that 'this region is for using DMA. so don't use cache.' and method 2 is telling 'just allocate this page aligned region'. Having written
 it, I reallize the new frame buffer area is using cache. That's maybe causing the blur. Anybody who can clear things a bit more? using method 1, the page fault handler fails.(probably due to not being able to expand stack?? I'm not sure what it's doing in
 do_sparc_fault function.)</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;</div>
<div style="LINE-HEIGHT: 15pt">Q2 : After the 'enter a key to activate this console' message, when I (first time very excitedly..) enter the Enter key, it stops. The interrupts are all masked. In what case does linux masks all the interupts? I had similar experience
 twice before (when there was cpu read/write timing error for a chip, and after dma_alloc_writecombine). This time it seems it's related to poke_blanked_console function..</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;</div>
<div style="LINE-HEIGHT: 15pt">Any hint will be deeply appreciated.</div>
<div style="LINE-HEIGHT: 15pt">Thanks,</div>
<div style="LINE-HEIGHT: 15pt">Chan</div>
<div style="LINE-HEIGHT: 15pt">&nbsp;</div>
</div>
</div>
</div>
</body>
</html>