skeletonfb.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. /*
  2. * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device
  3. *
  4. * Modified to new api Jan 2001 by James Simmons (jsimmons@transvirtual.com)
  5. *
  6. * Created 28 Dec 1997 by Geert Uytterhoeven
  7. *
  8. *
  9. * I have started rewriting this driver as a example of the upcoming new API
  10. * The primary goal is to remove the console code from fbdev and place it
  11. * into fbcon.c. This reduces the code and makes writing a new fbdev driver
  12. * easy since the author doesn't need to worry about console internals. It
  13. * also allows the ability to run fbdev without a console/tty system on top
  14. * of it.
  15. *
  16. * First the roles of struct fb_info and struct display have changed. Struct
  17. * display will go away. The way the new framebuffer console code will
  18. * work is that it will act to translate data about the tty/console in
  19. * struct vc_data to data in a device independent way in struct fb_info. Then
  20. * various functions in struct fb_ops will be called to store the device
  21. * dependent state in the par field in struct fb_info and to change the
  22. * hardware to that state. This allows a very clean separation of the fbdev
  23. * layer from the console layer. It also allows one to use fbdev on its own
  24. * which is a bounus for embedded devices. The reason this approach works is
  25. * for each framebuffer device when used as a tty/console device is allocated
  26. * a set of virtual terminals to it. Only one virtual terminal can be active
  27. * per framebuffer device. We already have all the data we need in struct
  28. * vc_data so why store a bunch of colormaps and other fbdev specific data
  29. * per virtual terminal.
  30. *
  31. * As you can see doing this makes the con parameter pretty much useless
  32. * for struct fb_ops functions, as it should be. Also having struct
  33. * fb_var_screeninfo and other data in fb_info pretty much eliminates the
  34. * need for get_fix and get_var. Once all drivers use the fix, var, and cmap
  35. * fbcon can be written around these fields. This will also eliminate the
  36. * need to regenerate struct fb_var_screeninfo, struct fb_fix_screeninfo
  37. * struct fb_cmap every time get_var, get_fix, get_cmap functions are called
  38. * as many drivers do now.
  39. *
  40. * This file is subject to the terms and conditions of the GNU General Public
  41. * License. See the file COPYING in the main directory of this archive for
  42. * more details.
  43. */
  44. #include <linux/module.h>
  45. #include <linux/kernel.h>
  46. #include <linux/errno.h>
  47. #include <linux/string.h>
  48. #include <linux/mm.h>
  49. #include <linux/slab.h>
  50. #include <linux/delay.h>
  51. #include <linux/fb.h>
  52. #include <linux/init.h>
  53. #include <linux/pci.h>
  54. /*
  55. * This is just simple sample code.
  56. *
  57. * No warranty that it actually compiles.
  58. * Even less warranty that it actually works :-)
  59. */
  60. /*
  61. * Driver data
  62. */
  63. static char *mode_option __devinitdata;
  64. /*
  65. * If your driver supports multiple boards, you should make the
  66. * below data types arrays, or allocate them dynamically (using kmalloc()).
  67. */
  68. /*
  69. * This structure defines the hardware state of the graphics card. Normally
  70. * you place this in a header file in linux/include/video. This file usually
  71. * also includes register information. That allows other driver subsystems
  72. * and userland applications the ability to use the same header file to
  73. * avoid duplicate work and easy porting of software.
  74. */
  75. struct xxx_par;
  76. /*
  77. * Here we define the default structs fb_fix_screeninfo and fb_var_screeninfo
  78. * if we don't use modedb. If we do use modedb see xxxfb_init how to use it
  79. * to get a fb_var_screeninfo. Otherwise define a default var as well.
  80. */
  81. static struct fb_fix_screeninfo xxxfb_fix __devinitdata = {
  82. .id = "FB's name",
  83. .type = FB_TYPE_PACKED_PIXELS,
  84. .visual = FB_VISUAL_PSEUDOCOLOR,
  85. .xpanstep = 1,
  86. .ypanstep = 1,
  87. .ywrapstep = 1,
  88. .accel = FB_ACCEL_NONE,
  89. };
  90. /*
  91. * Modern graphical hardware not only supports pipelines but some
  92. * also support multiple monitors where each display can have its
  93. * its own unique data. In this case each display could be
  94. * represented by a separate framebuffer device thus a separate
  95. * struct fb_info. Now the struct xxx_par represents the graphics
  96. * hardware state thus only one exist per card. In this case the
  97. * struct xxx_par for each graphics card would be shared between
  98. * every struct fb_info that represents a framebuffer on that card.
  99. * This allows when one display changes it video resolution (info->var)
  100. * the other displays know instantly. Each display can always be
  101. * aware of the entire hardware state that affects it because they share
  102. * the same xxx_par struct. The other side of the coin is multiple
  103. * graphics cards that pass data around until it is finally displayed
  104. * on one monitor. Such examples are the voodoo 1 cards and high end
  105. * NUMA graphics servers. For this case we have a bunch of pars, each
  106. * one that represents a graphics state, that belong to one struct
  107. * fb_info. Their you would want to have *par point to a array of device
  108. * states and have each struct fb_ops function deal with all those
  109. * states. I hope this covers every possible hardware design. If not
  110. * feel free to send your ideas at jsimmons@users.sf.net
  111. */
  112. /*
  113. * If your driver supports multiple boards or it supports multiple
  114. * framebuffers, you should make these arrays, or allocate them
  115. * dynamically using framebuffer_alloc() and free them with
  116. * framebuffer_release().
  117. */
  118. static struct fb_info info;
  119. /*
  120. * Each one represents the state of the hardware. Most hardware have
  121. * just one hardware state. These here represent the default state(s).
  122. */
  123. static struct xxx_par __initdata current_par;
  124. int xxxfb_init(void);
  125. int xxxfb_setup(char*);
  126. /**
  127. * xxxfb_open - Optional function. Called when the framebuffer is
  128. * first accessed.
  129. * @info: frame buffer structure that represents a single frame buffer
  130. * @user: tell us if the userland (value=1) or the console is accessing
  131. * the framebuffer.
  132. *
  133. * This function is the first function called in the framebuffer api.
  134. * Usually you don't need to provide this function. The case where it
  135. * is used is to change from a text mode hardware state to a graphics
  136. * mode state.
  137. *
  138. * Returns negative errno on error, or zero on success.
  139. */
  140. static int xxxfb_open(struct fb_info *info, int user)
  141. {
  142. return 0;
  143. }
  144. /**
  145. * xxxfb_release - Optional function. Called when the framebuffer
  146. * device is closed.
  147. * @info: frame buffer structure that represents a single frame buffer
  148. * @user: tell us if the userland (value=1) or the console is accessing
  149. * the framebuffer.
  150. *
  151. * Thus function is called when we close /dev/fb or the framebuffer
  152. * console system is released. Usually you don't need this function.
  153. * The case where it is usually used is to go from a graphics state
  154. * to a text mode state.
  155. *
  156. * Returns negative errno on error, or zero on success.
  157. */
  158. static int xxxfb_release(struct fb_info *info, int user)
  159. {
  160. return 0;
  161. }
  162. /**
  163. * xxxfb_check_var - Optional function. Validates a var passed in.
  164. * @var: frame buffer variable screen structure
  165. * @info: frame buffer structure that represents a single frame buffer
  166. *
  167. * Checks to see if the hardware supports the state requested by
  168. * var passed in. This function does not alter the hardware state!!!
  169. * This means the data stored in struct fb_info and struct xxx_par do
  170. * not change. This includes the var inside of struct fb_info.
  171. * Do NOT change these. This function can be called on its own if we
  172. * intent to only test a mode and not actually set it. The stuff in
  173. * modedb.c is a example of this. If the var passed in is slightly
  174. * off by what the hardware can support then we alter the var PASSED in
  175. * to what we can do.
  176. *
  177. * For values that are off, this function must round them _up_ to the
  178. * next value that is supported by the hardware. If the value is
  179. * greater than the highest value supported by the hardware, then this
  180. * function must return -EINVAL.
  181. *
  182. * Exception to the above rule: Some drivers have a fixed mode, ie,
  183. * the hardware is already set at boot up, and cannot be changed. In
  184. * this case, it is more acceptable that this function just return
  185. * a copy of the currently working var (info->var). Better is to not
  186. * implement this function, as the upper layer will do the copying
  187. * of the current var for you.
  188. *
  189. * Note: This is the only function where the contents of var can be
  190. * freely adjusted after the driver has been registered. If you find
  191. * that you have code outside of this function that alters the content
  192. * of var, then you are doing something wrong. Note also that the
  193. * contents of info->var must be left untouched at all times after
  194. * driver registration.
  195. *
  196. * Returns negative errno on error, or zero on success.
  197. */
  198. static int xxxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  199. {
  200. /* ... */
  201. return 0;
  202. }
  203. /**
  204. * xxxfb_set_par - Optional function. Alters the hardware state.
  205. * @info: frame buffer structure that represents a single frame buffer
  206. *
  207. * Using the fb_var_screeninfo in fb_info we set the resolution of the
  208. * this particular framebuffer. This function alters the par AND the
  209. * fb_fix_screeninfo stored in fb_info. It doesn't not alter var in
  210. * fb_info since we are using that data. This means we depend on the
  211. * data in var inside fb_info to be supported by the hardware.
  212. *
  213. * This function is also used to recover/restore the hardware to a
  214. * known working state.
  215. *
  216. * xxxfb_check_var is always called before xxxfb_set_par to ensure that
  217. * the contents of var is always valid.
  218. *
  219. * Again if you can't change the resolution you don't need this function.
  220. *
  221. * However, even if your hardware does not support mode changing,
  222. * a set_par might be needed to at least initialize the hardware to
  223. * a known working state, especially if it came back from another
  224. * process that also modifies the same hardware, such as X.
  225. *
  226. * If this is the case, a combination such as the following should work:
  227. *
  228. * static int xxxfb_check_var(struct fb_var_screeninfo *var,
  229. * struct fb_info *info)
  230. * {
  231. * *var = info->var;
  232. * return 0;
  233. * }
  234. *
  235. * static int xxxfb_set_par(struct fb_info *info)
  236. * {
  237. * init your hardware here
  238. * }
  239. *
  240. * Returns negative errno on error, or zero on success.
  241. */
  242. static int xxxfb_set_par(struct fb_info *info)
  243. {
  244. struct xxx_par *par = info->par;
  245. /* ... */
  246. return 0;
  247. }
  248. /**
  249. * xxxfb_setcolreg - Optional function. Sets a color register.
  250. * @regno: Which register in the CLUT we are programming
  251. * @red: The red value which can be up to 16 bits wide
  252. * @green: The green value which can be up to 16 bits wide
  253. * @blue: The blue value which can be up to 16 bits wide.
  254. * @transp: If supported, the alpha value which can be up to 16 bits wide.
  255. * @info: frame buffer info structure
  256. *
  257. * Set a single color register. The values supplied have a 16 bit
  258. * magnitude which needs to be scaled in this function for the hardware.
  259. * Things to take into consideration are how many color registers, if
  260. * any, are supported with the current color visual. With truecolor mode
  261. * no color palettes are supported. Here a pseudo palette is created
  262. * which we store the value in pseudo_palette in struct fb_info. For
  263. * pseudocolor mode we have a limited color palette. To deal with this
  264. * we can program what color is displayed for a particular pixel value.
  265. * DirectColor is similar in that we can program each color field. If
  266. * we have a static colormap we don't need to implement this function.
  267. *
  268. * Returns negative errno on error, or zero on success.
  269. */
  270. static int xxxfb_setcolreg(unsigned regno, unsigned red, unsigned green,
  271. unsigned blue, unsigned transp,
  272. struct fb_info *info)
  273. {
  274. if (regno >= 256) /* no. of hw registers */
  275. return -EINVAL;
  276. /*
  277. * Program hardware... do anything you want with transp
  278. */
  279. /* grayscale works only partially under directcolor */
  280. if (info->var.grayscale) {
  281. /* grayscale = 0.30*R + 0.59*G + 0.11*B */
  282. red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8;
  283. }
  284. /* Directcolor:
  285. * var->{color}.offset contains start of bitfield
  286. * var->{color}.length contains length of bitfield
  287. * {hardwarespecific} contains width of DAC
  288. * pseudo_palette[X] is programmed to (X << red.offset) |
  289. * (X << green.offset) |
  290. * (X << blue.offset)
  291. * RAMDAC[X] is programmed to (red, green, blue)
  292. * color depth = SUM(var->{color}.length)
  293. *
  294. * Pseudocolor:
  295. * var->{color}.offset is 0
  296. * var->{color}.length contains width of DAC or the number of unique
  297. * colors available (color depth)
  298. * pseudo_palette is not used
  299. * RAMDAC[X] is programmed to (red, green, blue)
  300. * color depth = var->{color}.length
  301. *
  302. * Static pseudocolor:
  303. * same as Pseudocolor, but the RAMDAC is not programmed (read-only)
  304. *
  305. * Mono01/Mono10:
  306. * Has only 2 values, black on white or white on black (fg on bg),
  307. * var->{color}.offset is 0
  308. * white = (1 << var->{color}.length) - 1, black = 0
  309. * pseudo_palette is not used
  310. * RAMDAC does not exist
  311. * color depth is always 2
  312. *
  313. * Truecolor:
  314. * does not use RAMDAC (usually has 3 of them).
  315. * var->{color}.offset contains start of bitfield
  316. * var->{color}.length contains length of bitfield
  317. * pseudo_palette is programmed to (red << red.offset) |
  318. * (green << green.offset) |
  319. * (blue << blue.offset) |
  320. * (transp << transp.offset)
  321. * RAMDAC does not exist
  322. * color depth = SUM(var->{color}.length})
  323. *
  324. * The color depth is used by fbcon for choosing the logo and also
  325. * for color palette transformation if color depth < 4
  326. *
  327. * As can be seen from the above, the field bits_per_pixel is _NOT_
  328. * a criteria for describing the color visual.
  329. *
  330. * A common mistake is assuming that bits_per_pixel <= 8 is pseudocolor,
  331. * and higher than that, true/directcolor. This is incorrect, one needs
  332. * to look at the fix->visual.
  333. *
  334. * Another common mistake is using bits_per_pixel to calculate the color
  335. * depth. The bits_per_pixel field does not directly translate to color
  336. * depth. You have to compute for the color depth (using the color
  337. * bitfields) and fix->visual as seen above.
  338. */
  339. /*
  340. * This is the point where the color is converted to something that
  341. * is acceptable by the hardware.
  342. */
  343. #define CNVT_TOHW(val,width) ((((val)<<(width))+0x7FFF-(val))>>16)
  344. red = CNVT_TOHW(red, info->var.red.length);
  345. green = CNVT_TOHW(green, info->var.green.length);
  346. blue = CNVT_TOHW(blue, info->var.blue.length);
  347. transp = CNVT_TOHW(transp, info->var.transp.length);
  348. #undef CNVT_TOHW
  349. /*
  350. * This is the point where the function feeds the color to the hardware
  351. * palette after converting the colors to something acceptable by
  352. * the hardware. Note, only FB_VISUAL_DIRECTCOLOR and
  353. * FB_VISUAL_PSEUDOCOLOR visuals need to write to the hardware palette.
  354. * If you have code that writes to the hardware CLUT, and it's not
  355. * any of the above visuals, then you are doing something wrong.
  356. */
  357. if (info->fix.visual == FB_VISUAL_DIRECTCOLOR ||
  358. info->fix.visual == FB_VISUAL_TRUECOLOR)
  359. write_{red|green|blue|transp}_to_clut();
  360. /* This is the point were you need to fill up the contents of
  361. * info->pseudo_palette. This structure is used _only_ by fbcon, thus
  362. * it only contains 16 entries to match the number of colors supported
  363. * by the console. The pseudo_palette is used only if the visual is
  364. * in directcolor or truecolor mode. With other visuals, the
  365. * pseudo_palette is not used. (This might change in the future.)
  366. *
  367. * The contents of the pseudo_palette is in raw pixel format. Ie, each
  368. * entry can be written directly to the framebuffer without any conversion.
  369. * The pseudo_palette is (void *). However, if using the generic
  370. * drawing functions (cfb_imageblit, cfb_fillrect), the pseudo_palette
  371. * must be casted to (u32 *) _regardless_ of the bits per pixel. If the
  372. * driver is using its own drawing functions, then it can use whatever
  373. * size it wants.
  374. */
  375. if (info->fix.visual == FB_VISUAL_TRUECOLOR ||
  376. info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
  377. u32 v;
  378. if (regno >= 16)
  379. return -EINVAL;
  380. v = (red << info->var.red.offset) |
  381. (green << info->var.green.offset) |
  382. (blue << info->var.blue.offset) |
  383. (transp << info->var.transp.offset);
  384. ((u32*)(info->pseudo_palette))[regno] = v;
  385. }
  386. /* ... */
  387. return 0;
  388. }
  389. /**
  390. * xxxfb_pan_display - NOT a required function. Pans the display.
  391. * @var: frame buffer variable screen structure
  392. * @info: frame buffer structure that represents a single frame buffer
  393. *
  394. * Pan (or wrap, depending on the `vmode' field) the display using the
  395. * `xoffset' and `yoffset' fields of the `var' structure.
  396. * If the values don't fit, return -EINVAL.
  397. *
  398. * Returns negative errno on error, or zero on success.
  399. */
  400. static int xxxfb_pan_display(struct fb_var_screeninfo *var,
  401. struct fb_info *info)
  402. {
  403. /*
  404. * If your hardware does not support panning, _do_ _not_ implement this
  405. * function. Creating a dummy function will just confuse user apps.
  406. */
  407. /*
  408. * Note that even if this function is fully functional, a setting of
  409. * 0 in both xpanstep and ypanstep means that this function will never
  410. * get called.
  411. */
  412. /* ... */
  413. return 0;
  414. }
  415. /**
  416. * xxxfb_blank - NOT a required function. Blanks the display.
  417. * @blank_mode: the blank mode we want.
  418. * @info: frame buffer structure that represents a single frame buffer
  419. *
  420. * Blank the screen if blank_mode != FB_BLANK_UNBLANK, else unblank.
  421. * Return 0 if blanking succeeded, != 0 if un-/blanking failed due to
  422. * e.g. a video mode which doesn't support it.
  423. *
  424. * Implements VESA suspend and powerdown modes on hardware that supports
  425. * disabling hsync/vsync:
  426. *
  427. * FB_BLANK_NORMAL = display is blanked, syncs are on.
  428. * FB_BLANK_HSYNC_SUSPEND = hsync off
  429. * FB_BLANK_VSYNC_SUSPEND = vsync off
  430. * FB_BLANK_POWERDOWN = hsync and vsync off
  431. *
  432. * If implementing this function, at least support FB_BLANK_UNBLANK.
  433. * Return !0 for any modes that are unimplemented.
  434. *
  435. */
  436. static int xxxfb_blank(int blank_mode, struct fb_info *info)
  437. {
  438. /* ... */
  439. return 0;
  440. }
  441. /* ------------ Accelerated Functions --------------------- */
  442. /*
  443. * We provide our own functions if we have hardware acceleration
  444. * or non packed pixel format layouts. If we have no hardware
  445. * acceleration, we can use a generic unaccelerated function. If using
  446. * a pack pixel format just use the functions in cfb_*.c. Each file
  447. * has one of the three different accel functions we support.
  448. */
  449. /**
  450. * xxxfb_fillrect - REQUIRED function. Can use generic routines if
  451. * non acclerated hardware and packed pixel based.
  452. * Draws a rectangle on the screen.
  453. *
  454. * @info: frame buffer structure that represents a single frame buffer
  455. * @region: The structure representing the rectangular region we
  456. * wish to draw to.
  457. *
  458. * This drawing operation places/removes a retangle on the screen
  459. * depending on the rastering operation with the value of color which
  460. * is in the current color depth format.
  461. */
  462. void xxxfb_fillrect(struct fb_info *p, const struct fb_fillrect *region)
  463. {
  464. /* Meaning of struct fb_fillrect
  465. *
  466. * @dx: The x and y corrdinates of the upper left hand corner of the
  467. * @dy: area we want to draw to.
  468. * @width: How wide the rectangle is we want to draw.
  469. * @height: How tall the rectangle is we want to draw.
  470. * @color: The color to fill in the rectangle with.
  471. * @rop: The raster operation. We can draw the rectangle with a COPY
  472. * of XOR which provides erasing effect.
  473. */
  474. }
  475. /**
  476. * xxxfb_copyarea - REQUIRED function. Can use generic routines if
  477. * non acclerated hardware and packed pixel based.
  478. * Copies one area of the screen to another area.
  479. *
  480. * @info: frame buffer structure that represents a single frame buffer
  481. * @area: Structure providing the data to copy the framebuffer contents
  482. * from one region to another.
  483. *
  484. * This drawing operation copies a rectangular area from one area of the
  485. * screen to another area.
  486. */
  487. void xxxfb_copyarea(struct fb_info *p, const struct fb_copyarea *area)
  488. {
  489. /*
  490. * @dx: The x and y coordinates of the upper left hand corner of the
  491. * @dy: destination area on the screen.
  492. * @width: How wide the rectangle is we want to copy.
  493. * @height: How tall the rectangle is we want to copy.
  494. * @sx: The x and y coordinates of the upper left hand corner of the
  495. * @sy: source area on the screen.
  496. */
  497. }
  498. /**
  499. * xxxfb_imageblit - REQUIRED function. Can use generic routines if
  500. * non acclerated hardware and packed pixel based.
  501. * Copies a image from system memory to the screen.
  502. *
  503. * @info: frame buffer structure that represents a single frame buffer
  504. * @image: structure defining the image.
  505. *
  506. * This drawing operation draws a image on the screen. It can be a
  507. * mono image (needed for font handling) or a color image (needed for
  508. * tux).
  509. */
  510. void xxxfb_imageblit(struct fb_info *p, const struct fb_image *image)
  511. {
  512. /*
  513. * @dx: The x and y coordinates of the upper left hand corner of the
  514. * @dy: destination area to place the image on the screen.
  515. * @width: How wide the image is we want to copy.
  516. * @height: How tall the image is we want to copy.
  517. * @fg_color: For mono bitmap images this is color data for
  518. * @bg_color: the foreground and background of the image to
  519. * write directly to the frmaebuffer.
  520. * @depth: How many bits represent a single pixel for this image.
  521. * @data: The actual data used to construct the image on the display.
  522. * @cmap: The colormap used for color images.
  523. */
  524. /*
  525. * The generic function, cfb_imageblit, expects that the bitmap scanlines are
  526. * padded to the next byte. Most hardware accelerators may require padding to
  527. * the next u16 or the next u32. If that is the case, the driver can specify
  528. * this by setting info->pixmap.scan_align = 2 or 4. See a more
  529. * comprehensive description of the pixmap below.
  530. */
  531. }
  532. /**
  533. * xxxfb_cursor - OPTIONAL. If your hardware lacks support
  534. * for a cursor, leave this field NULL.
  535. *
  536. * @info: frame buffer structure that represents a single frame buffer
  537. * @cursor: structure defining the cursor to draw.
  538. *
  539. * This operation is used to set or alter the properities of the
  540. * cursor.
  541. *
  542. * Returns negative errno on error, or zero on success.
  543. */
  544. int xxxfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
  545. {
  546. /*
  547. * @set: Which fields we are altering in struct fb_cursor
  548. * @enable: Disable or enable the cursor
  549. * @rop: The bit operation we want to do.
  550. * @mask: This is the cursor mask bitmap.
  551. * @dest: A image of the area we are going to display the cursor.
  552. * Used internally by the driver.
  553. * @hot: The hot spot.
  554. * @image: The actual data for the cursor image.
  555. *
  556. * NOTES ON FLAGS (cursor->set):
  557. *
  558. * FB_CUR_SETIMAGE - the cursor image has changed (cursor->image.data)
  559. * FB_CUR_SETPOS - the cursor position has changed (cursor->image.dx|dy)
  560. * FB_CUR_SETHOT - the cursor hot spot has changed (cursor->hot.dx|dy)
  561. * FB_CUR_SETCMAP - the cursor colors has changed (cursor->fg_color|bg_color)
  562. * FB_CUR_SETSHAPE - the cursor bitmask has changed (cursor->mask)
  563. * FB_CUR_SETSIZE - the cursor size has changed (cursor->width|height)
  564. * FB_CUR_SETALL - everything has changed
  565. *
  566. * NOTES ON ROPs (cursor->rop, Raster Operation)
  567. *
  568. * ROP_XOR - cursor->image.data XOR cursor->mask
  569. * ROP_COPY - curosr->image.data AND cursor->mask
  570. *
  571. * OTHER NOTES:
  572. *
  573. * - fbcon only supports a 2-color cursor (cursor->image.depth = 1)
  574. * - The fb_cursor structure, @cursor, _will_ always contain valid
  575. * fields, whether any particular bitfields in cursor->set is set
  576. * or not.
  577. */
  578. }
  579. /**
  580. * xxxfb_rotate - NOT a required function. If your hardware
  581. * supports rotation the whole screen then
  582. * you would provide a hook for this.
  583. *
  584. * @info: frame buffer structure that represents a single frame buffer
  585. * @angle: The angle we rotate the screen.
  586. *
  587. * This operation is used to set or alter the properities of the
  588. * cursor.
  589. */
  590. void xxxfb_rotate(struct fb_info *info, int angle)
  591. {
  592. /* Will be deprecated */
  593. }
  594. /**
  595. * xxxfb_sync - NOT a required function. Normally the accel engine
  596. * for a graphics card take a specific amount of time.
  597. * Often we have to wait for the accelerator to finish
  598. * its operation before we can write to the framebuffer
  599. * so we can have consistent display output.
  600. *
  601. * @info: frame buffer structure that represents a single frame buffer
  602. *
  603. * If the driver has implemented its own hardware-based drawing function,
  604. * implementing this function is highly recommended.
  605. */
  606. int xxxfb_sync(struct fb_info *info)
  607. {
  608. return 0;
  609. }
  610. /*
  611. * Frame buffer operations
  612. */
  613. static struct fb_ops xxxfb_ops = {
  614. .owner = THIS_MODULE,
  615. .fb_open = xxxfb_open,
  616. .fb_read = xxxfb_read,
  617. .fb_write = xxxfb_write,
  618. .fb_release = xxxfb_release,
  619. .fb_check_var = xxxfb_check_var,
  620. .fb_set_par = xxxfb_set_par,
  621. .fb_setcolreg = xxxfb_setcolreg,
  622. .fb_blank = xxxfb_blank,
  623. .fb_pan_display = xxxfb_pan_display,
  624. .fb_fillrect = xxxfb_fillrect, /* Needed !!! */
  625. .fb_copyarea = xxxfb_copyarea, /* Needed !!! */
  626. .fb_imageblit = xxxfb_imageblit, /* Needed !!! */
  627. .fb_cursor = xxxfb_cursor, /* Optional !!! */
  628. .fb_rotate = xxxfb_rotate,
  629. .fb_sync = xxxfb_sync,
  630. .fb_ioctl = xxxfb_ioctl,
  631. .fb_mmap = xxxfb_mmap,
  632. };
  633. /* ------------------------------------------------------------------------- */
  634. /*
  635. * Initialization
  636. */
  637. /* static int __init xxfb_probe (struct device *device) -- for platform devs */
  638. static int __devinit xxxfb_probe(struct pci_dev *dev,
  639. const struct pci_device_id *ent)
  640. {
  641. struct fb_info *info;
  642. struct xxx_par *par;
  643. struct device* device = &dev->dev; /* for pci drivers */
  644. int cmap_len, retval;
  645. /*
  646. * Dynamically allocate info and par
  647. */
  648. info = framebuffer_alloc(sizeof(struct xxx_par), device);
  649. if (!info) {
  650. /* goto error path */
  651. }
  652. par = info->par;
  653. /*
  654. * Here we set the screen_base to the virtual memory address
  655. * for the framebuffer. Usually we obtain the resource address
  656. * from the bus layer and then translate it to virtual memory
  657. * space via ioremap. Consult ioport.h.
  658. */
  659. info->screen_base = framebuffer_virtual_memory;
  660. info->fbops = &xxxfb_ops;
  661. info->fix = xxxfb_fix; /* this will be the only time xxxfb_fix will be
  662. * used, so mark it as __devinitdata
  663. */
  664. info->pseudo_palette = pseudo_palette; /* The pseudopalette is an
  665. * 16-member array
  666. */
  667. /*
  668. * Set up flags to indicate what sort of acceleration your
  669. * driver can provide (pan/wrap/copyarea/etc.) and whether it
  670. * is a module -- see FBINFO_* in include/linux/fb.h
  671. *
  672. * If your hardware can support any of the hardware accelerated functions
  673. * fbcon performance will improve if info->flags is set properly.
  674. *
  675. * FBINFO_HWACCEL_COPYAREA - hardware moves
  676. * FBINFO_HWACCEL_FILLRECT - hardware fills
  677. * FBINFO_HWACCEL_IMAGEBLIT - hardware mono->color expansion
  678. * FBINFO_HWACCEL_YPAN - hardware can pan display in y-axis
  679. * FBINFO_HWACCEL_YWRAP - hardware can wrap display in y-axis
  680. * FBINFO_HWACCEL_DISABLED - supports hardware accels, but disabled
  681. * FBINFO_READS_FAST - if set, prefer moves over mono->color expansion
  682. * FBINFO_MISC_TILEBLITTING - hardware can do tile blits
  683. *
  684. * NOTE: These are for fbcon use only.
  685. */
  686. info->flags = FBINFO_DEFAULT;
  687. /********************* This stage is optional ******************************/
  688. /*
  689. * The struct pixmap is a scratch pad for the drawing functions. This
  690. * is where the monochrome bitmap is constructed by the higher layers
  691. * and then passed to the accelerator. For drivers that uses
  692. * cfb_imageblit, you can skip this part. For those that have a more
  693. * rigorous requirement, this stage is needed
  694. */
  695. /* PIXMAP_SIZE should be small enough to optimize drawing, but not
  696. * large enough that memory is wasted. A safe size is
  697. * (max_xres * max_font_height/8). max_xres is driver dependent,
  698. * max_font_height is 32.
  699. */
  700. info->pixmap.addr = kmalloc(PIXMAP_SIZE, GFP_KERNEL);
  701. if (!info->pixmap.addr) {
  702. /* goto error */
  703. }
  704. info->pixmap.size = PIXMAP_SIZE;
  705. /*
  706. * FB_PIXMAP_SYSTEM - memory is in system ram
  707. * FB_PIXMAP_IO - memory is iomapped
  708. * FB_PIXMAP_SYNC - if set, will call fb_sync() per access to pixmap,
  709. * usually if FB_PIXMAP_IO is set.
  710. *
  711. * Currently, FB_PIXMAP_IO is unimplemented.
  712. */
  713. info->pixmap.flags = FB_PIXMAP_SYSTEM;
  714. /*
  715. * scan_align is the number of padding for each scanline. It is in bytes.
  716. * Thus for accelerators that need padding to the next u32, put 4 here.
  717. */
  718. info->pixmap.scan_align = 4;
  719. /*
  720. * buf_align is the amount to be padded for the buffer. For example,
  721. * the i810fb needs a scan_align of 2 but expects it to be fed with
  722. * dwords, so a buf_align = 4 is required.
  723. */
  724. info->pixmap.buf_align = 4;
  725. /* access_align is how many bits can be accessed from the framebuffer
  726. * ie. some epson cards allow 16-bit access only. Most drivers will
  727. * be safe with u32 here.
  728. *
  729. * NOTE: This field is currently unused.
  730. */
  731. info->pixmap.scan_align = 32;
  732. /***************************** End optional stage ***************************/
  733. /*
  734. * This should give a reasonable default video mode. The following is
  735. * done when we can set a video mode.
  736. */
  737. if (!mode_option)
  738. mode_option = "640x480@60";
  739. retval = fb_find_mode(&info->var, info, mode_option, NULL, 0, NULL, 8);
  740. if (!retval || retval == 4)
  741. return -EINVAL;
  742. /* This has to been done !!! */
  743. fb_alloc_cmap(&info->cmap, cmap_len, 0);
  744. /*
  745. * The following is done in the case of having hardware with a static
  746. * mode. If we are setting the mode ourselves we don't call this.
  747. */
  748. info->var = xxxfb_var;
  749. /*
  750. * For drivers that can...
  751. */
  752. xxxfb_check_var(&info->var, info);
  753. /*
  754. * Does a call to fb_set_par() before register_framebuffer needed? This
  755. * will depend on you and the hardware. If you are sure that your driver
  756. * is the only device in the system, a call to fb_set_par() is safe.
  757. *
  758. * Hardware in x86 systems has a VGA core. Calling set_par() at this
  759. * point will corrupt the VGA console, so it might be safer to skip a
  760. * call to set_par here and just allow fbcon to do it for you.
  761. */
  762. /* xxxfb_set_par(info); */
  763. if (register_framebuffer(info) < 0)
  764. return -EINVAL;
  765. printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node,
  766. info->fix.id);
  767. pci_set_drvdata(dev, info); /* or dev_set_drvdata(device, info) */
  768. return 0;
  769. }
  770. /*
  771. * Cleanup
  772. */
  773. /* static void __devexit xxxfb_remove(struct device *device) */
  774. static void __devexit xxxfb_remove(struct pci_dev *dev)
  775. {
  776. struct fb_info *info = pci_get_drvdata(dev);
  777. /* or dev_get_drvdata(device); */
  778. if (info) {
  779. unregister_framebuffer(info);
  780. fb_dealloc_cmap(&info->cmap);
  781. /* ... */
  782. framebuffer_release(info);
  783. }
  784. }
  785. #ifdef CONFIG_PCI
  786. #ifdef CONFIG_PM
  787. /**
  788. * xxxfb_suspend - Optional but recommended function. Suspend the device.
  789. * @dev: PCI device
  790. * @msg: the suspend event code.
  791. *
  792. * See Documentation/power/devices.txt for more information
  793. */
  794. static int xxxfb_suspend(struct pci_dev *dev, pm_message_t msg)
  795. {
  796. struct fb_info *info = pci_get_drvdata(dev);
  797. struct xxxfb_par *par = info->par;
  798. /* suspend here */
  799. return 0;
  800. }
  801. /**
  802. * xxxfb_resume - Optional but recommended function. Resume the device.
  803. * @dev: PCI device
  804. *
  805. * See Documentation/power/devices.txt for more information
  806. */
  807. static int xxxfb_resume(struct pci_dev *dev)
  808. {
  809. struct fb_info *info = pci_get_drvdata(dev);
  810. struct xxxfb_par *par = info->par;
  811. /* resume here */
  812. return 0;
  813. }
  814. #else
  815. #define xxxfb_suspend NULL
  816. #define xxxfb_resume NULL
  817. #endif /* CONFIG_PM */
  818. static struct pci_device_id xxxfb_id_table[] = {
  819. { PCI_VENDOR_ID_XXX, PCI_DEVICE_ID_XXX,
  820. PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
  821. PCI_CLASS_MASK, 0 },
  822. { 0, }
  823. };
  824. /* For PCI drivers */
  825. static struct pci_driver xxxfb_driver = {
  826. .name = "xxxfb",
  827. .id_table = xxxfb_id_table,
  828. .probe = xxxfb_probe,
  829. .remove = __devexit_p(xxxfb_remove),
  830. .suspend = xxxfb_suspend, /* optional but recommended */
  831. .resume = xxxfb_resume, /* optional but recommended */
  832. };
  833. MODULE_DEVICE_TABLE(pci, xxxfb_id_table);
  834. int __init xxxfb_init(void)
  835. {
  836. /*
  837. * For kernel boot options (in 'video=xxxfb:<options>' format)
  838. */
  839. #ifndef MODULE
  840. char *option = NULL;
  841. if (fb_get_options("xxxfb", &option))
  842. return -ENODEV;
  843. xxxfb_setup(option);
  844. #endif
  845. return pci_register_driver(&xxxfb_driver);
  846. }
  847. static void __exit xxxfb_exit(void)
  848. {
  849. pci_unregister_driver(&xxxfb_driver);
  850. }
  851. #else /* non PCI, platform drivers */
  852. #include <linux/platform_device.h>
  853. /* for platform devices */
  854. #ifdef CONFIG_PM
  855. /**
  856. * xxxfb_suspend - Optional but recommended function. Suspend the device.
  857. * @dev: platform device
  858. * @msg: the suspend event code.
  859. *
  860. * See Documentation/power/devices.txt for more information
  861. */
  862. static int xxxfb_suspend(struct platform_device *dev, pm_message_t msg)
  863. {
  864. struct fb_info *info = platform_get_drvdata(dev);
  865. struct xxxfb_par *par = info->par;
  866. /* suspend here */
  867. return 0;
  868. }
  869. /**
  870. * xxxfb_resume - Optional but recommended function. Resume the device.
  871. * @dev: platform device
  872. *
  873. * See Documentation/power/devices.txt for more information
  874. */
  875. static int xxxfb_resume(struct platform_dev *dev)
  876. {
  877. struct fb_info *info = platform_get_drvdata(dev);
  878. struct xxxfb_par *par = info->par;
  879. /* resume here */
  880. return 0;
  881. }
  882. #else
  883. #define xxxfb_suspend NULL
  884. #define xxxfb_resume NULL
  885. #endif /* CONFIG_PM */
  886. static struct device_driver xxxfb_driver = {
  887. .name = "xxxfb",
  888. .bus = &platform_bus_type,
  889. .probe = xxxfb_probe,
  890. .remove = xxxfb_remove,
  891. .suspend = xxxfb_suspend, /* optional but recommended */
  892. .resume = xxxfb_resume, /* optional but recommended */
  893. };
  894. static struct platform_device xxxfb_device = {
  895. .name = "xxxfb",
  896. };
  897. static int __init xxxfb_init(void)
  898. {
  899. int ret;
  900. /*
  901. * For kernel boot options (in 'video=xxxfb:<options>' format)
  902. */
  903. #ifndef MODULE
  904. char *option = NULL;
  905. if (fb_get_options("xxxfb", &option))
  906. return -ENODEV;
  907. xxxfb_setup(option);
  908. #endif
  909. ret = driver_register(&xxxfb_driver);
  910. if (!ret) {
  911. ret = platform_device_register(&xxxfb_device);
  912. if (ret)
  913. driver_unregister(&xxxfb_driver);
  914. }
  915. return ret;
  916. }
  917. static void __exit xxxfb_exit(void)
  918. {
  919. platform_device_unregister(&xxxfb_device);
  920. driver_unregister(&xxxfb_driver);
  921. }
  922. #endif /* CONFIG_PCI */
  923. #ifdef MODULE
  924. /*
  925. * Setup
  926. */
  927. /*
  928. * Only necessary if your driver takes special options,
  929. * otherwise we fall back on the generic fb_setup().
  930. */
  931. int __init xxxfb_setup(char *options)
  932. {
  933. /* Parse user speficied options (`video=xxxfb:') */
  934. }
  935. #endif /* MODULE */
  936. /* ------------------------------------------------------------------------- */
  937. /*
  938. * Modularization
  939. */
  940. module_init(xxxfb_init);
  941. module_exit(xxxfb_remove);
  942. MODULE_LICENSE("GPL");