Re: Re: [PATCH] mach64 atari patch
From: Jon Smirl <hidden>
Date: 2005-08-09 23:44:47
On 8/8/05, James Simmons [off-list ref] wrote:
quoted
quoted
au1100fb int nohwcursor intelfb int hwcursor nvidia int hwcur cyberfb You need to remove this!!!! What I am arguing is that drivers with hardware cursor support should be able to turn off and on hardware cursor support. That is why the HWACCEL_CURSOR flag. Your test the fb_cursor field prevents this!!!If you want fbconsole to use the software cusor instead of the hardware cursor, that's between you and fbconsole to decide. Control over that choice needs to be in fbconsole, not the base fbdev. The fbdev drivers should just unconditionally offer the hardware cursor if they support it. It is up to the user of the cursor to choose whether to use it or ignore it.Finally you see the point I was making. I wanted it be very clear to every one here the implications of your changes. You remove the power to control the use of a hardware cursor from the driver. At this point driver writers need to speak up if they have no problem with this.
I'm not working on fbconsole so it did not occur to me what your issues was. My user space apps have always had control of whether they used the hardware cursor or not. You will need to ask Tony for a switch. Easiest way is to make it a module parameter on fbconsole. That way it will appear in /sys/module/fbconsole/parameters and you can use echo to set it from a script. There is no need for an ioctl. It only takes about five lines of code to implement this, something like this... fbconsole.c int use_hw_cursor = 0; module_parm(use_hw_cursor); if (fb_info->fb_cursor && use_hw_cursor) fb_info->fb_cursor(...) else softcursor
P.S
The patch still needs to broken into smaller pieces.
-- Jon Smirl jonsmirl@gmail.com ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf