2006-11-26 11:13:41 -07:00
|
|
|
/*
|
2011-11-05 07:32:40 -06:00
|
|
|
* Copyright © 1999 Keith Packard
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <kdrive-config.h>
|
|
|
|
#endif
|
|
|
|
#include "fbdev.h"
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
2014-05-02 13:27:46 -06:00
|
|
|
const char *fbdevDevicePath = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevInitialize(KdCardInfo * card, FbdevPriv * priv)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
unsigned long off;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (fbdevDevicePath == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevDevicePath = "/dev/fb0";
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((priv->fd = open(fbdevDevicePath, O_RDWR)) < 0) {
|
|
|
|
ErrorF("Error opening framebuffer %s: %s\n",
|
|
|
|
fbdevDevicePath, strerror(errno));
|
2006-11-26 11:13:41 -07:00
|
|
|
return FALSE;
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/* quiet valgrind */
|
2012-06-10 07:21:05 -06:00
|
|
|
memset(&priv->fix, '\0', sizeof(priv->fix));
|
2010-07-27 13:02:24 -06:00
|
|
|
if (ioctl(priv->fd, FBIOGET_FSCREENINFO, &priv->fix) < 0) {
|
2012-06-10 07:21:05 -06:00
|
|
|
perror("Error with /dev/fb ioctl FIOGET_FSCREENINFO");
|
|
|
|
close(priv->fd);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
/* quiet valgrind */
|
2012-06-10 07:21:05 -06:00
|
|
|
memset(&priv->var, '\0', sizeof(priv->var));
|
2010-07-27 13:02:24 -06:00
|
|
|
if (ioctl(priv->fd, FBIOGET_VSCREENINFO, &priv->var) < 0) {
|
2012-06-10 07:21:05 -06:00
|
|
|
perror("Error with /dev/fb ioctl FIOGET_VSCREENINFO");
|
|
|
|
close(priv->fd);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
priv->fb_base = (char *) mmap((caddr_t) NULL,
|
|
|
|
priv->fix.smem_len,
|
|
|
|
PROT_READ | PROT_WRITE,
|
|
|
|
MAP_SHARED, priv->fd, 0);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (priv->fb_base == (char *) -1) {
|
2006-11-26 11:13:41 -07:00
|
|
|
perror("ERROR: mmap framebuffer fails!");
|
2012-06-10 07:21:05 -06:00
|
|
|
close(priv->fd);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
off = (unsigned long) priv->fix.smem_start % (unsigned long) getpagesize();
|
|
|
|
priv->fb = priv->fb_base + off;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevCardInit(KdCardInfo * card)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
priv = (FbdevPriv *) malloc(sizeof(FbdevPriv));
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!priv)
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!fbdevInitialize(card, priv)) {
|
|
|
|
free(priv);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
card->driver = priv;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Pixel
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevMakeContig(Pixel orig, Pixel others)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
Pixel low;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
low = lowbit(orig) >> 1;
|
|
|
|
while (low && (others & low) == 0) {
|
|
|
|
orig |= low;
|
|
|
|
low >>= 1;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return orig;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevModeSupported(KdScreenInfo * screen, const KdMonitorTiming * t)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevConvertMonitorTiming(const KdMonitorTiming * t,
|
|
|
|
struct fb_var_screeninfo *var)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
memset(var, 0, sizeof(struct fb_var_screeninfo));
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
var->xres = t->horizontal;
|
|
|
|
var->yres = t->vertical;
|
|
|
|
var->xres_virtual = t->horizontal;
|
|
|
|
var->yres_virtual = t->vertical;
|
|
|
|
var->xoffset = 0;
|
|
|
|
var->yoffset = 0;
|
|
|
|
var->pixclock = t->clock ? 1000000000 / t->clock : 0;
|
|
|
|
var->left_margin = t->hbp;
|
|
|
|
var->right_margin = t->hfp;
|
|
|
|
var->upper_margin = t->vbp;
|
|
|
|
var->lower_margin = t->vfp;
|
|
|
|
var->hsync_len = t->hblank - t->hfp - t->hbp;
|
|
|
|
var->vsync_len = t->vblank - t->vfp - t->vbp;
|
|
|
|
|
|
|
|
var->sync = 0;
|
|
|
|
var->vmode = 0;
|
|
|
|
|
|
|
|
if (t->hpol == KdSyncPositive)
|
2012-06-10 07:21:05 -06:00
|
|
|
var->sync |= FB_SYNC_HOR_HIGH_ACT;
|
2006-11-26 11:13:41 -07:00
|
|
|
if (t->vpol == KdSyncPositive)
|
2012-06-10 07:21:05 -06:00
|
|
|
var->sync |= FB_SYNC_VERT_HIGH_ACT;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevScreenInitialize(KdScreenInfo * screen, FbdevScrPriv * scrpriv)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = screen->card->driver;
|
|
|
|
Pixel allbits;
|
|
|
|
int depth;
|
|
|
|
Bool gray;
|
2006-11-26 11:13:41 -07:00
|
|
|
struct fb_var_screeninfo var;
|
|
|
|
const KdMonitorTiming *t;
|
|
|
|
int k;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
k = ioctl(priv->fd, FBIOGET_VSCREENINFO, &var);
|
|
|
|
|
|
|
|
if (!screen->width || !screen->height) {
|
|
|
|
if (k >= 0) {
|
|
|
|
screen->width = var.xres;
|
|
|
|
screen->height = var.yres;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
screen->width = 1024;
|
|
|
|
screen->height = 768;
|
|
|
|
}
|
|
|
|
screen->rate = 103; /* FIXME: should get proper value from fb driver */
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!screen->fb.depth) {
|
|
|
|
if (k >= 0)
|
|
|
|
screen->fb.depth = var.bits_per_pixel;
|
|
|
|
else
|
|
|
|
screen->fb.depth = 16;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((screen->width != var.xres) || (screen->height != var.yres)) {
|
|
|
|
t = KdFindMode(screen, fbdevModeSupported);
|
|
|
|
screen->rate = t->rate;
|
|
|
|
screen->width = t->horizontal;
|
|
|
|
screen->height = t->vertical;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
/* Now try setting the mode */
|
|
|
|
if (k < 0 || (t->horizontal != var.xres || t->vertical != var.yres))
|
|
|
|
fbdevConvertMonitorTiming(t, &var);
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
var.activate = FB_ACTIVATE_NOW;
|
2010-07-27 13:02:24 -06:00
|
|
|
var.bits_per_pixel = screen->fb.depth;
|
2006-11-26 11:13:41 -07:00
|
|
|
var.nonstd = 0;
|
|
|
|
var.grayscale = 0;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
k = ioctl(priv->fd, FBIOPUT_VSCREENINFO, &var);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (k < 0) {
|
|
|
|
fprintf(stderr, "error: %s\n", strerror(errno));
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Re-get the "fixed" parameters since they might have changed */
|
2012-06-10 07:21:05 -06:00
|
|
|
k = ioctl(priv->fd, FBIOGET_FSCREENINFO, &priv->fix);
|
2006-11-26 11:13:41 -07:00
|
|
|
if (k < 0)
|
2012-06-10 07:21:05 -06:00
|
|
|
perror("FBIOGET_FSCREENINFO");
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/* Now get the new screeninfo */
|
2012-06-10 07:21:05 -06:00
|
|
|
ioctl(priv->fd, FBIOGET_VSCREENINFO, &priv->var);
|
2006-11-26 11:13:41 -07:00
|
|
|
depth = priv->var.bits_per_pixel;
|
|
|
|
gray = priv->var.grayscale;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2014-05-02 13:27:46 -06:00
|
|
|
/* Calculate fix.line_length if it's zero */
|
|
|
|
if (!priv->fix.line_length)
|
|
|
|
priv->fix.line_length = (priv->var.xres_virtual * depth + 7) / 8;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
switch (priv->fix.visual) {
|
2014-05-02 13:27:46 -06:00
|
|
|
case FB_VISUAL_MONO01:
|
|
|
|
case FB_VISUAL_MONO10:
|
|
|
|
screen->fb.visuals = (1 << StaticGray);
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
case FB_VISUAL_PSEUDOCOLOR:
|
2014-05-02 13:27:46 -06:00
|
|
|
screen->fb.visuals = (1 << StaticGray);
|
|
|
|
if (priv->var.bits_per_pixel == 1) {
|
|
|
|
/* Override to monochrome, to have preallocated black/white */
|
|
|
|
priv->fix.visual = FB_VISUAL_MONO01;
|
|
|
|
} else if (gray) {
|
2012-06-10 07:21:05 -06:00
|
|
|
/* could also support GrayScale, but what's the point? */
|
2014-05-02 13:27:46 -06:00
|
|
|
} else {
|
2012-06-10 07:21:05 -06:00
|
|
|
screen->fb.visuals = ((1 << StaticGray) |
|
|
|
|
(1 << GrayScale) |
|
|
|
|
(1 << StaticColor) |
|
|
|
|
(1 << PseudoColor) |
|
|
|
|
(1 << TrueColor) | (1 << DirectColor));
|
|
|
|
}
|
|
|
|
screen->fb.blueMask = 0x00;
|
|
|
|
screen->fb.greenMask = 0x00;
|
|
|
|
screen->fb.redMask = 0x00;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
case FB_VISUAL_STATIC_PSEUDOCOLOR:
|
2012-06-10 07:21:05 -06:00
|
|
|
if (gray) {
|
|
|
|
screen->fb.visuals = (1 << StaticGray);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
screen->fb.visuals = (1 << StaticColor);
|
|
|
|
}
|
|
|
|
screen->fb.blueMask = 0x00;
|
|
|
|
screen->fb.greenMask = 0x00;
|
|
|
|
screen->fb.redMask = 0x00;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
case FB_VISUAL_TRUECOLOR:
|
|
|
|
case FB_VISUAL_DIRECTCOLOR:
|
2012-06-10 07:21:05 -06:00
|
|
|
screen->fb.visuals = (1 << TrueColor);
|
2006-11-26 11:13:41 -07:00
|
|
|
#define Mask(o,l) (((1 << l) - 1) << o)
|
2012-06-10 07:21:05 -06:00
|
|
|
screen->fb.redMask = Mask (priv->var.red.offset, priv->var.red.length);
|
|
|
|
screen->fb.greenMask =
|
|
|
|
Mask (priv->var.green.offset, priv->var.green.length);
|
|
|
|
screen->fb.blueMask =
|
|
|
|
Mask (priv->var.blue.offset, priv->var.blue.length);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a kludge so that Render will work -- fill in the gaps
|
|
|
|
* in the pixel
|
|
|
|
*/
|
|
|
|
screen->fb.redMask = fbdevMakeContig(screen->fb.redMask,
|
|
|
|
screen->fb.greenMask |
|
|
|
|
screen->fb.blueMask);
|
|
|
|
|
|
|
|
screen->fb.greenMask = fbdevMakeContig(screen->fb.greenMask,
|
|
|
|
screen->fb.redMask |
|
|
|
|
screen->fb.blueMask);
|
|
|
|
|
|
|
|
screen->fb.blueMask = fbdevMakeContig(screen->fb.blueMask,
|
|
|
|
screen->fb.redMask |
|
|
|
|
screen->fb.greenMask);
|
|
|
|
|
|
|
|
allbits =
|
|
|
|
screen->fb.redMask | screen->fb.greenMask | screen->fb.blueMask;
|
|
|
|
depth = 32;
|
|
|
|
while (depth && !(allbits & (1 << (depth - 1))))
|
|
|
|
depth--;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
default:
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
screen->fb.depth = depth;
|
|
|
|
screen->fb.bitsPerPixel = priv->var.bits_per_pixel;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
scrpriv->randr = screen->randr;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return fbdevMapFramebuffer(screen);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevScreenInit(KdScreenInfo * screen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
FbdevScrPriv *scrpriv;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
scrpriv = calloc(1, sizeof(FbdevScrPriv));
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!scrpriv)
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
screen->driver = scrpriv;
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!fbdevScreenInitialize(screen, scrpriv)) {
|
|
|
|
screen->driver = 0;
|
|
|
|
free(scrpriv);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void *
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevWindowLinear(ScreenPtr pScreen,
|
|
|
|
CARD32 row,
|
|
|
|
CARD32 offset, int mode, CARD32 *size, void *closure)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
if (!pScreenPriv->enabled)
|
2012-06-10 07:21:05 -06:00
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
*size = priv->fix.line_length;
|
|
|
|
return (CARD8 *) priv->fb + row * priv->fix.line_length + offset;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:27:46 -06:00
|
|
|
static void *
|
|
|
|
fbdevWindowAfb(ScreenPtr pScreen,
|
|
|
|
CARD32 row,
|
|
|
|
CARD32 offset, int mode, CARD32 *size, void *closure)
|
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
|
|
|
|
|
|
|
if (!pScreenPriv->enabled)
|
|
|
|
return 0;
|
|
|
|
/* offset to next plane */
|
|
|
|
*size = priv->var.yres_virtual * priv->fix.line_length;
|
|
|
|
return (CARD8 *) priv->fb + row * priv->fix.line_length + offset;
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevMapFramebuffer(KdScreenInfo * screen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevScrPriv *scrpriv = screen->driver;
|
|
|
|
KdPointerMatrix m;
|
|
|
|
FbdevPriv *priv = screen->card->driver;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2014-05-02 13:27:46 -06:00
|
|
|
if (scrpriv->randr != RR_Rotate_0 ||
|
|
|
|
priv->fix.type != FB_TYPE_PACKED_PIXELS)
|
2012-06-10 07:21:05 -06:00
|
|
|
scrpriv->shadow = TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
else
|
2012-06-10 07:21:05 -06:00
|
|
|
scrpriv->shadow = FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
KdComputePointerMatrix(&m, scrpriv->randr, screen->width, screen->height);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
KdSetPointerMatrix(&m);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
screen->width = priv->var.xres;
|
|
|
|
screen->height = priv->var.yres;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (scrpriv->shadow) {
|
|
|
|
if (!KdShadowFbAlloc(screen,
|
|
|
|
scrpriv->randr & (RR_Rotate_90 | RR_Rotate_270)))
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
2010-07-27 13:02:24 -06:00
|
|
|
screen->fb.byteStride = priv->fix.line_length;
|
|
|
|
screen->fb.pixelStride = (priv->fix.line_length * 8 /
|
2012-06-10 07:21:05 -06:00
|
|
|
priv->var.bits_per_pixel);
|
2010-07-27 13:02:24 -06:00
|
|
|
screen->fb.frameBuffer = (CARD8 *) (priv->fb);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevSetScreenSizes(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
KdScreenInfo *screen = pScreenPriv->screen;
|
|
|
|
FbdevScrPriv *scrpriv = screen->driver;
|
|
|
|
FbdevPriv *priv = screen->card->driver;
|
|
|
|
|
|
|
|
if (scrpriv->randr & (RR_Rotate_0 | RR_Rotate_180)) {
|
|
|
|
pScreen->width = priv->var.xres;
|
|
|
|
pScreen->height = priv->var.yres;
|
|
|
|
pScreen->mmWidth = screen->width_mm;
|
|
|
|
pScreen->mmHeight = screen->height_mm;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
pScreen->width = priv->var.yres;
|
|
|
|
pScreen->height = priv->var.xres;
|
|
|
|
pScreen->mmWidth = screen->height_mm;
|
|
|
|
pScreen->mmHeight = screen->width_mm;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevUnmapFramebuffer(KdScreenInfo * screen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
KdShadowFbFree(screen);
|
2006-11-26 11:13:41 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevSetShadow(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
KdScreenInfo *screen = pScreenPriv->screen;
|
|
|
|
FbdevScrPriv *scrpriv = screen->driver;
|
|
|
|
FbdevPriv *priv = screen->card->driver;
|
|
|
|
ShadowUpdateProc update;
|
|
|
|
ShadowWindowProc window;
|
|
|
|
int useYX = 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#ifdef __arm__
|
|
|
|
/* Use variant copy routines that always read left to right in the
|
|
|
|
shadow framebuffer. Reading vertical strips is exceptionally
|
|
|
|
slow on XScale due to cache effects. */
|
|
|
|
useYX = 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
window = fbdevWindowLinear;
|
|
|
|
update = 0;
|
2014-05-02 13:27:46 -06:00
|
|
|
switch (priv->fix.type) {
|
|
|
|
case FB_TYPE_PACKED_PIXELS:
|
|
|
|
if (scrpriv->randr)
|
|
|
|
if (priv->var.bits_per_pixel == 16) {
|
|
|
|
switch (scrpriv->randr) {
|
|
|
|
case RR_Rotate_90:
|
|
|
|
if (useYX)
|
|
|
|
update = shadowUpdateRotate16_90YX;
|
|
|
|
else
|
|
|
|
update = shadowUpdateRotate16_90;
|
|
|
|
break;
|
|
|
|
case RR_Rotate_180:
|
|
|
|
update = shadowUpdateRotate16_180;
|
|
|
|
break;
|
|
|
|
case RR_Rotate_270:
|
|
|
|
if (useYX)
|
|
|
|
update = shadowUpdateRotate16_270YX;
|
|
|
|
else
|
|
|
|
update = shadowUpdateRotate16_270;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
update = shadowUpdateRotate16;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
update = shadowUpdateRotatePacked;
|
|
|
|
else
|
|
|
|
update = shadowUpdatePacked;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FB_TYPE_PLANES:
|
|
|
|
window = fbdevWindowAfb;
|
|
|
|
switch (priv->var.bits_per_pixel) {
|
|
|
|
case 4:
|
|
|
|
update = shadowUpdateAfb4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
update = shadowUpdateAfb8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FatalError("Bitplanes with bpp %u are not yet supported\n",
|
|
|
|
priv->var.bits_per_pixel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FB_TYPE_INTERLEAVED_PLANES:
|
|
|
|
if (priv->fix.type_aux == 2) {
|
|
|
|
switch (priv->var.bits_per_pixel) {
|
|
|
|
case 4:
|
|
|
|
update = shadowUpdateIplan2p4;
|
2012-06-10 07:21:05 -06:00
|
|
|
break;
|
2014-05-02 13:27:46 -06:00
|
|
|
|
|
|
|
case 8:
|
|
|
|
update = shadowUpdateIplan2p8;
|
2012-06-10 07:21:05 -06:00
|
|
|
break;
|
2014-05-02 13:27:46 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
default:
|
2014-05-02 13:27:46 -06:00
|
|
|
FatalError("Atari interleaved bitplanes with bpp %u are not yet supported\n",
|
|
|
|
priv->var.bits_per_pixel);
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2014-05-02 13:27:46 -06:00
|
|
|
} else {
|
|
|
|
FatalError("Interleaved bitplanes with interleave %u are not yet supported\n",
|
|
|
|
priv->fix.type_aux);
|
2012-06-10 07:21:05 -06:00
|
|
|
}
|
2014-05-02 13:27:46 -06:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FB_TYPE_TEXT:
|
|
|
|
FatalError("Text frame buffers are not yet supported\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FB_TYPE_VGA_PLANES:
|
|
|
|
FatalError("VGA planes are not yet supported\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FatalError("Unsupported frame buffer type %u\n", priv->fix.type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return KdShadowSet(pScreen, scrpriv->randr, update, window);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef RANDR
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevRandRGetInfo(ScreenPtr pScreen, Rotation * rotations)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
KdScreenInfo *screen = pScreenPriv->screen;
|
|
|
|
FbdevScrPriv *scrpriv = screen->driver;
|
|
|
|
RRScreenSizePtr pSize;
|
|
|
|
Rotation randr;
|
|
|
|
int n;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
*rotations = RR_Rotate_All | RR_Reflect_All;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
for (n = 0; n < pScreen->numDepths; n++)
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pScreen->allowedDepths[n].numVids)
|
|
|
|
break;
|
2006-11-26 11:13:41 -07:00
|
|
|
if (n == pScreen->numDepths)
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pSize = RRRegisterSize(pScreen,
|
|
|
|
screen->width,
|
|
|
|
screen->height, screen->width_mm, screen->height_mm);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
randr = KdSubRotation(scrpriv->randr, screen->randr);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
RRSetCurrentConfig(pScreen, randr, 0, pSize);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevRandRSetConfig(ScreenPtr pScreen,
|
|
|
|
Rotation randr, int rate, RRScreenSizePtr pSize)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
KdScreenInfo *screen = pScreenPriv->screen;
|
|
|
|
FbdevScrPriv *scrpriv = screen->driver;
|
|
|
|
Bool wasEnabled = pScreenPriv->enabled;
|
|
|
|
FbdevScrPriv oldscr;
|
|
|
|
int oldwidth;
|
|
|
|
int oldheight;
|
|
|
|
int oldmmwidth;
|
|
|
|
int oldmmheight;
|
2014-05-02 13:27:46 -06:00
|
|
|
int newwidth, newheight, newmmwidth, newmmheight;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
if (screen->randr & (RR_Rotate_0 | RR_Rotate_180)) {
|
|
|
|
newwidth = pSize->width;
|
|
|
|
newheight = pSize->height;
|
2014-05-02 13:27:46 -06:00
|
|
|
newmmwidth = pSize->mmWidth;
|
|
|
|
newmmheight = pSize->mmHeight;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
else {
|
|
|
|
newwidth = pSize->height;
|
|
|
|
newheight = pSize->width;
|
2014-05-02 13:27:46 -06:00
|
|
|
newmmwidth = pSize->mmHeight;
|
|
|
|
newmmheight = pSize->mmWidth;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (wasEnabled)
|
2012-06-10 07:21:05 -06:00
|
|
|
KdDisableScreen(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
oldscr = *scrpriv;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
oldwidth = screen->width;
|
|
|
|
oldheight = screen->height;
|
|
|
|
oldmmwidth = pScreen->mmWidth;
|
|
|
|
oldmmheight = pScreen->mmHeight;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
* Set new configuration
|
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
scrpriv->randr = KdAddRotation(screen->randr, randr);
|
2014-05-02 13:27:46 -06:00
|
|
|
pScreen->width = newwidth;
|
|
|
|
pScreen->height = newheight;
|
|
|
|
pScreen->mmWidth = newmmwidth;
|
|
|
|
pScreen->mmHeight = newmmheight;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevUnmapFramebuffer(screen);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!fbdevMapFramebuffer(screen))
|
|
|
|
goto bail4;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
KdShadowUnset(screen->pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!fbdevSetShadow(screen->pScreen))
|
|
|
|
goto bail4;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevSetScreenSizes(screen->pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set frame buffer mapping
|
|
|
|
*/
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pScreen->ModifyPixmapHeader) (fbGetScreenPixmap(pScreen),
|
|
|
|
pScreen->width,
|
|
|
|
pScreen->height,
|
|
|
|
screen->fb.depth,
|
|
|
|
screen->fb.bitsPerPixel,
|
|
|
|
screen->fb.byteStride,
|
|
|
|
screen->fb.frameBuffer);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/* set the subpixel order */
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
KdSetSubpixelOrder(pScreen, scrpriv->randr);
|
2006-11-26 11:13:41 -07:00
|
|
|
if (wasEnabled)
|
2012-06-10 07:21:05 -06:00
|
|
|
KdEnableScreen(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
bail4:
|
|
|
|
fbdevUnmapFramebuffer(screen);
|
2006-11-26 11:13:41 -07:00
|
|
|
*scrpriv = oldscr;
|
2012-06-10 07:21:05 -06:00
|
|
|
(void) fbdevMapFramebuffer(screen);
|
2006-11-26 11:13:41 -07:00
|
|
|
pScreen->width = oldwidth;
|
|
|
|
pScreen->height = oldheight;
|
|
|
|
pScreen->mmWidth = oldmmwidth;
|
|
|
|
pScreen->mmHeight = oldmmheight;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
if (wasEnabled)
|
2012-06-10 07:21:05 -06:00
|
|
|
KdEnableScreen(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevRandRInit(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
rrScrPrivPtr pScrPriv;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!RRScreenInit(pScreen))
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
pScrPriv = rrGetScrPriv(pScreen);
|
|
|
|
pScrPriv->rrGetInfo = fbdevRandRGetInfo;
|
|
|
|
pScrPriv->rrSetConfig = fbdevRandRSetConfig;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevCreateColormap(ColormapPtr pmap)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
ScreenPtr pScreen = pmap->pScreen;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
|
|
|
VisualPtr pVisual;
|
|
|
|
int i;
|
|
|
|
int nent;
|
|
|
|
xColorItem *pdefs;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
switch (priv->fix.visual) {
|
2014-05-02 13:27:46 -06:00
|
|
|
case FB_VISUAL_MONO01:
|
|
|
|
pScreen->whitePixel = 0;
|
|
|
|
pScreen->blackPixel = 1;
|
|
|
|
pmap->red[0].co.local.red = 65535;
|
|
|
|
pmap->red[0].co.local.green = 65535;
|
|
|
|
pmap->red[0].co.local.blue = 65535;
|
|
|
|
pmap->red[1].co.local.red = 0;
|
|
|
|
pmap->red[1].co.local.green = 0;
|
|
|
|
pmap->red[1].co.local.blue = 0;
|
|
|
|
return TRUE;
|
|
|
|
case FB_VISUAL_MONO10:
|
|
|
|
pScreen->blackPixel = 0;
|
|
|
|
pScreen->whitePixel = 1;
|
|
|
|
pmap->red[0].co.local.red = 0;
|
|
|
|
pmap->red[0].co.local.green = 0;
|
|
|
|
pmap->red[0].co.local.blue = 0;
|
|
|
|
pmap->red[1].co.local.red = 65535;
|
|
|
|
pmap->red[1].co.local.green = 65535;
|
|
|
|
pmap->red[1].co.local.blue = 65535;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
case FB_VISUAL_STATIC_PSEUDOCOLOR:
|
2012-06-10 07:21:05 -06:00
|
|
|
pVisual = pmap->pVisual;
|
|
|
|
nent = pVisual->ColormapEntries;
|
2016-05-29 06:02:34 -06:00
|
|
|
pdefs = xallocarray(nent, sizeof(xColorItem));
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!pdefs)
|
|
|
|
return FALSE;
|
|
|
|
for (i = 0; i < nent; i++)
|
|
|
|
pdefs[i].pixel = i;
|
|
|
|
fbdevGetColors(pScreen, nent, pdefs);
|
|
|
|
for (i = 0; i < nent; i++) {
|
|
|
|
pmap->red[i].co.local.red = pdefs[i].red;
|
|
|
|
pmap->red[i].co.local.green = pdefs[i].green;
|
|
|
|
pmap->red[i].co.local.blue = pdefs[i].blue;
|
|
|
|
}
|
|
|
|
free(pdefs);
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
default:
|
2012-06-10 07:21:05 -06:00
|
|
|
return fbInitializeColormap(pmap);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevInitScreen(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
pScreen->CreateColormap = fbdevCreateColormap;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevFinishInitScreen(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!shadowSetup(pScreen))
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#ifdef RANDR
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!fbdevRandRInit(pScreen))
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevCreateResources(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
return fbdevSetShadow(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevPreserve(KdCardInfo * card)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevUpdateFbColormap(FbdevPriv * priv, int minidx, int maxidx)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
struct fb_cmap cmap;
|
|
|
|
|
|
|
|
cmap.start = minidx;
|
|
|
|
cmap.len = maxidx - minidx + 1;
|
|
|
|
cmap.red = &priv->red[minidx];
|
|
|
|
cmap.green = &priv->green[minidx];
|
|
|
|
cmap.blue = &priv->blue[minidx];
|
|
|
|
cmap.transp = 0;
|
|
|
|
|
|
|
|
return ioctl(priv->fd, FBIOPUTCMAP, &cmap);
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevEnable(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
|
|
|
int k;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
priv->var.activate = FB_ACTIVATE_NOW | FB_CHANGE_CMAP_VBL;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/* display it on the LCD */
|
2012-06-10 07:21:05 -06:00
|
|
|
k = ioctl(priv->fd, FBIOPUT_VSCREENINFO, &priv->var);
|
|
|
|
if (k < 0) {
|
|
|
|
perror("FBIOPUT_VSCREENINFO");
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (priv->fix.visual == FB_VISUAL_DIRECTCOLOR) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0;
|
|
|
|
i < (1 << priv->var.red.length) ||
|
|
|
|
i < (1 << priv->var.green.length) ||
|
|
|
|
i < (1 << priv->var.blue.length); i++) {
|
|
|
|
priv->red[i] = i * 65535 / ((1 << priv->var.red.length) - 1);
|
|
|
|
priv->green[i] = i * 65535 / ((1 << priv->var.green.length) - 1);
|
|
|
|
priv->blue[i] = i * 65535 / ((1 << priv->var.blue.length) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fbdevUpdateFbColormap(priv, 0, i);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevDPMS(ScreenPtr pScreen, int mode)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
2006-11-26 11:13:41 -07:00
|
|
|
static int oldmode = -1;
|
|
|
|
|
|
|
|
if (mode == oldmode)
|
2012-06-10 07:21:05 -06:00
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
#ifdef FBIOPUT_POWERMODE
|
2012-06-10 07:21:05 -06:00
|
|
|
if (ioctl(priv->fd, FBIOPUT_POWERMODE, &mode) >= 0) {
|
|
|
|
oldmode = mode;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef FBIOBLANK
|
2012-06-10 07:21:05 -06:00
|
|
|
if (ioctl(priv->fd, FBIOBLANK, mode ? mode + 1 : 0) >= 0) {
|
|
|
|
oldmode = mode;
|
|
|
|
return TRUE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevDisable(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevRestore(KdCardInfo * card)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevScreenFini(KdScreenInfo * screen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevCardFini(KdCardInfo * card)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = card->driver;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
munmap(priv->fb_base, priv->fix.smem_len);
|
|
|
|
close(priv->fd);
|
2010-12-05 08:36:02 -07:00
|
|
|
free(priv);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/*
|
|
|
|
* Retrieve actual colormap and return selected n entries in pdefs.
|
|
|
|
*/
|
2006-11-26 11:13:41 -07:00
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevGetColors(ScreenPtr pScreen, int n, xColorItem * pdefs)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
|
|
|
struct fb_cmap cmap;
|
|
|
|
int p;
|
|
|
|
int k;
|
|
|
|
int min, max;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
min = 256;
|
|
|
|
max = 0;
|
2012-06-10 07:21:05 -06:00
|
|
|
for (k = 0; k < n; k++) {
|
|
|
|
if (pdefs[k].pixel < min)
|
|
|
|
min = pdefs[k].pixel;
|
|
|
|
if (pdefs[k].pixel > max)
|
|
|
|
max = pdefs[k].pixel;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
cmap.start = min;
|
|
|
|
cmap.len = max - min + 1;
|
|
|
|
cmap.red = &priv->red[min];
|
2009-09-06 13:44:18 -06:00
|
|
|
cmap.green = &priv->green[min];
|
2006-11-26 11:13:41 -07:00
|
|
|
cmap.blue = &priv->blue[min];
|
|
|
|
cmap.transp = 0;
|
2012-06-10 07:21:05 -06:00
|
|
|
k = ioctl(priv->fd, FBIOGETCMAP, &cmap);
|
|
|
|
if (k < 0) {
|
|
|
|
perror("can't get colormap");
|
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2012-06-10 07:21:05 -06:00
|
|
|
while (n--) {
|
|
|
|
p = pdefs->pixel;
|
|
|
|
pdefs->red = priv->red[p];
|
|
|
|
pdefs->green = priv->green[p];
|
|
|
|
pdefs->blue = priv->blue[p];
|
|
|
|
pdefs++;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/*
|
|
|
|
* Change colormap by updating n entries described in pdefs.
|
|
|
|
*/
|
2006-11-26 11:13:41 -07:00
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
fbdevPutColors(ScreenPtr pScreen, int n, xColorItem * pdefs)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
KdScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
FbdevPriv *priv = pScreenPriv->card->driver;
|
|
|
|
int p;
|
|
|
|
int min, max;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
min = 256;
|
|
|
|
max = 0;
|
2012-06-10 07:21:05 -06:00
|
|
|
while (n--) {
|
|
|
|
p = pdefs->pixel;
|
|
|
|
priv->red[p] = pdefs->red;
|
|
|
|
priv->green[p] = pdefs->green;
|
|
|
|
priv->blue[p] = pdefs->blue;
|
|
|
|
if (p < min)
|
|
|
|
min = p;
|
|
|
|
if (p > max)
|
|
|
|
max = p;
|
|
|
|
pdefs++;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
fbdevUpdateFbColormap(priv, min, max);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|