Searched refs:modedb (Results 1 - 19 of 19) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-at91/
H A Dboard-sam9rlek.c144 .modedb = at91_tft_vga_modes,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/boards/atstk1000/
H A Dsetup.c45 .modedb = ltv350qv_modes,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/mach-at32ap/
H A Dat32ap7000.c932 struct fb_videomode *modedb; local
936 * Do a deep copy of the fb data, monspecs and modedb. Make
946 modedb = kmemdup(monspecs->modedb, modedb_size, GFP_KERNEL);
947 if (!modedb)
949 monspecs->modedb = modedb;
1008 kfree(modedb);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A DMakefile11 modedb.o fbcvt.o
H A Dacornfb.c913 static struct fb_videomode modedb[] __initdata = {
1290 for (i = 0; i < ARRAY_SIZE(modedb); i++) {
1293 hs = modedb[i].refresh *
1294 (modedb[i].yres + modedb[i].upper_margin +
1295 modedb[i].lower_margin + modedb[i].vsync_len);
1296 if (modedb[i].xres == DEFAULT_XRES &&
1297 modedb[i].yres == DEFAULT_YRES &&
1298 modedb[
[all...]
H A Datmel_lcdfb.c142 * not actually set it. The stuff in modedb.c is a example of
557 ret = fb_find_mode(&info->var, info, NULL, info->monspecs.modedb,
558 info->monspecs.modedb_len, info->monspecs.modedb,
H A Dau1200fb.c371 .modedb = NULL,
402 .modedb = NULL,
432 .modedb = NULL,
462 .modedb = NULL,
492 .modedb = NULL,
522 .modedb = NULL,
552 .modedb = NULL,
585 .modedb = NULL,
618 .modedb = NULL,
1508 fbi->monspecs.modedb,
[all...]
H A Dcyblafb.c1151 // There is no reason to use modedb, a lot of video modes there would
1175 } modedb[5] = { local
1217 modedb[0].xres = hblankstart * 8;
1218 modedb[0].hsync_len = hsyncend * 8;
1219 modedb[0].right_margin = hsyncstart * 8 - modedb[0].xres;
1220 modedb[0].left_margin = (htotal + 5) * 8 - modedb[0].xres -
1221 modedb[0].right_margin - modedb[
[all...]
H A Dfbmon.c655 * @modedb: mode database to destroy
660 void fb_destroy_modedb(struct fb_videomode *modedb) argument
662 kfree(modedb);
951 specs->modedb = fb_create_modedb(edid, &specs->modedb_len);
954 if (specs->modedb[i].flag & FB_MODE_IS_DETAILED) {
1282 void fb_destroy_modedb(struct fb_videomode *modedb) argument
H A Dmodedb.c2 * linux/drivers/video/modedb.c -- Standard video mode database management
25 #define DPRINTK(fmt, args...) printk("modedb %s: " fmt, __FUNCTION__ , ## args)
36 static const struct fb_videomode modedb[] = { variable in typeref:struct:fb_videomode
502 db = modedb;
503 dbsize = ARRAY_SIZE(modedb);
599 DPRINTK("modedb CVT: CVT mode ok\n");
944 * @modedb: array of struct fb_videomode
948 void fb_videomode_to_modelist(const struct fb_videomode *modedb, int num, argument
956 if (fb_add_videomode(&modedb[i], head))
H A Dneofb.c1827 info->monspecs.modedb = kmalloc(sizeof(struct fb_videomode), GFP_KERNEL);
1828 if (!info->monspecs.modedb)
1852 memcpy(info->monspecs.modedb, &vesa_modes[3], sizeof(struct fb_videomode));
1858 memcpy(info->monspecs.modedb, &mode800x480, sizeof(struct fb_videomode));
1862 memcpy(info->monspecs.modedb, &vesa_modes[8], sizeof(struct fb_videomode));
1869 memcpy(info->monspecs.modedb, &vesa_modes[13], sizeof(struct fb_videomode));
1876 memcpy(info->monspecs.modedb, &vesa_modes[20], sizeof(struct fb_videomode));
1887 memcpy(info->monspecs.modedb, &vesa_modes[3], sizeof(struct fb_videomode));
2138 info->monspecs.modedb, 16)) {
2183 fb_destroy_modedb(info->monspecs.modedb);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/aty/
H A Dradeon_monitor.c725 * Build the modedb for head 1 (head 2 will come later), check panel infos
799 * Now build modedb from EDID
803 fb_videomode_to_modelist(info->monspecs.modedb,
806 rinfo->mon1_modedb = info->monspecs.modedb;
817 struct fb_videomode *modedb; local
835 modedb = rinfo->mon1_modedb;
839 modedb, dbsize, NULL, 8) == 0) {
854 info->monspecs.modedb,
862 if (!has_default_mode && info->monspecs.modedb != NULL) {
864 struct fb_videomode *modedb local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/i810/
H A Di810_main.c1921 if (specs->modedb == NULL)
1924 fb_videomode_to_modelist(specs->modedb, specs->modedb_len,
1926 if (specs->modedb != NULL) {
1946 fb_find_mode(&var, info, mode_option, specs->modedb,
1951 fb_destroy_modedb(specs->modedb);
1952 specs->modedb = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/intelfb/
H A Dintelfbdrv.c987 dinfo->info->monspecs.modedb,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/nvidia/
H A Dnv_setup.c585 fb_destroy_modedb(monB->modedb);
589 fb_destroy_modedb(monA->modedb);
599 fb_destroy_modedb(monB->modedb);
H A Dnvidia.c1095 struct fb_videomode modedb; local
1106 fb_videomode_to_modelist(info->monspecs.modedb,
1108 fb_var_to_videomode(&modedb, &nvidiafb_default_var);
1122 if (specs->modedb != NULL) {
1133 fb_find_mode(&nvidiafb_default_var, info, buf, specs->modedb,
1134 specs->modedb_len, &modedb, bpp);
1139 specs->modedb, specs->modedb_len, &modedb, bpp);
1146 fb_destroy_modedb(info->monspecs.modedb);
1147 info->monspecs.modedb
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/riva/
H A Dfbdev.c842 const struct fb_videomode *modedb)
845 var->xres = var->xres_virtual = modedb->xres;
846 var->yres = modedb->yres;
850 var->pixclock = modedb->pixclock;
851 var->left_margin = modedb->left_margin;
852 var->right_margin = modedb->right_margin;
853 var->upper_margin = modedb->upper_margin;
854 var->lower_margin = modedb->lower_margin;
855 var->hsync_len = modedb->hsync_len;
856 var->vsync_len = modedb
841 riva_update_var(struct fb_var_screeninfo *var, const struct fb_videomode *modedb) argument
1810 struct fb_videomode modedb; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/savage/
H A Dsavagefb_driver.c850 const struct fb_videomode *modedb)
852 var->xres = var->xres_virtual = modedb->xres;
853 var->yres = modedb->yres;
857 var->pixclock = modedb->pixclock;
858 var->left_margin = modedb->left_margin;
859 var->right_margin = modedb->right_margin;
860 var->upper_margin = modedb->upper_margin;
861 var->lower_margin = modedb->lower_margin;
862 var->hsync_len = modedb->hsync_len;
863 var->vsync_len = modedb
849 savage_update_var(struct fb_var_screeninfo *var, const struct fb_videomode *modedb) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dfb.h439 struct fb_videomode *modedb; /* mode database */ member in struct:fb_monspecs
1001 extern void fb_destroy_modedb(struct fb_videomode *modedb);
1005 /* drivers/video/modedb.c */
1024 extern void fb_videomode_to_modelist(const struct fb_videomode *modedb, int num,

Completed in 238 milliseconds