Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
lxfb.h
Go to the documentation of this file.
1 /* Geode LX framebuffer driver
2  *
3  * Copyright (C) 2006-2007, Advanced Micro Devices,Inc.
4  * Copyright (c) 2008 Andres Salomon <[email protected]>
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  */
11 #ifndef _LXFB_H_
12 #define _LXFB_H_
13 
14 #include <linux/fb.h>
15 
16 #define GP_REG_COUNT (0x7c / 4)
17 #define DC_REG_COUNT (0xf0 / 4)
18 #define VP_REG_COUNT (0x158 / 8)
19 #define FP_REG_COUNT (0x60 / 8)
20 
21 #define DC_PAL_COUNT 0x104
22 #define DC_HFILT_COUNT 0x100
23 #define DC_VFILT_COUNT 0x100
24 #define VP_COEFF_SIZE 0x1000
25 #define VP_PAL_COUNT 0x100
26 
27 #define OUTPUT_CRT 0x01
28 #define OUTPUT_PANEL 0x02
29 
30 struct lxfb_par {
31  int output;
32 
36 #ifdef CONFIG_PM
37  int powered_down;
38 
39  /* register state, for power mgmt functionality */
40  struct {
41  uint64_t padsel;
42  uint64_t dotpll;
43  uint64_t dfglcfg;
44  uint64_t dcspare;
45  } msr;
46 
51 
52  uint32_t dc_pal[DC_PAL_COUNT];
53  uint32_t vp_pal[VP_PAL_COUNT];
54  uint32_t hcoeff[DC_HFILT_COUNT * 2];
55  uint32_t vcoeff[DC_VFILT_COUNT];
56  uint32_t vp_coeff[VP_COEFF_SIZE / 4];
57 #endif
58 };
59 
60 static inline unsigned int lx_get_pitch(unsigned int xres, int bpp)
61 {
62  return (((xres * (bpp >> 3)) + 7) & ~7);
63 }
64 
65 void lx_set_mode(struct fb_info *);
66 unsigned int lx_framebuffer_size(void);
67 int lx_blank_display(struct fb_info *, int);
68 void lx_set_palette_reg(struct fb_info *, unsigned int, unsigned int,
69  unsigned int, unsigned int);
70 
71 #ifdef CONFIG_PM
72 int lx_powerdown(struct fb_info *info);
73 int lx_powerup(struct fb_info *info);
74 #endif
75 
76 
77 /* Graphics Processor registers (table 6-29 from the data book) */
83 
88 
93 
98 
103 
108 
113 
116  GP_INT_CNTRL, /* 0x78 */
117 };
118 
119 #define GP_BLT_STATUS_CE (1 << 4) /* cmd buf empty */
120 #define GP_BLT_STATUS_PB (1 << 0) /* primitive busy */
121 
122 
123 /* Display Controller registers (table 6-47 from the data book) */
129 
134 
139 
144 
149 
154 
159 
164 
169 
174 
179 
184 
189 
194 
199 };
200 
201 #define DC_UNLOCK_LOCK 0x00000000
202 #define DC_UNLOCK_UNLOCK 0x00004758 /* magic value */
203 
204 #define DC_GENERAL_CFG_FDTY (1 << 17)
205 #define DC_GENERAL_CFG_DFHPEL_SHIFT (12)
206 #define DC_GENERAL_CFG_DFHPSL_SHIFT (8)
207 #define DC_GENERAL_CFG_VGAE (1 << 7)
208 #define DC_GENERAL_CFG_DECE (1 << 6)
209 #define DC_GENERAL_CFG_CMPE (1 << 5)
210 #define DC_GENERAL_CFG_VIDE (1 << 3)
211 #define DC_GENERAL_CFG_DFLE (1 << 0)
212 
213 #define DC_DISPLAY_CFG_VISL (1 << 27)
214 #define DC_DISPLAY_CFG_PALB (1 << 25)
215 #define DC_DISPLAY_CFG_DCEN (1 << 24)
216 #define DC_DISPLAY_CFG_DISP_MODE_24BPP (1 << 9)
217 #define DC_DISPLAY_CFG_DISP_MODE_16BPP (1 << 8)
218 #define DC_DISPLAY_CFG_DISP_MODE_8BPP (0)
219 #define DC_DISPLAY_CFG_TRUP (1 << 6)
220 #define DC_DISPLAY_CFG_VDEN (1 << 4)
221 #define DC_DISPLAY_CFG_GDEN (1 << 3)
222 #define DC_DISPLAY_CFG_TGEN (1 << 0)
223 
224 #define DC_DV_TOP_DV_TOP_EN (1 << 0)
225 
226 #define DC_DV_CTL_DV_LINE_SIZE ((1 << 10) | (1 << 11))
227 #define DC_DV_CTL_DV_LINE_SIZE_1K (0)
228 #define DC_DV_CTL_DV_LINE_SIZE_2K (1 << 10)
229 #define DC_DV_CTL_DV_LINE_SIZE_4K (1 << 11)
230 #define DC_DV_CTL_DV_LINE_SIZE_8K ((1 << 10) | (1 << 11))
231 #define DC_DV_CTL_CLEAR_DV_RAM (1 << 0)
232 
233 #define DC_IRQ_FILT_CTL_H_FILT_SEL (1 << 10)
234 
235 #define DC_CLR_KEY_CLR_KEY_EN (1 << 24)
236 
237 #define DC_IRQ_VIP_VSYNC_IRQ_STATUS (1 << 21) /* undocumented? */
238 #define DC_IRQ_STATUS (1 << 20) /* undocumented? */
239 #define DC_IRQ_VIP_VSYNC_LOSS_IRQ_MASK (1 << 1)
240 #define DC_IRQ_MASK (1 << 0)
241 
242 #define DC_GENLK_CTL_FLICK_SEL_MASK (0x0F << 28)
243 #define DC_GENLK_CTL_ALPHA_FLICK_EN (1 << 25)
244 #define DC_GENLK_CTL_FLICK_EN (1 << 24)
245 #define DC_GENLK_CTL_GENLK_EN (1 << 18)
246 
247 
248 /*
249  * Video Processor registers (table 6-71).
250  * There is space for 64 bit values, but we never use more than the
251  * lower 32 bits. The actual register save/restore code only bothers
252  * to restore those 32 bits.
253  */
255  VP_VCFG = 0,
257 
260 
263 
266 
269 
272 
275 
278 
281 
284 
287 
290 
293 
296 
299 
302 
305 
308 
311 
314 
317 
318  VP_A3YE, /* 0x150 */
319 
320  VP_VCR = 0x1000, /* 0x1000 - 0x1fff */
321 };
322 
323 #define VP_VCFG_VID_EN (1 << 0)
324 
325 #define VP_DCFG_GV_GAM (1 << 21)
326 #define VP_DCFG_PWR_SEQ_DELAY ((1 << 17) | (1 << 18) | (1 << 19))
327 #define VP_DCFG_PWR_SEQ_DELAY_DEFAULT (1 << 19) /* undocumented */
328 #define VP_DCFG_CRT_SYNC_SKW ((1 << 14) | (1 << 15) | (1 << 16))
329 #define VP_DCFG_CRT_SYNC_SKW_DEFAULT (1 << 16)
330 #define VP_DCFG_CRT_VSYNC_POL (1 << 9)
331 #define VP_DCFG_CRT_HSYNC_POL (1 << 8)
332 #define VP_DCFG_DAC_BL_EN (1 << 3)
333 #define VP_DCFG_VSYNC_EN (1 << 2)
334 #define VP_DCFG_HSYNC_EN (1 << 1)
335 #define VP_DCFG_CRT_EN (1 << 0)
336 
337 #define VP_MISC_APWRDN (1 << 11)
338 #define VP_MISC_DACPWRDN (1 << 10)
339 #define VP_MISC_BYP_BOTH (1 << 0)
340 
341 
342 /*
343  * Flat Panel registers (table 6-71).
344  * Also 64 bit registers; see above note about 32-bit handling.
345  */
346 
347 /* we're actually in the VP register space, starting at address 0x400 */
348 #define VP_FP_START 0x400
349 
351  FP_PT1 = 0,
353 
356 
359 
362 
365 
367  FP_CRC, /* 0x458 */
368 };
369 
370 #define FP_PT2_HSP (1 << 22)
371 #define FP_PT2_VSP (1 << 23)
372 #define FP_PT2_SCRC (1 << 27) /* shfclk free */
373 
374 #define FP_PM_P (1 << 24) /* panel power ctl */
375 #define FP_PM_PANEL_PWR_UP (1 << 3) /* r/o */
376 #define FP_PM_PANEL_PWR_DOWN (1 << 2) /* r/o */
377 #define FP_PM_PANEL_OFF (1 << 1) /* r/o */
378 #define FP_PM_PANEL_ON (1 << 0) /* r/o */
379 
380 #define FP_DFC_BC ((1 << 4) | (1 << 5) | (1 << 6))
381 
382 
383 /* register access functions */
384 
385 static inline uint32_t read_gp(struct lxfb_par *par, int reg)
386 {
387  return readl(par->gp_regs + 4*reg);
388 }
389 
390 static inline void write_gp(struct lxfb_par *par, int reg, uint32_t val)
391 {
392  writel(val, par->gp_regs + 4*reg);
393 }
394 
395 static inline uint32_t read_dc(struct lxfb_par *par, int reg)
396 {
397  return readl(par->dc_regs + 4*reg);
398 }
399 
400 static inline void write_dc(struct lxfb_par *par, int reg, uint32_t val)
401 {
402  writel(val, par->dc_regs + 4*reg);
403 }
404 
405 static inline uint32_t read_vp(struct lxfb_par *par, int reg)
406 {
407  return readl(par->vp_regs + 8*reg);
408 }
409 
410 static inline void write_vp(struct lxfb_par *par, int reg, uint32_t val)
411 {
412  writel(val, par->vp_regs + 8*reg);
413 }
414 
415 static inline uint32_t read_fp(struct lxfb_par *par, int reg)
416 {
417  return readl(par->vp_regs + 8*reg + VP_FP_START);
418 }
419 
420 static inline void write_fp(struct lxfb_par *par, int reg, uint32_t val)
421 {
422  writel(val, par->vp_regs + 8*reg + VP_FP_START);
423 }
424 
425 
426 /* MSRs are defined in linux/cs5535.h; their bitfields are here */
427 
428 #define MSR_GLCP_DOTPLL_LOCK (1 << 25) /* r/o */
429 #define MSR_GLCP_DOTPLL_HALFPIX (1 << 24)
430 #define MSR_GLCP_DOTPLL_BYPASS (1 << 15)
431 #define MSR_GLCP_DOTPLL_DOTRESET (1 << 0)
432 
433 /* note: this is actually the VP's GLD_MSR_CONFIG */
434 #define MSR_LX_GLD_MSR_CONFIG_FMT ((1 << 3) | (1 << 4) | (1 << 5))
435 #define MSR_LX_GLD_MSR_CONFIG_FMT_FP (1 << 3)
436 #define MSR_LX_GLD_MSR_CONFIG_FMT_CRT (0)
437 #define MSR_LX_GLD_MSR_CONFIG_FPC (1 << 15) /* FP *and* CRT */
438 
439 #define MSR_LX_MSR_PADSEL_TFT_SEL_LOW 0xDFFFFFFF /* ??? */
440 #define MSR_LX_MSR_PADSEL_TFT_SEL_HIGH 0x0000003F /* ??? */
441 
442 #define MSR_LX_SPARE_MSR_DIS_CFIFO_HGO (1 << 11) /* undocumented */
443 #define MSR_LX_SPARE_MSR_VFIFO_ARB_SEL (1 << 10) /* undocumented */
444 #define MSR_LX_SPARE_MSR_WM_LPEN_OVRD (1 << 9) /* undocumented */
445 #define MSR_LX_SPARE_MSR_LOAD_WM_LPEN_M (1 << 8) /* undocumented */
446 #define MSR_LX_SPARE_MSR_DIS_INIT_V_PRI (1 << 7) /* undocumented */
447 #define MSR_LX_SPARE_MSR_DIS_VIFO_WM (1 << 6)
448 #define MSR_LX_SPARE_MSR_DIS_CWD_CHECK (1 << 5) /* undocumented */
449 #define MSR_LX_SPARE_MSR_PIX8_PAN_FIX (1 << 4) /* undocumented */
450 #define MSR_LX_SPARE_MSR_FIRST_REQ_MASK (1 << 1) /* undocumented */
451 
452 #endif