lxfb_ops.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. /* Geode LX framebuffer driver
  2. *
  3. * Copyright (C) 2006-2007, Advanced Micro Devices,Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/fb.h>
  13. #include <linux/uaccess.h>
  14. #include <linux/delay.h>
  15. #include <linux/cs5535.h>
  16. #include "lxfb.h"
  17. /* TODO
  18. * Support panel scaling
  19. * Add acceleration
  20. * Add support for interlacing (TV out)
  21. * Support compression
  22. */
  23. /* This is the complete list of PLL frequencies that we can set -
  24. * we will choose the closest match to the incoming clock.
  25. * freq is the frequency of the dotclock * 1000 (for example,
  26. * 24823 = 24.983 Mhz).
  27. * pllval is the corresponding PLL value
  28. */
  29. static const struct {
  30. unsigned int pllval;
  31. unsigned int freq;
  32. } pll_table[] = {
  33. { 0x000131AC, 6231 },
  34. { 0x0001215D, 6294 },
  35. { 0x00011087, 6750 },
  36. { 0x0001216C, 7081 },
  37. { 0x0001218D, 7140 },
  38. { 0x000110C9, 7800 },
  39. { 0x00013147, 7875 },
  40. { 0x000110A7, 8258 },
  41. { 0x00012159, 8778 },
  42. { 0x00014249, 8875 },
  43. { 0x00010057, 9000 },
  44. { 0x0001219A, 9472 },
  45. { 0x00012158, 9792 },
  46. { 0x00010045, 10000 },
  47. { 0x00010089, 10791 },
  48. { 0x000110E7, 11225 },
  49. { 0x00012136, 11430 },
  50. { 0x00013207, 12375 },
  51. { 0x00012187, 12500 },
  52. { 0x00014286, 14063 },
  53. { 0x000110E5, 15016 },
  54. { 0x00014214, 16250 },
  55. { 0x00011105, 17045 },
  56. { 0x000131E4, 18563 },
  57. { 0x00013183, 18750 },
  58. { 0x00014284, 19688 },
  59. { 0x00011104, 20400 },
  60. { 0x00016363, 23625 },
  61. { 0x000031AC, 24923 },
  62. { 0x0000215D, 25175 },
  63. { 0x00001087, 27000 },
  64. { 0x0000216C, 28322 },
  65. { 0x0000218D, 28560 },
  66. { 0x000010C9, 31200 },
  67. { 0x00003147, 31500 },
  68. { 0x000010A7, 33032 },
  69. { 0x00002159, 35112 },
  70. { 0x00004249, 35500 },
  71. { 0x00000057, 36000 },
  72. { 0x0000219A, 37889 },
  73. { 0x00002158, 39168 },
  74. { 0x00000045, 40000 },
  75. { 0x00000089, 43163 },
  76. { 0x000010E7, 44900 },
  77. { 0x00002136, 45720 },
  78. { 0x00003207, 49500 },
  79. { 0x00002187, 50000 },
  80. { 0x00004286, 56250 },
  81. { 0x000010E5, 60065 },
  82. { 0x00004214, 65000 },
  83. { 0x00001105, 68179 },
  84. { 0x000031E4, 74250 },
  85. { 0x00003183, 75000 },
  86. { 0x00004284, 78750 },
  87. { 0x00001104, 81600 },
  88. { 0x00006363, 94500 },
  89. { 0x00005303, 97520 },
  90. { 0x00002183, 100187 },
  91. { 0x00002122, 101420 },
  92. { 0x00001081, 108000 },
  93. { 0x00006201, 113310 },
  94. { 0x00000041, 119650 },
  95. { 0x000041A1, 129600 },
  96. { 0x00002182, 133500 },
  97. { 0x000041B1, 135000 },
  98. { 0x00000051, 144000 },
  99. { 0x000041E1, 148500 },
  100. { 0x000062D1, 157500 },
  101. { 0x000031A1, 162000 },
  102. { 0x00000061, 169203 },
  103. { 0x00004231, 172800 },
  104. { 0x00002151, 175500 },
  105. { 0x000052E1, 189000 },
  106. { 0x00000071, 192000 },
  107. { 0x00003201, 198000 },
  108. { 0x00004291, 202500 },
  109. { 0x00001101, 204750 },
  110. { 0x00007481, 218250 },
  111. { 0x00004170, 229500 },
  112. { 0x00006210, 234000 },
  113. { 0x00003140, 251182 },
  114. { 0x00006250, 261000 },
  115. { 0x000041C0, 278400 },
  116. { 0x00005220, 280640 },
  117. { 0x00000050, 288000 },
  118. { 0x000041E0, 297000 },
  119. { 0x00002130, 320207 }
  120. };
  121. static void lx_set_dotpll(u32 pllval)
  122. {
  123. u32 dotpll_lo, dotpll_hi;
  124. int i;
  125. rdmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
  126. if ((dotpll_lo & MSR_GLCP_DOTPLL_LOCK) && (dotpll_hi == pllval))
  127. return;
  128. dotpll_hi = pllval;
  129. dotpll_lo &= ~(MSR_GLCP_DOTPLL_BYPASS | MSR_GLCP_DOTPLL_HALFPIX);
  130. dotpll_lo |= MSR_GLCP_DOTPLL_DOTRESET;
  131. wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
  132. /* Wait 100us for the PLL to lock */
  133. udelay(100);
  134. /* Now, loop for the lock bit */
  135. for (i = 0; i < 1000; i++) {
  136. rdmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
  137. if (dotpll_lo & MSR_GLCP_DOTPLL_LOCK)
  138. break;
  139. }
  140. /* Clear the reset bit */
  141. dotpll_lo &= ~MSR_GLCP_DOTPLL_DOTRESET;
  142. wrmsr(MSR_GLCP_DOTPLL, dotpll_lo, dotpll_hi);
  143. }
  144. /* Set the clock based on the frequency specified by the current mode */
  145. static void lx_set_clock(struct fb_info *info)
  146. {
  147. unsigned int diff, min, best = 0;
  148. unsigned int freq, i;
  149. freq = (unsigned int) (1000000000 / info->var.pixclock);
  150. min = abs(pll_table[0].freq - freq);
  151. for (i = 0; i < ARRAY_SIZE(pll_table); i++) {
  152. diff = abs(pll_table[i].freq - freq);
  153. if (diff < min) {
  154. min = diff;
  155. best = i;
  156. }
  157. }
  158. lx_set_dotpll(pll_table[best].pllval & 0x00017FFF);
  159. }
  160. static void lx_graphics_disable(struct fb_info *info)
  161. {
  162. struct lxfb_par *par = info->par;
  163. unsigned int val, gcfg;
  164. /* Note: This assumes that the video is in a quitet state */
  165. write_vp(par, VP_A1T, 0);
  166. write_vp(par, VP_A2T, 0);
  167. write_vp(par, VP_A3T, 0);
  168. /* Turn off the VGA and video enable */
  169. val = read_dc(par, DC_GENERAL_CFG) & ~(DC_GENERAL_CFG_VGAE |
  170. DC_GENERAL_CFG_VIDE);
  171. write_dc(par, DC_GENERAL_CFG, val);
  172. val = read_vp(par, VP_VCFG) & ~VP_VCFG_VID_EN;
  173. write_vp(par, VP_VCFG, val);
  174. write_dc(par, DC_IRQ, DC_IRQ_MASK | DC_IRQ_VIP_VSYNC_LOSS_IRQ_MASK |
  175. DC_IRQ_STATUS | DC_IRQ_VIP_VSYNC_IRQ_STATUS);
  176. val = read_dc(par, DC_GENLK_CTL) & ~DC_GENLK_CTL_GENLK_EN;
  177. write_dc(par, DC_GENLK_CTL, val);
  178. val = read_dc(par, DC_CLR_KEY);
  179. write_dc(par, DC_CLR_KEY, val & ~DC_CLR_KEY_CLR_KEY_EN);
  180. /* turn off the panel */
  181. write_fp(par, FP_PM, read_fp(par, FP_PM) & ~FP_PM_P);
  182. val = read_vp(par, VP_MISC) | VP_MISC_DACPWRDN;
  183. write_vp(par, VP_MISC, val);
  184. /* Turn off the display */
  185. val = read_vp(par, VP_DCFG);
  186. write_vp(par, VP_DCFG, val & ~(VP_DCFG_CRT_EN | VP_DCFG_HSYNC_EN |
  187. VP_DCFG_VSYNC_EN | VP_DCFG_DAC_BL_EN));
  188. gcfg = read_dc(par, DC_GENERAL_CFG);
  189. gcfg &= ~(DC_GENERAL_CFG_CMPE | DC_GENERAL_CFG_DECE);
  190. write_dc(par, DC_GENERAL_CFG, gcfg);
  191. /* Turn off the TGEN */
  192. val = read_dc(par, DC_DISPLAY_CFG);
  193. val &= ~DC_DISPLAY_CFG_TGEN;
  194. write_dc(par, DC_DISPLAY_CFG, val);
  195. /* Wait 1000 usecs to ensure that the TGEN is clear */
  196. udelay(1000);
  197. /* Turn off the FIFO loader */
  198. gcfg &= ~DC_GENERAL_CFG_DFLE;
  199. write_dc(par, DC_GENERAL_CFG, gcfg);
  200. /* Lastly, wait for the GP to go idle */
  201. do {
  202. val = read_gp(par, GP_BLT_STATUS);
  203. } while ((val & GP_BLT_STATUS_PB) || !(val & GP_BLT_STATUS_CE));
  204. }
  205. static void lx_graphics_enable(struct fb_info *info)
  206. {
  207. struct lxfb_par *par = info->par;
  208. u32 temp, config;
  209. /* Set the video request register */
  210. write_vp(par, VP_VRR, 0);
  211. /* Set up the polarities */
  212. config = read_vp(par, VP_DCFG);
  213. config &= ~(VP_DCFG_CRT_SYNC_SKW | VP_DCFG_PWR_SEQ_DELAY |
  214. VP_DCFG_CRT_HSYNC_POL | VP_DCFG_CRT_VSYNC_POL);
  215. config |= (VP_DCFG_CRT_SYNC_SKW_DEFAULT | VP_DCFG_PWR_SEQ_DELAY_DEFAULT
  216. | VP_DCFG_GV_GAM);
  217. if (info->var.sync & FB_SYNC_HOR_HIGH_ACT)
  218. config |= VP_DCFG_CRT_HSYNC_POL;
  219. if (info->var.sync & FB_SYNC_VERT_HIGH_ACT)
  220. config |= VP_DCFG_CRT_VSYNC_POL;
  221. if (par->output & OUTPUT_PANEL) {
  222. u32 msrlo, msrhi;
  223. write_fp(par, FP_PT1, 0);
  224. temp = FP_PT2_SCRC;
  225. if (!(info->var.sync & FB_SYNC_HOR_HIGH_ACT))
  226. temp |= FP_PT2_HSP;
  227. if (!(info->var.sync & FB_SYNC_VERT_HIGH_ACT))
  228. temp |= FP_PT2_VSP;
  229. write_fp(par, FP_PT2, temp);
  230. write_fp(par, FP_DFC, FP_DFC_BC);
  231. msrlo = MSR_LX_MSR_PADSEL_TFT_SEL_LOW;
  232. msrhi = MSR_LX_MSR_PADSEL_TFT_SEL_HIGH;
  233. wrmsr(MSR_LX_MSR_PADSEL, msrlo, msrhi);
  234. }
  235. if (par->output & OUTPUT_CRT) {
  236. config |= VP_DCFG_CRT_EN | VP_DCFG_HSYNC_EN |
  237. VP_DCFG_VSYNC_EN | VP_DCFG_DAC_BL_EN;
  238. }
  239. write_vp(par, VP_DCFG, config);
  240. /* Turn the CRT dacs back on */
  241. if (par->output & OUTPUT_CRT) {
  242. temp = read_vp(par, VP_MISC);
  243. temp &= ~(VP_MISC_DACPWRDN | VP_MISC_APWRDN);
  244. write_vp(par, VP_MISC, temp);
  245. }
  246. /* Turn the panel on (if it isn't already) */
  247. if (par->output & OUTPUT_PANEL)
  248. write_fp(par, FP_PM, read_fp(par, FP_PM) | FP_PM_P);
  249. }
  250. unsigned int lx_framebuffer_size(void)
  251. {
  252. unsigned int val;
  253. if (!cs5535_has_vsa2()) {
  254. uint32_t hi, lo;
  255. /* The number of pages is (PMAX - PMIN)+1 */
  256. rdmsr(MSR_GLIU_P2D_RO0, lo, hi);
  257. /* PMAX */
  258. val = ((hi & 0xff) << 12) | ((lo & 0xfff00000) >> 20);
  259. /* PMIN */
  260. val -= (lo & 0x000fffff);
  261. val += 1;
  262. /* The page size is 4k */
  263. return (val << 12);
  264. }
  265. /* The frame buffer size is reported by a VSM in VSA II */
  266. /* Virtual Register Class = 0x02 */
  267. /* VG_MEM_SIZE (1MB units) = 0x00 */
  268. outw(VSA_VR_UNLOCK, VSA_VRC_INDEX);
  269. outw(VSA_VR_MEM_SIZE, VSA_VRC_INDEX);
  270. val = (unsigned int)(inw(VSA_VRC_DATA)) & 0xFE;
  271. return (val << 20);
  272. }
  273. void lx_set_mode(struct fb_info *info)
  274. {
  275. struct lxfb_par *par = info->par;
  276. u64 msrval;
  277. unsigned int max, dv, val, size;
  278. unsigned int gcfg, dcfg;
  279. int hactive, hblankstart, hsyncstart, hsyncend, hblankend, htotal;
  280. int vactive, vblankstart, vsyncstart, vsyncend, vblankend, vtotal;
  281. /* Unlock the DC registers */
  282. write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
  283. lx_graphics_disable(info);
  284. lx_set_clock(info);
  285. /* Set output mode */
  286. rdmsrl(MSR_LX_GLD_MSR_CONFIG, msrval);
  287. msrval &= ~MSR_LX_GLD_MSR_CONFIG_FMT;
  288. if (par->output & OUTPUT_PANEL) {
  289. msrval |= MSR_LX_GLD_MSR_CONFIG_FMT_FP;
  290. if (par->output & OUTPUT_CRT)
  291. msrval |= MSR_LX_GLD_MSR_CONFIG_FPC;
  292. else
  293. msrval &= ~MSR_LX_GLD_MSR_CONFIG_FPC;
  294. } else
  295. msrval |= MSR_LX_GLD_MSR_CONFIG_FMT_CRT;
  296. wrmsrl(MSR_LX_GLD_MSR_CONFIG, msrval);
  297. /* Clear the various buffers */
  298. /* FIXME: Adjust for panning here */
  299. write_dc(par, DC_FB_ST_OFFSET, 0);
  300. write_dc(par, DC_CB_ST_OFFSET, 0);
  301. write_dc(par, DC_CURS_ST_OFFSET, 0);
  302. /* FIXME: Add support for interlacing */
  303. /* FIXME: Add support for scaling */
  304. val = read_dc(par, DC_GENLK_CTL);
  305. val &= ~(DC_GENLK_CTL_ALPHA_FLICK_EN | DC_GENLK_CTL_FLICK_EN |
  306. DC_GENLK_CTL_FLICK_SEL_MASK);
  307. /* Default scaling params */
  308. write_dc(par, DC_GFX_SCALE, (0x4000 << 16) | 0x4000);
  309. write_dc(par, DC_IRQ_FILT_CTL, 0);
  310. write_dc(par, DC_GENLK_CTL, val);
  311. /* FIXME: Support compression */
  312. if (info->fix.line_length > 4096)
  313. dv = DC_DV_CTL_DV_LINE_SIZE_8K;
  314. else if (info->fix.line_length > 2048)
  315. dv = DC_DV_CTL_DV_LINE_SIZE_4K;
  316. else if (info->fix.line_length > 1024)
  317. dv = DC_DV_CTL_DV_LINE_SIZE_2K;
  318. else
  319. dv = DC_DV_CTL_DV_LINE_SIZE_1K;
  320. max = info->fix.line_length * info->var.yres;
  321. max = (max + 0x3FF) & 0xFFFFFC00;
  322. write_dc(par, DC_DV_TOP, max | DC_DV_TOP_DV_TOP_EN);
  323. val = read_dc(par, DC_DV_CTL) & ~DC_DV_CTL_DV_LINE_SIZE;
  324. write_dc(par, DC_DV_CTL, val | dv);
  325. size = info->var.xres * (info->var.bits_per_pixel >> 3);
  326. write_dc(par, DC_GFX_PITCH, info->fix.line_length >> 3);
  327. write_dc(par, DC_LINE_SIZE, (size + 7) >> 3);
  328. /* Set default watermark values */
  329. rdmsrl(MSR_LX_SPARE_MSR, msrval);
  330. msrval &= ~(MSR_LX_SPARE_MSR_DIS_CFIFO_HGO
  331. | MSR_LX_SPARE_MSR_VFIFO_ARB_SEL
  332. | MSR_LX_SPARE_MSR_LOAD_WM_LPEN_M
  333. | MSR_LX_SPARE_MSR_WM_LPEN_OVRD);
  334. msrval |= MSR_LX_SPARE_MSR_DIS_VIFO_WM |
  335. MSR_LX_SPARE_MSR_DIS_INIT_V_PRI;
  336. wrmsrl(MSR_LX_SPARE_MSR, msrval);
  337. gcfg = DC_GENERAL_CFG_DFLE; /* Display fifo enable */
  338. gcfg |= (0x6 << DC_GENERAL_CFG_DFHPSL_SHIFT) | /* default priority */
  339. (0xb << DC_GENERAL_CFG_DFHPEL_SHIFT);
  340. gcfg |= DC_GENERAL_CFG_FDTY; /* Set the frame dirty mode */
  341. dcfg = DC_DISPLAY_CFG_VDEN; /* Enable video data */
  342. dcfg |= DC_DISPLAY_CFG_GDEN; /* Enable graphics */
  343. dcfg |= DC_DISPLAY_CFG_TGEN; /* Turn on the timing generator */
  344. dcfg |= DC_DISPLAY_CFG_TRUP; /* Update timings immediately */
  345. dcfg |= DC_DISPLAY_CFG_PALB; /* Palette bypass in > 8 bpp modes */
  346. dcfg |= DC_DISPLAY_CFG_VISL;
  347. dcfg |= DC_DISPLAY_CFG_DCEN; /* Always center the display */
  348. /* Set the current BPP mode */
  349. switch (info->var.bits_per_pixel) {
  350. case 8:
  351. dcfg |= DC_DISPLAY_CFG_DISP_MODE_8BPP;
  352. break;
  353. case 16:
  354. dcfg |= DC_DISPLAY_CFG_DISP_MODE_16BPP;
  355. break;
  356. case 32:
  357. case 24:
  358. dcfg |= DC_DISPLAY_CFG_DISP_MODE_24BPP;
  359. break;
  360. }
  361. /* Now - set up the timings */
  362. hactive = info->var.xres;
  363. hblankstart = hactive;
  364. hsyncstart = hblankstart + info->var.right_margin;
  365. hsyncend = hsyncstart + info->var.hsync_len;
  366. hblankend = hsyncend + info->var.left_margin;
  367. htotal = hblankend;
  368. vactive = info->var.yres;
  369. vblankstart = vactive;
  370. vsyncstart = vblankstart + info->var.lower_margin;
  371. vsyncend = vsyncstart + info->var.vsync_len;
  372. vblankend = vsyncend + info->var.upper_margin;
  373. vtotal = vblankend;
  374. write_dc(par, DC_H_ACTIVE_TIMING, (hactive - 1) | ((htotal - 1) << 16));
  375. write_dc(par, DC_H_BLANK_TIMING,
  376. (hblankstart - 1) | ((hblankend - 1) << 16));
  377. write_dc(par, DC_H_SYNC_TIMING,
  378. (hsyncstart - 1) | ((hsyncend - 1) << 16));
  379. write_dc(par, DC_V_ACTIVE_TIMING, (vactive - 1) | ((vtotal - 1) << 16));
  380. write_dc(par, DC_V_BLANK_TIMING,
  381. (vblankstart - 1) | ((vblankend - 1) << 16));
  382. write_dc(par, DC_V_SYNC_TIMING,
  383. (vsyncstart - 1) | ((vsyncend - 1) << 16));
  384. write_dc(par, DC_FB_ACTIVE,
  385. (info->var.xres - 1) << 16 | (info->var.yres - 1));
  386. /* And re-enable the graphics output */
  387. lx_graphics_enable(info);
  388. /* Write the two main configuration registers */
  389. write_dc(par, DC_DISPLAY_CFG, dcfg);
  390. write_dc(par, DC_ARB_CFG, 0);
  391. write_dc(par, DC_GENERAL_CFG, gcfg);
  392. /* Lock the DC registers */
  393. write_dc(par, DC_UNLOCK, DC_UNLOCK_LOCK);
  394. }
  395. void lx_set_palette_reg(struct fb_info *info, unsigned regno,
  396. unsigned red, unsigned green, unsigned blue)
  397. {
  398. struct lxfb_par *par = info->par;
  399. int val;
  400. /* Hardware palette is in RGB 8-8-8 format. */
  401. val = (red << 8) & 0xff0000;
  402. val |= (green) & 0x00ff00;
  403. val |= (blue >> 8) & 0x0000ff;
  404. write_dc(par, DC_PAL_ADDRESS, regno);
  405. write_dc(par, DC_PAL_DATA, val);
  406. }
  407. int lx_blank_display(struct fb_info *info, int blank_mode)
  408. {
  409. struct lxfb_par *par = info->par;
  410. u32 dcfg, misc, fp_pm;
  411. int blank, hsync, vsync;
  412. /* CRT power saving modes. */
  413. switch (blank_mode) {
  414. case FB_BLANK_UNBLANK:
  415. blank = 0; hsync = 1; vsync = 1;
  416. break;
  417. case FB_BLANK_NORMAL:
  418. blank = 1; hsync = 1; vsync = 1;
  419. break;
  420. case FB_BLANK_VSYNC_SUSPEND:
  421. blank = 1; hsync = 1; vsync = 0;
  422. break;
  423. case FB_BLANK_HSYNC_SUSPEND:
  424. blank = 1; hsync = 0; vsync = 1;
  425. break;
  426. case FB_BLANK_POWERDOWN:
  427. blank = 1; hsync = 0; vsync = 0;
  428. break;
  429. default:
  430. return -EINVAL;
  431. }
  432. dcfg = read_vp(par, VP_DCFG);
  433. dcfg &= ~(VP_DCFG_DAC_BL_EN | VP_DCFG_HSYNC_EN | VP_DCFG_VSYNC_EN |
  434. VP_DCFG_CRT_EN);
  435. if (!blank)
  436. dcfg |= VP_DCFG_DAC_BL_EN | VP_DCFG_CRT_EN;
  437. if (hsync)
  438. dcfg |= VP_DCFG_HSYNC_EN;
  439. if (vsync)
  440. dcfg |= VP_DCFG_VSYNC_EN;
  441. write_vp(par, VP_DCFG, dcfg);
  442. misc = read_vp(par, VP_MISC);
  443. if (vsync && hsync)
  444. misc &= ~VP_MISC_DACPWRDN;
  445. else
  446. misc |= VP_MISC_DACPWRDN;
  447. write_vp(par, VP_MISC, misc);
  448. /* Power on/off flat panel */
  449. if (par->output & OUTPUT_PANEL) {
  450. fp_pm = read_fp(par, FP_PM);
  451. if (blank_mode == FB_BLANK_POWERDOWN)
  452. fp_pm &= ~FP_PM_P;
  453. else
  454. fp_pm |= FP_PM_P;
  455. write_fp(par, FP_PM, fp_pm);
  456. }
  457. return 0;
  458. }
  459. #ifdef CONFIG_PM
  460. static void lx_save_regs(struct lxfb_par *par)
  461. {
  462. uint32_t filt;
  463. int i;
  464. /* wait for the BLT engine to stop being busy */
  465. do {
  466. i = read_gp(par, GP_BLT_STATUS);
  467. } while ((i & GP_BLT_STATUS_PB) || !(i & GP_BLT_STATUS_CE));
  468. /* save MSRs */
  469. rdmsrl(MSR_LX_MSR_PADSEL, par->msr.padsel);
  470. rdmsrl(MSR_GLCP_DOTPLL, par->msr.dotpll);
  471. rdmsrl(MSR_LX_GLD_MSR_CONFIG, par->msr.dfglcfg);
  472. rdmsrl(MSR_LX_SPARE_MSR, par->msr.dcspare);
  473. write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
  474. /* save registers */
  475. memcpy(par->gp, par->gp_regs, sizeof(par->gp));
  476. memcpy(par->dc, par->dc_regs, sizeof(par->dc));
  477. memcpy(par->vp, par->vp_regs, sizeof(par->vp));
  478. memcpy(par->fp, par->vp_regs + VP_FP_START, sizeof(par->fp));
  479. /* save the display controller palette */
  480. write_dc(par, DC_PAL_ADDRESS, 0);
  481. for (i = 0; i < ARRAY_SIZE(par->dc_pal); i++)
  482. par->dc_pal[i] = read_dc(par, DC_PAL_DATA);
  483. /* save the video processor palette */
  484. write_vp(par, VP_PAR, 0);
  485. for (i = 0; i < ARRAY_SIZE(par->vp_pal); i++)
  486. par->vp_pal[i] = read_vp(par, VP_PDR);
  487. /* save the horizontal filter coefficients */
  488. filt = par->dc[DC_IRQ_FILT_CTL] | DC_IRQ_FILT_CTL_H_FILT_SEL;
  489. for (i = 0; i < ARRAY_SIZE(par->hcoeff); i += 2) {
  490. write_dc(par, DC_IRQ_FILT_CTL, (filt & 0xffffff00) | i);
  491. par->hcoeff[i] = read_dc(par, DC_FILT_COEFF1);
  492. par->hcoeff[i + 1] = read_dc(par, DC_FILT_COEFF2);
  493. }
  494. /* save the vertical filter coefficients */
  495. filt &= ~DC_IRQ_FILT_CTL_H_FILT_SEL;
  496. for (i = 0; i < ARRAY_SIZE(par->vcoeff); i++) {
  497. write_dc(par, DC_IRQ_FILT_CTL, (filt & 0xffffff00) | i);
  498. par->vcoeff[i] = read_dc(par, DC_FILT_COEFF1);
  499. }
  500. /* save video coeff ram */
  501. memcpy(par->vp_coeff, par->vp_regs + VP_VCR, sizeof(par->vp_coeff));
  502. }
  503. static void lx_restore_gfx_proc(struct lxfb_par *par)
  504. {
  505. int i;
  506. /* a bunch of registers require GP_RASTER_MODE to be set first */
  507. write_gp(par, GP_RASTER_MODE, par->gp[GP_RASTER_MODE]);
  508. for (i = 0; i < ARRAY_SIZE(par->gp); i++) {
  509. switch (i) {
  510. case GP_RASTER_MODE:
  511. case GP_VECTOR_MODE:
  512. case GP_BLT_MODE:
  513. case GP_BLT_STATUS:
  514. case GP_HST_SRC:
  515. /* FIXME: restore LUT data */
  516. case GP_LUT_INDEX:
  517. case GP_LUT_DATA:
  518. /* don't restore these registers */
  519. break;
  520. default:
  521. write_gp(par, i, par->gp[i]);
  522. }
  523. }
  524. }
  525. static void lx_restore_display_ctlr(struct lxfb_par *par)
  526. {
  527. uint32_t filt;
  528. int i;
  529. wrmsrl(MSR_LX_SPARE_MSR, par->msr.dcspare);
  530. for (i = 0; i < ARRAY_SIZE(par->dc); i++) {
  531. switch (i) {
  532. case DC_UNLOCK:
  533. /* unlock the DC; runs first */
  534. write_dc(par, DC_UNLOCK, DC_UNLOCK_UNLOCK);
  535. break;
  536. case DC_GENERAL_CFG:
  537. case DC_DISPLAY_CFG:
  538. /* disable all while restoring */
  539. write_dc(par, i, 0);
  540. break;
  541. case DC_DV_CTL:
  542. /* set all ram to dirty */
  543. write_dc(par, i, par->dc[i] | DC_DV_CTL_CLEAR_DV_RAM);
  544. case DC_RSVD_1:
  545. case DC_RSVD_2:
  546. case DC_RSVD_3:
  547. case DC_LINE_CNT:
  548. case DC_PAL_ADDRESS:
  549. case DC_PAL_DATA:
  550. case DC_DFIFO_DIAG:
  551. case DC_CFIFO_DIAG:
  552. case DC_FILT_COEFF1:
  553. case DC_FILT_COEFF2:
  554. case DC_RSVD_4:
  555. case DC_RSVD_5:
  556. /* don't restore these registers */
  557. break;
  558. default:
  559. write_dc(par, i, par->dc[i]);
  560. }
  561. }
  562. /* restore the palette */
  563. write_dc(par, DC_PAL_ADDRESS, 0);
  564. for (i = 0; i < ARRAY_SIZE(par->dc_pal); i++)
  565. write_dc(par, DC_PAL_DATA, par->dc_pal[i]);
  566. /* restore the horizontal filter coefficients */
  567. filt = par->dc[DC_IRQ_FILT_CTL] | DC_IRQ_FILT_CTL_H_FILT_SEL;
  568. for (i = 0; i < ARRAY_SIZE(par->hcoeff); i += 2) {
  569. write_dc(par, DC_IRQ_FILT_CTL, (filt & 0xffffff00) | i);
  570. write_dc(par, DC_FILT_COEFF1, par->hcoeff[i]);
  571. write_dc(par, DC_FILT_COEFF2, par->hcoeff[i + 1]);
  572. }
  573. /* restore the vertical filter coefficients */
  574. filt &= ~DC_IRQ_FILT_CTL_H_FILT_SEL;
  575. for (i = 0; i < ARRAY_SIZE(par->vcoeff); i++) {
  576. write_dc(par, DC_IRQ_FILT_CTL, (filt & 0xffffff00) | i);
  577. write_dc(par, DC_FILT_COEFF1, par->vcoeff[i]);
  578. }
  579. }
  580. static void lx_restore_video_proc(struct lxfb_par *par)
  581. {
  582. int i;
  583. wrmsrl(MSR_LX_GLD_MSR_CONFIG, par->msr.dfglcfg);
  584. wrmsrl(MSR_LX_MSR_PADSEL, par->msr.padsel);
  585. for (i = 0; i < ARRAY_SIZE(par->vp); i++) {
  586. switch (i) {
  587. case VP_VCFG:
  588. case VP_DCFG:
  589. case VP_PAR:
  590. case VP_PDR:
  591. case VP_CCS:
  592. case VP_RSVD_0:
  593. /* case VP_VDC: */ /* why should this not be restored? */
  594. case VP_RSVD_1:
  595. case VP_CRC32:
  596. /* don't restore these registers */
  597. break;
  598. default:
  599. write_vp(par, i, par->vp[i]);
  600. }
  601. }
  602. /* restore video processor palette */
  603. write_vp(par, VP_PAR, 0);
  604. for (i = 0; i < ARRAY_SIZE(par->vp_pal); i++)
  605. write_vp(par, VP_PDR, par->vp_pal[i]);
  606. /* restore video coeff ram */
  607. memcpy(par->vp_regs + VP_VCR, par->vp_coeff, sizeof(par->vp_coeff));
  608. }
  609. static void lx_restore_regs(struct lxfb_par *par)
  610. {
  611. int i;
  612. lx_set_dotpll((u32) (par->msr.dotpll >> 32));
  613. lx_restore_gfx_proc(par);
  614. lx_restore_display_ctlr(par);
  615. lx_restore_video_proc(par);
  616. /* Flat Panel */
  617. for (i = 0; i < ARRAY_SIZE(par->fp); i++) {
  618. switch (i) {
  619. case FP_PM:
  620. case FP_RSVD_0:
  621. case FP_RSVD_1:
  622. case FP_RSVD_2:
  623. case FP_RSVD_3:
  624. case FP_RSVD_4:
  625. /* don't restore these registers */
  626. break;
  627. default:
  628. write_fp(par, i, par->fp[i]);
  629. }
  630. }
  631. /* control the panel */
  632. if (par->fp[FP_PM] & FP_PM_P) {
  633. /* power on the panel if not already power{ed,ing} on */
  634. if (!(read_fp(par, FP_PM) &
  635. (FP_PM_PANEL_ON|FP_PM_PANEL_PWR_UP)))
  636. write_fp(par, FP_PM, par->fp[FP_PM]);
  637. } else {
  638. /* power down the panel if not already power{ed,ing} down */
  639. if (!(read_fp(par, FP_PM) &
  640. (FP_PM_PANEL_OFF|FP_PM_PANEL_PWR_DOWN)))
  641. write_fp(par, FP_PM, par->fp[FP_PM]);
  642. }
  643. /* turn everything on */
  644. write_vp(par, VP_VCFG, par->vp[VP_VCFG]);
  645. write_vp(par, VP_DCFG, par->vp[VP_DCFG]);
  646. write_dc(par, DC_DISPLAY_CFG, par->dc[DC_DISPLAY_CFG]);
  647. /* do this last; it will enable the FIFO load */
  648. write_dc(par, DC_GENERAL_CFG, par->dc[DC_GENERAL_CFG]);
  649. /* lock the door behind us */
  650. write_dc(par, DC_UNLOCK, DC_UNLOCK_LOCK);
  651. }
  652. int lx_powerdown(struct fb_info *info)
  653. {
  654. struct lxfb_par *par = info->par;
  655. if (par->powered_down)
  656. return 0;
  657. lx_save_regs(par);
  658. lx_graphics_disable(info);
  659. par->powered_down = 1;
  660. return 0;
  661. }
  662. int lx_powerup(struct fb_info *info)
  663. {
  664. struct lxfb_par *par = info->par;
  665. if (!par->powered_down)
  666. return 0;
  667. lx_restore_regs(par);
  668. par->powered_down = 0;
  669. return 0;
  670. }
  671. #endif