From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkwHF-00085E-7x for qemu-devel@nongnu.org; Thu, 15 May 2014 10:04:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WkwH9-0005l5-42 for qemu-devel@nongnu.org; Thu, 15 May 2014 10:04:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17785) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WkwH8-0005kc-Kq for qemu-devel@nongnu.org; Thu, 15 May 2014 10:04:47 -0400 Message-ID: <5374C97B.2000702@redhat.com> Date: Thu, 15 May 2014 16:04:43 +0200 From: Laszlo Ersek MIME-Version: 1.0 References: <98.08.11443.AD612735@epcpsbgx3.samsung.com> <5372241E.8090309@redhat.com> <007f01cf6f29$1eebdcf0$5cc396d0$%yoo@samsung.com> <53734BA7.3060008@redhat.com> <00f601cf6f69$7c131bb0$74395310$%yoo@samsung.com> <5373597A.5090004@redhat.com> <011a01cf7041$2f22aae0$8d6800a0$%yoo@samsung.com> In-Reply-To: <011a01cf7041$2f22aae0$8d6800a0$%yoo@samsung.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Where is vga-rom mapped in guest system memory? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jaeyong Yoo , qemu-devel@nongnu.org On 05/15/14 15:25, Jaeyong Yoo wrote: >> I rely on the qemu debug port rather than on serial: >> >> -debugcon file:debug.log -global isa-debugcon.iobase=0x402 >> >> Check the DEBUG_IO and DEBUG_LEVEL settings in the SeaBIOS config as well. > > Thanks Laszlo! Now I can see the log message in VirtualBox vgabios with qemu > debug port. > > By the way, I've got one more question, which is very strange for me. > > I tried to print a string and the values read by the string address do not look > correct. More specifically, I wrote the following code in VirtualBox vga-bios: > > char *msg = "Start Vgabios\n"; > > for (i = msg; ++i; *i != 0) > { > outb(0x402, *i); > } > > And, I expect to see the message "Start Vgabios" in the debug port, but it doesn't > work. If I object-dump the related parts in VirtualBox vga-bios, I can see that the > msg (msg = 0x7eea) properly contains "Start Vgabios". And, if I print the value of i > in vga-bios, it gives 0x7eea (which is correct address). Then I expect that *i should > be 'S' but *I gives zero. I checked the vga-rom size field and it properly covers the > actual size of vgarom. Then, I think qemu properly map the entire vgarom in the proper, > so it won't be an issue. > > Is there some issues with memory addressing that I'm missing? You are probably in real mode. The above outb() loop probably translates to something like this: 00000000 3E8A04 mov al,[ds:si] 00000003 BA0204 mov dx,0x402 00000006 EE out dx,al 00000007 46 inc si (objdump -S will allow you to see it exactly.) My take is that ds is not set correctly. You might have to set ds manually, or at least decorate the definition of the string with some gcc section attribute so that the compiler places the string in a section that will be "automatically" matched by ds. Or, you might be able to test it like this: - first, change the type of "msg" from "pointer to character" to "array of characters": char msg[] = "Start Vgabios\n" - second, give it automatic storage duration, rather than static storage duration. In English, make it local to the function containing the loop. Hopefully the compiler will generate code that places the string on the stack then, and then your loop body will (hopefully) look something like 00000000 368A02 mov al,[ss:bp+si] 00000003 BA0204 mov dx,0x402 00000006 EE out dx,al 00000007 46 inc si (Ie. work off your stack, where ss and bp should be "just right".) I'm just guessing of course. Laszlo