display_gx1.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /*
  2. * drivers/video/geode/display_gx1.c
  3. * -- Geode GX1 display controller
  4. *
  5. * Copyright (C) 2005 Arcom Control Systems Ltd.
  6. *
  7. * Based on AMD's original 2.4 driver:
  8. * Copyright (C) 2004 Advanced Micro Devices, Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. */
  15. #include <linux/spinlock.h>
  16. #include <linux/fb.h>
  17. #include <linux/delay.h>
  18. #include <asm/io.h>
  19. #include <asm/div64.h>
  20. #include <asm/delay.h>
  21. #include "geodefb.h"
  22. #include "display_gx1.h"
  23. static DEFINE_SPINLOCK(gx1_conf_reg_lock);
  24. static u8 gx1_read_conf_reg(u8 reg)
  25. {
  26. u8 val, ccr3;
  27. unsigned long flags;
  28. spin_lock_irqsave(&gx1_conf_reg_lock, flags);
  29. outb(CONFIG_CCR3, 0x22);
  30. ccr3 = inb(0x23);
  31. outb(CONFIG_CCR3, 0x22);
  32. outb(ccr3 | CONFIG_CCR3_MAPEN, 0x23);
  33. outb(reg, 0x22);
  34. val = inb(0x23);
  35. outb(CONFIG_CCR3, 0x22);
  36. outb(ccr3, 0x23);
  37. spin_unlock_irqrestore(&gx1_conf_reg_lock, flags);
  38. return val;
  39. }
  40. unsigned gx1_gx_base(void)
  41. {
  42. return (gx1_read_conf_reg(CONFIG_GCR) & 0x03) << 30;
  43. }
  44. int gx1_frame_buffer_size(void)
  45. {
  46. void __iomem *mc_regs;
  47. u32 bank_cfg;
  48. int d;
  49. unsigned dram_size = 0, fb_base;
  50. mc_regs = ioremap(gx1_gx_base() + 0x8400, 0x100);
  51. if (!mc_regs)
  52. return -ENOMEM;
  53. /* Calculate the total size of both DIMM0 and DIMM1. */
  54. bank_cfg = readl(mc_regs + MC_BANK_CFG);
  55. for (d = 0; d < 2; d++) {
  56. if ((bank_cfg & MC_BCFG_DIMM0_PG_SZ_MASK) != MC_BCFG_DIMM0_PG_SZ_NO_DIMM)
  57. dram_size += 0x400000 << ((bank_cfg & MC_BCFG_DIMM0_SZ_MASK) >> 8);
  58. bank_cfg >>= 16; /* look at DIMM1 next */
  59. }
  60. fb_base = (readl(mc_regs + MC_GBASE_ADD) & MC_GADD_GBADD_MASK) << 19;
  61. iounmap(mc_regs);
  62. return dram_size - fb_base;
  63. }
  64. static void gx1_set_mode(struct fb_info *info)
  65. {
  66. struct geodefb_par *par = info->par;
  67. u32 gcfg, tcfg, ocfg, dclk_div, val;
  68. int hactive, hblankstart, hsyncstart, hsyncend, hblankend, htotal;
  69. int vactive, vblankstart, vsyncstart, vsyncend, vblankend, vtotal;
  70. /* Unlock the display controller registers. */
  71. readl(par->dc_regs + DC_UNLOCK);
  72. writel(DC_UNLOCK_CODE, par->dc_regs + DC_UNLOCK);
  73. gcfg = readl(par->dc_regs + DC_GENERAL_CFG);
  74. tcfg = readl(par->dc_regs + DC_TIMING_CFG);
  75. /* Blank the display and disable the timing generator. */
  76. tcfg &= ~(DC_TCFG_BLKE | DC_TCFG_TGEN);
  77. writel(tcfg, par->dc_regs + DC_TIMING_CFG);
  78. /* Wait for pending memory requests before disabling the FIFO load. */
  79. udelay(100);
  80. /* Disable FIFO load and compression. */
  81. gcfg &= ~(DC_GCFG_DFLE | DC_GCFG_CMPE | DC_GCFG_DECE);
  82. writel(gcfg, par->dc_regs + DC_GENERAL_CFG);
  83. /* Setup DCLK and its divisor. */
  84. gcfg &= ~DC_GCFG_DCLK_MASK;
  85. writel(gcfg, par->dc_regs + DC_GENERAL_CFG);
  86. par->vid_ops->set_dclk(info);
  87. dclk_div = DC_GCFG_DCLK_DIV_1; /* FIXME: may need to divide DCLK by 2 sometimes? */
  88. gcfg |= dclk_div;
  89. writel(gcfg, par->dc_regs + DC_GENERAL_CFG);
  90. /* Wait for the clock generatation to settle. This is needed since
  91. * some of the register writes that follow require that clock to be
  92. * present. */
  93. udelay(1000); /* FIXME: seems a little long */
  94. /*
  95. * Setup new mode.
  96. */
  97. /* Clear all unused feature bits. */
  98. gcfg = DC_GCFG_VRDY | dclk_div;
  99. /* Set FIFO priority (default 6/5) and enable. */
  100. /* FIXME: increase fifo priority for 1280x1024 modes? */
  101. gcfg |= (6 << DC_GCFG_DFHPEL_POS) | (5 << DC_GCFG_DFHPSL_POS) | DC_GCFG_DFLE;
  102. /* FIXME: Set pixel and line double bits if necessary. */
  103. /* Framebuffer start offset. */
  104. writel(0, par->dc_regs + DC_FB_ST_OFFSET);
  105. /* Line delta and line buffer length. */
  106. writel(info->fix.line_length >> 2, par->dc_regs + DC_LINE_DELTA);
  107. writel(((info->var.xres * info->var.bits_per_pixel/8) >> 3) + 2,
  108. par->dc_regs + DC_BUF_SIZE);
  109. /* Output configuration. Enable panel data, set pixel format. */
  110. ocfg = DC_OCFG_PCKE | DC_OCFG_PDEL | DC_OCFG_PDEH;
  111. if (info->var.bits_per_pixel == 8) ocfg |= DC_OCFG_8BPP;
  112. /* Enable timing generator, sync and FP data. */
  113. tcfg = DC_TCFG_FPPE | DC_TCFG_HSYE | DC_TCFG_VSYE | DC_TCFG_BLKE
  114. | DC_TCFG_TGEN;
  115. /* Horizontal and vertical timings. */
  116. hactive = info->var.xres;
  117. hblankstart = hactive;
  118. hsyncstart = hblankstart + info->var.right_margin;
  119. hsyncend = hsyncstart + info->var.hsync_len;
  120. hblankend = hsyncend + info->var.left_margin;
  121. htotal = hblankend;
  122. vactive = info->var.yres;
  123. vblankstart = vactive;
  124. vsyncstart = vblankstart + info->var.lower_margin;
  125. vsyncend = vsyncstart + info->var.vsync_len;
  126. vblankend = vsyncend + info->var.upper_margin;
  127. vtotal = vblankend;
  128. val = (hactive - 1) | ((htotal - 1) << 16);
  129. writel(val, par->dc_regs + DC_H_TIMING_1);
  130. val = (hblankstart - 1) | ((hblankend - 1) << 16);
  131. writel(val, par->dc_regs + DC_H_TIMING_2);
  132. val = (hsyncstart - 1) | ((hsyncend - 1) << 16);
  133. writel(val, par->dc_regs + DC_H_TIMING_3);
  134. writel(val, par->dc_regs + DC_FP_H_TIMING);
  135. val = (vactive - 1) | ((vtotal - 1) << 16);
  136. writel(val, par->dc_regs + DC_V_TIMING_1);
  137. val = (vblankstart - 1) | ((vblankend - 1) << 16);
  138. writel(val, par->dc_regs + DC_V_TIMING_2);
  139. val = (vsyncstart - 1) | ((vsyncend - 1) << 16);
  140. writel(val, par->dc_regs + DC_V_TIMING_3);
  141. val = (vsyncstart - 2) | ((vsyncend - 2) << 16);
  142. writel(val, par->dc_regs + DC_FP_V_TIMING);
  143. /* Write final register values. */
  144. writel(ocfg, par->dc_regs + DC_OUTPUT_CFG);
  145. writel(tcfg, par->dc_regs + DC_TIMING_CFG);
  146. udelay(1000); /* delay after TIMING_CFG. FIXME: perhaps a little long */
  147. writel(gcfg, par->dc_regs + DC_GENERAL_CFG);
  148. par->vid_ops->configure_display(info);
  149. /* Relock display controller registers */
  150. writel(0, par->dc_regs + DC_UNLOCK);
  151. /* FIXME: write line_length and bpp to Graphics Pipeline GP_BLT_STATUS
  152. * register. */
  153. }
  154. static void gx1_set_hw_palette_reg(struct fb_info *info, unsigned regno,
  155. unsigned red, unsigned green, unsigned blue)
  156. {
  157. struct geodefb_par *par = info->par;
  158. int val;
  159. /* Hardware palette is in RGB 6-6-6 format. */
  160. val = (red << 2) & 0x3f000;
  161. val |= (green >> 4) & 0x00fc0;
  162. val |= (blue >> 10) & 0x0003f;
  163. writel(regno, par->dc_regs + DC_PAL_ADDRESS);
  164. writel(val, par->dc_regs + DC_PAL_DATA);
  165. }
  166. struct geode_dc_ops gx1_dc_ops = {
  167. .set_mode = gx1_set_mode,
  168. .set_palette_reg = gx1_set_hw_palette_reg,
  169. };