fbmem.c 41 KB

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