pxafb.c 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  1. /*
  2. * linux/drivers/video/pxafb.c
  3. *
  4. * Copyright (C) 1999 Eric A. Thomas.
  5. * Copyright (C) 2004 Jean-Frederic Clere.
  6. * Copyright (C) 2004 Ian Campbell.
  7. * Copyright (C) 2004 Jeff Lackey.
  8. * Based on sa1100fb.c Copyright (C) 1999 Eric A. Thomas
  9. * which in turn is
  10. * Based on acornfb.c Copyright (C) Russell King.
  11. *
  12. * This file is subject to the terms and conditions of the GNU General Public
  13. * License. See the file COPYING in the main directory of this archive for
  14. * more details.
  15. *
  16. * Intel PXA250/210 LCD Controller Frame Buffer Driver
  17. *
  18. * Please direct your questions and comments on this driver to the following
  19. * email address:
  20. *
  21. * linux-arm-kernel@lists.arm.linux.org.uk
  22. *
  23. * Add support for overlay1 and overlay2 based on pxafb_overlay.c:
  24. *
  25. * Copyright (C) 2004, Intel Corporation
  26. *
  27. * 2003/08/27: <yu.tang@intel.com>
  28. * 2004/03/10: <stanley.cai@intel.com>
  29. * 2004/10/28: <yan.yin@intel.com>
  30. *
  31. * Copyright (C) 2006-2008 Marvell International Ltd.
  32. * All Rights Reserved
  33. */
  34. #include <linux/module.h>
  35. #include <linux/moduleparam.h>
  36. #include <linux/kernel.h>
  37. #include <linux/sched.h>
  38. #include <linux/errno.h>
  39. #include <linux/string.h>
  40. #include <linux/interrupt.h>
  41. #include <linux/slab.h>
  42. #include <linux/mm.h>
  43. #include <linux/fb.h>
  44. #include <linux/delay.h>
  45. #include <linux/init.h>
  46. #include <linux/ioport.h>
  47. #include <linux/cpufreq.h>
  48. #include <linux/platform_device.h>
  49. #include <linux/dma-mapping.h>
  50. #include <linux/clk.h>
  51. #include <linux/err.h>
  52. #include <linux/completion.h>
  53. #include <linux/mutex.h>
  54. #include <linux/kthread.h>
  55. #include <linux/freezer.h>
  56. #include <mach/hardware.h>
  57. #include <asm/io.h>
  58. #include <asm/irq.h>
  59. #include <asm/div64.h>
  60. #include <mach/bitfield.h>
  61. #include <mach/pxafb.h>
  62. /*
  63. * Complain if VAR is out of range.
  64. */
  65. #define DEBUG_VAR 1
  66. #include "pxafb.h"
  67. /* Bits which should not be set in machine configuration structures */
  68. #define LCCR0_INVALID_CONFIG_MASK (LCCR0_OUM | LCCR0_BM | LCCR0_QDM |\
  69. LCCR0_DIS | LCCR0_EFM | LCCR0_IUM |\
  70. LCCR0_SFM | LCCR0_LDM | LCCR0_ENB)
  71. #define LCCR3_INVALID_CONFIG_MASK (LCCR3_HSP | LCCR3_VSP |\
  72. LCCR3_PCD | LCCR3_BPP(0xf))
  73. static int pxafb_activate_var(struct fb_var_screeninfo *var,
  74. struct pxafb_info *);
  75. static void set_ctrlr_state(struct pxafb_info *fbi, u_int state);
  76. static void setup_base_frame(struct pxafb_info *fbi, int branch);
  77. static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
  78. unsigned long offset, size_t size);
  79. static unsigned long video_mem_size = 0;
  80. static inline unsigned long
  81. lcd_readl(struct pxafb_info *fbi, unsigned int off)
  82. {
  83. return __raw_readl(fbi->mmio_base + off);
  84. }
  85. static inline void
  86. lcd_writel(struct pxafb_info *fbi, unsigned int off, unsigned long val)
  87. {
  88. __raw_writel(val, fbi->mmio_base + off);
  89. }
  90. static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state)
  91. {
  92. unsigned long flags;
  93. local_irq_save(flags);
  94. /*
  95. * We need to handle two requests being made at the same time.
  96. * There are two important cases:
  97. * 1. When we are changing VT (C_REENABLE) while unblanking
  98. * (C_ENABLE) We must perform the unblanking, which will
  99. * do our REENABLE for us.
  100. * 2. When we are blanking, but immediately unblank before
  101. * we have blanked. We do the "REENABLE" thing here as
  102. * well, just to be sure.
  103. */
  104. if (fbi->task_state == C_ENABLE && state == C_REENABLE)
  105. state = (u_int) -1;
  106. if (fbi->task_state == C_DISABLE && state == C_ENABLE)
  107. state = C_REENABLE;
  108. if (state != (u_int)-1) {
  109. fbi->task_state = state;
  110. schedule_work(&fbi->task);
  111. }
  112. local_irq_restore(flags);
  113. }
  114. static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
  115. {
  116. chan &= 0xffff;
  117. chan >>= 16 - bf->length;
  118. return chan << bf->offset;
  119. }
  120. static int
  121. pxafb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
  122. u_int trans, struct fb_info *info)
  123. {
  124. struct pxafb_info *fbi = (struct pxafb_info *)info;
  125. u_int val;
  126. if (regno >= fbi->palette_size)
  127. return 1;
  128. if (fbi->fb.var.grayscale) {
  129. fbi->palette_cpu[regno] = ((blue >> 8) & 0x00ff);
  130. return 0;
  131. }
  132. switch (fbi->lccr4 & LCCR4_PAL_FOR_MASK) {
  133. case LCCR4_PAL_FOR_0:
  134. val = ((red >> 0) & 0xf800);
  135. val |= ((green >> 5) & 0x07e0);
  136. val |= ((blue >> 11) & 0x001f);
  137. fbi->palette_cpu[regno] = val;
  138. break;
  139. case LCCR4_PAL_FOR_1:
  140. val = ((red << 8) & 0x00f80000);
  141. val |= ((green >> 0) & 0x0000fc00);
  142. val |= ((blue >> 8) & 0x000000f8);
  143. ((u32 *)(fbi->palette_cpu))[regno] = val;
  144. break;
  145. case LCCR4_PAL_FOR_2:
  146. val = ((red << 8) & 0x00fc0000);
  147. val |= ((green >> 0) & 0x0000fc00);
  148. val |= ((blue >> 8) & 0x000000fc);
  149. ((u32 *)(fbi->palette_cpu))[regno] = val;
  150. break;
  151. case LCCR4_PAL_FOR_3:
  152. val = ((red << 8) & 0x00ff0000);
  153. val |= ((green >> 0) & 0x0000ff00);
  154. val |= ((blue >> 8) & 0x000000ff);
  155. ((u32 *)(fbi->palette_cpu))[regno] = val;
  156. break;
  157. }
  158. return 0;
  159. }
  160. static int
  161. pxafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  162. u_int trans, struct fb_info *info)
  163. {
  164. struct pxafb_info *fbi = (struct pxafb_info *)info;
  165. unsigned int val;
  166. int ret = 1;
  167. /*
  168. * If inverse mode was selected, invert all the colours
  169. * rather than the register number. The register number
  170. * is what you poke into the framebuffer to produce the
  171. * colour you requested.
  172. */
  173. if (fbi->cmap_inverse) {
  174. red = 0xffff - red;
  175. green = 0xffff - green;
  176. blue = 0xffff - blue;
  177. }
  178. /*
  179. * If greyscale is true, then we convert the RGB value
  180. * to greyscale no matter what visual we are using.
  181. */
  182. if (fbi->fb.var.grayscale)
  183. red = green = blue = (19595 * red + 38470 * green +
  184. 7471 * blue) >> 16;
  185. switch (fbi->fb.fix.visual) {
  186. case FB_VISUAL_TRUECOLOR:
  187. /*
  188. * 16-bit True Colour. We encode the RGB value
  189. * according to the RGB bitfield information.
  190. */
  191. if (regno < 16) {
  192. u32 *pal = fbi->fb.pseudo_palette;
  193. val = chan_to_field(red, &fbi->fb.var.red);
  194. val |= chan_to_field(green, &fbi->fb.var.green);
  195. val |= chan_to_field(blue, &fbi->fb.var.blue);
  196. pal[regno] = val;
  197. ret = 0;
  198. }
  199. break;
  200. case FB_VISUAL_STATIC_PSEUDOCOLOR:
  201. case FB_VISUAL_PSEUDOCOLOR:
  202. ret = pxafb_setpalettereg(regno, red, green, blue, trans, info);
  203. break;
  204. }
  205. return ret;
  206. }
  207. /* calculate pixel depth, transparency bit included, >=16bpp formats _only_ */
  208. static inline int var_to_depth(struct fb_var_screeninfo *var)
  209. {
  210. return var->red.length + var->green.length +
  211. var->blue.length + var->transp.length;
  212. }
  213. /* calculate 4-bit BPP value for LCCR3 and OVLxC1 */
  214. static int pxafb_var_to_bpp(struct fb_var_screeninfo *var)
  215. {
  216. int bpp = -EINVAL;
  217. switch (var->bits_per_pixel) {
  218. case 1: bpp = 0; break;
  219. case 2: bpp = 1; break;
  220. case 4: bpp = 2; break;
  221. case 8: bpp = 3; break;
  222. case 16: bpp = 4; break;
  223. case 24:
  224. switch (var_to_depth(var)) {
  225. case 18: bpp = 6; break; /* 18-bits/pixel packed */
  226. case 19: bpp = 8; break; /* 19-bits/pixel packed */
  227. case 24: bpp = 9; break;
  228. }
  229. break;
  230. case 32:
  231. switch (var_to_depth(var)) {
  232. case 18: bpp = 5; break; /* 18-bits/pixel unpacked */
  233. case 19: bpp = 7; break; /* 19-bits/pixel unpacked */
  234. case 25: bpp = 10; break;
  235. }
  236. break;
  237. }
  238. return bpp;
  239. }
  240. /*
  241. * pxafb_var_to_lccr3():
  242. * Convert a bits per pixel value to the correct bit pattern for LCCR3
  243. *
  244. * NOTE: for PXA27x with overlays support, the LCCR3_PDFOR_x bits have an
  245. * implication of the acutal use of transparency bit, which we handle it
  246. * here separatedly. See PXA27x Developer's Manual, Section <<7.4.6 Pixel
  247. * Formats>> for the valid combination of PDFOR, PAL_FOR for various BPP.
  248. *
  249. * Transparency for palette pixel formats is not supported at the moment.
  250. */
  251. static uint32_t pxafb_var_to_lccr3(struct fb_var_screeninfo *var)
  252. {
  253. int bpp = pxafb_var_to_bpp(var);
  254. uint32_t lccr3;
  255. if (bpp < 0)
  256. return 0;
  257. lccr3 = LCCR3_BPP(bpp);
  258. switch (var_to_depth(var)) {
  259. case 16: lccr3 |= var->transp.length ? LCCR3_PDFOR_3 : 0; break;
  260. case 18: lccr3 |= LCCR3_PDFOR_3; break;
  261. case 24: lccr3 |= var->transp.length ? LCCR3_PDFOR_2 : LCCR3_PDFOR_3;
  262. break;
  263. case 19:
  264. case 25: lccr3 |= LCCR3_PDFOR_0; break;
  265. }
  266. return lccr3;
  267. }
  268. #define SET_PIXFMT(v, r, g, b, t) \
  269. ({ \
  270. (v)->transp.offset = (t) ? (r) + (g) + (b) : 0; \
  271. (v)->transp.length = (t) ? (t) : 0; \
  272. (v)->blue.length = (b); (v)->blue.offset = 0; \
  273. (v)->green.length = (g); (v)->green.offset = (b); \
  274. (v)->red.length = (r); (v)->red.offset = (b) + (g); \
  275. })
  276. /* set the RGBT bitfields of fb_var_screeninf according to
  277. * var->bits_per_pixel and given depth
  278. */
  279. static void pxafb_set_pixfmt(struct fb_var_screeninfo *var, int depth)
  280. {
  281. if (depth == 0)
  282. depth = var->bits_per_pixel;
  283. if (var->bits_per_pixel < 16) {
  284. /* indexed pixel formats */
  285. var->red.offset = 0; var->red.length = 8;
  286. var->green.offset = 0; var->green.length = 8;
  287. var->blue.offset = 0; var->blue.length = 8;
  288. var->transp.offset = 0; var->transp.length = 8;
  289. }
  290. switch (depth) {
  291. case 16: var->transp.length ?
  292. SET_PIXFMT(var, 5, 5, 5, 1) : /* RGBT555 */
  293. SET_PIXFMT(var, 5, 6, 5, 0); break; /* RGB565 */
  294. case 18: SET_PIXFMT(var, 6, 6, 6, 0); break; /* RGB666 */
  295. case 19: SET_PIXFMT(var, 6, 6, 6, 1); break; /* RGBT666 */
  296. case 24: var->transp.length ?
  297. SET_PIXFMT(var, 8, 8, 7, 1) : /* RGBT887 */
  298. SET_PIXFMT(var, 8, 8, 8, 0); break; /* RGB888 */
  299. case 25: SET_PIXFMT(var, 8, 8, 8, 1); break; /* RGBT888 */
  300. }
  301. }
  302. #ifdef CONFIG_CPU_FREQ
  303. /*
  304. * pxafb_display_dma_period()
  305. * Calculate the minimum period (in picoseconds) between two DMA
  306. * requests for the LCD controller. If we hit this, it means we're
  307. * doing nothing but LCD DMA.
  308. */
  309. static unsigned int pxafb_display_dma_period(struct fb_var_screeninfo *var)
  310. {
  311. /*
  312. * Period = pixclock * bits_per_byte * bytes_per_transfer
  313. * / memory_bits_per_pixel;
  314. */
  315. return var->pixclock * 8 * 16 / var->bits_per_pixel;
  316. }
  317. #endif
  318. /*
  319. * Select the smallest mode that allows the desired resolution to be
  320. * displayed. If desired parameters can be rounded up.
  321. */
  322. static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
  323. struct fb_var_screeninfo *var)
  324. {
  325. struct pxafb_mode_info *mode = NULL;
  326. struct pxafb_mode_info *modelist = mach->modes;
  327. unsigned int best_x = 0xffffffff, best_y = 0xffffffff;
  328. unsigned int i;
  329. for (i = 0; i < mach->num_modes; i++) {
  330. if (modelist[i].xres >= var->xres &&
  331. modelist[i].yres >= var->yres &&
  332. modelist[i].xres < best_x &&
  333. modelist[i].yres < best_y &&
  334. modelist[i].bpp >= var->bits_per_pixel) {
  335. best_x = modelist[i].xres;
  336. best_y = modelist[i].yres;
  337. mode = &modelist[i];
  338. }
  339. }
  340. return mode;
  341. }
  342. static void pxafb_setmode(struct fb_var_screeninfo *var,
  343. struct pxafb_mode_info *mode)
  344. {
  345. var->xres = mode->xres;
  346. var->yres = mode->yres;
  347. var->bits_per_pixel = mode->bpp;
  348. var->pixclock = mode->pixclock;
  349. var->hsync_len = mode->hsync_len;
  350. var->left_margin = mode->left_margin;
  351. var->right_margin = mode->right_margin;
  352. var->vsync_len = mode->vsync_len;
  353. var->upper_margin = mode->upper_margin;
  354. var->lower_margin = mode->lower_margin;
  355. var->sync = mode->sync;
  356. var->grayscale = mode->cmap_greyscale;
  357. /* set the initial RGBA bitfields */
  358. pxafb_set_pixfmt(var, mode->depth);
  359. }
  360. static int pxafb_adjust_timing(struct pxafb_info *fbi,
  361. struct fb_var_screeninfo *var)
  362. {
  363. int line_length;
  364. var->xres = max_t(int, var->xres, MIN_XRES);
  365. var->yres = max_t(int, var->yres, MIN_YRES);
  366. if (!(fbi->lccr0 & LCCR0_LCDT)) {
  367. clamp_val(var->hsync_len, 1, 64);
  368. clamp_val(var->vsync_len, 1, 64);
  369. clamp_val(var->left_margin, 1, 255);
  370. clamp_val(var->right_margin, 1, 255);
  371. clamp_val(var->upper_margin, 1, 255);
  372. clamp_val(var->lower_margin, 1, 255);
  373. }
  374. /* make sure each line is aligned on word boundary */
  375. line_length = var->xres * var->bits_per_pixel / 8;
  376. line_length = ALIGN(line_length, 4);
  377. var->xres = line_length * 8 / var->bits_per_pixel;
  378. /* we don't support xpan, force xres_virtual to be equal to xres */
  379. var->xres_virtual = var->xres;
  380. if (var->accel_flags & FB_ACCELF_TEXT)
  381. var->yres_virtual = fbi->fb.fix.smem_len / line_length;
  382. else
  383. var->yres_virtual = max(var->yres_virtual, var->yres);
  384. /* check for limits */
  385. if (var->xres > MAX_XRES || var->yres > MAX_YRES)
  386. return -EINVAL;
  387. if (var->yres > var->yres_virtual)
  388. return -EINVAL;
  389. return 0;
  390. }
  391. /*
  392. * pxafb_check_var():
  393. * Get the video params out of 'var'. If a value doesn't fit, round it up,
  394. * if it's too big, return -EINVAL.
  395. *
  396. * Round up in the following order: bits_per_pixel, xres,
  397. * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
  398. * bitfields, horizontal timing, vertical timing.
  399. */
  400. static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  401. {
  402. struct pxafb_info *fbi = (struct pxafb_info *)info;
  403. struct pxafb_mach_info *inf = fbi->dev->platform_data;
  404. int err;
  405. if (inf->fixed_modes) {
  406. struct pxafb_mode_info *mode;
  407. mode = pxafb_getmode(inf, var);
  408. if (!mode)
  409. return -EINVAL;
  410. pxafb_setmode(var, mode);
  411. }
  412. /* do a test conversion to BPP fields to check the color formats */
  413. err = pxafb_var_to_bpp(var);
  414. if (err < 0)
  415. return err;
  416. pxafb_set_pixfmt(var, var_to_depth(var));
  417. err = pxafb_adjust_timing(fbi, var);
  418. if (err)
  419. return err;
  420. #ifdef CONFIG_CPU_FREQ
  421. pr_debug("pxafb: dma period = %d ps\n",
  422. pxafb_display_dma_period(var));
  423. #endif
  424. return 0;
  425. }
  426. /*
  427. * pxafb_set_par():
  428. * Set the user defined part of the display for the specified console
  429. */
  430. static int pxafb_set_par(struct fb_info *info)
  431. {
  432. struct pxafb_info *fbi = (struct pxafb_info *)info;
  433. struct fb_var_screeninfo *var = &info->var;
  434. if (var->bits_per_pixel >= 16)
  435. fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
  436. else if (!fbi->cmap_static)
  437. fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
  438. else {
  439. /*
  440. * Some people have weird ideas about wanting static
  441. * pseudocolor maps. I suspect their user space
  442. * applications are broken.
  443. */
  444. fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
  445. }
  446. fbi->fb.fix.line_length = var->xres_virtual *
  447. var->bits_per_pixel / 8;
  448. if (var->bits_per_pixel >= 16)
  449. fbi->palette_size = 0;
  450. else
  451. fbi->palette_size = var->bits_per_pixel == 1 ?
  452. 4 : 1 << var->bits_per_pixel;
  453. fbi->palette_cpu = (u16 *)&fbi->dma_buff->palette[0];
  454. if (fbi->fb.var.bits_per_pixel >= 16)
  455. fb_dealloc_cmap(&fbi->fb.cmap);
  456. else
  457. fb_alloc_cmap(&fbi->fb.cmap, 1<<fbi->fb.var.bits_per_pixel, 0);
  458. pxafb_activate_var(var, fbi);
  459. return 0;
  460. }
  461. static int pxafb_pan_display(struct fb_var_screeninfo *var,
  462. struct fb_info *info)
  463. {
  464. struct pxafb_info *fbi = (struct pxafb_info *)info;
  465. int dma = DMA_MAX + DMA_BASE;
  466. if (fbi->state != C_ENABLE)
  467. return 0;
  468. setup_base_frame(fbi, 1);
  469. if (fbi->lccr0 & LCCR0_SDS)
  470. lcd_writel(fbi, FBR1, fbi->fdadr[dma + 1] | 0x1);
  471. lcd_writel(fbi, FBR0, fbi->fdadr[dma] | 0x1);
  472. return 0;
  473. }
  474. /*
  475. * pxafb_blank():
  476. * Blank the display by setting all palette values to zero. Note, the
  477. * 16 bpp mode does not really use the palette, so this will not
  478. * blank the display in all modes.
  479. */
  480. static int pxafb_blank(int blank, struct fb_info *info)
  481. {
  482. struct pxafb_info *fbi = (struct pxafb_info *)info;
  483. int i;
  484. switch (blank) {
  485. case FB_BLANK_POWERDOWN:
  486. case FB_BLANK_VSYNC_SUSPEND:
  487. case FB_BLANK_HSYNC_SUSPEND:
  488. case FB_BLANK_NORMAL:
  489. if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
  490. fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
  491. for (i = 0; i < fbi->palette_size; i++)
  492. pxafb_setpalettereg(i, 0, 0, 0, 0, info);
  493. pxafb_schedule_work(fbi, C_DISABLE);
  494. /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
  495. break;
  496. case FB_BLANK_UNBLANK:
  497. /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
  498. if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
  499. fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
  500. fb_set_cmap(&fbi->fb.cmap, info);
  501. pxafb_schedule_work(fbi, C_ENABLE);
  502. }
  503. return 0;
  504. }
  505. static struct fb_ops pxafb_ops = {
  506. .owner = THIS_MODULE,
  507. .fb_check_var = pxafb_check_var,
  508. .fb_set_par = pxafb_set_par,
  509. .fb_pan_display = pxafb_pan_display,
  510. .fb_setcolreg = pxafb_setcolreg,
  511. .fb_fillrect = cfb_fillrect,
  512. .fb_copyarea = cfb_copyarea,
  513. .fb_imageblit = cfb_imageblit,
  514. .fb_blank = pxafb_blank,
  515. };
  516. #ifdef CONFIG_FB_PXA_OVERLAY
  517. static void overlay1fb_setup(struct pxafb_layer *ofb)
  518. {
  519. int size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
  520. unsigned long start = ofb->video_mem_phys;
  521. setup_frame_dma(ofb->fbi, DMA_OV1, PAL_NONE, start, size);
  522. }
  523. /* Depending on the enable status of overlay1/2, the DMA should be
  524. * updated from FDADRx (when disabled) or FBRx (when enabled).
  525. */
  526. static void overlay1fb_enable(struct pxafb_layer *ofb)
  527. {
  528. int enabled = lcd_readl(ofb->fbi, OVL1C1) & OVLxC1_OEN;
  529. uint32_t fdadr1 = ofb->fbi->fdadr[DMA_OV1] | (enabled ? 0x1 : 0);
  530. lcd_writel(ofb->fbi, enabled ? FBR1 : FDADR1, fdadr1);
  531. lcd_writel(ofb->fbi, OVL1C2, ofb->control[1]);
  532. lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] | OVLxC1_OEN);
  533. }
  534. static void overlay1fb_disable(struct pxafb_layer *ofb)
  535. {
  536. uint32_t lccr5 = lcd_readl(ofb->fbi, LCCR5);
  537. lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] & ~OVLxC1_OEN);
  538. lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(1));
  539. lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(1));
  540. lcd_writel(ofb->fbi, FBR1, ofb->fbi->fdadr[DMA_OV1] | 0x3);
  541. if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
  542. pr_warning("%s: timeout disabling overlay1\n", __func__);
  543. lcd_writel(ofb->fbi, LCCR5, lccr5);
  544. }
  545. static void overlay2fb_setup(struct pxafb_layer *ofb)
  546. {
  547. int size, div = 1, pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
  548. unsigned long start[3] = { ofb->video_mem_phys, 0, 0 };
  549. if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED) {
  550. size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
  551. setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
  552. } else {
  553. size = ofb->fb.var.xres_virtual * ofb->fb.var.yres_virtual;
  554. switch (pfor) {
  555. case OVERLAY_FORMAT_YUV444_PLANAR: div = 1; break;
  556. case OVERLAY_FORMAT_YUV422_PLANAR: div = 2; break;
  557. case OVERLAY_FORMAT_YUV420_PLANAR: div = 4; break;
  558. }
  559. start[1] = start[0] + size;
  560. start[2] = start[1] + size / div;
  561. setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
  562. setup_frame_dma(ofb->fbi, DMA_OV2_Cb, -1, start[1], size / div);
  563. setup_frame_dma(ofb->fbi, DMA_OV2_Cr, -1, start[2], size / div);
  564. }
  565. }
  566. static void overlay2fb_enable(struct pxafb_layer *ofb)
  567. {
  568. int pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
  569. int enabled = lcd_readl(ofb->fbi, OVL2C1) & OVLxC1_OEN;
  570. uint32_t fdadr2 = ofb->fbi->fdadr[DMA_OV2_Y] | (enabled ? 0x1 : 0);
  571. uint32_t fdadr3 = ofb->fbi->fdadr[DMA_OV2_Cb] | (enabled ? 0x1 : 0);
  572. uint32_t fdadr4 = ofb->fbi->fdadr[DMA_OV2_Cr] | (enabled ? 0x1 : 0);
  573. if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED)
  574. lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
  575. else {
  576. lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
  577. lcd_writel(ofb->fbi, enabled ? FBR3 : FDADR3, fdadr3);
  578. lcd_writel(ofb->fbi, enabled ? FBR4 : FDADR4, fdadr4);
  579. }
  580. lcd_writel(ofb->fbi, OVL2C2, ofb->control[1]);
  581. lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] | OVLxC1_OEN);
  582. }
  583. static void overlay2fb_disable(struct pxafb_layer *ofb)
  584. {
  585. uint32_t lccr5 = lcd_readl(ofb->fbi, LCCR5);
  586. lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] & ~OVLxC1_OEN);
  587. lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(2));
  588. lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(2));
  589. lcd_writel(ofb->fbi, FBR2, ofb->fbi->fdadr[DMA_OV2_Y] | 0x3);
  590. lcd_writel(ofb->fbi, FBR3, ofb->fbi->fdadr[DMA_OV2_Cb] | 0x3);
  591. lcd_writel(ofb->fbi, FBR4, ofb->fbi->fdadr[DMA_OV2_Cr] | 0x3);
  592. if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
  593. pr_warning("%s: timeout disabling overlay2\n", __func__);
  594. }
  595. static struct pxafb_layer_ops ofb_ops[] = {
  596. [0] = {
  597. .enable = overlay1fb_enable,
  598. .disable = overlay1fb_disable,
  599. .setup = overlay1fb_setup,
  600. },
  601. [1] = {
  602. .enable = overlay2fb_enable,
  603. .disable = overlay2fb_disable,
  604. .setup = overlay2fb_setup,
  605. },
  606. };
  607. static int overlayfb_open(struct fb_info *info, int user)
  608. {
  609. struct pxafb_layer *ofb = (struct pxafb_layer *)info;
  610. /* no support for framebuffer console on overlay */
  611. if (user == 0)
  612. return -ENODEV;
  613. /* allow only one user at a time */
  614. if (atomic_inc_and_test(&ofb->usage))
  615. return -EBUSY;
  616. /* unblank the base framebuffer */
  617. fb_blank(&ofb->fbi->fb, FB_BLANK_UNBLANK);
  618. return 0;
  619. }
  620. static int overlayfb_release(struct fb_info *info, int user)
  621. {
  622. struct pxafb_layer *ofb = (struct pxafb_layer*) info;
  623. atomic_dec(&ofb->usage);
  624. ofb->ops->disable(ofb);
  625. free_pages_exact(ofb->video_mem, ofb->video_mem_size);
  626. ofb->video_mem = NULL;
  627. ofb->video_mem_size = 0;
  628. return 0;
  629. }
  630. static int overlayfb_check_var(struct fb_var_screeninfo *var,
  631. struct fb_info *info)
  632. {
  633. struct pxafb_layer *ofb = (struct pxafb_layer *)info;
  634. struct fb_var_screeninfo *base_var = &ofb->fbi->fb.var;
  635. int xpos, ypos, pfor, bpp;
  636. xpos = NONSTD_TO_XPOS(var->nonstd);
  637. ypos = NONSTD_TO_XPOS(var->nonstd);
  638. pfor = NONSTD_TO_PFOR(var->nonstd);
  639. bpp = pxafb_var_to_bpp(var);
  640. if (bpp < 0)
  641. return -EINVAL;
  642. /* no support for YUV format on overlay1 */
  643. if (ofb->id == OVERLAY1 && pfor != 0)
  644. return -EINVAL;
  645. /* for YUV packed formats, bpp = 'minimum bpp of YUV components' */
  646. switch (pfor) {
  647. case OVERLAY_FORMAT_RGB:
  648. bpp = pxafb_var_to_bpp(var);
  649. if (bpp < 0)
  650. return -EINVAL;
  651. pxafb_set_pixfmt(var, var_to_depth(var));
  652. break;
  653. case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
  654. case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 8; break;
  655. case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 4; break;
  656. case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 2; break;
  657. default:
  658. return -EINVAL;
  659. }
  660. /* each line must start at a 32-bit word boundary */
  661. if ((xpos * bpp) % 32)
  662. return -EINVAL;
  663. /* xres must align on 32-bit word boundary */
  664. var->xres = roundup(var->xres * bpp, 32) / bpp;
  665. if ((xpos + var->xres > base_var->xres) ||
  666. (ypos + var->yres > base_var->yres))
  667. return -EINVAL;
  668. var->xres_virtual = var->xres;
  669. var->yres_virtual = max(var->yres, var->yres_virtual);
  670. return 0;
  671. }
  672. static int overlayfb_map_video_memory(struct pxafb_layer *ofb)
  673. {
  674. struct fb_var_screeninfo *var = &ofb->fb.var;
  675. int pfor = NONSTD_TO_PFOR(var->nonstd);
  676. int size, bpp = 0;
  677. switch (pfor) {
  678. case OVERLAY_FORMAT_RGB: bpp = var->bits_per_pixel; break;
  679. case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
  680. case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 24; break;
  681. case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 16; break;
  682. case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 12; break;
  683. }
  684. ofb->fb.fix.line_length = var->xres_virtual * bpp / 8;
  685. size = PAGE_ALIGN(ofb->fb.fix.line_length * var->yres_virtual);
  686. /* don't re-allocate if the original video memory is enough */
  687. if (ofb->video_mem) {
  688. if (ofb->video_mem_size >= size)
  689. return 0;
  690. free_pages_exact(ofb->video_mem, ofb->video_mem_size);
  691. }
  692. ofb->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
  693. if (ofb->video_mem == NULL)
  694. return -ENOMEM;
  695. ofb->video_mem_phys = virt_to_phys(ofb->video_mem);
  696. ofb->video_mem_size = size;
  697. ofb->fb.fix.smem_start = ofb->video_mem_phys;
  698. ofb->fb.fix.smem_len = ofb->fb.fix.line_length * var->yres_virtual;
  699. ofb->fb.screen_base = ofb->video_mem;
  700. return 0;
  701. }
  702. static int overlayfb_set_par(struct fb_info *info)
  703. {
  704. struct pxafb_layer *ofb = (struct pxafb_layer *)info;
  705. struct fb_var_screeninfo *var = &info->var;
  706. int xpos, ypos, pfor, bpp, ret;
  707. ret = overlayfb_map_video_memory(ofb);
  708. if (ret)
  709. return ret;
  710. bpp = pxafb_var_to_bpp(var);
  711. xpos = NONSTD_TO_XPOS(var->nonstd);
  712. ypos = NONSTD_TO_XPOS(var->nonstd);
  713. pfor = NONSTD_TO_PFOR(var->nonstd);
  714. ofb->control[0] = OVLxC1_PPL(var->xres) | OVLxC1_LPO(var->yres) |
  715. OVLxC1_BPP(bpp);
  716. ofb->control[1] = OVLxC2_XPOS(xpos) | OVLxC2_YPOS(ypos);
  717. if (ofb->id == OVERLAY2)
  718. ofb->control[1] |= OVL2C2_PFOR(pfor);
  719. ofb->ops->setup(ofb);
  720. ofb->ops->enable(ofb);
  721. return 0;
  722. }
  723. static struct fb_ops overlay_fb_ops = {
  724. .owner = THIS_MODULE,
  725. .fb_open = overlayfb_open,
  726. .fb_release = overlayfb_release,
  727. .fb_check_var = overlayfb_check_var,
  728. .fb_set_par = overlayfb_set_par,
  729. };
  730. static void __devinit init_pxafb_overlay(struct pxafb_info *fbi,
  731. struct pxafb_layer *ofb, int id)
  732. {
  733. sprintf(ofb->fb.fix.id, "overlay%d", id + 1);
  734. ofb->fb.fix.type = FB_TYPE_PACKED_PIXELS;
  735. ofb->fb.fix.xpanstep = 0;
  736. ofb->fb.fix.ypanstep = 1;
  737. ofb->fb.var.activate = FB_ACTIVATE_NOW;
  738. ofb->fb.var.height = -1;
  739. ofb->fb.var.width = -1;
  740. ofb->fb.var.vmode = FB_VMODE_NONINTERLACED;
  741. ofb->fb.fbops = &overlay_fb_ops;
  742. ofb->fb.flags = FBINFO_FLAG_DEFAULT;
  743. ofb->fb.node = -1;
  744. ofb->fb.pseudo_palette = NULL;
  745. ofb->id = id;
  746. ofb->ops = &ofb_ops[id];
  747. atomic_set(&ofb->usage, 0);
  748. ofb->fbi = fbi;
  749. init_completion(&ofb->branch_done);
  750. }
  751. static inline int pxafb_overlay_supported(void)
  752. {
  753. if (cpu_is_pxa27x() || cpu_is_pxa3xx())
  754. return 1;
  755. return 0;
  756. }
  757. static int __devinit pxafb_overlay_init(struct pxafb_info *fbi)
  758. {
  759. int i, ret;
  760. if (!pxafb_overlay_supported())
  761. return 0;
  762. for (i = 0; i < 2; i++) {
  763. init_pxafb_overlay(fbi, &fbi->overlay[i], i);
  764. ret = register_framebuffer(&fbi->overlay[i].fb);
  765. if (ret) {
  766. dev_err(fbi->dev, "failed to register overlay %d\n", i);
  767. return ret;
  768. }
  769. }
  770. /* mask all IU/BS/EOF/SOF interrupts */
  771. lcd_writel(fbi, LCCR5, ~0);
  772. /* place overlay(s) on top of base */
  773. fbi->lccr0 |= LCCR0_OUC;
  774. pr_info("PXA Overlay driver loaded successfully!\n");
  775. return 0;
  776. }
  777. static void __devexit pxafb_overlay_exit(struct pxafb_info *fbi)
  778. {
  779. int i;
  780. if (!pxafb_overlay_supported())
  781. return;
  782. for (i = 0; i < 2; i++)
  783. unregister_framebuffer(&fbi->overlay[i].fb);
  784. }
  785. #else
  786. static inline void pxafb_overlay_init(struct pxafb_info *fbi) {}
  787. static inline void pxafb_overlay_exit(struct pxafb_info *fbi) {}
  788. #endif /* CONFIG_FB_PXA_OVERLAY */
  789. /*
  790. * Calculate the PCD value from the clock rate (in picoseconds).
  791. * We take account of the PPCR clock setting.
  792. * From PXA Developer's Manual:
  793. *
  794. * PixelClock = LCLK
  795. * -------------
  796. * 2 ( PCD + 1 )
  797. *
  798. * PCD = LCLK
  799. * ------------- - 1
  800. * 2(PixelClock)
  801. *
  802. * Where:
  803. * LCLK = LCD/Memory Clock
  804. * PCD = LCCR3[7:0]
  805. *
  806. * PixelClock here is in Hz while the pixclock argument given is the
  807. * period in picoseconds. Hence PixelClock = 1 / ( pixclock * 10^-12 )
  808. *
  809. * The function get_lclk_frequency_10khz returns LCLK in units of
  810. * 10khz. Calling the result of this function lclk gives us the
  811. * following
  812. *
  813. * PCD = (lclk * 10^4 ) * ( pixclock * 10^-12 )
  814. * -------------------------------------- - 1
  815. * 2
  816. *
  817. * Factoring the 10^4 and 10^-12 out gives 10^-8 == 1 / 100000000 as used below.
  818. */
  819. static inline unsigned int get_pcd(struct pxafb_info *fbi,
  820. unsigned int pixclock)
  821. {
  822. unsigned long long pcd;
  823. /* FIXME: Need to take into account Double Pixel Clock mode
  824. * (DPC) bit? or perhaps set it based on the various clock
  825. * speeds */
  826. pcd = (unsigned long long)(clk_get_rate(fbi->clk) / 10000);
  827. pcd *= pixclock;
  828. do_div(pcd, 100000000 * 2);
  829. /* no need for this, since we should subtract 1 anyway. they cancel */
  830. /* pcd += 1; */ /* make up for integer math truncations */
  831. return (unsigned int)pcd;
  832. }
  833. /*
  834. * Some touchscreens need hsync information from the video driver to
  835. * function correctly. We export it here. Note that 'hsync_time' and
  836. * the value returned from pxafb_get_hsync_time() is the *reciprocal*
  837. * of the hsync period in seconds.
  838. */
  839. static inline void set_hsync_time(struct pxafb_info *fbi, unsigned int pcd)
  840. {
  841. unsigned long htime;
  842. if ((pcd == 0) || (fbi->fb.var.hsync_len == 0)) {
  843. fbi->hsync_time = 0;
  844. return;
  845. }
  846. htime = clk_get_rate(fbi->clk) / (pcd * fbi->fb.var.hsync_len);
  847. fbi->hsync_time = htime;
  848. }
  849. unsigned long pxafb_get_hsync_time(struct device *dev)
  850. {
  851. struct pxafb_info *fbi = dev_get_drvdata(dev);
  852. /* If display is blanked/suspended, hsync isn't active */
  853. if (!fbi || (fbi->state != C_ENABLE))
  854. return 0;
  855. return fbi->hsync_time;
  856. }
  857. EXPORT_SYMBOL(pxafb_get_hsync_time);
  858. static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
  859. unsigned long start, size_t size)
  860. {
  861. struct pxafb_dma_descriptor *dma_desc, *pal_desc;
  862. unsigned int dma_desc_off, pal_desc_off;
  863. if (dma < 0 || dma >= DMA_MAX * 2)
  864. return -EINVAL;
  865. dma_desc = &fbi->dma_buff->dma_desc[dma];
  866. dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[dma]);
  867. dma_desc->fsadr = start;
  868. dma_desc->fidr = 0;
  869. dma_desc->ldcmd = size;
  870. if (pal < 0 || pal >= PAL_MAX * 2) {
  871. dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
  872. fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
  873. } else {
  874. pal_desc = &fbi->dma_buff->pal_desc[pal];
  875. pal_desc_off = offsetof(struct pxafb_dma_buff, pal_desc[pal]);
  876. pal_desc->fsadr = fbi->dma_buff_phys + pal * PALETTE_SIZE;
  877. pal_desc->fidr = 0;
  878. if ((fbi->lccr4 & LCCR4_PAL_FOR_MASK) == LCCR4_PAL_FOR_0)
  879. pal_desc->ldcmd = fbi->palette_size * sizeof(u16);
  880. else
  881. pal_desc->ldcmd = fbi->palette_size * sizeof(u32);
  882. pal_desc->ldcmd |= LDCMD_PAL;
  883. /* flip back and forth between palette and frame buffer */
  884. pal_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
  885. dma_desc->fdadr = fbi->dma_buff_phys + pal_desc_off;
  886. fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
  887. }
  888. return 0;
  889. }
  890. static void setup_base_frame(struct pxafb_info *fbi, int branch)
  891. {
  892. struct fb_var_screeninfo *var = &fbi->fb.var;
  893. struct fb_fix_screeninfo *fix = &fbi->fb.fix;
  894. int nbytes, dma, pal, bpp = var->bits_per_pixel;
  895. unsigned long offset;
  896. dma = DMA_BASE + (branch ? DMA_MAX : 0);
  897. pal = (bpp >= 16) ? PAL_NONE : PAL_BASE + (branch ? PAL_MAX : 0);
  898. nbytes = fix->line_length * var->yres;
  899. offset = fix->line_length * var->yoffset + fbi->video_mem_phys;
  900. if (fbi->lccr0 & LCCR0_SDS) {
  901. nbytes = nbytes / 2;
  902. setup_frame_dma(fbi, dma + 1, PAL_NONE, offset + nbytes, nbytes);
  903. }
  904. setup_frame_dma(fbi, dma, pal, offset, nbytes);
  905. }
  906. #ifdef CONFIG_FB_PXA_SMARTPANEL
  907. static int setup_smart_dma(struct pxafb_info *fbi)
  908. {
  909. struct pxafb_dma_descriptor *dma_desc;
  910. unsigned long dma_desc_off, cmd_buff_off;
  911. dma_desc = &fbi->dma_buff->dma_desc[DMA_CMD];
  912. dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[DMA_CMD]);
  913. cmd_buff_off = offsetof(struct pxafb_dma_buff, cmd_buff);
  914. dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
  915. dma_desc->fsadr = fbi->dma_buff_phys + cmd_buff_off;
  916. dma_desc->fidr = 0;
  917. dma_desc->ldcmd = fbi->n_smart_cmds * sizeof(uint16_t);
  918. fbi->fdadr[DMA_CMD] = dma_desc->fdadr;
  919. return 0;
  920. }
  921. int pxafb_smart_flush(struct fb_info *info)
  922. {
  923. struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
  924. uint32_t prsr;
  925. int ret = 0;
  926. /* disable controller until all registers are set up */
  927. lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
  928. /* 1. make it an even number of commands to align on 32-bit boundary
  929. * 2. add the interrupt command to the end of the chain so we can
  930. * keep track of the end of the transfer
  931. */
  932. while (fbi->n_smart_cmds & 1)
  933. fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_NOOP;
  934. fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_INTERRUPT;
  935. fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_WAIT_FOR_VSYNC;
  936. setup_smart_dma(fbi);
  937. /* continue to execute next command */
  938. prsr = lcd_readl(fbi, PRSR) | PRSR_ST_OK | PRSR_CON_NT;
  939. lcd_writel(fbi, PRSR, prsr);
  940. /* stop the processor in case it executed "wait for sync" cmd */
  941. lcd_writel(fbi, CMDCR, 0x0001);
  942. /* don't send interrupts for fifo underruns on channel 6 */
  943. lcd_writel(fbi, LCCR5, LCCR5_IUM(6));
  944. lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
  945. lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
  946. lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
  947. lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
  948. lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
  949. lcd_writel(fbi, FDADR6, fbi->fdadr[6]);
  950. /* begin sending */
  951. lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
  952. if (wait_for_completion_timeout(&fbi->command_done, HZ/2) == 0) {
  953. pr_warning("%s: timeout waiting for command done\n",
  954. __func__);
  955. ret = -ETIMEDOUT;
  956. }
  957. /* quick disable */
  958. prsr = lcd_readl(fbi, PRSR) & ~(PRSR_ST_OK | PRSR_CON_NT);
  959. lcd_writel(fbi, PRSR, prsr);
  960. lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
  961. lcd_writel(fbi, FDADR6, 0);
  962. fbi->n_smart_cmds = 0;
  963. return ret;
  964. }
  965. int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
  966. {
  967. int i;
  968. struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
  969. for (i = 0; i < n_cmds; i++, cmds++) {
  970. /* if it is a software delay, flush and delay */
  971. if ((*cmds & 0xff00) == SMART_CMD_DELAY) {
  972. pxafb_smart_flush(info);
  973. mdelay(*cmds & 0xff);
  974. continue;
  975. }
  976. /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */
  977. if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8)
  978. pxafb_smart_flush(info);
  979. fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds;
  980. }
  981. return 0;
  982. }
  983. static unsigned int __smart_timing(unsigned time_ns, unsigned long lcd_clk)
  984. {
  985. unsigned int t = (time_ns * (lcd_clk / 1000000) / 1000);
  986. return (t == 0) ? 1 : t;
  987. }
  988. static void setup_smart_timing(struct pxafb_info *fbi,
  989. struct fb_var_screeninfo *var)
  990. {
  991. struct pxafb_mach_info *inf = fbi->dev->platform_data;
  992. struct pxafb_mode_info *mode = &inf->modes[0];
  993. unsigned long lclk = clk_get_rate(fbi->clk);
  994. unsigned t1, t2, t3, t4;
  995. t1 = max(mode->a0csrd_set_hld, mode->a0cswr_set_hld);
  996. t2 = max(mode->rd_pulse_width, mode->wr_pulse_width);
  997. t3 = mode->op_hold_time;
  998. t4 = mode->cmd_inh_time;
  999. fbi->reg_lccr1 =
  1000. LCCR1_DisWdth(var->xres) |
  1001. LCCR1_BegLnDel(__smart_timing(t1, lclk)) |
  1002. LCCR1_EndLnDel(__smart_timing(t2, lclk)) |
  1003. LCCR1_HorSnchWdth(__smart_timing(t3, lclk));
  1004. fbi->reg_lccr2 = LCCR2_DisHght(var->yres);
  1005. fbi->reg_lccr3 = fbi->lccr3 | LCCR3_PixClkDiv(__smart_timing(t4, lclk));
  1006. fbi->reg_lccr3 |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? LCCR3_HSP : 0;
  1007. fbi->reg_lccr3 |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? LCCR3_VSP : 0;
  1008. /* FIXME: make this configurable */
  1009. fbi->reg_cmdcr = 1;
  1010. }
  1011. static int pxafb_smart_thread(void *arg)
  1012. {
  1013. struct pxafb_info *fbi = arg;
  1014. struct pxafb_mach_info *inf = fbi->dev->platform_data;
  1015. if (!fbi || !inf->smart_update) {
  1016. pr_err("%s: not properly initialized, thread terminated\n",
  1017. __func__);
  1018. return -EINVAL;
  1019. }
  1020. pr_debug("%s(): task starting\n", __func__);
  1021. set_freezable();
  1022. while (!kthread_should_stop()) {
  1023. if (try_to_freeze())
  1024. continue;
  1025. mutex_lock(&fbi->ctrlr_lock);
  1026. if (fbi->state == C_ENABLE) {
  1027. inf->smart_update(&fbi->fb);
  1028. complete(&fbi->refresh_done);
  1029. }
  1030. mutex_unlock(&fbi->ctrlr_lock);
  1031. set_current_state(TASK_INTERRUPTIBLE);
  1032. schedule_timeout(30 * HZ / 1000);
  1033. }
  1034. pr_debug("%s(): task ending\n", __func__);
  1035. return 0;
  1036. }
  1037. static int pxafb_smart_init(struct pxafb_info *fbi)
  1038. {
  1039. if (!(fbi->lccr0 & LCCR0_LCDT))
  1040. return 0;
  1041. fbi->smart_cmds = (uint16_t *) fbi->dma_buff->cmd_buff;
  1042. fbi->n_smart_cmds = 0;
  1043. init_completion(&fbi->command_done);
  1044. init_completion(&fbi->refresh_done);
  1045. fbi->smart_thread = kthread_run(pxafb_smart_thread, fbi,
  1046. "lcd_refresh");
  1047. if (IS_ERR(fbi->smart_thread)) {
  1048. pr_err("%s: unable to create kernel thread\n", __func__);
  1049. return PTR_ERR(fbi->smart_thread);
  1050. }
  1051. return 0;
  1052. }
  1053. #else
  1054. int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
  1055. {
  1056. return 0;
  1057. }
  1058. int pxafb_smart_flush(struct fb_info *info)
  1059. {
  1060. return 0;
  1061. }
  1062. static inline int pxafb_smart_init(struct pxafb_info *fbi) { return 0; }
  1063. #endif /* CONFIG_FB_PXA_SMARTPANEL */
  1064. static void setup_parallel_timing(struct pxafb_info *fbi,
  1065. struct fb_var_screeninfo *var)
  1066. {
  1067. unsigned int lines_per_panel, pcd = get_pcd(fbi, var->pixclock);
  1068. fbi->reg_lccr1 =
  1069. LCCR1_DisWdth(var->xres) +
  1070. LCCR1_HorSnchWdth(var->hsync_len) +
  1071. LCCR1_BegLnDel(var->left_margin) +
  1072. LCCR1_EndLnDel(var->right_margin);
  1073. /*
  1074. * If we have a dual scan LCD, we need to halve
  1075. * the YRES parameter.
  1076. */
  1077. lines_per_panel = var->yres;
  1078. if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual)
  1079. lines_per_panel /= 2;
  1080. fbi->reg_lccr2 =
  1081. LCCR2_DisHght(lines_per_panel) +
  1082. LCCR2_VrtSnchWdth(var->vsync_len) +
  1083. LCCR2_BegFrmDel(var->upper_margin) +
  1084. LCCR2_EndFrmDel(var->lower_margin);
  1085. fbi->reg_lccr3 = fbi->lccr3 |
  1086. (var->sync & FB_SYNC_HOR_HIGH_ACT ?
  1087. LCCR3_HorSnchH : LCCR3_HorSnchL) |
  1088. (var->sync & FB_SYNC_VERT_HIGH_ACT ?
  1089. LCCR3_VrtSnchH : LCCR3_VrtSnchL);
  1090. if (pcd) {
  1091. fbi->reg_lccr3 |= LCCR3_PixClkDiv(pcd);
  1092. set_hsync_time(fbi, pcd);
  1093. }
  1094. }
  1095. /*
  1096. * pxafb_activate_var():
  1097. * Configures LCD Controller based on entries in var parameter.
  1098. * Settings are only written to the controller if changes were made.
  1099. */
  1100. static int pxafb_activate_var(struct fb_var_screeninfo *var,
  1101. struct pxafb_info *fbi)
  1102. {
  1103. u_long flags;
  1104. /* Update shadow copy atomically */
  1105. local_irq_save(flags);
  1106. #ifdef CONFIG_FB_PXA_SMARTPANEL
  1107. if (fbi->lccr0 & LCCR0_LCDT)
  1108. setup_smart_timing(fbi, var);
  1109. else
  1110. #endif
  1111. setup_parallel_timing(fbi, var);
  1112. setup_base_frame(fbi, 0);
  1113. fbi->reg_lccr0 = fbi->lccr0 |
  1114. (LCCR0_LDM | LCCR0_SFM | LCCR0_IUM | LCCR0_EFM |
  1115. LCCR0_QDM | LCCR0_BM | LCCR0_OUM);
  1116. fbi->reg_lccr3 |= pxafb_var_to_lccr3(var);
  1117. fbi->reg_lccr4 = lcd_readl(fbi, LCCR4) & ~LCCR4_PAL_FOR_MASK;
  1118. fbi->reg_lccr4 |= (fbi->lccr4 & LCCR4_PAL_FOR_MASK);
  1119. local_irq_restore(flags);
  1120. /*
  1121. * Only update the registers if the controller is enabled
  1122. * and something has changed.
  1123. */
  1124. if ((lcd_readl(fbi, LCCR0) != fbi->reg_lccr0) ||
  1125. (lcd_readl(fbi, LCCR1) != fbi->reg_lccr1) ||
  1126. (lcd_readl(fbi, LCCR2) != fbi->reg_lccr2) ||
  1127. (lcd_readl(fbi, LCCR3) != fbi->reg_lccr3) ||
  1128. (lcd_readl(fbi, LCCR4) != fbi->reg_lccr4) ||
  1129. (lcd_readl(fbi, FDADR0) != fbi->fdadr[0]) ||
  1130. (lcd_readl(fbi, FDADR1) != fbi->fdadr[1]))
  1131. pxafb_schedule_work(fbi, C_REENABLE);
  1132. return 0;
  1133. }
  1134. /*
  1135. * NOTE! The following functions are purely helpers for set_ctrlr_state.
  1136. * Do not call them directly; set_ctrlr_state does the correct serialisation
  1137. * to ensure that things happen in the right way 100% of time time.
  1138. * -- rmk
  1139. */
  1140. static inline void __pxafb_backlight_power(struct pxafb_info *fbi, int on)
  1141. {
  1142. pr_debug("pxafb: backlight o%s\n", on ? "n" : "ff");
  1143. if (fbi->backlight_power)
  1144. fbi->backlight_power(on);
  1145. }
  1146. static inline void __pxafb_lcd_power(struct pxafb_info *fbi, int on)
  1147. {
  1148. pr_debug("pxafb: LCD power o%s\n", on ? "n" : "ff");
  1149. if (fbi->lcd_power)
  1150. fbi->lcd_power(on, &fbi->fb.var);
  1151. }
  1152. static void pxafb_enable_controller(struct pxafb_info *fbi)
  1153. {
  1154. pr_debug("pxafb: Enabling LCD controller\n");
  1155. pr_debug("fdadr0 0x%08x\n", (unsigned int) fbi->fdadr[0]);
  1156. pr_debug("fdadr1 0x%08x\n", (unsigned int) fbi->fdadr[1]);
  1157. pr_debug("reg_lccr0 0x%08x\n", (unsigned int) fbi->reg_lccr0);
  1158. pr_debug("reg_lccr1 0x%08x\n", (unsigned int) fbi->reg_lccr1);
  1159. pr_debug("reg_lccr2 0x%08x\n", (unsigned int) fbi->reg_lccr2);
  1160. pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
  1161. /* enable LCD controller clock */
  1162. clk_enable(fbi->clk);
  1163. if (fbi->lccr0 & LCCR0_LCDT)
  1164. return;
  1165. /* Sequence from 11.7.10 */
  1166. lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
  1167. lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
  1168. lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
  1169. lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
  1170. lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
  1171. lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
  1172. lcd_writel(fbi, FDADR1, fbi->fdadr[1]);
  1173. lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
  1174. }
  1175. static void pxafb_disable_controller(struct pxafb_info *fbi)
  1176. {
  1177. uint32_t lccr0;
  1178. #ifdef CONFIG_FB_PXA_SMARTPANEL
  1179. if (fbi->lccr0 & LCCR0_LCDT) {
  1180. wait_for_completion_timeout(&fbi->refresh_done,
  1181. 200 * HZ / 1000);
  1182. return;
  1183. }
  1184. #endif
  1185. /* Clear LCD Status Register */
  1186. lcd_writel(fbi, LCSR, 0xffffffff);
  1187. lccr0 = lcd_readl(fbi, LCCR0) & ~LCCR0_LDM;
  1188. lcd_writel(fbi, LCCR0, lccr0);
  1189. lcd_writel(fbi, LCCR0, lccr0 | LCCR0_DIS);
  1190. wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
  1191. /* disable LCD controller clock */
  1192. clk_disable(fbi->clk);
  1193. }
  1194. /*
  1195. * pxafb_handle_irq: Handle 'LCD DONE' interrupts.
  1196. */
  1197. static irqreturn_t pxafb_handle_irq(int irq, void *dev_id)
  1198. {
  1199. struct pxafb_info *fbi = dev_id;
  1200. unsigned int lccr0, lcsr;
  1201. lcsr = lcd_readl(fbi, LCSR);
  1202. if (lcsr & LCSR_LDD) {
  1203. lccr0 = lcd_readl(fbi, LCCR0);
  1204. lcd_writel(fbi, LCCR0, lccr0 | LCCR0_LDM);
  1205. complete(&fbi->disable_done);
  1206. }
  1207. #ifdef CONFIG_FB_PXA_SMARTPANEL
  1208. if (lcsr & LCSR_CMD_INT)
  1209. complete(&fbi->command_done);
  1210. #endif
  1211. lcd_writel(fbi, LCSR, lcsr);
  1212. #ifdef CONFIG_FB_PXA_OVERLAY
  1213. {
  1214. unsigned int lcsr1 = lcd_readl(fbi, LCSR1);
  1215. if (lcsr1 & LCSR1_BS(1))
  1216. complete(&fbi->overlay[0].branch_done);
  1217. if (lcsr1 & LCSR1_BS(2))
  1218. complete(&fbi->overlay[1].branch_done);
  1219. lcd_writel(fbi, LCSR1, lcsr1);
  1220. }
  1221. #endif
  1222. return IRQ_HANDLED;
  1223. }
  1224. /*
  1225. * This function must be called from task context only, since it will
  1226. * sleep when disabling the LCD controller, or if we get two contending
  1227. * processes trying to alter state.
  1228. */
  1229. static void set_ctrlr_state(struct pxafb_info *fbi, u_int state)
  1230. {
  1231. u_int old_state;
  1232. mutex_lock(&fbi->ctrlr_lock);
  1233. old_state = fbi->state;
  1234. /*
  1235. * Hack around fbcon initialisation.
  1236. */
  1237. if (old_state == C_STARTUP && state == C_REENABLE)
  1238. state = C_ENABLE;
  1239. switch (state) {
  1240. case C_DISABLE_CLKCHANGE:
  1241. /*
  1242. * Disable controller for clock change. If the
  1243. * controller is already disabled, then do nothing.
  1244. */
  1245. if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
  1246. fbi->state = state;
  1247. /* TODO __pxafb_lcd_power(fbi, 0); */
  1248. pxafb_disable_controller(fbi);
  1249. }
  1250. break;
  1251. case C_DISABLE_PM:
  1252. case C_DISABLE:
  1253. /*
  1254. * Disable controller
  1255. */
  1256. if (old_state != C_DISABLE) {
  1257. fbi->state = state;
  1258. __pxafb_backlight_power(fbi, 0);
  1259. __pxafb_lcd_power(fbi, 0);
  1260. if (old_state != C_DISABLE_CLKCHANGE)
  1261. pxafb_disable_controller(fbi);
  1262. }
  1263. break;
  1264. case C_ENABLE_CLKCHANGE:
  1265. /*
  1266. * Enable the controller after clock change. Only
  1267. * do this if we were disabled for the clock change.
  1268. */
  1269. if (old_state == C_DISABLE_CLKCHANGE) {
  1270. fbi->state = C_ENABLE;
  1271. pxafb_enable_controller(fbi);
  1272. /* TODO __pxafb_lcd_power(fbi, 1); */
  1273. }
  1274. break;
  1275. case C_REENABLE:
  1276. /*
  1277. * Re-enable the controller only if it was already
  1278. * enabled. This is so we reprogram the control
  1279. * registers.
  1280. */
  1281. if (old_state == C_ENABLE) {
  1282. __pxafb_lcd_power(fbi, 0);
  1283. pxafb_disable_controller(fbi);
  1284. pxafb_enable_controller(fbi);
  1285. __pxafb_lcd_power(fbi, 1);
  1286. }
  1287. break;
  1288. case C_ENABLE_PM:
  1289. /*
  1290. * Re-enable the controller after PM. This is not
  1291. * perfect - think about the case where we were doing
  1292. * a clock change, and we suspended half-way through.
  1293. */
  1294. if (old_state != C_DISABLE_PM)
  1295. break;
  1296. /* fall through */
  1297. case C_ENABLE:
  1298. /*
  1299. * Power up the LCD screen, enable controller, and
  1300. * turn on the backlight.
  1301. */
  1302. if (old_state != C_ENABLE) {
  1303. fbi->state = C_ENABLE;
  1304. pxafb_enable_controller(fbi);
  1305. __pxafb_lcd_power(fbi, 1);
  1306. __pxafb_backlight_power(fbi, 1);
  1307. }
  1308. break;
  1309. }
  1310. mutex_unlock(&fbi->ctrlr_lock);
  1311. }
  1312. /*
  1313. * Our LCD controller task (which is called when we blank or unblank)
  1314. * via keventd.
  1315. */
  1316. static void pxafb_task(struct work_struct *work)
  1317. {
  1318. struct pxafb_info *fbi =
  1319. container_of(work, struct pxafb_info, task);
  1320. u_int state = xchg(&fbi->task_state, -1);
  1321. set_ctrlr_state(fbi, state);
  1322. }
  1323. #ifdef CONFIG_CPU_FREQ
  1324. /*
  1325. * CPU clock speed change handler. We need to adjust the LCD timing
  1326. * parameters when the CPU clock is adjusted by the power management
  1327. * subsystem.
  1328. *
  1329. * TODO: Determine why f->new != 10*get_lclk_frequency_10khz()
  1330. */
  1331. static int
  1332. pxafb_freq_transition(struct notifier_block *nb, unsigned long val, void *data)
  1333. {
  1334. struct pxafb_info *fbi = TO_INF(nb, freq_transition);
  1335. /* TODO struct cpufreq_freqs *f = data; */
  1336. u_int pcd;
  1337. switch (val) {
  1338. case CPUFREQ_PRECHANGE:
  1339. set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
  1340. break;
  1341. case CPUFREQ_POSTCHANGE:
  1342. pcd = get_pcd(fbi, fbi->fb.var.pixclock);
  1343. set_hsync_time(fbi, pcd);
  1344. fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) |
  1345. LCCR3_PixClkDiv(pcd);
  1346. set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
  1347. break;
  1348. }
  1349. return 0;
  1350. }
  1351. static int
  1352. pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
  1353. {
  1354. struct pxafb_info *fbi = TO_INF(nb, freq_policy);
  1355. struct fb_var_screeninfo *var = &fbi->fb.var;
  1356. struct cpufreq_policy *policy = data;
  1357. switch (val) {
  1358. case CPUFREQ_ADJUST:
  1359. case CPUFREQ_INCOMPATIBLE:
  1360. pr_debug("min dma period: %d ps, "
  1361. "new clock %d kHz\n", pxafb_display_dma_period(var),
  1362. policy->max);
  1363. /* TODO: fill in min/max values */
  1364. break;
  1365. }
  1366. return 0;
  1367. }
  1368. #endif
  1369. #ifdef CONFIG_PM
  1370. /*
  1371. * Power management hooks. Note that we won't be called from IRQ context,
  1372. * unlike the blank functions above, so we may sleep.
  1373. */
  1374. static int pxafb_suspend(struct platform_device *dev, pm_message_t state)
  1375. {
  1376. struct pxafb_info *fbi = platform_get_drvdata(dev);
  1377. set_ctrlr_state(fbi, C_DISABLE_PM);
  1378. return 0;
  1379. }
  1380. static int pxafb_resume(struct platform_device *dev)
  1381. {
  1382. struct pxafb_info *fbi = platform_get_drvdata(dev);
  1383. set_ctrlr_state(fbi, C_ENABLE_PM);
  1384. return 0;
  1385. }
  1386. #else
  1387. #define pxafb_suspend NULL
  1388. #define pxafb_resume NULL
  1389. #endif
  1390. static int __devinit pxafb_init_video_memory(struct pxafb_info *fbi)
  1391. {
  1392. int size = PAGE_ALIGN(fbi->video_mem_size);
  1393. fbi->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
  1394. if (fbi->video_mem == NULL)
  1395. return -ENOMEM;
  1396. fbi->video_mem_phys = virt_to_phys(fbi->video_mem);
  1397. fbi->video_mem_size = size;
  1398. fbi->fb.fix.smem_start = fbi->video_mem_phys;
  1399. fbi->fb.fix.smem_len = fbi->video_mem_size;
  1400. fbi->fb.screen_base = fbi->video_mem;
  1401. return fbi->video_mem ? 0 : -ENOMEM;
  1402. }
  1403. static void pxafb_decode_mach_info(struct pxafb_info *fbi,
  1404. struct pxafb_mach_info *inf)
  1405. {
  1406. unsigned int lcd_conn = inf->lcd_conn;
  1407. struct pxafb_mode_info *m;
  1408. int i;
  1409. fbi->cmap_inverse = inf->cmap_inverse;
  1410. fbi->cmap_static = inf->cmap_static;
  1411. fbi->lccr4 = inf->lccr4;
  1412. switch (lcd_conn & LCD_TYPE_MASK) {
  1413. case LCD_TYPE_MONO_STN:
  1414. fbi->lccr0 = LCCR0_CMS;
  1415. break;
  1416. case LCD_TYPE_MONO_DSTN:
  1417. fbi->lccr0 = LCCR0_CMS | LCCR0_SDS;
  1418. break;
  1419. case LCD_TYPE_COLOR_STN:
  1420. fbi->lccr0 = 0;
  1421. break;
  1422. case LCD_TYPE_COLOR_DSTN:
  1423. fbi->lccr0 = LCCR0_SDS;
  1424. break;
  1425. case LCD_TYPE_COLOR_TFT:
  1426. fbi->lccr0 = LCCR0_PAS;
  1427. break;
  1428. case LCD_TYPE_SMART_PANEL:
  1429. fbi->lccr0 = LCCR0_LCDT | LCCR0_PAS;
  1430. break;
  1431. default:
  1432. /* fall back to backward compatibility way */
  1433. fbi->lccr0 = inf->lccr0;
  1434. fbi->lccr3 = inf->lccr3;
  1435. goto decode_mode;
  1436. }
  1437. if (lcd_conn == LCD_MONO_STN_8BPP)
  1438. fbi->lccr0 |= LCCR0_DPD;
  1439. fbi->lccr0 |= (lcd_conn & LCD_ALTERNATE_MAPPING) ? LCCR0_LDDALT : 0;
  1440. fbi->lccr3 = LCCR3_Acb((inf->lcd_conn >> 10) & 0xff);
  1441. fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
  1442. fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
  1443. decode_mode:
  1444. pxafb_setmode(&fbi->fb.var, &inf->modes[0]);
  1445. /* decide video memory size as follows:
  1446. * 1. default to mode of maximum resolution
  1447. * 2. allow platform to override
  1448. * 3. allow module parameter to override
  1449. */
  1450. for (i = 0, m = &inf->modes[0]; i < inf->num_modes; i++, m++)
  1451. fbi->video_mem_size = max_t(size_t, fbi->video_mem_size,
  1452. m->xres * m->yres * m->bpp / 8);
  1453. if (inf->video_mem_size > fbi->video_mem_size)
  1454. fbi->video_mem_size = inf->video_mem_size;
  1455. if (video_mem_size > fbi->video_mem_size)
  1456. fbi->video_mem_size = video_mem_size;
  1457. }
  1458. static struct pxafb_info * __devinit pxafb_init_fbinfo(struct device *dev)
  1459. {
  1460. struct pxafb_info *fbi;
  1461. void *addr;
  1462. struct pxafb_mach_info *inf = dev->platform_data;
  1463. /* Alloc the pxafb_info and pseudo_palette in one step */
  1464. fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
  1465. if (!fbi)
  1466. return NULL;
  1467. memset(fbi, 0, sizeof(struct pxafb_info));
  1468. fbi->dev = dev;
  1469. fbi->clk = clk_get(dev, NULL);
  1470. if (IS_ERR(fbi->clk)) {
  1471. kfree(fbi);
  1472. return NULL;
  1473. }
  1474. strcpy(fbi->fb.fix.id, PXA_NAME);
  1475. fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
  1476. fbi->fb.fix.type_aux = 0;
  1477. fbi->fb.fix.xpanstep = 0;
  1478. fbi->fb.fix.ypanstep = 1;
  1479. fbi->fb.fix.ywrapstep = 0;
  1480. fbi->fb.fix.accel = FB_ACCEL_NONE;
  1481. fbi->fb.var.nonstd = 0;
  1482. fbi->fb.var.activate = FB_ACTIVATE_NOW;
  1483. fbi->fb.var.height = -1;
  1484. fbi->fb.var.width = -1;
  1485. fbi->fb.var.accel_flags = FB_ACCELF_TEXT;
  1486. fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
  1487. fbi->fb.fbops = &pxafb_ops;
  1488. fbi->fb.flags = FBINFO_DEFAULT;
  1489. fbi->fb.node = -1;
  1490. addr = fbi;
  1491. addr = addr + sizeof(struct pxafb_info);
  1492. fbi->fb.pseudo_palette = addr;
  1493. fbi->state = C_STARTUP;
  1494. fbi->task_state = (u_char)-1;
  1495. pxafb_decode_mach_info(fbi, inf);
  1496. init_waitqueue_head(&fbi->ctrlr_wait);
  1497. INIT_WORK(&fbi->task, pxafb_task);
  1498. mutex_init(&fbi->ctrlr_lock);
  1499. init_completion(&fbi->disable_done);
  1500. return fbi;
  1501. }
  1502. #ifdef CONFIG_FB_PXA_PARAMETERS
  1503. static int __devinit parse_opt_mode(struct device *dev, const char *this_opt)
  1504. {
  1505. struct pxafb_mach_info *inf = dev->platform_data;
  1506. const char *name = this_opt+5;
  1507. unsigned int namelen = strlen(name);
  1508. int res_specified = 0, bpp_specified = 0;
  1509. unsigned int xres = 0, yres = 0, bpp = 0;
  1510. int yres_specified = 0;
  1511. int i;
  1512. for (i = namelen-1; i >= 0; i--) {
  1513. switch (name[i]) {
  1514. case '-':
  1515. namelen = i;
  1516. if (!bpp_specified && !yres_specified) {
  1517. bpp = simple_strtoul(&name[i+1], NULL, 0);
  1518. bpp_specified = 1;
  1519. } else
  1520. goto done;
  1521. break;
  1522. case 'x':
  1523. if (!yres_specified) {
  1524. yres = simple_strtoul(&name[i+1], NULL, 0);
  1525. yres_specified = 1;
  1526. } else
  1527. goto done;
  1528. break;
  1529. case '0' ... '9':
  1530. break;
  1531. default:
  1532. goto done;
  1533. }
  1534. }
  1535. if (i < 0 && yres_specified) {
  1536. xres = simple_strtoul(name, NULL, 0);
  1537. res_specified = 1;
  1538. }
  1539. done:
  1540. if (res_specified) {
  1541. dev_info(dev, "overriding resolution: %dx%d\n", xres, yres);
  1542. inf->modes[0].xres = xres; inf->modes[0].yres = yres;
  1543. }
  1544. if (bpp_specified)
  1545. switch (bpp) {
  1546. case 1:
  1547. case 2:
  1548. case 4:
  1549. case 8:
  1550. case 16:
  1551. inf->modes[0].bpp = bpp;
  1552. dev_info(dev, "overriding bit depth: %d\n", bpp);
  1553. break;
  1554. default:
  1555. dev_err(dev, "Depth %d is not valid\n", bpp);
  1556. return -EINVAL;
  1557. }
  1558. return 0;
  1559. }
  1560. static int __devinit parse_opt(struct device *dev, char *this_opt)
  1561. {
  1562. struct pxafb_mach_info *inf = dev->platform_data;
  1563. struct pxafb_mode_info *mode = &inf->modes[0];
  1564. char s[64];
  1565. s[0] = '\0';
  1566. if (!strncmp(this_opt, "vmem:", 5)) {
  1567. video_mem_size = memparse(this_opt + 5, NULL);
  1568. } else if (!strncmp(this_opt, "mode:", 5)) {
  1569. return parse_opt_mode(dev, this_opt);
  1570. } else if (!strncmp(this_opt, "pixclock:", 9)) {
  1571. mode->pixclock = simple_strtoul(this_opt+9, NULL, 0);
  1572. sprintf(s, "pixclock: %ld\n", mode->pixclock);
  1573. } else if (!strncmp(this_opt, "left:", 5)) {
  1574. mode->left_margin = simple_strtoul(this_opt+5, NULL, 0);
  1575. sprintf(s, "left: %u\n", mode->left_margin);
  1576. } else if (!strncmp(this_opt, "right:", 6)) {
  1577. mode->right_margin = simple_strtoul(this_opt+6, NULL, 0);
  1578. sprintf(s, "right: %u\n", mode->right_margin);
  1579. } else if (!strncmp(this_opt, "upper:", 6)) {
  1580. mode->upper_margin = simple_strtoul(this_opt+6, NULL, 0);
  1581. sprintf(s, "upper: %u\n", mode->upper_margin);
  1582. } else if (!strncmp(this_opt, "lower:", 6)) {
  1583. mode->lower_margin = simple_strtoul(this_opt+6, NULL, 0);
  1584. sprintf(s, "lower: %u\n", mode->lower_margin);
  1585. } else if (!strncmp(this_opt, "hsynclen:", 9)) {
  1586. mode->hsync_len = simple_strtoul(this_opt+9, NULL, 0);
  1587. sprintf(s, "hsynclen: %u\n", mode->hsync_len);
  1588. } else if (!strncmp(this_opt, "vsynclen:", 9)) {
  1589. mode->vsync_len = simple_strtoul(this_opt+9, NULL, 0);
  1590. sprintf(s, "vsynclen: %u\n", mode->vsync_len);
  1591. } else if (!strncmp(this_opt, "hsync:", 6)) {
  1592. if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
  1593. sprintf(s, "hsync: Active Low\n");
  1594. mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
  1595. } else {
  1596. sprintf(s, "hsync: Active High\n");
  1597. mode->sync |= FB_SYNC_HOR_HIGH_ACT;
  1598. }
  1599. } else if (!strncmp(this_opt, "vsync:", 6)) {
  1600. if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
  1601. sprintf(s, "vsync: Active Low\n");
  1602. mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
  1603. } else {
  1604. sprintf(s, "vsync: Active High\n");
  1605. mode->sync |= FB_SYNC_VERT_HIGH_ACT;
  1606. }
  1607. } else if (!strncmp(this_opt, "dpc:", 4)) {
  1608. if (simple_strtoul(this_opt+4, NULL, 0) == 0) {
  1609. sprintf(s, "double pixel clock: false\n");
  1610. inf->lccr3 &= ~LCCR3_DPC;
  1611. } else {
  1612. sprintf(s, "double pixel clock: true\n");
  1613. inf->lccr3 |= LCCR3_DPC;
  1614. }
  1615. } else if (!strncmp(this_opt, "outputen:", 9)) {
  1616. if (simple_strtoul(this_opt+9, NULL, 0) == 0) {
  1617. sprintf(s, "output enable: active low\n");
  1618. inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnL;
  1619. } else {
  1620. sprintf(s, "output enable: active high\n");
  1621. inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnH;
  1622. }
  1623. } else if (!strncmp(this_opt, "pixclockpol:", 12)) {
  1624. if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
  1625. sprintf(s, "pixel clock polarity: falling edge\n");
  1626. inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixFlEdg;
  1627. } else {
  1628. sprintf(s, "pixel clock polarity: rising edge\n");
  1629. inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixRsEdg;
  1630. }
  1631. } else if (!strncmp(this_opt, "color", 5)) {
  1632. inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Color;
  1633. } else if (!strncmp(this_opt, "mono", 4)) {
  1634. inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Mono;
  1635. } else if (!strncmp(this_opt, "active", 6)) {
  1636. inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Act;
  1637. } else if (!strncmp(this_opt, "passive", 7)) {
  1638. inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Pas;
  1639. } else if (!strncmp(this_opt, "single", 6)) {
  1640. inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Sngl;
  1641. } else if (!strncmp(this_opt, "dual", 4)) {
  1642. inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Dual;
  1643. } else if (!strncmp(this_opt, "4pix", 4)) {
  1644. inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_4PixMono;
  1645. } else if (!strncmp(this_opt, "8pix", 4)) {
  1646. inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_8PixMono;
  1647. } else {
  1648. dev_err(dev, "unknown option: %s\n", this_opt);
  1649. return -EINVAL;
  1650. }
  1651. if (s[0] != '\0')
  1652. dev_info(dev, "override %s", s);
  1653. return 0;
  1654. }
  1655. static int __devinit pxafb_parse_options(struct device *dev, char *options)
  1656. {
  1657. char *this_opt;
  1658. int ret;
  1659. if (!options || !*options)
  1660. return 0;
  1661. dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
  1662. /* could be made table driven or similar?... */
  1663. while ((this_opt = strsep(&options, ",")) != NULL) {
  1664. ret = parse_opt(dev, this_opt);
  1665. if (ret)
  1666. return ret;
  1667. }
  1668. return 0;
  1669. }
  1670. static char g_options[256] __devinitdata = "";
  1671. #ifndef MODULE
  1672. static int __init pxafb_setup_options(void)
  1673. {
  1674. char *options = NULL;
  1675. if (fb_get_options("pxafb", &options))
  1676. return -ENODEV;
  1677. if (options)
  1678. strlcpy(g_options, options, sizeof(g_options));
  1679. return 0;
  1680. }
  1681. #else
  1682. #define pxafb_setup_options() (0)
  1683. module_param_string(options, g_options, sizeof(g_options), 0);
  1684. MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)");
  1685. #endif
  1686. #else
  1687. #define pxafb_parse_options(...) (0)
  1688. #define pxafb_setup_options() (0)
  1689. #endif
  1690. #ifdef DEBUG_VAR
  1691. /* Check for various illegal bit-combinations. Currently only
  1692. * a warning is given. */
  1693. static void __devinit pxafb_check_options(struct device *dev,
  1694. struct pxafb_mach_info *inf)
  1695. {
  1696. if (inf->lcd_conn)
  1697. return;
  1698. if (inf->lccr0 & LCCR0_INVALID_CONFIG_MASK)
  1699. dev_warn(dev, "machine LCCR0 setting contains "
  1700. "illegal bits: %08x\n",
  1701. inf->lccr0 & LCCR0_INVALID_CONFIG_MASK);
  1702. if (inf->lccr3 & LCCR3_INVALID_CONFIG_MASK)
  1703. dev_warn(dev, "machine LCCR3 setting contains "
  1704. "illegal bits: %08x\n",
  1705. inf->lccr3 & LCCR3_INVALID_CONFIG_MASK);
  1706. if (inf->lccr0 & LCCR0_DPD &&
  1707. ((inf->lccr0 & LCCR0_PAS) != LCCR0_Pas ||
  1708. (inf->lccr0 & LCCR0_SDS) != LCCR0_Sngl ||
  1709. (inf->lccr0 & LCCR0_CMS) != LCCR0_Mono))
  1710. dev_warn(dev, "Double Pixel Data (DPD) mode is "
  1711. "only valid in passive mono"
  1712. " single panel mode\n");
  1713. if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Act &&
  1714. (inf->lccr0 & LCCR0_SDS) == LCCR0_Dual)
  1715. dev_warn(dev, "Dual panel only valid in passive mode\n");
  1716. if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Pas &&
  1717. (inf->modes->upper_margin || inf->modes->lower_margin))
  1718. dev_warn(dev, "Upper and lower margins must be 0 in "
  1719. "passive mode\n");
  1720. }
  1721. #else
  1722. #define pxafb_check_options(...) do {} while (0)
  1723. #endif
  1724. static int __devinit pxafb_probe(struct platform_device *dev)
  1725. {
  1726. struct pxafb_info *fbi;
  1727. struct pxafb_mach_info *inf;
  1728. struct resource *r;
  1729. int irq, ret;
  1730. dev_dbg(&dev->dev, "pxafb_probe\n");
  1731. inf = dev->dev.platform_data;
  1732. ret = -ENOMEM;
  1733. fbi = NULL;
  1734. if (!inf)
  1735. goto failed;
  1736. ret = pxafb_parse_options(&dev->dev, g_options);
  1737. if (ret < 0)
  1738. goto failed;
  1739. pxafb_check_options(&dev->dev, inf);
  1740. dev_dbg(&dev->dev, "got a %dx%dx%d LCD\n",
  1741. inf->modes->xres,
  1742. inf->modes->yres,
  1743. inf->modes->bpp);
  1744. if (inf->modes->xres == 0 ||
  1745. inf->modes->yres == 0 ||
  1746. inf->modes->bpp == 0) {
  1747. dev_err(&dev->dev, "Invalid resolution or bit depth\n");
  1748. ret = -EINVAL;
  1749. goto failed;
  1750. }
  1751. fbi = pxafb_init_fbinfo(&dev->dev);
  1752. if (!fbi) {
  1753. /* only reason for pxafb_init_fbinfo to fail is kmalloc */
  1754. dev_err(&dev->dev, "Failed to initialize framebuffer device\n");
  1755. ret = -ENOMEM;
  1756. goto failed;
  1757. }
  1758. fbi->backlight_power = inf->pxafb_backlight_power;
  1759. fbi->lcd_power = inf->pxafb_lcd_power;
  1760. r = platform_get_resource(dev, IORESOURCE_MEM, 0);
  1761. if (r == NULL) {
  1762. dev_err(&dev->dev, "no I/O memory resource defined\n");
  1763. ret = -ENODEV;
  1764. goto failed_fbi;
  1765. }
  1766. r = request_mem_region(r->start, r->end - r->start + 1, dev->name);
  1767. if (r == NULL) {
  1768. dev_err(&dev->dev, "failed to request I/O memory\n");
  1769. ret = -EBUSY;
  1770. goto failed_fbi;
  1771. }
  1772. fbi->mmio_base = ioremap(r->start, r->end - r->start + 1);
  1773. if (fbi->mmio_base == NULL) {
  1774. dev_err(&dev->dev, "failed to map I/O memory\n");
  1775. ret = -EBUSY;
  1776. goto failed_free_res;
  1777. }
  1778. fbi->dma_buff_size = PAGE_ALIGN(sizeof(struct pxafb_dma_buff));
  1779. fbi->dma_buff = dma_alloc_coherent(fbi->dev, fbi->dma_buff_size,
  1780. &fbi->dma_buff_phys, GFP_KERNEL);
  1781. if (fbi->dma_buff == NULL) {
  1782. dev_err(&dev->dev, "failed to allocate memory for DMA\n");
  1783. ret = -ENOMEM;
  1784. goto failed_free_io;
  1785. }
  1786. ret = pxafb_init_video_memory(fbi);
  1787. if (ret) {
  1788. dev_err(&dev->dev, "Failed to allocate video RAM: %d\n", ret);
  1789. ret = -ENOMEM;
  1790. goto failed_free_dma;
  1791. }
  1792. irq = platform_get_irq(dev, 0);
  1793. if (irq < 0) {
  1794. dev_err(&dev->dev, "no IRQ defined\n");
  1795. ret = -ENODEV;
  1796. goto failed_free_mem;
  1797. }
  1798. ret = request_irq(irq, pxafb_handle_irq, IRQF_DISABLED, "LCD", fbi);
  1799. if (ret) {
  1800. dev_err(&dev->dev, "request_irq failed: %d\n", ret);
  1801. ret = -EBUSY;
  1802. goto failed_free_mem;
  1803. }
  1804. ret = pxafb_smart_init(fbi);
  1805. if (ret) {
  1806. dev_err(&dev->dev, "failed to initialize smartpanel\n");
  1807. goto failed_free_irq;
  1808. }
  1809. /*
  1810. * This makes sure that our colour bitfield
  1811. * descriptors are correctly initialised.
  1812. */
  1813. ret = pxafb_check_var(&fbi->fb.var, &fbi->fb);
  1814. if (ret) {
  1815. dev_err(&dev->dev, "failed to get suitable mode\n");
  1816. goto failed_free_irq;
  1817. }
  1818. ret = pxafb_set_par(&fbi->fb);
  1819. if (ret) {
  1820. dev_err(&dev->dev, "Failed to set parameters\n");
  1821. goto failed_free_irq;
  1822. }
  1823. platform_set_drvdata(dev, fbi);
  1824. ret = register_framebuffer(&fbi->fb);
  1825. if (ret < 0) {
  1826. dev_err(&dev->dev,
  1827. "Failed to register framebuffer device: %d\n", ret);
  1828. goto failed_free_cmap;
  1829. }
  1830. pxafb_overlay_init(fbi);
  1831. #ifdef CONFIG_CPU_FREQ
  1832. fbi->freq_transition.notifier_call = pxafb_freq_transition;
  1833. fbi->freq_policy.notifier_call = pxafb_freq_policy;
  1834. cpufreq_register_notifier(&fbi->freq_transition,
  1835. CPUFREQ_TRANSITION_NOTIFIER);
  1836. cpufreq_register_notifier(&fbi->freq_policy,
  1837. CPUFREQ_POLICY_NOTIFIER);
  1838. #endif
  1839. /*
  1840. * Ok, now enable the LCD controller
  1841. */
  1842. set_ctrlr_state(fbi, C_ENABLE);
  1843. return 0;
  1844. failed_free_cmap:
  1845. if (fbi->fb.cmap.len)
  1846. fb_dealloc_cmap(&fbi->fb.cmap);
  1847. failed_free_irq:
  1848. free_irq(irq, fbi);
  1849. failed_free_mem:
  1850. free_pages_exact(fbi->video_mem, fbi->video_mem_size);
  1851. failed_free_dma:
  1852. dma_free_coherent(&dev->dev, fbi->dma_buff_size,
  1853. fbi->dma_buff, fbi->dma_buff_phys);
  1854. failed_free_io:
  1855. iounmap(fbi->mmio_base);
  1856. failed_free_res:
  1857. release_mem_region(r->start, r->end - r->start + 1);
  1858. failed_fbi:
  1859. clk_put(fbi->clk);
  1860. platform_set_drvdata(dev, NULL);
  1861. kfree(fbi);
  1862. failed:
  1863. return ret;
  1864. }
  1865. static int __devexit pxafb_remove(struct platform_device *dev)
  1866. {
  1867. struct pxafb_info *fbi = platform_get_drvdata(dev);
  1868. struct resource *r;
  1869. int irq;
  1870. struct fb_info *info;
  1871. if (!fbi)
  1872. return 0;
  1873. info = &fbi->fb;
  1874. pxafb_overlay_exit(fbi);
  1875. unregister_framebuffer(info);
  1876. pxafb_disable_controller(fbi);
  1877. if (fbi->fb.cmap.len)
  1878. fb_dealloc_cmap(&fbi->fb.cmap);
  1879. irq = platform_get_irq(dev, 0);
  1880. free_irq(irq, fbi);
  1881. free_pages_exact(fbi->video_mem, fbi->video_mem_size);
  1882. dma_free_writecombine(&dev->dev, fbi->dma_buff_size,
  1883. fbi->dma_buff, fbi->dma_buff_phys);
  1884. iounmap(fbi->mmio_base);
  1885. r = platform_get_resource(dev, IORESOURCE_MEM, 0);
  1886. release_mem_region(r->start, r->end - r->start + 1);
  1887. clk_put(fbi->clk);
  1888. kfree(fbi);
  1889. return 0;
  1890. }
  1891. static struct platform_driver pxafb_driver = {
  1892. .probe = pxafb_probe,
  1893. .remove = __devexit_p(pxafb_remove),
  1894. .suspend = pxafb_suspend,
  1895. .resume = pxafb_resume,
  1896. .driver = {
  1897. .owner = THIS_MODULE,
  1898. .name = "pxa2xx-fb",
  1899. },
  1900. };
  1901. static int __init pxafb_init(void)
  1902. {
  1903. if (pxafb_setup_options())
  1904. return -EINVAL;
  1905. return platform_driver_register(&pxafb_driver);
  1906. }
  1907. static void __exit pxafb_exit(void)
  1908. {
  1909. platform_driver_unregister(&pxafb_driver);
  1910. }
  1911. module_init(pxafb_init);
  1912. module_exit(pxafb_exit);
  1913. MODULE_DESCRIPTION("loadable framebuffer driver for PXA");
  1914. MODULE_LICENSE("GPL");