fbmem.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726
  1. /*
  2. * linux/drivers/video/fbmem.c
  3. *
  4. * Copyright (C) 1994 Martin Schaller
  5. *
  6. * 2001 - Documented with DocBook
  7. * - Brad Douglas <brad@neruo.com>
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file COPYING in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/compat.h>
  15. #include <linux/types.h>
  16. #include <linux/errno.h>
  17. #include <linux/smp_lock.h>
  18. #include <linux/kernel.h>
  19. #include <linux/major.h>
  20. #include <linux/slab.h>
  21. #include <linux/mm.h>
  22. #include <linux/mman.h>
  23. #include <linux/vt.h>
  24. #include <linux/init.h>
  25. #include <linux/linux_logo.h>
  26. #include <linux/proc_fs.h>
  27. #include <linux/seq_file.h>
  28. #include <linux/console.h>
  29. #include <linux/kmod.h>
  30. #include <linux/err.h>
  31. #include <linux/device.h>
  32. #include <linux/efi.h>
  33. #include <linux/fb.h>
  34. #include <asm/fb.h>
  35. /*
  36. * Frame buffer device initialization and setup routines
  37. */
  38. #define FBPIXMAPSIZE (1024 * 8)
  39. struct fb_info *registered_fb[FB_MAX] __read_mostly;
  40. int num_registered_fb __read_mostly;
  41. /*
  42. * Helpers
  43. */
  44. int fb_get_color_depth(struct fb_var_screeninfo *var,
  45. struct fb_fix_screeninfo *fix)
  46. {
  47. int depth = 0;
  48. if (fix->visual == FB_VISUAL_MONO01 ||
  49. fix->visual == FB_VISUAL_MONO10)
  50. depth = 1;
  51. else {
  52. if (var->green.length == var->blue.length &&
  53. var->green.length == var->red.length &&
  54. var->green.offset == var->blue.offset &&
  55. var->green.offset == var->red.offset)
  56. depth = var->green.length;
  57. else
  58. depth = var->green.length + var->red.length +
  59. var->blue.length;
  60. }
  61. return depth;
  62. }
  63. EXPORT_SYMBOL(fb_get_color_depth);
  64. /*
  65. * Data padding functions.
  66. */
  67. void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
  68. {
  69. __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
  70. }
  71. EXPORT_SYMBOL(fb_pad_aligned_buffer);
  72. void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
  73. u32 shift_high, u32 shift_low, u32 mod)
  74. {
  75. u8 mask = (u8) (0xfff << shift_high), tmp;
  76. int i, j;
  77. for (i = height; i--; ) {
  78. for (j = 0; j < idx; j++) {
  79. tmp = dst[j];
  80. tmp &= mask;
  81. tmp |= *src >> shift_low;
  82. dst[j] = tmp;
  83. tmp = *src << shift_high;
  84. dst[j+1] = tmp;
  85. src++;
  86. }
  87. tmp = dst[idx];
  88. tmp &= mask;
  89. tmp |= *src >> shift_low;
  90. dst[idx] = tmp;
  91. if (shift_high < mod) {
  92. tmp = *src << shift_high;
  93. dst[idx+1] = tmp;
  94. }
  95. src++;
  96. dst += d_pitch;
  97. }
  98. }
  99. EXPORT_SYMBOL(fb_pad_unaligned_buffer);
  100. /*
  101. * we need to lock this section since fb_cursor
  102. * may use fb_imageblit()
  103. */
  104. char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
  105. {
  106. u32 align = buf->buf_align - 1, offset;
  107. char *addr = buf->addr;
  108. /* If IO mapped, we need to sync before access, no sharing of
  109. * the pixmap is done
  110. */
  111. if (buf->flags & FB_PIXMAP_IO) {
  112. if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
  113. info->fbops->fb_sync(info);
  114. return addr;
  115. }
  116. /* See if we fit in the remaining pixmap space */
  117. offset = buf->offset + align;
  118. offset &= ~align;
  119. if (offset + size > buf->size) {
  120. /* We do not fit. In order to be able to re-use the buffer,
  121. * we must ensure no asynchronous DMA'ing or whatever operation
  122. * is in progress, we sync for that.
  123. */
  124. if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
  125. info->fbops->fb_sync(info);
  126. offset = 0;
  127. }
  128. buf->offset = offset + size;
  129. addr += offset;
  130. return addr;
  131. }
  132. #ifdef CONFIG_LOGO
  133. static inline unsigned safe_shift(unsigned d, int n)
  134. {
  135. return n < 0 ? d >> -n : d << n;
  136. }
  137. static void fb_set_logocmap(struct fb_info *info,
  138. const struct linux_logo *logo)
  139. {
  140. struct fb_cmap palette_cmap;
  141. u16 palette_green[16];
  142. u16 palette_blue[16];
  143. u16 palette_red[16];
  144. int i, j, n;
  145. const unsigned char *clut = logo->clut;
  146. palette_cmap.start = 0;
  147. palette_cmap.len = 16;
  148. palette_cmap.red = palette_red;
  149. palette_cmap.green = palette_green;
  150. palette_cmap.blue = palette_blue;
  151. palette_cmap.transp = NULL;
  152. for (i = 0; i < logo->clutsize; i += n) {
  153. n = logo->clutsize - i;
  154. /* palette_cmap provides space for only 16 colors at once */
  155. if (n > 16)
  156. n = 16;
  157. palette_cmap.start = 32 + i;
  158. palette_cmap.len = n;
  159. for (j = 0; j < n; ++j) {
  160. palette_cmap.red[j] = clut[0] << 8 | clut[0];
  161. palette_cmap.green[j] = clut[1] << 8 | clut[1];
  162. palette_cmap.blue[j] = clut[2] << 8 | clut[2];
  163. clut += 3;
  164. }
  165. fb_set_cmap(&palette_cmap, info);
  166. }
  167. }
  168. static void fb_set_logo_truepalette(struct fb_info *info,
  169. const struct linux_logo *logo,
  170. u32 *palette)
  171. {
  172. static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
  173. unsigned char redmask, greenmask, bluemask;
  174. int redshift, greenshift, blueshift;
  175. int i;
  176. const unsigned char *clut = logo->clut;
  177. /*
  178. * We have to create a temporary palette since console palette is only
  179. * 16 colors long.
  180. */
  181. /* Bug: Doesn't obey msb_right ... (who needs that?) */
  182. redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
  183. greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
  184. bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
  185. redshift = info->var.red.offset - (8 - info->var.red.length);
  186. greenshift = info->var.green.offset - (8 - info->var.green.length);
  187. blueshift = info->var.blue.offset - (8 - info->var.blue.length);
  188. for ( i = 0; i < logo->clutsize; i++) {
  189. palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
  190. safe_shift((clut[1] & greenmask), greenshift) |
  191. safe_shift((clut[2] & bluemask), blueshift));
  192. clut += 3;
  193. }
  194. }
  195. static void fb_set_logo_directpalette(struct fb_info *info,
  196. const struct linux_logo *logo,
  197. u32 *palette)
  198. {
  199. int redshift, greenshift, blueshift;
  200. int i;
  201. redshift = info->var.red.offset;
  202. greenshift = info->var.green.offset;
  203. blueshift = info->var.blue.offset;
  204. for (i = 32; i < logo->clutsize; i++)
  205. palette[i] = i << redshift | i << greenshift | i << blueshift;
  206. }
  207. static void fb_set_logo(struct fb_info *info,
  208. const struct linux_logo *logo, u8 *dst,
  209. int depth)
  210. {
  211. int i, j, k;
  212. const u8 *src = logo->data;
  213. u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
  214. u8 fg = 1, d;
  215. switch (fb_get_color_depth(&info->var, &info->fix)) {
  216. case 1:
  217. fg = 1;
  218. break;
  219. case 2:
  220. fg = 3;
  221. break;
  222. default:
  223. fg = 7;
  224. break;
  225. }
  226. if (info->fix.visual == FB_VISUAL_MONO01 ||
  227. info->fix.visual == FB_VISUAL_MONO10)
  228. fg = ~((u8) (0xfff << info->var.green.length));
  229. switch (depth) {
  230. case 4:
  231. for (i = 0; i < logo->height; i++)
  232. for (j = 0; j < logo->width; src++) {
  233. *dst++ = *src >> 4;
  234. j++;
  235. if (j < logo->width) {
  236. *dst++ = *src & 0x0f;
  237. j++;
  238. }
  239. }
  240. break;
  241. case 1:
  242. for (i = 0; i < logo->height; i++) {
  243. for (j = 0; j < logo->width; src++) {
  244. d = *src ^ xor;
  245. for (k = 7; k >= 0; k--) {
  246. *dst++ = ((d >> k) & 1) ? fg : 0;
  247. j++;
  248. }
  249. }
  250. }
  251. break;
  252. }
  253. }
  254. /*
  255. * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
  256. * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
  257. * the visual format and color depth of the framebuffer, the DAC, the
  258. * pseudo_palette, and the logo data will be adjusted accordingly.
  259. *
  260. * Case 1 - linux_logo_clut224:
  261. * Color exceeds the number of console colors (16), thus we set the hardware DAC
  262. * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
  263. *
  264. * For visuals that require color info from the pseudo_palette, we also construct
  265. * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
  266. * will be set.
  267. *
  268. * Case 2 - linux_logo_vga16:
  269. * The number of colors just matches the console colors, thus there is no need
  270. * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
  271. * each byte contains color information for two pixels (upper and lower nibble).
  272. * To be consistent with fb_imageblit() usage, we therefore separate the two
  273. * nibbles into separate bytes. The "depth" flag will be set to 4.
  274. *
  275. * Case 3 - linux_logo_mono:
  276. * This is similar with Case 2. Each byte contains information for 8 pixels.
  277. * We isolate each bit and expand each into a byte. The "depth" flag will
  278. * be set to 1.
  279. */
  280. static struct logo_data {
  281. int depth;
  282. int needs_directpalette;
  283. int needs_truepalette;
  284. int needs_cmapreset;
  285. const struct linux_logo *logo;
  286. } fb_logo __read_mostly;
  287. static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
  288. {
  289. u32 size = width * height, i;
  290. out += size - 1;
  291. for (i = size; i--; )
  292. *out-- = *in++;
  293. }
  294. static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
  295. {
  296. int i, j, h = height - 1;
  297. for (i = 0; i < height; i++)
  298. for (j = 0; j < width; j++)
  299. out[height * j + h - i] = *in++;
  300. }
  301. static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
  302. {
  303. int i, j, w = width - 1;
  304. for (i = 0; i < height; i++)
  305. for (j = 0; j < width; j++)
  306. out[height * (w - j) + i] = *in++;
  307. }
  308. static void fb_rotate_logo(struct fb_info *info, u8 *dst,
  309. struct fb_image *image, int rotate)
  310. {
  311. u32 tmp;
  312. if (rotate == FB_ROTATE_UD) {
  313. fb_rotate_logo_ud(image->data, dst, image->width,
  314. image->height);
  315. image->dx = info->var.xres - image->width - image->dx;
  316. image->dy = info->var.yres - image->height - image->dy;
  317. } else if (rotate == FB_ROTATE_CW) {
  318. fb_rotate_logo_cw(image->data, dst, image->width,
  319. image->height);
  320. tmp = image->width;
  321. image->width = image->height;
  322. image->height = tmp;
  323. tmp = image->dy;
  324. image->dy = image->dx;
  325. image->dx = info->var.xres - image->width - tmp;
  326. } else if (rotate == FB_ROTATE_CCW) {
  327. fb_rotate_logo_ccw(image->data, dst, image->width,
  328. image->height);
  329. tmp = image->width;
  330. image->width = image->height;
  331. image->height = tmp;
  332. tmp = image->dx;
  333. image->dx = image->dy;
  334. image->dy = info->var.yres - image->height - tmp;
  335. }
  336. image->data = dst;
  337. }
  338. static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
  339. int rotate, unsigned int num)
  340. {
  341. unsigned int x;
  342. if (rotate == FB_ROTATE_UR) {
  343. for (x = 0;
  344. x < num && image->dx + image->width <= info->var.xres;
  345. x++) {
  346. info->fbops->fb_imageblit(info, image);
  347. image->dx += image->width + 8;
  348. }
  349. } else if (rotate == FB_ROTATE_UD) {
  350. for (x = 0; x < num && image->dx >= 0; x++) {
  351. info->fbops->fb_imageblit(info, image);
  352. image->dx -= image->width + 8;
  353. }
  354. } else if (rotate == FB_ROTATE_CW) {
  355. for (x = 0;
  356. x < num && image->dy + image->height <= info->var.yres;
  357. x++) {
  358. info->fbops->fb_imageblit(info, image);
  359. image->dy += image->height + 8;
  360. }
  361. } else if (rotate == FB_ROTATE_CCW) {
  362. for (x = 0; x < num && image->dy >= 0; x++) {
  363. info->fbops->fb_imageblit(info, image);
  364. image->dy -= image->height + 8;
  365. }
  366. }
  367. }
  368. static int fb_show_logo_line(struct fb_info *info, int rotate,
  369. const struct linux_logo *logo, int y,
  370. unsigned int n)
  371. {
  372. u32 *palette = NULL, *saved_pseudo_palette = NULL;
  373. unsigned char *logo_new = NULL, *logo_rotate = NULL;
  374. struct fb_image image;
  375. /* Return if the frame buffer is not mapped or suspended */
  376. if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
  377. info->flags & FBINFO_MODULE)
  378. return 0;
  379. image.depth = 8;
  380. image.data = logo->data;
  381. if (fb_logo.needs_cmapreset)
  382. fb_set_logocmap(info, logo);
  383. if (fb_logo.needs_truepalette ||
  384. fb_logo.needs_directpalette) {
  385. palette = kmalloc(256 * 4, GFP_KERNEL);
  386. if (palette == NULL)
  387. return 0;
  388. if (fb_logo.needs_truepalette)
  389. fb_set_logo_truepalette(info, logo, palette);
  390. else
  391. fb_set_logo_directpalette(info, logo, palette);
  392. saved_pseudo_palette = info->pseudo_palette;
  393. info->pseudo_palette = palette;
  394. }
  395. if (fb_logo.depth <= 4) {
  396. logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
  397. if (logo_new == NULL) {
  398. kfree(palette);
  399. if (saved_pseudo_palette)
  400. info->pseudo_palette = saved_pseudo_palette;
  401. return 0;
  402. }
  403. image.data = logo_new;
  404. fb_set_logo(info, logo, logo_new, fb_logo.depth);
  405. }
  406. image.dx = 0;
  407. image.dy = y;
  408. image.width = logo->width;
  409. image.height = logo->height;
  410. if (rotate) {
  411. logo_rotate = kmalloc(logo->width *
  412. logo->height, GFP_KERNEL);
  413. if (logo_rotate)
  414. fb_rotate_logo(info, logo_rotate, &image, rotate);
  415. }
  416. fb_do_show_logo(info, &image, rotate, n);
  417. kfree(palette);
  418. if (saved_pseudo_palette != NULL)
  419. info->pseudo_palette = saved_pseudo_palette;
  420. kfree(logo_new);
  421. kfree(logo_rotate);
  422. return logo->height;
  423. }
  424. #ifdef CONFIG_FB_LOGO_EXTRA
  425. #define FB_LOGO_EX_NUM_MAX 10
  426. static struct logo_data_extra {
  427. const struct linux_logo *logo;
  428. unsigned int n;
  429. } fb_logo_ex[FB_LOGO_EX_NUM_MAX];
  430. static unsigned int fb_logo_ex_num;
  431. void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
  432. {
  433. if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
  434. return;
  435. fb_logo_ex[fb_logo_ex_num].logo = logo;
  436. fb_logo_ex[fb_logo_ex_num].n = n;
  437. fb_logo_ex_num++;
  438. }
  439. static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
  440. unsigned int yres)
  441. {
  442. unsigned int i;
  443. /* FIXME: logo_ex supports only truecolor fb. */
  444. if (info->fix.visual != FB_VISUAL_TRUECOLOR)
  445. fb_logo_ex_num = 0;
  446. for (i = 0; i < fb_logo_ex_num; i++) {
  447. height += fb_logo_ex[i].logo->height;
  448. if (height > yres) {
  449. height -= fb_logo_ex[i].logo->height;
  450. fb_logo_ex_num = i;
  451. break;
  452. }
  453. }
  454. return height;
  455. }
  456. static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
  457. {
  458. unsigned int i;
  459. for (i = 0; i < fb_logo_ex_num; i++)
  460. y += fb_show_logo_line(info, rotate,
  461. fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
  462. return y;
  463. }
  464. #else /* !CONFIG_FB_LOGO_EXTRA */
  465. static inline int fb_prepare_extra_logos(struct fb_info *info,
  466. unsigned int height,
  467. unsigned int yres)
  468. {
  469. return height;
  470. }
  471. static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
  472. {
  473. return y;
  474. }
  475. #endif /* CONFIG_FB_LOGO_EXTRA */
  476. int fb_prepare_logo(struct fb_info *info, int rotate)
  477. {
  478. int depth = fb_get_color_depth(&info->var, &info->fix);
  479. unsigned int yres;
  480. memset(&fb_logo, 0, sizeof(struct logo_data));
  481. if (info->flags & FBINFO_MISC_TILEBLITTING ||
  482. info->flags & FBINFO_MODULE)
  483. return 0;
  484. if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
  485. depth = info->var.blue.length;
  486. if (info->var.red.length < depth)
  487. depth = info->var.red.length;
  488. if (info->var.green.length < depth)
  489. depth = info->var.green.length;
  490. }
  491. if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
  492. /* assume console colormap */
  493. depth = 4;
  494. }
  495. /* Return if no suitable logo was found */
  496. fb_logo.logo = fb_find_logo(depth);
  497. if (!fb_logo.logo) {
  498. return 0;
  499. }
  500. if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
  501. yres = info->var.yres;
  502. else
  503. yres = info->var.xres;
  504. if (fb_logo.logo->height > yres) {
  505. fb_logo.logo = NULL;
  506. return 0;
  507. }
  508. /* What depth we asked for might be different from what we get */
  509. if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
  510. fb_logo.depth = 8;
  511. else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
  512. fb_logo.depth = 4;
  513. else
  514. fb_logo.depth = 1;
  515. if (fb_logo.depth > 4 && depth > 4) {
  516. switch (info->fix.visual) {
  517. case FB_VISUAL_TRUECOLOR:
  518. fb_logo.needs_truepalette = 1;
  519. break;
  520. case FB_VISUAL_DIRECTCOLOR:
  521. fb_logo.needs_directpalette = 1;
  522. fb_logo.needs_cmapreset = 1;
  523. break;
  524. case FB_VISUAL_PSEUDOCOLOR:
  525. fb_logo.needs_cmapreset = 1;
  526. break;
  527. }
  528. }
  529. return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
  530. }
  531. int fb_show_logo(struct fb_info *info, int rotate)
  532. {
  533. int y;
  534. y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
  535. num_online_cpus());
  536. y = fb_show_extra_logos(info, y, rotate);
  537. return y;
  538. }
  539. #else
  540. int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
  541. int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
  542. #endif /* CONFIG_LOGO */
  543. static void *fb_seq_start(struct seq_file *m, loff_t *pos)
  544. {
  545. return (*pos < FB_MAX) ? pos : NULL;
  546. }
  547. static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
  548. {
  549. (*pos)++;
  550. return (*pos < FB_MAX) ? pos : NULL;
  551. }
  552. static void fb_seq_stop(struct seq_file *m, void *v)
  553. {
  554. }
  555. static int fb_seq_show(struct seq_file *m, void *v)
  556. {
  557. int i = *(loff_t *)v;
  558. struct fb_info *fi = registered_fb[i];
  559. if (fi)
  560. seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
  561. return 0;
  562. }
  563. static const struct seq_operations proc_fb_seq_ops = {
  564. .start = fb_seq_start,
  565. .next = fb_seq_next,
  566. .stop = fb_seq_stop,
  567. .show = fb_seq_show,
  568. };
  569. static int proc_fb_open(struct inode *inode, struct file *file)
  570. {
  571. return seq_open(file, &proc_fb_seq_ops);
  572. }
  573. static const struct file_operations fb_proc_fops = {
  574. .owner = THIS_MODULE,
  575. .open = proc_fb_open,
  576. .read = seq_read,
  577. .llseek = seq_lseek,
  578. .release = seq_release,
  579. };
  580. static ssize_t
  581. fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
  582. {
  583. unsigned long p = *ppos;
  584. struct inode *inode = file->f_path.dentry->d_inode;
  585. int fbidx = iminor(inode);
  586. struct fb_info *info = registered_fb[fbidx];
  587. u32 *buffer, *dst;
  588. u32 __iomem *src;
  589. int c, i, cnt = 0, err = 0;
  590. unsigned long total_size;
  591. if (!info || ! info->screen_base)
  592. return -ENODEV;
  593. if (info->state != FBINFO_STATE_RUNNING)
  594. return -EPERM;
  595. if (info->fbops->fb_read)
  596. return info->fbops->fb_read(info, buf, count, ppos);
  597. total_size = info->screen_size;
  598. if (total_size == 0)
  599. total_size = info->fix.smem_len;
  600. if (p >= total_size)
  601. return 0;
  602. if (count >= total_size)
  603. count = total_size;
  604. if (count + p > total_size)
  605. count = total_size - p;
  606. buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
  607. GFP_KERNEL);
  608. if (!buffer)
  609. return -ENOMEM;
  610. src = (u32 __iomem *) (info->screen_base + p);
  611. if (info->fbops->fb_sync)
  612. info->fbops->fb_sync(info);
  613. while (count) {
  614. c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
  615. dst = buffer;
  616. for (i = c >> 2; i--; )
  617. *dst++ = fb_readl(src++);
  618. if (c & 3) {
  619. u8 *dst8 = (u8 *) dst;
  620. u8 __iomem *src8 = (u8 __iomem *) src;
  621. for (i = c & 3; i--;)
  622. *dst8++ = fb_readb(src8++);
  623. src = (u32 __iomem *) src8;
  624. }
  625. if (copy_to_user(buf, buffer, c)) {
  626. err = -EFAULT;
  627. break;
  628. }
  629. *ppos += c;
  630. buf += c;
  631. cnt += c;
  632. count -= c;
  633. }
  634. kfree(buffer);
  635. return (err) ? err : cnt;
  636. }
  637. static ssize_t
  638. fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
  639. {
  640. unsigned long p = *ppos;
  641. struct inode *inode = file->f_path.dentry->d_inode;
  642. int fbidx = iminor(inode);
  643. struct fb_info *info = registered_fb[fbidx];
  644. u32 *buffer, *src;
  645. u32 __iomem *dst;
  646. int c, i, cnt = 0, err = 0;
  647. unsigned long total_size;
  648. if (!info || !info->screen_base)
  649. return -ENODEV;
  650. if (info->state != FBINFO_STATE_RUNNING)
  651. return -EPERM;
  652. if (info->fbops->fb_write)
  653. return info->fbops->fb_write(info, buf, count, ppos);
  654. total_size = info->screen_size;
  655. if (total_size == 0)
  656. total_size = info->fix.smem_len;
  657. if (p > total_size)
  658. return -EFBIG;
  659. if (count > total_size) {
  660. err = -EFBIG;
  661. count = total_size;
  662. }
  663. if (count + p > total_size) {
  664. if (!err)
  665. err = -ENOSPC;
  666. count = total_size - p;
  667. }
  668. buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
  669. GFP_KERNEL);
  670. if (!buffer)
  671. return -ENOMEM;
  672. dst = (u32 __iomem *) (info->screen_base + p);
  673. if (info->fbops->fb_sync)
  674. info->fbops->fb_sync(info);
  675. while (count) {
  676. c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
  677. src = buffer;
  678. if (copy_from_user(src, buf, c)) {
  679. err = -EFAULT;
  680. break;
  681. }
  682. for (i = c >> 2; i--; )
  683. fb_writel(*src++, dst++);
  684. if (c & 3) {
  685. u8 *src8 = (u8 *) src;
  686. u8 __iomem *dst8 = (u8 __iomem *) dst;
  687. for (i = c & 3; i--; )
  688. fb_writeb(*src8++, dst8++);
  689. dst = (u32 __iomem *) dst8;
  690. }
  691. *ppos += c;
  692. buf += c;
  693. cnt += c;
  694. count -= c;
  695. }
  696. kfree(buffer);
  697. return (cnt) ? cnt : err;
  698. }
  699. int
  700. fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
  701. {
  702. struct fb_fix_screeninfo *fix = &info->fix;
  703. unsigned int yres = info->var.yres;
  704. int err = 0;
  705. if (var->yoffset > 0) {
  706. if (var->vmode & FB_VMODE_YWRAP) {
  707. if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
  708. err = -EINVAL;
  709. else
  710. yres = 0;
  711. } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
  712. err = -EINVAL;
  713. }
  714. if (var->xoffset > 0 && (!fix->xpanstep ||
  715. (var->xoffset % fix->xpanstep)))
  716. err = -EINVAL;
  717. if (err || !info->fbops->fb_pan_display ||
  718. var->yoffset + yres > info->var.yres_virtual ||
  719. var->xoffset + info->var.xres > info->var.xres_virtual)
  720. return -EINVAL;
  721. if ((err = info->fbops->fb_pan_display(var, info)))
  722. return err;
  723. info->var.xoffset = var->xoffset;
  724. info->var.yoffset = var->yoffset;
  725. if (var->vmode & FB_VMODE_YWRAP)
  726. info->var.vmode |= FB_VMODE_YWRAP;
  727. else
  728. info->var.vmode &= ~FB_VMODE_YWRAP;
  729. return 0;
  730. }
  731. static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
  732. u32 activate)
  733. {
  734. struct fb_event event;
  735. struct fb_blit_caps caps, fbcaps;
  736. int err = 0;
  737. memset(&caps, 0, sizeof(caps));
  738. memset(&fbcaps, 0, sizeof(fbcaps));
  739. caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
  740. event.info = info;
  741. event.data = &caps;
  742. fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
  743. info->fbops->fb_get_caps(info, &fbcaps, var);
  744. if (((fbcaps.x ^ caps.x) & caps.x) ||
  745. ((fbcaps.y ^ caps.y) & caps.y) ||
  746. (fbcaps.len < caps.len))
  747. err = -EINVAL;
  748. return err;
  749. }
  750. int
  751. fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
  752. {
  753. int flags = info->flags;
  754. int ret = 0;
  755. if (var->activate & FB_ACTIVATE_INV_MODE) {
  756. struct fb_videomode mode1, mode2;
  757. fb_var_to_videomode(&mode1, var);
  758. fb_var_to_videomode(&mode2, &info->var);
  759. /* make sure we don't delete the videomode of current var */
  760. ret = fb_mode_is_equal(&mode1, &mode2);
  761. if (!ret) {
  762. struct fb_event event;
  763. event.info = info;
  764. event.data = &mode1;
  765. ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
  766. }
  767. if (!ret)
  768. fb_delete_videomode(&mode1, &info->modelist);
  769. ret = (ret) ? -EINVAL : 0;
  770. goto done;
  771. }
  772. if ((var->activate & FB_ACTIVATE_FORCE) ||
  773. memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
  774. u32 activate = var->activate;
  775. if (!info->fbops->fb_check_var) {
  776. *var = info->var;
  777. goto done;
  778. }
  779. ret = info->fbops->fb_check_var(var, info);
  780. if (ret)
  781. goto done;
  782. if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
  783. struct fb_videomode mode;
  784. if (info->fbops->fb_get_caps) {
  785. ret = fb_check_caps(info, var, activate);
  786. if (ret)
  787. goto done;
  788. }
  789. info->var = *var;
  790. if (info->fbops->fb_set_par)
  791. info->fbops->fb_set_par(info);
  792. fb_pan_display(info, &info->var);
  793. fb_set_cmap(&info->cmap, info);
  794. fb_var_to_videomode(&mode, &info->var);
  795. if (info->modelist.prev && info->modelist.next &&
  796. !list_empty(&info->modelist))
  797. ret = fb_add_videomode(&mode, &info->modelist);
  798. if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
  799. struct fb_event event;
  800. int evnt = (activate & FB_ACTIVATE_ALL) ?
  801. FB_EVENT_MODE_CHANGE_ALL :
  802. FB_EVENT_MODE_CHANGE;
  803. info->flags &= ~FBINFO_MISC_USEREVENT;
  804. event.info = info;
  805. event.data = &mode;
  806. fb_notifier_call_chain(evnt, &event);
  807. }
  808. }
  809. }
  810. done:
  811. return ret;
  812. }
  813. int
  814. fb_blank(struct fb_info *info, int blank)
  815. {
  816. int ret = -EINVAL;
  817. if (blank > FB_BLANK_POWERDOWN)
  818. blank = FB_BLANK_POWERDOWN;
  819. if (info->fbops->fb_blank)
  820. ret = info->fbops->fb_blank(blank, info);
  821. if (!ret) {
  822. struct fb_event event;
  823. event.info = info;
  824. event.data = &blank;
  825. fb_notifier_call_chain(FB_EVENT_BLANK, &event);
  826. }
  827. return ret;
  828. }
  829. static int
  830. fb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  831. unsigned long arg)
  832. {
  833. int fbidx = iminor(inode);
  834. struct fb_info *info = registered_fb[fbidx];
  835. struct fb_ops *fb = info->fbops;
  836. struct fb_var_screeninfo var;
  837. struct fb_fix_screeninfo fix;
  838. struct fb_con2fbmap con2fb;
  839. struct fb_cmap_user cmap;
  840. struct fb_event event;
  841. void __user *argp = (void __user *)arg;
  842. int i;
  843. if (!fb)
  844. return -ENODEV;
  845. switch (cmd) {
  846. case FBIOGET_VSCREENINFO:
  847. return copy_to_user(argp, &info->var,
  848. sizeof(var)) ? -EFAULT : 0;
  849. case FBIOPUT_VSCREENINFO:
  850. if (copy_from_user(&var, argp, sizeof(var)))
  851. return -EFAULT;
  852. acquire_console_sem();
  853. info->flags |= FBINFO_MISC_USEREVENT;
  854. i = fb_set_var(info, &var);
  855. info->flags &= ~FBINFO_MISC_USEREVENT;
  856. release_console_sem();
  857. if (i) return i;
  858. if (copy_to_user(argp, &var, sizeof(var)))
  859. return -EFAULT;
  860. return 0;
  861. case FBIOGET_FSCREENINFO:
  862. return copy_to_user(argp, &info->fix,
  863. sizeof(fix)) ? -EFAULT : 0;
  864. case FBIOPUTCMAP:
  865. if (copy_from_user(&cmap, argp, sizeof(cmap)))
  866. return -EFAULT;
  867. return (fb_set_user_cmap(&cmap, info));
  868. case FBIOGETCMAP:
  869. if (copy_from_user(&cmap, argp, sizeof(cmap)))
  870. return -EFAULT;
  871. return fb_cmap_to_user(&info->cmap, &cmap);
  872. case FBIOPAN_DISPLAY:
  873. if (copy_from_user(&var, argp, sizeof(var)))
  874. return -EFAULT;
  875. acquire_console_sem();
  876. i = fb_pan_display(info, &var);
  877. release_console_sem();
  878. if (i)
  879. return i;
  880. if (copy_to_user(argp, &var, sizeof(var)))
  881. return -EFAULT;
  882. return 0;
  883. case FBIO_CURSOR:
  884. return -EINVAL;
  885. case FBIOGET_CON2FBMAP:
  886. if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
  887. return -EFAULT;
  888. if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
  889. return -EINVAL;
  890. con2fb.framebuffer = -1;
  891. event.info = info;
  892. event.data = &con2fb;
  893. fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
  894. return copy_to_user(argp, &con2fb,
  895. sizeof(con2fb)) ? -EFAULT : 0;
  896. case FBIOPUT_CON2FBMAP:
  897. if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
  898. return - EFAULT;
  899. if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
  900. return -EINVAL;
  901. if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
  902. return -EINVAL;
  903. if (!registered_fb[con2fb.framebuffer])
  904. request_module("fb%d", con2fb.framebuffer);
  905. if (!registered_fb[con2fb.framebuffer])
  906. return -EINVAL;
  907. event.info = info;
  908. event.data = &con2fb;
  909. return fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP,
  910. &event);
  911. case FBIOBLANK:
  912. acquire_console_sem();
  913. info->flags |= FBINFO_MISC_USEREVENT;
  914. i = fb_blank(info, arg);
  915. info->flags &= ~FBINFO_MISC_USEREVENT;
  916. release_console_sem();
  917. return i;
  918. default:
  919. if (fb->fb_ioctl == NULL)
  920. return -EINVAL;
  921. return fb->fb_ioctl(info, cmd, arg);
  922. }
  923. }
  924. #ifdef CONFIG_COMPAT
  925. struct fb_fix_screeninfo32 {
  926. char id[16];
  927. compat_caddr_t smem_start;
  928. u32 smem_len;
  929. u32 type;
  930. u32 type_aux;
  931. u32 visual;
  932. u16 xpanstep;
  933. u16 ypanstep;
  934. u16 ywrapstep;
  935. u32 line_length;
  936. compat_caddr_t mmio_start;
  937. u32 mmio_len;
  938. u32 accel;
  939. u16 reserved[3];
  940. };
  941. struct fb_cmap32 {
  942. u32 start;
  943. u32 len;
  944. compat_caddr_t red;
  945. compat_caddr_t green;
  946. compat_caddr_t blue;
  947. compat_caddr_t transp;
  948. };
  949. static int fb_getput_cmap(struct inode *inode, struct file *file,
  950. unsigned int cmd, unsigned long arg)
  951. {
  952. struct fb_cmap_user __user *cmap;
  953. struct fb_cmap32 __user *cmap32;
  954. __u32 data;
  955. int err;
  956. cmap = compat_alloc_user_space(sizeof(*cmap));
  957. cmap32 = compat_ptr(arg);
  958. if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
  959. return -EFAULT;
  960. if (get_user(data, &cmap32->red) ||
  961. put_user(compat_ptr(data), &cmap->red) ||
  962. get_user(data, &cmap32->green) ||
  963. put_user(compat_ptr(data), &cmap->green) ||
  964. get_user(data, &cmap32->blue) ||
  965. put_user(compat_ptr(data), &cmap->blue) ||
  966. get_user(data, &cmap32->transp) ||
  967. put_user(compat_ptr(data), &cmap->transp))
  968. return -EFAULT;
  969. err = fb_ioctl(inode, file, cmd, (unsigned long) cmap);
  970. if (!err) {
  971. if (copy_in_user(&cmap32->start,
  972. &cmap->start,
  973. 2 * sizeof(__u32)))
  974. err = -EFAULT;
  975. }
  976. return err;
  977. }
  978. static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
  979. struct fb_fix_screeninfo32 __user *fix32)
  980. {
  981. __u32 data;
  982. int err;
  983. err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
  984. data = (__u32) (unsigned long) fix->smem_start;
  985. err |= put_user(data, &fix32->smem_start);
  986. err |= put_user(fix->smem_len, &fix32->smem_len);
  987. err |= put_user(fix->type, &fix32->type);
  988. err |= put_user(fix->type_aux, &fix32->type_aux);
  989. err |= put_user(fix->visual, &fix32->visual);
  990. err |= put_user(fix->xpanstep, &fix32->xpanstep);
  991. err |= put_user(fix->ypanstep, &fix32->ypanstep);
  992. err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
  993. err |= put_user(fix->line_length, &fix32->line_length);
  994. data = (__u32) (unsigned long) fix->mmio_start;
  995. err |= put_user(data, &fix32->mmio_start);
  996. err |= put_user(fix->mmio_len, &fix32->mmio_len);
  997. err |= put_user(fix->accel, &fix32->accel);
  998. err |= copy_to_user(fix32->reserved, fix->reserved,
  999. sizeof(fix->reserved));
  1000. return err;
  1001. }
  1002. static int fb_get_fscreeninfo(struct inode *inode, struct file *file,
  1003. unsigned int cmd, unsigned long arg)
  1004. {
  1005. mm_segment_t old_fs;
  1006. struct fb_fix_screeninfo fix;
  1007. struct fb_fix_screeninfo32 __user *fix32;
  1008. int err;
  1009. fix32 = compat_ptr(arg);
  1010. old_fs = get_fs();
  1011. set_fs(KERNEL_DS);
  1012. err = fb_ioctl(inode, file, cmd, (unsigned long) &fix);
  1013. set_fs(old_fs);
  1014. if (!err)
  1015. err = do_fscreeninfo_to_user(&fix, fix32);
  1016. return err;
  1017. }
  1018. static long
  1019. fb_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  1020. {
  1021. struct inode *inode = file->f_path.dentry->d_inode;
  1022. int fbidx = iminor(inode);
  1023. struct fb_info *info = registered_fb[fbidx];
  1024. struct fb_ops *fb = info->fbops;
  1025. long ret = -ENOIOCTLCMD;
  1026. lock_kernel();
  1027. switch(cmd) {
  1028. case FBIOGET_VSCREENINFO:
  1029. case FBIOPUT_VSCREENINFO:
  1030. case FBIOPAN_DISPLAY:
  1031. case FBIOGET_CON2FBMAP:
  1032. case FBIOPUT_CON2FBMAP:
  1033. arg = (unsigned long) compat_ptr(arg);
  1034. case FBIOBLANK:
  1035. ret = fb_ioctl(inode, file, cmd, arg);
  1036. break;
  1037. case FBIOGET_FSCREENINFO:
  1038. ret = fb_get_fscreeninfo(inode, file, cmd, arg);
  1039. break;
  1040. case FBIOGETCMAP:
  1041. case FBIOPUTCMAP:
  1042. ret = fb_getput_cmap(inode, file, cmd, arg);
  1043. break;
  1044. default:
  1045. if (fb->fb_compat_ioctl)
  1046. ret = fb->fb_compat_ioctl(info, cmd, arg);
  1047. break;
  1048. }
  1049. unlock_kernel();
  1050. return ret;
  1051. }
  1052. #endif
  1053. static int
  1054. fb_mmap(struct file *file, struct vm_area_struct * vma)
  1055. {
  1056. int fbidx = iminor(file->f_path.dentry->d_inode);
  1057. struct fb_info *info = registered_fb[fbidx];
  1058. struct fb_ops *fb = info->fbops;
  1059. unsigned long off;
  1060. unsigned long start;
  1061. u32 len;
  1062. if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
  1063. return -EINVAL;
  1064. off = vma->vm_pgoff << PAGE_SHIFT;
  1065. if (!fb)
  1066. return -ENODEV;
  1067. if (fb->fb_mmap) {
  1068. int res;
  1069. lock_kernel();
  1070. res = fb->fb_mmap(info, vma);
  1071. unlock_kernel();
  1072. return res;
  1073. }
  1074. lock_kernel();
  1075. /* frame buffer memory */
  1076. start = info->fix.smem_start;
  1077. len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
  1078. if (off >= len) {
  1079. /* memory mapped io */
  1080. off -= len;
  1081. if (info->var.accel_flags) {
  1082. unlock_kernel();
  1083. return -EINVAL;
  1084. }
  1085. start = info->fix.mmio_start;
  1086. len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
  1087. }
  1088. unlock_kernel();
  1089. start &= PAGE_MASK;
  1090. if ((vma->vm_end - vma->vm_start + off) > len)
  1091. return -EINVAL;
  1092. off += start;
  1093. vma->vm_pgoff = off >> PAGE_SHIFT;
  1094. /* This is an IO map - tell maydump to skip this VMA */
  1095. vma->vm_flags |= VM_IO | VM_RESERVED;
  1096. fb_pgprotect(file, vma, off);
  1097. if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
  1098. vma->vm_end - vma->vm_start, vma->vm_page_prot))
  1099. return -EAGAIN;
  1100. return 0;
  1101. }
  1102. static int
  1103. fb_open(struct inode *inode, struct file *file)
  1104. {
  1105. int fbidx = iminor(inode);
  1106. struct fb_info *info;
  1107. int res = 0;
  1108. if (fbidx >= FB_MAX)
  1109. return -ENODEV;
  1110. lock_kernel();
  1111. if (!(info = registered_fb[fbidx]))
  1112. request_module("fb%d", fbidx);
  1113. if (!(info = registered_fb[fbidx])) {
  1114. res = -ENODEV;
  1115. goto out;
  1116. }
  1117. if (!try_module_get(info->fbops->owner)) {
  1118. res = -ENODEV;
  1119. goto out;
  1120. }
  1121. file->private_data = info;
  1122. if (info->fbops->fb_open) {
  1123. res = info->fbops->fb_open(info,1);
  1124. if (res)
  1125. module_put(info->fbops->owner);
  1126. }
  1127. #ifdef CONFIG_FB_DEFERRED_IO
  1128. if (info->fbdefio)
  1129. fb_deferred_io_open(info, inode, file);
  1130. #endif
  1131. out:
  1132. unlock_kernel();
  1133. return res;
  1134. }
  1135. static int
  1136. fb_release(struct inode *inode, struct file *file)
  1137. {
  1138. struct fb_info * const info = file->private_data;
  1139. lock_kernel();
  1140. if (info->fbops->fb_release)
  1141. info->fbops->fb_release(info,1);
  1142. module_put(info->fbops->owner);
  1143. unlock_kernel();
  1144. return 0;
  1145. }
  1146. static const struct file_operations fb_fops = {
  1147. .owner = THIS_MODULE,
  1148. .read = fb_read,
  1149. .write = fb_write,
  1150. .ioctl = fb_ioctl,
  1151. #ifdef CONFIG_COMPAT
  1152. .compat_ioctl = fb_compat_ioctl,
  1153. #endif
  1154. .mmap = fb_mmap,
  1155. .open = fb_open,
  1156. .release = fb_release,
  1157. #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
  1158. .get_unmapped_area = get_fb_unmapped_area,
  1159. #endif
  1160. #ifdef CONFIG_FB_DEFERRED_IO
  1161. .fsync = fb_deferred_io_fsync,
  1162. #endif
  1163. };
  1164. struct class *fb_class;
  1165. EXPORT_SYMBOL(fb_class);
  1166. static int fb_check_foreignness(struct fb_info *fi)
  1167. {
  1168. const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
  1169. fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
  1170. #ifdef __BIG_ENDIAN
  1171. fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
  1172. #else
  1173. fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
  1174. #endif /* __BIG_ENDIAN */
  1175. if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
  1176. pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
  1177. "support this framebuffer\n", fi->fix.id);
  1178. return -ENOSYS;
  1179. } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
  1180. pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
  1181. "support this framebuffer\n", fi->fix.id);
  1182. return -ENOSYS;
  1183. }
  1184. return 0;
  1185. }
  1186. /**
  1187. * register_framebuffer - registers a frame buffer device
  1188. * @fb_info: frame buffer info structure
  1189. *
  1190. * Registers a frame buffer device @fb_info.
  1191. *
  1192. * Returns negative errno on error, or zero for success.
  1193. *
  1194. */
  1195. int
  1196. register_framebuffer(struct fb_info *fb_info)
  1197. {
  1198. int i;
  1199. struct fb_event event;
  1200. struct fb_videomode mode;
  1201. if (num_registered_fb == FB_MAX)
  1202. return -ENXIO;
  1203. if (fb_check_foreignness(fb_info))
  1204. return -ENOSYS;
  1205. num_registered_fb++;
  1206. for (i = 0 ; i < FB_MAX; i++)
  1207. if (!registered_fb[i])
  1208. break;
  1209. fb_info->node = i;
  1210. fb_info->dev = device_create(fb_class, fb_info->device,
  1211. MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
  1212. if (IS_ERR(fb_info->dev)) {
  1213. /* Not fatal */
  1214. printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
  1215. fb_info->dev = NULL;
  1216. } else
  1217. fb_init_device(fb_info);
  1218. if (fb_info->pixmap.addr == NULL) {
  1219. fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
  1220. if (fb_info->pixmap.addr) {
  1221. fb_info->pixmap.size = FBPIXMAPSIZE;
  1222. fb_info->pixmap.buf_align = 1;
  1223. fb_info->pixmap.scan_align = 1;
  1224. fb_info->pixmap.access_align = 32;
  1225. fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
  1226. }
  1227. }
  1228. fb_info->pixmap.offset = 0;
  1229. if (!fb_info->pixmap.blit_x)
  1230. fb_info->pixmap.blit_x = ~(u32)0;
  1231. if (!fb_info->pixmap.blit_y)
  1232. fb_info->pixmap.blit_y = ~(u32)0;
  1233. if (!fb_info->modelist.prev || !fb_info->modelist.next)
  1234. INIT_LIST_HEAD(&fb_info->modelist);
  1235. fb_var_to_videomode(&mode, &fb_info->var);
  1236. fb_add_videomode(&mode, &fb_info->modelist);
  1237. registered_fb[i] = fb_info;
  1238. event.info = fb_info;
  1239. fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
  1240. return 0;
  1241. }
  1242. /**
  1243. * unregister_framebuffer - releases a frame buffer device
  1244. * @fb_info: frame buffer info structure
  1245. *
  1246. * Unregisters a frame buffer device @fb_info.
  1247. *
  1248. * Returns negative errno on error, or zero for success.
  1249. *
  1250. * This function will also notify the framebuffer console
  1251. * to release the driver.
  1252. *
  1253. * This is meant to be called within a driver's module_exit()
  1254. * function. If this is called outside module_exit(), ensure
  1255. * that the driver implements fb_open() and fb_release() to
  1256. * check that no processes are using the device.
  1257. */
  1258. int
  1259. unregister_framebuffer(struct fb_info *fb_info)
  1260. {
  1261. struct fb_event event;
  1262. int i, ret = 0;
  1263. i = fb_info->node;
  1264. if (!registered_fb[i]) {
  1265. ret = -EINVAL;
  1266. goto done;
  1267. }
  1268. event.info = fb_info;
  1269. ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
  1270. if (ret) {
  1271. ret = -EINVAL;
  1272. goto done;
  1273. }
  1274. if (fb_info->pixmap.addr &&
  1275. (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
  1276. kfree(fb_info->pixmap.addr);
  1277. fb_destroy_modelist(&fb_info->modelist);
  1278. registered_fb[i]=NULL;
  1279. num_registered_fb--;
  1280. fb_cleanup_device(fb_info);
  1281. device_destroy(fb_class, MKDEV(FB_MAJOR, i));
  1282. event.info = fb_info;
  1283. fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
  1284. done:
  1285. return ret;
  1286. }
  1287. /**
  1288. * fb_set_suspend - low level driver signals suspend
  1289. * @info: framebuffer affected
  1290. * @state: 0 = resuming, !=0 = suspending
  1291. *
  1292. * This is meant to be used by low level drivers to
  1293. * signal suspend/resume to the core & clients.
  1294. * It must be called with the console semaphore held
  1295. */
  1296. void fb_set_suspend(struct fb_info *info, int state)
  1297. {
  1298. struct fb_event event;
  1299. event.info = info;
  1300. if (state) {
  1301. fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
  1302. info->state = FBINFO_STATE_SUSPENDED;
  1303. } else {
  1304. info->state = FBINFO_STATE_RUNNING;
  1305. fb_notifier_call_chain(FB_EVENT_RESUME, &event);
  1306. }
  1307. }
  1308. /**
  1309. * fbmem_init - init frame buffer subsystem
  1310. *
  1311. * Initialize the frame buffer subsystem.
  1312. *
  1313. * NOTE: This function is _only_ to be called by drivers/char/mem.c.
  1314. *
  1315. */
  1316. static int __init
  1317. fbmem_init(void)
  1318. {
  1319. proc_create("fb", 0, NULL, &fb_proc_fops);
  1320. if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
  1321. printk("unable to get major %d for fb devs\n", FB_MAJOR);
  1322. fb_class = class_create(THIS_MODULE, "graphics");
  1323. if (IS_ERR(fb_class)) {
  1324. printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
  1325. fb_class = NULL;
  1326. }
  1327. return 0;
  1328. }
  1329. #ifdef MODULE
  1330. module_init(fbmem_init);
  1331. static void __exit
  1332. fbmem_exit(void)
  1333. {
  1334. remove_proc_entry("fb", NULL);
  1335. class_destroy(fb_class);
  1336. unregister_chrdev(FB_MAJOR, "fb");
  1337. }
  1338. module_exit(fbmem_exit);
  1339. MODULE_LICENSE("GPL");
  1340. MODULE_DESCRIPTION("Framebuffer base");
  1341. #else
  1342. subsys_initcall(fbmem_init);
  1343. #endif
  1344. int fb_new_modelist(struct fb_info *info)
  1345. {
  1346. struct fb_event event;
  1347. struct fb_var_screeninfo var = info->var;
  1348. struct list_head *pos, *n;
  1349. struct fb_modelist *modelist;
  1350. struct fb_videomode *m, mode;
  1351. int err = 1;
  1352. list_for_each_safe(pos, n, &info->modelist) {
  1353. modelist = list_entry(pos, struct fb_modelist, list);
  1354. m = &modelist->mode;
  1355. fb_videomode_to_var(&var, m);
  1356. var.activate = FB_ACTIVATE_TEST;
  1357. err = fb_set_var(info, &var);
  1358. fb_var_to_videomode(&mode, &var);
  1359. if (err || !fb_mode_is_equal(m, &mode)) {
  1360. list_del(pos);
  1361. kfree(pos);
  1362. }
  1363. }
  1364. err = 1;
  1365. if (!list_empty(&info->modelist)) {
  1366. event.info = info;
  1367. err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
  1368. }
  1369. return err;
  1370. }
  1371. static char *video_options[FB_MAX] __read_mostly;
  1372. static int ofonly __read_mostly;
  1373. /**
  1374. * fb_get_options - get kernel boot parameters
  1375. * @name: framebuffer name as it would appear in
  1376. * the boot parameter line
  1377. * (video=<name>:<options>)
  1378. * @option: the option will be stored here
  1379. *
  1380. * NOTE: Needed to maintain backwards compatibility
  1381. */
  1382. int fb_get_options(char *name, char **option)
  1383. {
  1384. char *opt, *options = NULL;
  1385. int opt_len, retval = 0;
  1386. int name_len = strlen(name), i;
  1387. if (name_len && ofonly && strncmp(name, "offb", 4))
  1388. retval = 1;
  1389. if (name_len && !retval) {
  1390. for (i = 0; i < FB_MAX; i++) {
  1391. if (video_options[i] == NULL)
  1392. continue;
  1393. opt_len = strlen(video_options[i]);
  1394. if (!opt_len)
  1395. continue;
  1396. opt = video_options[i];
  1397. if (!strncmp(name, opt, name_len) &&
  1398. opt[name_len] == ':')
  1399. options = opt + name_len + 1;
  1400. }
  1401. }
  1402. if (options && !strncmp(options, "off", 3))
  1403. retval = 1;
  1404. if (option)
  1405. *option = options;
  1406. return retval;
  1407. }
  1408. #ifndef MODULE
  1409. /**
  1410. * video_setup - process command line options
  1411. * @options: string of options
  1412. *
  1413. * Process command line options for frame buffer subsystem.
  1414. *
  1415. * NOTE: This function is a __setup and __init function.
  1416. * It only stores the options. Drivers have to call
  1417. * fb_get_options() as necessary.
  1418. *
  1419. * Returns zero.
  1420. *
  1421. */
  1422. static int __init video_setup(char *options)
  1423. {
  1424. int i, global = 0;
  1425. if (!options || !*options)
  1426. global = 1;
  1427. if (!global && !strncmp(options, "ofonly", 6)) {
  1428. ofonly = 1;
  1429. global = 1;
  1430. }
  1431. if (!global && !strstr(options, "fb:")) {
  1432. fb_mode_option = options;
  1433. global = 1;
  1434. }
  1435. if (!global) {
  1436. for (i = 0; i < FB_MAX; i++) {
  1437. if (video_options[i] == NULL) {
  1438. video_options[i] = options;
  1439. break;
  1440. }
  1441. }
  1442. }
  1443. return 1;
  1444. }
  1445. __setup("video=", video_setup);
  1446. #endif
  1447. /*
  1448. * Visible symbols for modules
  1449. */
  1450. EXPORT_SYMBOL(register_framebuffer);
  1451. EXPORT_SYMBOL(unregister_framebuffer);
  1452. EXPORT_SYMBOL(num_registered_fb);
  1453. EXPORT_SYMBOL(registered_fb);
  1454. EXPORT_SYMBOL(fb_show_logo);
  1455. EXPORT_SYMBOL(fb_set_var);
  1456. EXPORT_SYMBOL(fb_blank);
  1457. EXPORT_SYMBOL(fb_pan_display);
  1458. EXPORT_SYMBOL(fb_get_buffer_offset);
  1459. EXPORT_SYMBOL(fb_set_suspend);
  1460. EXPORT_SYMBOL(fb_get_options);
  1461. MODULE_LICENSE("GPL");