more USB work

This commit is contained in:
Markus Fröschle
2017-01-15 14:14:40 +00:00
parent 06eeb67033
commit 9038bb15ae
13 changed files with 292 additions and 174 deletions

View File

@@ -283,10 +283,10 @@ static struct radeonfb_info rfb =
static struct fb_var_screeninfo default_fb =
{
.xres = 1280,
.yres = 1024,
.xres_virtual = 1280,
.yres_virtual = 1024 * 2, /* ensure we have accel offscreen space */
.xres = 640,
.yres = 480,
.xres_virtual = 640,
.yres_virtual = 480 * 2, /* ensure we have accel offscreen space */
.bits_per_pixel = 8,
.grayscale = 0,
.red = { .length = 8 },
@@ -295,13 +295,13 @@ static struct fb_var_screeninfo default_fb =
.activate = FB_ACTIVATE_NOW,
.height = -1,
.width = -1,
.pixclock = 7407,
.left_margin = 256,
.right_margin = 32,
.upper_margin = 34,
.lower_margin = 3,
.hsync_len = 144,
.vsync_len = 3,
.pixclock = 39721,
.left_margin = 40,
.right_margin = 24,
.upper_margin = 32,
.lower_margin = 11,
.hsync_len = 96,
.vsync_len = 2,
.vmode = FB_VMODE_NONINTERLACED,
.activate = FB_ACTIVATE_ALL | FB_ACTIVATE_FORCE | FB_ACTIVATE_NOW
};