* Re: Framebuffer Driver
[not found] <E1CrbHR-000AkB-00.kirdevv-mail-ru@f7.mail.ru>
@ 2005-01-20 21:59 ` Antonino A. Daplas
0 siblings, 0 replies; 4+ messages in thread
From: Antonino A. Daplas @ 2005-01-20 21:59 UTC (permalink / raw)
To: linux-fbdev-devel,
Кирилл Иванов
On Thursday 20 January 2005 20:19, Кирилл Иванов wrote:
> Hello
> My name is Kirill.
> I'am not professional programmer, but wrote framebuffer driver for
> my Cyberblade/i1 (Trident Microsystems) videocard.
> Driver work, but with troubles.
>
> Mode is only one for now -- 640x480-8@85.
> When module (i wrote it as module) loaded, kernel reports:
>
> Console: switching to colour frame buffer device 80x30
>
> Yes, console have 30 lines and 80 columns, but this 80 columns
> is very stretched over hirisontal. And font is very big and greasy
> and stretched too, although i set fb.fontname == "font_vga_8x16".
> So, image of console looks like zoomed.
If you do see 80 chars in the horizontal and 30 lines of text, maybe that
is the normal appearance, especially if you have a very large display? Also
if your monitor does not have a 4:3 aspect ratio, then the fonts could
appear stretched.
Why not try a higher resolution instead, at least 1024x768?
If you think the problem is different, why not post a link with a screenshot
of the console?
BTW, have you tried using other apps, such as X, fbtest, etc, and still
see the same problem?
Tony
-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
^ permalink raw reply [flat|nested] 4+ messages in thread
* framebuffer driver
@ 2014-12-12 8:08 Sudip Mukherjee
2014-12-12 10:43 ` Sudip Mukherjee
0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2014-12-12 8:08 UTC (permalink / raw)
To: kernelnewbies
Hi,
I have started with a pci based vga card. after booting i can see the
card in lspci , and after loading the driver as a module i can see
that the driver is linked with the device using lspci -k.
for initial testing, i am using the ioctl command FBIOPUT_CON2FBMAP ,
which is supposed to map a console to a particular framebuffer. But on
switching to that console I am not getting anything in the monitor. To
test if ioctl is getting executed, i inserted some debugging messages
as pr_err() in that particular case of the ioctl function in
drivers/video/fbdev/core/fbmem.c , but after calling the ioctl again i
am not getting those debug messages in dmesg.
Now i am in doubt about what is happening.. if ioctl is executed then
my debug messages should have been printed.
Can anyone please give me some hints about how to test this new vga
card... and also why the debug messages from ioctl is not getting
printed ..
i think its almost a similar thing as https://lkml.org/lkml/2009/12/2/288
thanks
sudip
^ permalink raw reply [flat|nested] 4+ messages in thread
* framebuffer driver
2014-12-12 8:08 framebuffer driver Sudip Mukherjee
@ 2014-12-12 10:43 ` Sudip Mukherjee
2014-12-13 10:24 ` Sudip Mukherjee
0 siblings, 1 reply; 4+ messages in thread
From: Sudip Mukherjee @ 2014-12-12 10:43 UTC (permalink / raw)
To: kernelnewbies
an update .. I am getting the debug messages from ioctl ... by mistake
I placed the debugging messages in FBIOGET_CON2FBMAP.
so if ioctl is executing, on pressing alt+ctrl+F2 the console should
display on the second monitor (if i am wrong), but nothing is showing
on that.
sudip
On Fri, Dec 12, 2014 at 1:38 PM, Sudip Mukherjee
<sudipm.mukherjee@gmail.com> wrote:
> Hi,
> I have started with a pci based vga card. after booting i can see the
> card in lspci , and after loading the driver as a module i can see
> that the driver is linked with the device using lspci -k.
>
> for initial testing, i am using the ioctl command FBIOPUT_CON2FBMAP ,
> which is supposed to map a console to a particular framebuffer. But on
> switching to that console I am not getting anything in the monitor. To
> test if ioctl is getting executed, i inserted some debugging messages
> as pr_err() in that particular case of the ioctl function in
> drivers/video/fbdev/core/fbmem.c , but after calling the ioctl again i
> am not getting those debug messages in dmesg.
> Now i am in doubt about what is happening.. if ioctl is executed then
> my debug messages should have been printed.
>
> Can anyone please give me some hints about how to test this new vga
> card... and also why the debug messages from ioctl is not getting
> printed ..
>
> i think its almost a similar thing as https://lkml.org/lkml/2009/12/2/288
>
>
> thanks
> sudip
^ permalink raw reply [flat|nested] 4+ messages in thread
* framebuffer driver
2014-12-12 10:43 ` Sudip Mukherjee
@ 2014-12-13 10:24 ` Sudip Mukherjee
0 siblings, 0 replies; 4+ messages in thread
From: Sudip Mukherjee @ 2014-12-13 10:24 UTC (permalink / raw)
To: kernelnewbies
another update.
For testing I disabled my on-board graphics. so when system is booting
up, it is not having any /dev/fb0 . I am now connecting to it through
ssh and loading the module. after module is inserted the board is
initialized and I got my /dev/fb0, I have also attached the dmesg. But
the monitor is still blank. :(
any hints please ...
thanks
sudip
On Fri, Dec 12, 2014 at 4:13 PM, Sudip Mukherjee
<sudipm.mukherjee@gmail.com> wrote:
> an update .. I am getting the debug messages from ioctl ... by mistake
> I placed the debugging messages in FBIOGET_CON2FBMAP.
> so if ioctl is executing, on pressing alt+ctrl+F2 the console should
> display on the second monitor (if i am wrong), but nothing is showing
> on that.
>
> sudip
>
>
> On Fri, Dec 12, 2014 at 1:38 PM, Sudip Mukherjee
> <sudipm.mukherjee@gmail.com> wrote:
>> Hi,
>> I have started with a pci based vga card. after booting i can see the
>> card in lspci , and after loading the driver as a module i can see
>> that the driver is linked with the device using lspci -k.
>>
>> for initial testing, i am using the ioctl command FBIOPUT_CON2FBMAP ,
>> which is supposed to map a console to a particular framebuffer. But on
>> switching to that console I am not getting anything in the monitor. To
>> test if ioctl is getting executed, i inserted some debugging messages
>> as pr_err() in that particular case of the ioctl function in
>> drivers/video/fbdev/core/fbmem.c , but after calling the ioctl again i
>> am not getting those debug messages in dmesg.
>> Now i am in doubt about what is happening.. if ioctl is executed then
>> my debug messages should have been printed.
>>
>> Can anyone please give me some hints about how to test this new vga
>> card... and also why the debug messages from ioctl is not getting
>> printed ..
>>
>> i think its almost a similar thing as https://lkml.org/lkml/2009/12/2/288
>>
>>
>> thanks
>> sudip
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-12-13 10:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <E1CrbHR-000AkB-00.kirdevv-mail-ru@f7.mail.ru>
2005-01-20 21:59 ` Framebuffer Driver Antonino A. Daplas
2014-12-12 8:08 framebuffer driver Sudip Mukherjee
2014-12-12 10:43 ` Sudip Mukherjee
2014-12-13 10:24 ` Sudip Mukherjee
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.