pxafb.c 60 KB

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