* Graphics on a mips-board
@ 2000-07-13 22:00 erik.niessen
2000-07-13 22:00 ` erik.niessen
2000-07-14 14:26 ` Dan Aizenstros
0 siblings, 2 replies; 3+ messages in thread
From: erik.niessen @ 2000-07-13 22:00 UTC (permalink / raw)
To: linux-mips
[-- Attachment #1: MEMO 07/13/00 23:59:24 --]
[-- Type: text/plain, Size: 1657 bytes --]
Hello,
I have the ide-controller running on my mips-board. My next step will be to get some graphics out of this box. On the board is an onboard graphics chip and according to the specs it is VGA compatible.
I am using the serial-console for debugging and for sending characters to the box. My source tree is based on kernel 2.2.12.
Because the chip is VGA compatible I try to get the VGA16 framebuffer running on the box. After enabling the VGA16 framebuffer I receive the following output:
Jumping to image at 800605DCh...
Detected 16MB of memory.
Loading R4000/MIPS32 MMU routines.
CPU revision is: 000028a0
Primary instruction cache 32kb, linesize 32 bytes
Primary data cache 32kb, linesize 32 bytes
Linux version 2.2.12 (eniessen@psvcas16) (gcc version egcs-2.90.29 980515 (egcs-
1.0.3 release)) #10 Thu Jul 13 13:45:19 PDT 2000
calculating r4koff... 000f4240(1000000)
CPU frequency 200.00 MHz
Console: colour VGA+ 80x50
Calibrating delay loop... 199.88 BogoMIPS
Memory: 12652k/16380k available (616k kernel code, 2724k data)
Checking for 'wait' instruction... available.
POSIX conformance testing by UNIFIX
PCI: Probing PCI hardware
Found SAA9730 at b2800000
Linux NET4.0 for Linux 2.2
Based upon Swansea University Computer Society NET3.039
Starting kswapd v 1.1.1.1
vga16fb: initializing
vga16fb: mapped to 0xa00a0000
Console: switching to colour frame buffer device 80x30
It is doing the take_over_console but when I check the output of my VGA-connector there is no signal. Someone an idea how I can debug this???
Has somebody any experience with framebuffers on a mips?
Any hints/links/tips would be welcome,
Thanks for your time,
Erik
^ permalink raw reply [flat|nested] 3+ messages in thread
* Graphics on a mips-board
2000-07-13 22:00 Graphics on a mips-board erik.niessen
@ 2000-07-13 22:00 ` erik.niessen
2000-07-14 14:26 ` Dan Aizenstros
1 sibling, 0 replies; 3+ messages in thread
From: erik.niessen @ 2000-07-13 22:00 UTC (permalink / raw)
To: linux-mips
[-- Attachment #1: MEMO 07/13/00 23:59:24 --]
[-- Type: text/plain, Size: 1657 bytes --]
Hello,
I have the ide-controller running on my mips-board. My next step will be to get some graphics out of this box. On the board is an onboard graphics chip and according to the specs it is VGA compatible.
I am using the serial-console for debugging and for sending characters to the box. My source tree is based on kernel 2.2.12.
Because the chip is VGA compatible I try to get the VGA16 framebuffer running on the box. After enabling the VGA16 framebuffer I receive the following output:
Jumping to image at 800605DCh...
Detected 16MB of memory.
Loading R4000/MIPS32 MMU routines.
CPU revision is: 000028a0
Primary instruction cache 32kb, linesize 32 bytes
Primary data cache 32kb, linesize 32 bytes
Linux version 2.2.12 (eniessen@psvcas16) (gcc version egcs-2.90.29 980515 (egcs-
1.0.3 release)) #10 Thu Jul 13 13:45:19 PDT 2000
calculating r4koff... 000f4240(1000000)
CPU frequency 200.00 MHz
Console: colour VGA+ 80x50
Calibrating delay loop... 199.88 BogoMIPS
Memory: 12652k/16380k available (616k kernel code, 2724k data)
Checking for 'wait' instruction... available.
POSIX conformance testing by UNIFIX
PCI: Probing PCI hardware
Found SAA9730 at b2800000
Linux NET4.0 for Linux 2.2
Based upon Swansea University Computer Society NET3.039
Starting kswapd v 1.1.1.1
vga16fb: initializing
vga16fb: mapped to 0xa00a0000
Console: switching to colour frame buffer device 80x30
It is doing the take_over_console but when I check the output of my VGA-connector there is no signal. Someone an idea how I can debug this???
Has somebody any experience with framebuffers on a mips?
Any hints/links/tips would be welcome,
Thanks for your time,
Erik
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Graphics on a mips-board
2000-07-13 22:00 Graphics on a mips-board erik.niessen
2000-07-13 22:00 ` erik.niessen
@ 2000-07-14 14:26 ` Dan Aizenstros
1 sibling, 0 replies; 3+ messages in thread
From: Dan Aizenstros @ 2000-07-14 14:26 UTC (permalink / raw)
To: erik.niessen; +Cc: linux-mips
Hello Erik,
I have used the VGA16 framebuffer with several PCI VGA adapters.
The mapped address of 0xa00a0000 is very likely wrong. The driver
is trying to access the framebuffer at the physical address of
0x000a0000.
If you are using a PCI based VGA chip and the linux kernel from
the SGI sources then the mapping will be wrong because the kernel
assumes a 1 to 1 mapping of PCI memory space and it doesn't map
the first megabyte of PCI memory space. The problem is in the
ioremap function and the way that PCI memory space is mapped.
If you use the sources from the ftp.mips.com then you can get a
mapping that will allow access to the first megabyte of PCI memory.
The ioremap function in those sources is in my opinion is much
better.
Dan Aizenstros
Software Engineer
V3 Semiconductor Corp.
erik.niessen@philips.com wrote:
>
> Hello,
>
> I have the ide-controller running on my mips-board. My next step will be to get some graphics out of this box. On the board is an onboard graphics chip and according to the specs it is VGA compatible.
>
> I am using the serial-console for debugging and for sending characters to the box. My source tree is based on kernel 2.2.12.
>
> Because the chip is VGA compatible I try to get the VGA16 framebuffer running on the box. After enabling the VGA16 framebuffer I receive the following output:
>
> Jumping to image at 800605DCh...
> Detected 16MB of memory.
> Loading R4000/MIPS32 MMU routines.
> CPU revision is: 000028a0
> Primary instruction cache 32kb, linesize 32 bytes
> Primary data cache 32kb, linesize 32 bytes
> Linux version 2.2.12 (eniessen@psvcas16) (gcc version egcs-2.90.29 980515 (egcs-
> 1.0.3 release)) #10 Thu Jul 13 13:45:19 PDT 2000
> calculating r4koff... 000f4240(1000000)
> CPU frequency 200.00 MHz
> Console: colour VGA+ 80x50
> Calibrating delay loop... 199.88 BogoMIPS
> Memory: 12652k/16380k available (616k kernel code, 2724k data)
> Checking for 'wait' instruction... available.
> POSIX conformance testing by UNIFIX
> PCI: Probing PCI hardware
> Found SAA9730 at b2800000
> Linux NET4.0 for Linux 2.2
> Based upon Swansea University Computer Society NET3.039
> Starting kswapd v 1.1.1.1
> vga16fb: initializing
> vga16fb: mapped to 0xa00a0000
> Console: switching to colour frame buffer device 80x30
>
> It is doing the take_over_console but when I check the output of my VGA-connector there is no signal. Someone an idea how I can debug this???
>
> Has somebody any experience with framebuffers on a mips?
>
> Any hints/links/tips would be welcome,
>
> Thanks for your time,
>
> Erik
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2000-07-14 14:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-07-13 22:00 Graphics on a mips-board erik.niessen
2000-07-13 22:00 ` erik.niessen
2000-07-14 14:26 ` Dan Aizenstros
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox