sstfb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:57k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/sstfb.c -- voodoo graphics frame buffer
  3.  *
  4.  *     Copyright (c) 2000,2001 Ghozlane Toumi <gtoumi@messel.emse.fr>
  5.  *
  6.  *     Created 15 Jan 2000 by Ghozlane Toumi
  7.  *
  8.  * Contributions (and many thanks) :
  9.  *
  10.  * 03/2001 James Simmons   <jsimmons@linux-fbdev.org>
  11.  * 04/2001 Paul Mundt      <lethal@chaoticdreams.org>
  12.  * 05/2001 Urs Ganse       <urs.ganse@t-online.de>
  13.  *     (initial work on voodoo2 port)
  14.  *
  15.  *
  16.  * $Id: sstfb.c,v 1.26.4.1 2001/08/29 01:30:37 ghoz Exp $
  17.  */
  18. /*
  19.  * The voodoo1 has the following memory mapped adress space:
  20.  * 0x000000 - 0x3fffff : registers              (4Mb)
  21.  * 0x400000 - 0x7fffff : linear frame buffer    (4Mb)
  22.  * 0x800000 - 0xffffff : texture memory         (8Mb)
  23.  */
  24. /*
  25.  * misc notes, TODOs, toASKs, and deep thoughts
  26. -TODO: at one time or another test that the mode is acceptable by the monitor
  27. -ASK: I can choose different ordering for the color bitfields (rgba argb ...) 
  28.       wich one should i use ? is there any preferred one ? It seems ARGB is 
  29.       the one ...
  30. -ASK: later: how to cope with endianness ? the fbi chip has builtin functions
  31.       to do byte swizling /swapping, maybe use that ...
  32. -TODO: check the error paths . if something get wrong, the error doesn't seem 
  33.       to be very well handled...if handled at all.. not good. 
  34. -ASK: ioremap ou ioremap_nocache ? : nocache is safe
  35. -TODO: in  set_var check the validity of timings (hsync vsync)...
  36. -FIXME: I'm not sure i like all the functions with no parameters.. change them 
  37.         to use a sstfb_par or sstfb_info or something like that.
  38. -TODO: check and recheck the use of sst_wait_idle : we dont flush the fifo via 
  39.        a nop command . so it's ok as long as the commands we pass don't go 
  40.        through the fifo. warning: issuing a nop command seems to need pci_fifo 
  41.        enabled
  42. -ASK: the 24 bits mode is NOT packed . how do i differenciate from a packed mode ?
  43.       set a pseudo alpha value not used ?
  44. -ASK: how does the 32 bpp work ? should i enable the pipeline so alpha values 
  45.       are used ?
  46. -TODO: check how the voodoo graphics can cope with 24/32 bpp (engine is 16bpp 
  47.        only)
  48. -ASK: Do i ioremap the complete area devoted to the lfb (4Mb), or check the 
  49.       real size, then unmap and remap to the real size of the lfb ? 
  50.       ... map all the area.
  51. -FIXME: in case of failure in the init sequence, be sure we return to a safe 
  52.         state.
  53. -FIXME: 4MB boards have banked memory (FbiInit2 bits 1 & 20)
  54. -ASK: I stole "inverse" but seems it doesn't work... check what it realy does...
  55. Notes
  56. -TODO: change struct sst_info fb_info from static to array/dynamic
  57.   TTT comments is for code i've put there for debuging the "weird peinguin 
  58.    syndrome", it should disapear soon
  59.  *
  60.  */
  61. /*
  62.  * debug info
  63.  * SST_DEBUG : enable debugging
  64.  * SST_DEBUG_REG : debug registers
  65.  *   0 :  no debug
  66.  *   1 : dac calls, [un]set_bits, FbiInit
  67.  *   2 : insane debug level (log every register read/write)
  68.  * SST_DEBUG_FUNC : functions
  69.  *   0 : no debug
  70.  *   1 : function call / debug ioctl
  71.  *   2 : variables
  72.  *   3 : flood . you don't want to do that. trust me.
  73.  * SST_DEBUG_VAR : debug display/var structs
  74.  *   0 : no debug
  75.  *   1 : dumps display, fb_var
  76.  * SST_DEBUG_IOCTL : enable sstfb specific ioctls
  77.  *   0 : disable
  78.  *   1 : enable debug ioctls :
  79.  *    toggle vga (0x46db) : toggle vga_pass_through
  80.  *    fill fb    (0x46dc) : fills fb
  81.  *    dump var   (0x46dd) : logs display[0-5].var
  82.  *    test disp  (0x46de) : draws a test motif
  83.  */
  84. /* #define SST_DEBUG */
  85. #undef SST_DEBUG
  86. #define SST_DEBUG_REG   0
  87. #define SST_DEBUG_FUNC  0
  88. #define SST_DEBUG_VAR   0
  89. #define SST_DEBUG_IOCTL 1
  90. /* #define EN_24_32_BPP  *//* enable 24/32 bpp functions for testing only */
  91. #undef EN_24_32_BPP
  92. /*
  93.   Default video mode .
  94.   0 800x600@60  took from glide
  95.   1 640x480@75  took from glide
  96.   2 1024x768@76 std fb.mode
  97.   3 640x480@60  glide default */
  98. #define DEFAULT_MODE 1
  99. /*
  100.  * Includes
  101.  */
  102. #include <linux/string.h>
  103. #include <linux/config.h>
  104. #include <linux/kernel.h>
  105. #include <linux/module.h>
  106. #include <linux/tty.h>
  107. #include <linux/fb.h>
  108. #include <linux/pci.h>
  109. #include <linux/delay.h>
  110. #include <linux/init.h>
  111. #include <linux/version.h>
  112. #include <asm/io.h>
  113. #include <asm/ioctl.h>
  114. #include <video/fbcon.h>
  115. #include <video/fbcon-cfb16.h>
  116. #ifdef  EN_24_32_BPP
  117. #  include <video/fbcon-cfb24.h>
  118. #  include <video/fbcon-cfb32.h>
  119. #endif
  120. #include "sstfb.h"
  121. /* void Dump_regs(void); */
  122. /* sst default init registers */
  123. #define FBIINIT0_DEFAULT EN_VGA_PASSTHROUGH
  124. #define FBIINIT1_DEFAULT 
  125. (
  126.   FAST_PCI_WRITES
  127. /*   SLOW_PCI_WRITES*/
  128. | VIDEO_RESET
  129. | 10 << TILES_IN_X_SHIFT
  130. | SEL_SOURCE_VCLK_2X_SEL
  131. | EN_LFB_READ
  132. )
  133. #define FBIINIT2_DEFAULT
  134. (
  135.  SWAP_DACVSYNC
  136. | EN_DRAM_OE
  137. | DRAM_REFRESH_16
  138. | EN_DRAM_REFRESH
  139. | EN_FAST_RAS_READ
  140. | EN_RD_AHEAD_FIFO
  141. | EN_FAST_RD_AHEAD_WR
  142. )
  143. #define FBIINIT3_DEFAULT 
  144. ( DISABLE_TEXTURE )
  145. #define FBIINIT4_DEFAULT
  146. (
  147.   FAST_PCI_READS
  148. /*   SLOW_PCI_READS*/
  149. | LFB_READ_AHEAD
  150. )
  151. /* Careful with this one : writing back the data just read will trash the DAC
  152.    reading some fields give logic value on pins, but setting this field will
  153.    set the source signal driving the pin. conclusion : just use the default
  154.    as a base before writing back .
  155. */
  156. #define FBIINIT6_DEFAULT (0x0)
  157. /********/
  158. int currcon; /* =0 */
  159. int num_sst; /* =0*/ /* number of initialized boards */
  160. /* initialized by setup */
  161. static int inverse; /* =0 */ /* invert colormap */
  162. static int vgapass; /* =0 */ /* enable Vga passthrough cable */
  163. static int mem;     /* =0 */ /* mem size in Mb , 0 = autodetect */
  164. static int clipping = 1; /* use clipping (slower, safer) */
  165. static int gfxclk;  /* =0 */ /* force FBI freq in Mhz . Dangerous */
  166. static int slowpci; /* =0 */ /* slow PCI settings */
  167. static int dev = -1; /* specify device (0..n) */
  168. static char * mode_option ;
  169. #if defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB24) || defined(FBCON_HAS_CFB32)
  170. union {
  171. #  ifdef FBCON_HAS_CFB16
  172. u16 cfb16[16];
  173. #  endif
  174. #ifdef EN_24_32_BPP
  175. #  if defined (FBCON_HAS_CFB24) || defined(FBCON_HAS_CFB32)
  176. u32 cfb32[16];
  177. #  endif
  178. #endif
  179. } fbcon_cmap;
  180. #endif
  181. static struct { u_int red, green, blue, transp; } palette[16];
  182. static struct sstfb_info fb_info;
  183. static struct display disp;
  184. /********/
  185. /* Interface to ze oueurld  */
  186. int sstfb_init(void);
  187. int sstfb_setup(char *options);
  188. /* Framebuffer API */
  189. static int sstfb_open(struct fb_info *info, int user);
  190. static int sstfb_release(struct fb_info *info, int user);
  191. static int sstfb_get_fix(struct fb_fix_screeninfo *fix,
  192.                          int con, struct fb_info *info);
  193. static int sstfb_get_var(struct fb_var_screeninfo *var,
  194.                          int con, struct fb_info *info);
  195. static int sstfb_set_var(struct fb_var_screeninfo *var,
  196.                          int con, struct fb_info *info);
  197. static int sstfb_get_cmap(struct fb_cmap *cmap, int kspc,
  198.                           int con, struct fb_info *info);
  199. static int sstfb_set_cmap(struct fb_cmap *cmap, int kspc,
  200.                           int con, struct fb_info *info);
  201. static int sstfb_pan_display(struct fb_var_screeninfo *var,
  202.                              int con, struct fb_info *info);
  203. static int sstfb_ioctl(struct inode *inode, struct file *file,
  204.                        u_int cmd, u_long arg, int con,
  205.                        struct fb_info *info);
  206. /* Interface to the low level console driver */
  207. static int sstfbcon_switch(int con, struct fb_info *info);
  208. static int sstfbcon_updatevar(int con, struct fb_info *info);
  209. static void sstfbcon_blank(int blank, struct fb_info *info);
  210. /* Internal routines */
  211. static void sstfb_install_cmap(int con, struct fb_info *info);
  212. static int sstfb_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  213.                            u_int *transp, struct fb_info *info);
  214. static int sstfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  215.                            u_int transp, struct fb_info *info);
  216. static int sstfb_set_par(const struct sstfb_par *par,
  217.                           struct sstfb_info *sst_info);
  218. static int sstfb_decode_var (const struct fb_var_screeninfo *var,
  219.                              struct sstfb_par *par,
  220.                              const struct sstfb_info *sst_info);
  221. static int sstfb_encode_var (struct fb_var_screeninfo *var,
  222.                              const struct sstfb_par *par,
  223.                              const struct sstfb_info *sst_info);
  224. static void sstfb_test16(struct sstfb_info *sst_info);
  225. #ifdef EN_24_32_BPP
  226. static void sstfb_test32(struct sstfb_info *sst_info);
  227. #endif
  228. /* Low level routines */
  229. static int sst_get_memsize(u_long *memsize);
  230. static int sst_wait_idle(void);
  231. static int sst_detect_dactype(void);
  232. static int sst_detect_att(void);
  233. static int sst_detect_ti(void);
  234. static int sst_detect_ics(void);
  235. static int sst_calc_pll(const int freq, int *freq_out, struct pll_timing *t);
  236. static int sst_set_pll_att_ti(const struct pll_timing *t, const int clock);
  237. static int sst_set_pll_ics(const struct pll_timing *t, const int clock);
  238. static void sst_set_vidmod_att_ti(const int bpp);
  239. static void sst_set_vidmod_ics(const int bpp);
  240. static int sst_init(void);
  241. #ifdef MODULE
  242. static void sst_shutdown(void);
  243. #endif
  244. static struct fb_ops sstfb_ops = {
  245. owner : THIS_MODULE,
  246. fb_open: sstfb_open,
  247. fb_release: sstfb_release,
  248. fb_get_fix: sstfb_get_fix,
  249. fb_get_var: sstfb_get_var,
  250. fb_set_var: sstfb_set_var,
  251. fb_get_cmap: sstfb_get_cmap,
  252. fb_set_cmap: sstfb_set_cmap,
  253. fb_pan_display: sstfb_pan_display,
  254. fb_ioctl: sstfb_ioctl,
  255. };
  256. #ifndef DEFAULT_MODE
  257. #  define DEFAULT_MODE 0
  258. #endif
  259. static struct fb_var_screeninfo sstfb_default =
  260. #if ( DEFAULT_MODE == 0 )
  261.     { /* 800x600@60, 16 bpp .borowed from glide/sst1/include/sst1init.h */
  262.     800, 600, 800, 600, 0, 0, 16, 0,
  263.     {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0},
  264.     0, 0, -1, -1, 0,
  265.     25000, 86, 41, 23, 1, 127, 4,
  266.     0, FB_VMODE_NONINTERLACED };
  267. #endif
  268. #if ( DEFAULT_MODE == 1 )
  269.     {/* 640x480@75, 16 bpp .borowed from glide/sst1/include/sst1init.h */
  270.     640, 480, 640, 480, 0, 0, 16, 0,
  271.     {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0},
  272.     0, 0, -1, -1, 0,
  273.     31746, 118, 17, 16, 1, 63, 3,
  274.     0, FB_VMODE_NONINTERLACED };
  275. #endif
  276. #if ( DEFAULT_MODE == 2 )
  277.     { /* 1024x768@76 took from my /etc/fb.modes */
  278.     1024, 768, 1024, 768,0, 0, 16,0,
  279.     {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0},
  280.     0, 0, -1, -1, 0,
  281.     11764, 208, 8, 36, 16, 120, 3 ,
  282.     0, FB_VMODE_NONINTERLACED };
  283. #endif
  284. #if ( DEFAULT_MODE == 3 )
  285.     { /* 640x480@60 , 16bpp glide default ?*/
  286.     640, 480, 640, 480, 0, 0, 16, 0,
  287.     {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0},
  288.     0, 0, -1, -1, 0,
  289.     39721 ,  38, 26 ,  25 ,18  , 96 ,2,
  290.     0, FB_VMODE_NONINTERLACED };
  291. #endif
  292. static struct dac_switch dacs[] = {
  293. { name: "TI TVP3409",
  294. detect: sst_detect_ti,
  295. set_pll: sst_set_pll_att_ti,
  296. set_vidmod: sst_set_vidmod_att_ti },
  297. { name: "AT&T ATT20C409",
  298. detect: sst_detect_att,
  299. set_pll: sst_set_pll_att_ti,
  300. set_vidmod: sst_set_vidmod_att_ti },
  301. { name: "ICS ICS5342",
  302. detect: sst_detect_ics,
  303. set_pll: sst_set_pll_ics,
  304. set_vidmod: sst_set_vidmod_ics },
  305. };
  306. static struct sst_spec voodoo1_spec = {
  307. name : "Voodoo Graphics",
  308. default_gfx_clock : 50000,
  309. max_gfxclk : 60,
  310. };
  311. static struct sst_spec voodoo2_spec = {
  312. name : "Voodoo2",
  313. default_gfx_clock : 75000,
  314. max_gfxclk : 85,
  315. };
  316. /*
  317.  *
  318.  *  Definitions
  319.  *
  320.  */
  321. #if (SST_DEBUG_VAR > 0)
  322. /* debug info / dump a fb_var_screeninfo */
  323. static void sst_dbg_print_var(struct fb_var_screeninfo *var) {
  324. dprintk(" {%d, %d, %d, %d, %d, %d, %d, %d,n",
  325.         var->xres, var->yres, var->xres_virtual, var->yres_virtual,
  326.         var->xoffset, var->yoffset,
  327.         var->bits_per_pixel, var->grayscale);
  328. dprintk(" {%d, %d, %d}, {%d, %d, %d}, {%d, %d, %d}, {%d, %d, %d},n",
  329.         var->red.offset, var->red.length, var->red.msb_right,
  330.         var->green.offset, var->green.length, var->green.msb_right,
  331.         var->blue.offset, var->blue.length, var->blue.msb_right,
  332.         var->transp.offset, var->transp.length,
  333.         var->transp.msb_right);
  334. dprintk(" %d, %d, %d, %d, %d,n",
  335.         var->nonstd, var->activate,
  336.         var->height, var->width, var->accel_flags);
  337. dprintk(" %d, %d, %d, %d, %d, %d, %d,n",
  338.         var->pixclock, var->left_margin, var->right_margin,
  339.         var->upper_margin, var->lower_margin,
  340.         var->hsync_len, var->vsync_len);
  341. dprintk(" %#x, %#x}n",var->sync, var->vmode);
  342. }
  343. #endif /* (SST_DEBUG_VAR > 0) */
  344. static void sst_dbg_print_read_reg (u32 reg, u32 val) {
  345. #if (SST_DEBUG_REG > 0) /* i need the init registers :) */
  346. char * regname =NULL;
  347. switch (reg) {
  348. case FBIINIT0: regname="FbiInit0"; break;
  349. case FBIINIT1: regname="FbiInit1"; break;
  350. case FBIINIT2: regname="FbiInit2"; break;
  351. case FBIINIT3: regname="FbiInit3"; break;
  352. case FBIINIT4: regname="FbiInit4"; break;
  353. case FBIINIT6: regname="FbiInit6"; break;
  354. }
  355. if (regname == NULL)
  356. r_ddprintk("sst_read(%#x): %#xn", reg, val);
  357. else
  358. r_dprintk(" sst_read(%s): %#xn", regname, val);
  359. #endif /*  (SST_DEBUG_REG > 0) */
  360. }
  361. static void sst_dbg_print_write_reg (u32 reg, u32 val) {
  362. #if (SST_DEBUG_REG > 0) /* i need the init registers :) */
  363. char * regname = NULL;
  364. switch (reg) {
  365. case FBIINIT0: regname="FbiInit0"; break;
  366. case FBIINIT1: regname="FbiInit1"; break;
  367. case FBIINIT2: regname="FbiInit2"; break;
  368. case FBIINIT3: regname="FbiInit3"; break;
  369. case FBIINIT4: regname="FbiInit4"; break;
  370. case FBIINIT6: regname="FbiInit6"; break;
  371. }
  372. if (regname == NULL)
  373. r_ddprintk("sst_write(%#x, %#x)n", reg, val);
  374. else
  375. r_dprintk(" sst_write(%s, %#x)n", regname, val);
  376. #endif /*  (SST_DEBUG_REG > 0) */
  377. }
  378. /* register access */
  379. static inline u32 sst_read(u32 reg)
  380. {
  381. u32 ret;
  382. ret = readl(fb_info.mmio.vbase + reg);
  383. sst_dbg_print_read_reg(reg, ret);
  384. return ret;
  385. }
  386. static inline void sst_write(u32 reg, u32 val)
  387. {
  388. sst_dbg_print_write_reg(reg, val);
  389. writel(val, fb_info.mmio.vbase + reg);
  390. }
  391. static inline void sst_set_bits(u32 reg, u32 val)
  392. {
  393. r_dprintk("sst_set_bits(%#x, %#x)n", reg, val);
  394. sst_write(reg, sst_read(reg) | val);
  395. }
  396. static inline void sst_unset_bits(u32 reg, u32 val)
  397. {
  398. r_dprintk("sst_unset_bits(%#x, %#x)n", reg, val);
  399. sst_write(reg, sst_read(reg) & ~val);
  400. }
  401. /* dac access */
  402. /* dac_read should be remaped to FbiInit2 (via the pci reg init_enable) */
  403. static u8 sst_dac_read(u8 reg)
  404. {
  405. u8 ret;
  406. #ifdef SST_DEBUG
  407. if ((reg & 0x07) != reg) {
  408. dprintk("bug line %d: register adress '%d' is to highn",
  409.          __LINE__,reg);
  410. }
  411. #endif
  412. reg &= 0x07;
  413. sst_write(DAC_DATA, ((u32)reg << 8) | DAC_READ_CMD );
  414. sst_wait_idle();
  415. /*udelay(10);*/
  416. ret=(sst_read(DAC_READ) & 0xff);
  417. r_dprintk("sst_dac_read(%#x): %#xn", reg, ret);
  418. return (u8)ret;
  419. }
  420. static void sst_dac_write(u8 reg, u8 val)
  421. {
  422. r_dprintk("sst_dac_write(%#x, %#x)n", reg, val);
  423. #ifdef SST_DEBUG
  424. if ((reg & 0x07) != reg)
  425. dprintk("bug line %d: register adress '%d' is to highn",
  426.          __LINE__,reg);
  427. #endif
  428. reg &= 0x07;
  429. sst_write(DAC_DATA,(((u32)reg << 8)) | (u32)val);
  430. }
  431. /* indexed access to ti/att dacs */
  432. static inline u32 dac_i_read(u8 reg)
  433. {
  434. u32 ret;
  435. sst_dac_write(DACREG_ADDR_I, reg);
  436. ret = sst_dac_read(DACREG_DATA_I);
  437. r_dprintk("sst_dac_read_i(%#x): %#xn", reg, ret);
  438. return ret;
  439. }
  440. static inline void dac_i_write(u8 reg,u8 val)
  441. {
  442. r_dprintk("sst_dac_write_i(%#x, %#x)n", reg, val);
  443. sst_dac_write(DACREG_ADDR_I, reg);
  444. sst_dac_write(DACREG_DATA_I, val);
  445. }
  446. /*
  447.  *
  448.  *  Internal routines
  449.  *
  450.  */
  451. static void sstfb_install_cmap(int con, struct fb_info *info)
  452. {
  453. f_dprintk("sstfb_install_cmap(con: %d)n",con);
  454. f_ddprintk("currcon: %dn", currcon);
  455. if (con != currcon)
  456. return;
  457. if (fb_display[con].cmap.len)
  458. fb_set_cmap(&fb_display[con].cmap, 1, sstfb_setcolreg, info);
  459. else
  460. fb_set_cmap(
  461. fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  462. 1, sstfb_setcolreg, info);
  463. }
  464. static int sstfb_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  465.                            u_int *transp, struct fb_info *info)
  466. {
  467. f_ddprintk("sstfb_getcolregn");
  468. if (regno >= 16) return 1;
  469. *red    = palette[regno].red;
  470. *green  = palette[regno].green;
  471. *blue   = palette[regno].blue;
  472. *transp = palette[regno].transp;
  473. f_dddprintk("%-2d rvba: %#x, %#x, %#x, %#xn",
  474.             regno,*red, *green, *blue, *transp);
  475. return 0;
  476. }
  477. static int sstfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  478.                            u_int transp, struct fb_info *info)
  479. {
  480. u32 col;
  481. f_ddprintk("sstfb_setcolregn");
  482. f_dddprintk("%-2d rvba: %#x, %#x, %#x, %#xn",
  483.             regno, red, green, blue, transp);
  484. if (regno >= 16) return 1;
  485. palette[regno].red   = red;
  486. palette[regno].green = green;
  487. palette[regno].blue  = blue;
  488. red    >>= (16 - disp.var.red.length);
  489. green  >>= (16 - disp.var.green.length);
  490. blue   >>= (16 - disp.var.blue.length);
  491. transp >>= (16 - disp.var.transp.length);
  492. col = (red << disp.var.red.offset)
  493. | (green << disp.var.green.offset)
  494. | (blue  << disp.var.blue.offset)
  495. | (transp << disp.var.transp.offset);
  496. switch(disp.var.bits_per_pixel) {
  497. #ifdef FBCON_HAS_CFB16
  498. case 16:
  499. fbcon_cmap.cfb16[regno]=(u16)col;
  500. break;
  501. #endif
  502. #ifdef EN_24_32_BPP
  503. #ifdef FBCON_HAS_CFB24
  504. case 24:
  505. fbcon_cmap.cfb32[regno]=col;
  506. break;
  507. #endif
  508. #ifdef FBCON_HAS_CFB32
  509. case 32:
  510. fbcon_cmap.cfb32[regno]=col;
  511. break;
  512. #endif
  513. #endif
  514. default:
  515. eprintk("bug line %d: bad depth '%u'n",__LINE__,
  516. disp.var.bits_per_pixel);
  517. break;
  518. }
  519. f_dddprintk("bpp: %d . encoded color: %#xn",
  520.             disp.var.bits_per_pixel, col);
  521. return 0;
  522. }
  523. /* set par according to var ( checks var ) */
  524. static int sstfb_decode_var (const struct fb_var_screeninfo *var,
  525.                              struct sstfb_par *par,
  526.                              const struct sstfb_info *sst_info)
  527. {
  528. int real_length;
  529. f_dprintk("sstfb_decode_varn");
  530. /* Check var validity */
  531. if ((var->xres > 1024) || (!var->xres) || (!var->xres)) {
  532. eprintk ("Unsupported resolution %dx%dn",
  533.          var->xres, var->yres);
  534. return -EINVAL;
  535. }
  536. if ((var->vmode & FB_VMODE_MASK) !=  FB_VMODE_NONINTERLACED) {
  537. eprintk("Interlace non supported %#xn",
  538. (var->vmode & FB_VMODE_MASK));
  539. return -EINVAL;
  540. }
  541. memset(par, 0, sizeof(par));
  542. par->xDim       = var->xres;
  543. par->hSyncOn    = var->hsync_len;
  544. par->hSyncOff   = var->xres + var->right_margin + var->left_margin;
  545. par->hBackPorch = var->left_margin;
  546. par->yDim       = var->yres;
  547. par->vSyncOn    = var->vsync_len;
  548. par->vSyncOff   = var->yres + var->lower_margin + var->upper_margin;
  549. par->vBackPorch = var->upper_margin;
  550. switch (var->bits_per_pixel) {
  551. case 0 ... 16 :
  552. par->bpp = 16;
  553. break;
  554. #ifdef EN_24_32_BPP
  555. case 17 ... 24 :
  556. par->bpp = 24;
  557. break;
  558. case 25 ... 32 :
  559. par->bpp = 32;
  560. break;
  561. #endif
  562. default :
  563. eprintk ("Unsupported bpp %dn", par->bpp);
  564. return -EINVAL;
  565. break;
  566. }
  567. if (sst_info->is_voodoo2) {
  568. /* voodoo2 has 32 pixel wide tiles , BUT stange things
  569.  happen with odd number of tiles */
  570. par->tiles_in_X= (par->xDim + 63 ) / 64 * 2;
  571. } else {
  572. /* voodoo1 has 64 pixels wide tiles. */
  573. par->tiles_in_X= (par->xDim + 63 ) / 64;
  574. }
  575. /*
  576.  *  mem check
  577.  */
  578. /* it seems that the fbi uses tiles of 64x16 pixels to "map" the mem*/
  579. /* FIXME: i don't like this... looks wrong*/
  580. real_length = par->tiles_in_X  * (sst_info->is_voodoo2 ? 32 : 64 )
  581.               * ((par->bpp == 16) ? 2 : 4);
  582. /*shoud this function change var ? for instance with yvirt > yres  ?*/
  583. if ((real_length * var->yres) > fb_info.video.len) {
  584. eprintk ("Not enough video memoryn");
  585. return -ENOMEM;
  586. }
  587. par->freq = PS2KHZ(var->pixclock);
  588. /* TODO add checks for timings */
  589. return 0;
  590. }
  591. /* sets var according to par (basicaly, sets sane values) */
  592. static int sstfb_encode_var (struct fb_var_screeninfo *var,
  593.                              const struct sstfb_par *par,
  594.                              const struct sstfb_info *sst_info)
  595. {
  596. memset(var,0,sizeof(struct fb_var_screeninfo));
  597. var->xres           = par->xDim;
  598. var->yres           = par->yDim;
  599. var->xres_virtual   = par->xDim;
  600. var->yres_virtual   = par->yDim;
  601. var->bits_per_pixel = par->bpp;
  602. /* {x|y}offset = 0 ; sync=0 */
  603. var->height         = -1;
  604. var->width          = -1;
  605. var->pixclock       = KHZ2PS(par->freq);
  606. var->left_margin    = par->hBackPorch;
  607. var->right_margin   = par->hSyncOff - par->xDim - par->hBackPorch;
  608. var->upper_margin   = par->vBackPorch;
  609. var->lower_margin   = par->vSyncOff - par->yDim - par->vBackPorch;
  610. var->hsync_len      = par->hSyncOn;
  611. var->vsync_len      = par->vSyncOn;
  612. var->vmode          = FB_VMODE_NONINTERLACED;
  613. /*
  614.  * correct the color bit fields
  615.  */
  616. /* var->{red|green|blue}.msb_right    = 0; */
  617. switch (par->bpp) {
  618. case 16: /* RGB 565  LfbMode 0 */
  619. var->red.length    = 5;
  620. var->green.length  = 6;
  621. var->blue.length   = 5;
  622. var->transp.length = 0;
  623. var->red.offset    = 11;
  624. var->green.offset  = 5;
  625. var->blue.offset   = 0;
  626. var->transp.offset = 0;
  627. break;
  628. #ifdef EN_24_32_BPP
  629. case 24: /* RGB 888 LfbMode 4 */
  630. case 32: /* ARGB 8888 LfbMode 5 */
  631. var->red.length    = 8;
  632. var->green.length  = 8;
  633. var->blue.length   = 8;
  634. var->transp.length = 0;
  635. var->red.offset    = 16;
  636. var->green.offset  = 8;
  637. var->blue.offset   = 0;
  638. var->transp.offset = 0; /* in 24bpp we fake a 32 bpp mode */
  639. break;
  640. #endif
  641. default:
  642. eprintk ("bug line %d: bad depth '%u'n", __LINE__, par->bpp);
  643. break;
  644. }
  645. return 0;
  646. }
  647. /*
  648.  * Frame buffer API
  649.  */
  650. static int sstfb_open(struct fb_info *info, int user)
  651. {
  652. f_dprintk("sstfb_open(user: %d)n",user);
  653. MOD_INC_USE_COUNT;
  654. return 0;
  655. }
  656. static int sstfb_release(struct fb_info *info, int user)
  657. {
  658. f_dprintk("sstfb_release(user: %d)n",user);
  659. MOD_DEC_USE_COUNT;
  660. return 0;
  661. }
  662. static int sstfb_get_fix(struct fb_fix_screeninfo *fix,
  663.                          int con, struct fb_info *info)
  664. {
  665. #define sst_info ((struct sstfb_info *) info)
  666. struct fb_var_screeninfo *var;
  667. f_dprintk("sstfb_get_fix(con: %d)n",con);
  668. if (con == -1)
  669. var = &sstfb_default;
  670. else
  671. var = &fb_display[con].var;
  672. strcpy(fix->id, sst_info->info.modename);
  673. /* lfb phys address = membase + 4Mb */
  674. fix->smem_start  = sst_info->video.base;
  675. fix->smem_len    = sst_info->video.len;
  676. fix->type        = FB_TYPE_PACKED_PIXELS;
  677. fix->visual      = FB_VISUAL_TRUECOLOR;
  678. /*
  679.  *   According to the specs, the linelength must be of 1024 *pixels*.
  680.  * and the 24bpp mode is in fact a 32 bpp mode.
  681.  */
  682. fix->line_length = (var->bits_per_pixel == 16) ? 2048 : 4096 ;
  683. return 0;
  684. #undef sst_info
  685. }
  686. static int sstfb_get_var(struct fb_var_screeninfo *var,
  687.                          int con, struct fb_info *info)
  688. {
  689. f_dprintk("sstfb_get_var(con: %d)n",con);
  690. if (con == -1)
  691. *var = sstfb_default;
  692. else
  693. *var = fb_display[con].var;
  694. print_var(var, "var");
  695. return 0;
  696.  }
  697. static int sstfb_set_var(struct fb_var_screeninfo *var,
  698.                          int con, struct fb_info *info)
  699. {
  700. #define sst_info ((struct sstfb_info *) info)
  701. struct sstfb_par par;
  702. struct display *display;
  703. int err;
  704. int old_bpp,old_xres,old_yres;
  705. f_dprintk("sstfb_set_var(con: %d)n",con);
  706. f_ddprintk("xres yres vxres vyres bpp activaten");
  707. f_ddprintk("%-4d %-4d %-5d %-5d %-3d %#-8xn",
  708.  var->xres,var->yres,var->xres_virtual,var->yres_virtual,
  709.  var->bits_per_pixel,var->activate);
  710. if (con < 0)
  711. display = &disp;
  712. else
  713. display = &fb_display[con];
  714. err = sstfb_decode_var(var, &par, sst_info);
  715. if (err)
  716. return err;
  717. sstfb_encode_var (var, &par, sst_info);
  718. switch (var->activate & FB_ACTIVATE_MASK) {
  719. case FB_ACTIVATE_TEST:
  720. return 0;
  721. case FB_ACTIVATE_NXTOPEN:
  722. case FB_ACTIVATE_NOW:
  723. break;
  724. default:
  725. return -EINVAL;
  726. }
  727. old_xres = display->var.xres;
  728. old_yres = display->var.yres;
  729. old_bpp  = display->var.bits_per_pixel;
  730. display->var = *var;
  731. if ((old_xres != var->xres) || (old_yres != var->yres)
  732.     || (old_bpp != var->bits_per_pixel)) {
  733. /* 2-3  lignes redondantes avec get_fix */
  734. display->screen_base = (char *) sst_info->video.vbase;
  735. display->visual = FB_VISUAL_TRUECOLOR;
  736. display->type = FB_TYPE_PACKED_PIXELS;
  737. display->type_aux = 0;
  738. display->ypanstep = 0;
  739. display->ywrapstep = 0;
  740. display->line_length = (var->bits_per_pixel==16) ? 2048 : 4096;
  741. display->inverse = 0;
  742. switch (var->bits_per_pixel) {
  743. #ifdef FBCON_HAS_CFB16
  744. case 16:
  745. display->dispsw = &fbcon_cfb16;
  746. display->dispsw_data = fbcon_cmap.cfb16;
  747. break;
  748. #endif
  749. #ifdef EN_24_32_BPP
  750. #if defined (FBCON_HAS_CFB24) || defined (FBCON_HAS_CFB32 )
  751. case 24: /*24bpp non packed <=> 32 bpp */
  752. case 32:
  753. display->dispsw = &fbcon_cfb32;
  754. display->dispsw_data = fbcon_cmap.cfb32;
  755. break;
  756. #endif
  757. #endif
  758. default:
  759. display->dispsw = &fbcon_dummy;
  760. break;
  761. }
  762. display->scrollmode = SCROLL_YREDRAW;
  763. if (sst_info->info.changevar) {
  764. v_dprintk("fb_info.changevar(con: %d)n", con);
  765. (*sst_info->info.changevar)(con);
  766. v_dprintk("fb_info.changevar: done n");
  767. } else {
  768. v_dprintk("fb_info.changevar() == NULL . n");
  769. }
  770. }
  771. if ((con <0) || (con==currcon)) {
  772. sstfb_set_par (&par, sst_info);
  773. }
  774. print_var(var, "var");
  775. print_var(&display->var, "&display->var");
  776. if (old_bpp != var->bits_per_pixel) {
  777.     if ((err = fb_alloc_cmap(&display->cmap, 0, 0)))
  778. return err;
  779.     sstfb_install_cmap(con, info);
  780. }
  781. return 0;
  782. #undef sst_info
  783. }
  784. static int sstfb_set_cmap(struct fb_cmap *cmap, int kspc,
  785.                           int con, struct fb_info *info)
  786. {
  787. struct display *d = (con<0) ? info->disp : fb_display + con;
  788. f_dprintk("sstfb_set_cmapn");
  789. f_ddprintk("con: %d, currcon: %d, d->cmap.len %dn",
  790.  con, currcon, d->cmap.len);
  791. if (d->cmap.len != 16 ) { /* or test if cmap.len == 0 ? */
  792. int err;
  793. err = fb_alloc_cmap(&d->cmap, 16, 0); /* cmap size=16 */
  794. if (err) return err;
  795. }
  796. if (con == currcon) {
  797. return fb_set_cmap(cmap, kspc, sstfb_setcolreg, info);
  798. } else {
  799. fb_copy_cmap(cmap, &d->cmap, kspc ? 0 : 1);
  800. }
  801. return 0;
  802. }
  803. static int sstfb_get_cmap(struct fb_cmap *cmap, int kspc,
  804.                           int con, struct fb_info *info)
  805. {
  806. f_dprintk("sstfb_get_cmapn");
  807. f_ddprintk("con %d, curcon %d, cmap.len %dn",
  808.  con, currcon, fb_display[con].cmap.len);
  809. /* FIXME: check if con = -1 ? cf sstfb_set_cmap...  */
  810. if (con == currcon)
  811. return fb_get_cmap(cmap, kspc, sstfb_getcolreg, info);
  812. else if (fb_display[con].cmap.len)
  813. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  814. else
  815. fb_copy_cmap(
  816. fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  817. cmap, kspc ? 0 : 2);
  818. return 0;
  819. }
  820. /* TODO */
  821. static int sstfb_pan_display(struct fb_var_screeninfo *var,
  822.                              int con, struct fb_info *info)
  823. {
  824. f_dprintk("sstfb_pan_displayn");
  825. return -EINVAL;
  826. }
  827. static int sstfb_ioctl(struct inode *inode, struct file *file,
  828.                        u_int cmd, u_long arg, int con,
  829.                        struct fb_info *info)
  830. {
  831. #define sst_info ((struct sstfb_info *) info)
  832. #if (SST_DEBUG_IOCTL >0)
  833. int i;
  834. u_long p;
  835. u32 tmp;
  836. u32 fbiinit0;
  837. struct pci_dev * sst_dev = sst_info->dev;
  838. #endif
  839. f_dprintk("sstfb_ioctl(%x)n", cmd);
  840. #if (SST_DEBUG_IOCTL >0)
  841. switch (cmd) {
  842. #  if (SST_DEBUG_VAR >0)
  843. /* tmp ioctl : dumps fb_display[0-5] */
  844. case _IO('F', 0xdb): /* 0x46db */
  845. f_dprintk("dumping fb_display[0-5].varn");
  846. for (i = 0 ; i< 6 ; i++) {
  847. print_var(&fb_display[i].var, "var(%d)", i);
  848. }
  849. return 0;
  850. #  endif /* (SST_DEBUG_VAR >0) */
  851. /* fills the lfb up to *(u32*)arg */
  852. case _IOW('F', 0xdc, u32): /* 0x46dc */
  853. if (*(u32*)arg > 0x400000 )
  854. *(u32*) arg = 0x400000;
  855. f_dprintk("filling %#x n", *(u32*)arg);
  856. for (p = 0 ; p < *(u32*)arg; p+=2)
  857. writew( p >> 6 , sst_info->video.vbase + p);
  858. return 0;
  859. /* change VGA pass_through */
  860. case _IOW('F', 0xdd, u32): /* 0x46dd */
  861. f_dprintk("switch VGA pass-throughn");
  862. pci_read_config_dword(sst_dev, PCI_INIT_ENABLE, &tmp);
  863. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  864.        tmp | PCI_EN_INIT_WR );
  865. fbiinit0 = sst_read (FBIINIT0);
  866. if (* (u32*)arg) {
  867. sst_write(FBIINIT0, fbiinit0 & ~EN_VGA_PASSTHROUGH);
  868. iprintk ( "Disabling VGA pass-throughn");
  869. } else {
  870. sst_write(FBIINIT0, fbiinit0 | EN_VGA_PASSTHROUGH);
  871. iprintk ( "Enabling VGA pass-throughn");
  872. }
  873. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, tmp);
  874. return 0;
  875. case _IO('F', 0xde): /* 0x46de */
  876. f_dprintk("test color displayn");
  877. f_ddprintk("currcon: %d, bpp %dn",
  878.   currcon, fb_display[currcon].var.bits_per_pixel);
  879. memset_io(sst_info->video.vbase, 0, sst_info->video.len);
  880. switch (fb_display[currcon].var.bits_per_pixel) {
  881. /* FIXME broken : if we call this ioctl from a tty not bound to the fb, we use its depth and not the current one ... */
  882.         case 16:
  883. sstfb_test16(sst_info);
  884. break;
  885. #  ifdef EN_24_32_BPP
  886. case 24:
  887. case 32:
  888. sstfb_test32(sst_info);
  889. break;
  890. #  endif
  891. default:
  892. dprintk("bug line %d: bad depth '%u'n", __LINE__,
  893.         fb_display[currcon].var.bits_per_pixel);
  894. }
  895. return 0;
  896. }
  897. #endif /* (SST_DEBUG_IOCTL >0) */
  898. return -EINVAL;
  899. #undef sst_info
  900. }
  901. /*
  902.  * Low level routines
  903.  */
  904. /* get lfb size */
  905. static int sst_get_memsize(u_long *memsize)
  906. {
  907. u32 fbbase_virt = fb_info.video.vbase;
  908. f_dprintk("sst_get_memsizen");
  909. /* force memsize */
  910. if ((mem >= 1 ) &&  (mem <= 4)) {
  911. *memsize = (mem * 0x100000);
  912. iprintk("supplied memsize: %#lxn", *memsize);
  913. return 1;
  914. }
  915. writel (0xdeadbeef, fbbase_virt);
  916. writel (0xdeadbeef, fbbase_virt+0x100000);
  917. writel (0xdeadbeef, fbbase_virt+0x200000);
  918. f_ddprintk("0Mb: %#x, 1Mb: %#x, 2Mb: %#xn",
  919.            readl(fbbase_virt), readl(fbbase_virt + 0x100000),
  920.            readl(fbbase_virt + 0x200000));
  921. writel (0xabcdef01, fbbase_virt);
  922. f_ddprintk("0Mb: %#x, 1Mb: %#x, 2Mb: %#xn",
  923.            readl(fbbase_virt), readl(fbbase_virt + 0x100000),
  924.            readl(fbbase_virt + 0x200000));
  925. /* checks for 4mb lfb , then 2, then defaults to 1*/
  926. if (readl(fbbase_virt + 0x200000) == 0xdeadbeef) {
  927. *memsize = 0x400000;
  928. } else if (readl(fbbase_virt + 0x100000) == 0xdeadbeef) {
  929. *memsize = 0x200000;
  930. } else {
  931. *memsize = 0x100000;
  932. }
  933. f_ddprintk("detected memsize: %#lxn", *memsize);
  934. return 1;
  935. }
  936. /*
  937.  * wait for the fbi chip. ASK: what happens if the fbi is stuck ?
  938.  *
  939.  * the FBI is supposed to be ready if we receive 5 time
  940.  * in a row a "idle" answer to our requests
  941.  */
  942. static int sst_wait_idle(void)
  943. {
  944. int count = 0;
  945. f_ddprintk("sst_wait_idlen");
  946. while(1) {
  947. if (sst_read(STATUS) & STATUS_FBI_BUSY) {
  948. f_dddprintk("status: busyn");
  949. /* FIXME basicaly, this is a busy wait. maybe not that good. oh well; this is a small loop after all ...*/
  950. count = 0;
  951. } else {
  952. count++;
  953. f_dddprintk("status: idle(%d)n", count);
  954. }
  955. if (count >= 5) return 1;
  956. }
  957. }
  958. /*
  959.  * detect dac type
  960.  * prerequisite : write to FbiInitx enabled, video and fbi and pci fifo reset,
  961.  * dram refresh disabled, FbiInit remaped.
  962.  * TODO: mmh.. maybe i shoud put the "prerequisite" in the func ...
  963.  */
  964. static int __init sst_detect_dactype(void)
  965. {
  966. int ret=0,i;
  967. f_dprintk("sst_detect_dactypen");
  968. for (i=0; i< sizeof(dacs)/sizeof(dacs[0]) ; i++) {
  969. ret = dacs[i].detect();
  970. if (ret) break;
  971. }
  972. if (!ret)
  973. return 0;
  974. f_dprintk("found %sn", dacs[i].name);
  975. fb_info.dac_sw=&dacs[i];
  976. return 1;
  977. }
  978. /* fbi should be idle, and fifo emty and mem disabled */
  979. /* supposed to detect AT&T ATT20C409 and Ti TVP3409 ramdacs */
  980. static int __init (sst_detect_att(void))
  981. {
  982. int i, mir, dir;
  983. f_dprintk("sst_detect_attn");
  984. for (i = 0; i<3; i++) {
  985. sst_dac_write(DACREG_WMA, 0);  /* backdoor */
  986. sst_dac_read(DACREG_RMR); /* read 4 times RMR */
  987. sst_dac_read(DACREG_RMR);
  988. sst_dac_read(DACREG_RMR);
  989. sst_dac_read(DACREG_RMR);
  990. /* the fifth time,  CR0 is read */
  991. sst_dac_read(DACREG_RMR);
  992. /* the 6th, manufacturer id register */
  993. mir = sst_dac_read(DACREG_RMR);
  994. /*the 7th, device ID register */
  995. dir = sst_dac_read(DACREG_RMR);
  996. f_ddprintk("mir: %#x, dir: %#xn", mir, dir);
  997. if ((mir == DACREG_MIR_ATT ) && (dir == DACREG_DIR_ATT)) {
  998. return 1;
  999. }
  1000. }
  1001. return 0;
  1002. }
  1003. static int __init (sst_detect_ti(void))
  1004. {
  1005. int i, mir, dir;
  1006. f_dprintk("sst_detect_tin");
  1007. for (i = 0; i<3; i++) {
  1008. sst_dac_write(DACREG_WMA, 0);  /* backdoor */
  1009. sst_dac_read(DACREG_RMR); /* read 4 times RMR */
  1010. sst_dac_read(DACREG_RMR);
  1011. sst_dac_read(DACREG_RMR);
  1012. sst_dac_read(DACREG_RMR);
  1013. /* the fifth time,  CR0 is read */
  1014. sst_dac_read(DACREG_RMR);
  1015. /* the 6th, manufacturer id register */
  1016. mir = sst_dac_read(DACREG_RMR);
  1017. /*the 7th, device ID register */
  1018. dir = sst_dac_read(DACREG_RMR);
  1019. f_ddprintk("mir: %#x, dir: %#xn", mir, dir);
  1020. if ((mir == DACREG_MIR_TI ) && (dir == DACREG_DIR_TI)) {
  1021. return 1;
  1022. }
  1023. }
  1024. return 0;
  1025. }
  1026. /*
  1027.  * try to detect ICS5342  ramdac
  1028.  * we get the 1st byte (M value) of preset f1,f7 and fB
  1029.  * why those 3 ? mmmh... for now, i'll do it the glide way...
  1030.  * and ask questions later. anyway, it seems that all the freq registers are
  1031.  * realy at their default state (cf specs) so i ask again, why those 3 regs ?
  1032.  * mmmmh.. it seems that's much more ugly than i thought. we use f0 and fA for
  1033.  * pll programming, so in fact, we *hope* that the f1, f7 & fB won't be
  1034.  * touched...
  1035.  * is it realy safe ? how can i reset this ramdac ? geee...
  1036.  */
  1037. static int __init sst_detect_ics(void)
  1038. {
  1039. int i;
  1040. int m_clk0_1, m_clk0_7, m_clk1_b;
  1041. int n_clk0_1, n_clk0_7, n_clk1_b;
  1042. f_dprintk("sst_detect_icsn");
  1043. for (i = 0; i<5; i++ ) {
  1044. sst_dac_write(DACREG_ICS_PLLRMA, 0x1); /* f1 */
  1045. m_clk0_1 = sst_dac_read(DACREG_ICS_PLLDATA);
  1046. n_clk0_1 = sst_dac_read(DACREG_ICS_PLLDATA);
  1047. sst_dac_write(DACREG_ICS_PLLRMA, 0x7); /* f7 */
  1048. m_clk0_7 = sst_dac_read(DACREG_ICS_PLLDATA);
  1049. n_clk0_7 = sst_dac_read(DACREG_ICS_PLLDATA);
  1050. sst_dac_write(DACREG_ICS_PLLRMA, 0xb); /* fB */
  1051. m_clk1_b= sst_dac_read(DACREG_ICS_PLLDATA);
  1052. n_clk1_b= sst_dac_read(DACREG_ICS_PLLDATA);
  1053. f_ddprintk("m_clk0_1: %#x, m_clk0_7: %#x, m_clk1_b: %#xn",
  1054. m_clk0_1, m_clk0_7, m_clk1_b);
  1055. f_ddprintk("n_clk0_1: %#x, n_clk0_7: %#x, n_clk1_b: %#xn",
  1056. n_clk0_1, n_clk0_7, n_clk1_b);
  1057. if ((   m_clk0_1 == DACREG_ICS_PLL_CLK0_1_INI)
  1058.     && (m_clk0_7 == DACREG_ICS_PLL_CLK0_7_INI)
  1059.     && (m_clk1_b == DACREG_ICS_PLL_CLK1_B_INI)) {
  1060. return 1;
  1061. }
  1062. }
  1063. return 0;
  1064. }
  1065. /* compute the m,n,p  , returns the real freq
  1066.  * (ics datasheet :  N <-> N1 , P <-> N2)
  1067.  *
  1068.  * Fout= Fref * (M+2)/( 2^P * (N+2))
  1069.  *  we try to get close to the asked freq
  1070.  *  with P as high, and M as low as possible
  1071.  * range:
  1072.  * ti/att : 0 <= M <= 255; 0 <= P <= 3; 0<= N <= 63
  1073.  * ics    : 1 <= M <= 127; 0 <= P <= 3; 1<= N <= 31
  1074.  * we'll use the lowest limitation, should be precise enouth
  1075.  */
  1076. static int sst_calc_pll(const int freq, int *freq_out, struct pll_timing *t)
  1077. {
  1078. int m, m2, n, p, best_err, fout;
  1079. int best_n=-1;
  1080. int best_m=-1;
  1081. f_dprintk("sst_calc_pll(%dKhz)n", freq);
  1082. best_err = freq;
  1083. p=3;
  1084. /* f * 2^P = vco should be less than VCOmax ~ 250 MHz for ics*/
  1085. while (((1 << p) * freq > VCO_MAX) && (p >= 0))
  1086. p--;
  1087. if (p == -1)
  1088. return -EINVAL;
  1089. for (n = 1; n < 32; n++) {
  1090. /* calc 2 * m so we can round it later*/
  1091. m2 = (2 * freq * (1 << p) * (n + 2) ) / DAC_FREF - 4 ;
  1092. m = (m2 % 2 ) ? m2/2+1 : m2/2 ;
  1093. if (m >= 128)
  1094. break;
  1095. fout = (DAC_FREF * (m + 2)) / ((1 << p) * (n + 2));
  1096. if ((ABS(fout - freq) < best_err) && (m > 0)) {
  1097. best_n = n;
  1098. best_m = m;
  1099. best_err = ABS(fout - freq);
  1100. /* we get the lowest m , allowing 0.5% error in freq*/
  1101. if (200*best_err < freq) break;
  1102. }
  1103. }
  1104. if (best_n == -1)  /* unlikely, but who knows ? */
  1105. return -EINVAL;
  1106. t->p=p;
  1107. t->n=best_n;
  1108. t->m=best_m;
  1109. *freq_out=(DAC_FREF * (t->m + 2)) / ((1 << t->p) * (t->n + 2));
  1110. f_ddprintk ("m: %d, n: %d, p: %d, F: %dKhzn",
  1111.   t->m, t->n, t->p, *freq_out);
  1112. return 0;
  1113. }
  1114. /*
  1115.  * gfx, video, pci fifo should be reset, dram refresh disabled
  1116.  * see detect_dac
  1117.  */
  1118. static int sst_set_pll_att_ti(const struct pll_timing *t, const int clock)
  1119. {
  1120. u8 cr0, cc;
  1121. f_dprintk("sst_set_pll_att_tin");
  1122. /* enable indexed mode */
  1123. sst_dac_write(DACREG_WMA, 0);  /* backdoor */
  1124. sst_dac_read(DACREG_RMR); /* 1 time:  RMR */
  1125. sst_dac_read(DACREG_RMR); /* 2 RMR */
  1126. sst_dac_read(DACREG_RMR); /* 3 //  */
  1127. sst_dac_read(DACREG_RMR); /* 4 //  */
  1128. cr0 = sst_dac_read(DACREG_RMR); /* 5 CR0 */
  1129. sst_dac_write(DACREG_WMA, 0);
  1130. sst_dac_read(DACREG_RMR);
  1131. sst_dac_read(DACREG_RMR);
  1132. sst_dac_read(DACREG_RMR);
  1133. sst_dac_read(DACREG_RMR);
  1134. sst_dac_write(DACREG_RMR, (cr0 & 0xf0)
  1135.               | DACREG_CR0_EN_INDEXED
  1136.               | DACREG_CR0_8BIT
  1137.               | DACREG_CR0_PWDOWN );
  1138. /* so, now we are in indexed mode . dunno if its common, but
  1139.    i find this way of doing things a little bit weird :p */
  1140. udelay(300);
  1141. cc = dac_i_read(DACREG_CC_I);
  1142. switch (clock) {
  1143. case VID_CLOCK:
  1144. dac_i_write(DACREG_AC0_I, t->m);
  1145. dac_i_write(DACREG_AC1_I, t->p << 6 | t->n);
  1146. dac_i_write(DACREG_CC_I,
  1147.             (cc & 0x0f) | DACREG_CC_CLKA | DACREG_CC_CLKA_C);
  1148. break;
  1149. case GFX_CLOCK:
  1150. dac_i_write(DACREG_BD0_I, t->m);
  1151. dac_i_write(DACREG_BD1_I, t->p << 6 | t->n);
  1152. dac_i_write(DACREG_CC_I,
  1153.             (cc & 0xf0) | DACREG_CC_CLKB | DACREG_CC_CLKB_D);
  1154. break;
  1155. default:
  1156. dprintk("bug line %d: wrong clock code '%d'n",
  1157.         __LINE__,clock);
  1158. return 0;
  1159. }
  1160. udelay(300);
  1161. /* power up the dac & return to "normal" non-indexed mode */
  1162. dac_i_write(DACREG_CR0_I,
  1163.             cr0 & ~DACREG_CR0_PWDOWN & ~DACREG_CR0_EN_INDEXED);
  1164. return 1;
  1165. }
  1166. static int sst_set_pll_ics(const struct pll_timing *t, const int clock)
  1167. {
  1168. u8 pll_ctrl;
  1169. f_dprintk("sst_set_pll_icsn");
  1170. sst_dac_write(DACREG_ICS_PLLRMA, DACREG_ICS_PLL_CTRL);
  1171. pll_ctrl = sst_dac_read(DACREG_ICS_PLLDATA);
  1172. switch(clock) {
  1173. case VID_CLOCK:
  1174. sst_dac_write(DACREG_ICS_PLLWMA, 0x0); /* CLK0, f0 */
  1175. sst_dac_write(DACREG_ICS_PLLDATA, t->m);
  1176. sst_dac_write(DACREG_ICS_PLLDATA, t->p << 5 | t->n);
  1177. /* selects freq f0 for clock 0 */
  1178. sst_dac_write(DACREG_ICS_PLLWMA, DACREG_ICS_PLL_CTRL);
  1179. sst_dac_write(DACREG_ICS_PLLDATA,
  1180.               (pll_ctrl & 0xd8)
  1181.               | DACREG_ICS_CLK0
  1182.               | DACREG_ICS_CLK0_0);
  1183. break;
  1184. case GFX_CLOCK :
  1185. sst_dac_write(DACREG_ICS_PLLWMA, 0xa); /* CLK1, fA */
  1186. sst_dac_write(DACREG_ICS_PLLDATA, t->m);
  1187. sst_dac_write(DACREG_ICS_PLLDATA, t->p << 5 | t->n);
  1188. /* selects freq fA for clock 1 */
  1189. sst_dac_write(DACREG_ICS_PLLWMA, DACREG_ICS_PLL_CTRL);
  1190. sst_dac_write(DACREG_ICS_PLLDATA,
  1191.               (pll_ctrl & 0xef) | DACREG_ICS_CLK1_A);
  1192. break;
  1193. default:
  1194. dprintk("bug line %d: wrong clock code '%d'n",
  1195.         __LINE__, clock);
  1196. return 0;
  1197. }
  1198. udelay(300);
  1199. return 1;
  1200. }
  1201. static int sstfb_set_par(const struct sstfb_par * par, struct sstfb_info * sst_info)
  1202. {
  1203. u32 lfbmode, fbiinit1, fbiinit2, fbiinit3, fbiinit6=0;
  1204. int ntiles;
  1205. struct pll_timing pll;
  1206. int fout;
  1207. struct pci_dev  * sst_dev = sst_info->dev;
  1208. f_dprintk("sst_set_par(%dx%d)n", par->xDim, par->yDim);
  1209. f_ddprintk("hSyncOn hSyncOff vSyncOn vSyncOffn");
  1210. f_ddprintk("%-7d %-8d %-7d %-8dn",
  1211.            par->hSyncOn, par->hSyncOff,
  1212.            par->vSyncOn, par->vSyncOff);
  1213. f_ddprintk("hBackPorch vBackPorch xDim yDim Freqn");
  1214. f_ddprintk("%-10d %-10d %-4d %-4d %-8dn",
  1215.            par->hBackPorch, par->vBackPorch,
  1216.            par->xDim, par->yDim, par->freq);
  1217. sst_calc_pll (par->freq, &fout, &pll);
  1218. sst_write(NOPCMD, 0);
  1219. sst_wait_idle();
  1220. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, PCI_EN_INIT_WR);
  1221. sst_set_bits(FBIINIT1, VIDEO_RESET);
  1222. sst_set_bits(FBIINIT0, FBI_RESET | FIFO_RESET);
  1223. sst_unset_bits(FBIINIT2, EN_DRAM_REFRESH);
  1224. sst_wait_idle();
  1225. /*sst_unset_bits (FBIINIT0, FBI_RESET); / reenable FBI ? */
  1226. sst_write(BACKPORCH,       par->vBackPorch << 16 | (par->hBackPorch-2));
  1227. sst_write(VIDEODIMENSIONS, (par->yDim - 1) << 16 | (par->xDim - 1));
  1228. sst_write(HSYNC,         (par->hSyncOff-1) << 16 | (par->hSyncOn-1));
  1229. sst_write(VSYNC,             par->vSyncOff << 16 | par->vSyncOn);
  1230. fbiinit2=sst_read(FBIINIT2);
  1231. fbiinit3=sst_read(FBIINIT3);
  1232. /* everything is reset. we enable fbiinit2/3 remap : dac acces ok */
  1233. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1234.                        PCI_EN_INIT_WR | PCI_REMAP_DAC );
  1235. sst_info->dac_sw->set_vidmod(par->bpp);
  1236. /* set video clock */
  1237. sst_info->dac_sw->set_pll(&pll, VID_CLOCK);
  1238. /* disable fbiinit2/3 remap */
  1239. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1240.                        PCI_EN_INIT_WR);
  1241. /* restore fbiinit2/3 */
  1242. sst_write(FBIINIT2,fbiinit2);
  1243. sst_write(FBIINIT3,fbiinit3);
  1244. fbiinit1 = (sst_read(FBIINIT1) & VIDEO_MASK)
  1245.             | EN_DATA_OE
  1246.             | EN_BLANK_OE
  1247.             | EN_HVSYNC_OE
  1248.             | EN_DCLK_OE
  1249. /*             | (15 << TILES_IN_X_SHIFT)*/
  1250.             | SEL_INPUT_VCLK_2X
  1251. /*             | (2 << VCLK_2X_SEL_DEL_SHIFT)
  1252.             | (2 << VCLK_DEL_SHIFT)*/;
  1253. /* try with vclk_in_delay =0 (bits 29:30) , vclk_out_delay =0 (bits(27:28)
  1254.  in (near) future set them accordingly to revision + resolution (cf glide)
  1255.  first understand what it stands for :)
  1256.  FIXME: there are some artefacts... check for the vclk_in_delay
  1257.  lets try with 6ns delay in both vclk_out & in...
  1258.  doh... they're still there :
  1259. */
  1260. ntiles = par->tiles_in_X;
  1261. if (sst_info->is_voodoo2) {
  1262. fbiinit1 |= ((ntiles & 0x20) >> 5) << TILES_IN_X_MSB_SHIFT
  1263.             | ((ntiles & 0x1e) >> 1) << TILES_IN_X_SHIFT ;
  1264. /* as the only value of importance for us in fbiinit6 is tiles in X (lsb),
  1265.    and as reading fbinit 6 will return crap (see FBIINIT6_DEFAULT) we just
  1266.    write our value. BTW due to the dac unable to read odd number of tiles, this
  1267.    field is always null ... */
  1268. fbiinit6 = (ntiles & 0x1) << TILES_IN_X_LSB_SHIFT;
  1269. }
  1270. else
  1271. fbiinit1 |= ntiles << TILES_IN_X_SHIFT;
  1272. switch(par->bpp) {
  1273. case 16:
  1274. fbiinit1 |=  SEL_SOURCE_VCLK_2X_SEL;
  1275. break;
  1276. #ifdef EN_24_32_BPP
  1277. case 24:
  1278. case 32:
  1279. /* orig sst_set_bits(FBIINIT1, SEL_SOURCE_VCLK_2X_DIV2 | EN_24BPP); */
  1280. fbiinit1 |= SEL_SOURCE_VCLK_2X_SEL | EN_24BPP;
  1281. break;
  1282. #endif
  1283. default:
  1284. dprintk("bug line %d: bad depth '%u'n", __LINE__,
  1285. par->bpp );
  1286. return 0;
  1287. break;
  1288. }
  1289. sst_write(FBIINIT1, fbiinit1);
  1290. if (sst_info->is_voodoo2)
  1291. sst_write(FBIINIT6, fbiinit6);
  1292. sst_wait_idle();
  1293. sst_unset_bits(FBIINIT1, VIDEO_RESET);
  1294. sst_unset_bits(FBIINIT0, FBI_RESET | FIFO_RESET);
  1295. sst_set_bits(FBIINIT2, EN_DRAM_REFRESH);
  1296. /* disables fbiinit writes */
  1297. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, PCI_EN_FIFO_WR);
  1298. /* set lfbmode : set mode + front buffer for reads/writes
  1299.    + disable pipeline + disable byte swapping */
  1300. switch(par->bpp) {
  1301. case 16:
  1302. lfbmode = LFB_565;
  1303. break;
  1304. #ifdef EN_24_32_BPP
  1305. case 24:
  1306. lfbmode = LFB_888;
  1307. break;
  1308. case 32:
  1309. lfbmode = LFB_8888;
  1310. break;
  1311. #endif
  1312. default:
  1313. dprintk("bug line %d: bad depth '%u'n", __LINE__,
  1314. par->bpp );
  1315. return 0;
  1316. break;
  1317. }
  1318. if (clipping) {
  1319. sst_write(LFBMODE, lfbmode | EN_PXL_PIPELINE);
  1320. /*
  1321.  * Set "clipping" dimensions. If clipping is disabled and
  1322.  * writes to offscreen areas of the framebuffer are performed,
  1323.  * the "behaviour is undefined" (_very_ undefined) - Urs
  1324.  */
  1325. /* btw, it requires enabling pixel pipeline in LFBMODE .
  1326.    off screen read/writes will just wrap and read/print pixels
  1327.    on screen. Ugly but not that dangerous */
  1328. f_ddprintk("setting clipping dimensions 0..%d, 0..%dn",
  1329.             par->xDim-1, par->yDim-1);
  1330. /* warning the fields are 9bits wide on voodoo1 , 11 (or 10) on voodoo2,
  1331.    make sure we check the values before playing with the registers.. */
  1332. sst_write(CLIP_LEFT_RIGHT, par->xDim );
  1333. sst_write(CLIP_LOWY_HIGHY, par->yDim );
  1334. sst_set_bits(FBZMODE, EN_CLIPPING | EN_RGB_WRITE);
  1335. } else {
  1336. /* no clipping : direct access, no pipeline */
  1337. sst_write(LFBMODE, lfbmode );
  1338. }
  1339. sst_info->current_par = *par ;
  1340. return 1;
  1341. }
  1342. static void sst_set_vidmod_att_ti(const int bpp)
  1343. {
  1344. u8 cr0;
  1345. f_dprintk("sst_set_vidmod_att_ti(bpp: %d)n", bpp);
  1346. sst_dac_write(DACREG_WMA, 0);  /* backdoor */
  1347. sst_dac_read(DACREG_RMR); /* read 4 times RMR */
  1348. sst_dac_read(DACREG_RMR);
  1349. sst_dac_read(DACREG_RMR);
  1350. sst_dac_read(DACREG_RMR);
  1351. /* the fifth time,  CR0 is read */
  1352. cr0 = sst_dac_read(DACREG_RMR);
  1353. sst_dac_write(DACREG_WMA, 0);  /* backdoor */
  1354. sst_dac_read(DACREG_RMR); /* read 4 times RMR */
  1355. sst_dac_read(DACREG_RMR);
  1356. sst_dac_read(DACREG_RMR);
  1357. sst_dac_read(DACREG_RMR);
  1358. /* cr0 */
  1359. switch(bpp) {
  1360. case 16:
  1361. sst_dac_write(DACREG_RMR, (cr0 & 0x0f) | DACREG_CR0_16BPP);
  1362. break;
  1363. #ifdef EN_24_32_BPP
  1364. case 24:
  1365. case 32:
  1366. sst_dac_write(DACREG_RMR, (cr0 & 0x0f) | DACREG_CR0_24BPP);
  1367. break;
  1368. #endif
  1369. default:
  1370. dprintk("bug line %d: bad depth '%u'n", __LINE__, bpp);
  1371. break;
  1372. }
  1373. }
  1374. static void sst_set_vidmod_ics(const int bpp)
  1375. {
  1376. f_dprintk("sst_set_vidmod_ics(bpp: %d)n", bpp);
  1377. switch(bpp) {
  1378. case 16:
  1379. sst_dac_write(DACREG_ICS_CMD, DACREG_ICS_CMD_16BPP);
  1380. break;
  1381. #ifdef EN_24_32_BPP
  1382. case 24:
  1383. case 32:
  1384. sst_dac_write(DACREG_ICS_CMD, DACREG_ICS_CMD_24BPP);
  1385. break;
  1386. #endif
  1387. default:
  1388. dprintk("bug line %d: bad depth '%u'n", __LINE__, bpp);
  1389. break;
  1390. }
  1391. }
  1392. static int __init sst_init(void)
  1393. {
  1394. struct pll_timing gfx_timings;
  1395. int Fout;
  1396. int dac_ok;
  1397. u32 fbiinit0, fbiinit1, fbiinit4;
  1398. struct pci_dev * sst_dev = fb_info.dev; /* or define a macro ?*/
  1399. f_dprintk("sst_initn");
  1400. f_ddprintk(" fbiinit0   fbiinit1   fbiinit2   fbiinit3   fbiinit4  "
  1401.            " fbiinit6n");
  1402. f_ddprintk("%0#10x %0#10x %0#10x %0#10x %0#10x %0#10xn",
  1403.             sst_read(FBIINIT0), sst_read(FBIINIT1), sst_read(FBIINIT2),
  1404.             sst_read(FBIINIT3), sst_read(FBIINIT4), sst_read(FBIINIT6));
  1405. /* disable video clock */
  1406. pci_write_config_dword(sst_dev, PCI_VCLK_DISABLE,0);
  1407. /* enable writing to init registers ,disable pci fifo*/
  1408. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, PCI_EN_INIT_WR);
  1409. /* reset video */
  1410. sst_set_bits(FBIINIT1, VIDEO_RESET);
  1411. sst_wait_idle();
  1412. /* reset gfx + pci fifo */
  1413. sst_set_bits(FBIINIT0, FBI_RESET | FIFO_RESET);
  1414. sst_wait_idle();
  1415. /* unreset fifo */
  1416. /*sst_unset_bits(FBIINIT0, FIFO_RESET);
  1417. sst_wait_idle();*/
  1418. /* unreset FBI */
  1419. /*sst_unset_bits(FBIINIT0, FBI_RESET);
  1420. sst_wait_idle();*/
  1421. /* disable dram refresh */
  1422. sst_unset_bits(FBIINIT2, EN_DRAM_REFRESH);
  1423. sst_wait_idle();
  1424. /* remap fbinit2/3 to dac */
  1425. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1426.                                PCI_EN_INIT_WR | PCI_REMAP_DAC );
  1427. /* detect dac type */
  1428. dac_ok = sst_detect_dactype();
  1429. if (!dac_ok) {
  1430. eprintk("Unknown dac typen");
  1431. return 0;
  1432. }
  1433. /* set graphic clock */
  1434. if (dac_ok) {
  1435. fb_info.gfx_clock = fb_info.spec->default_gfx_clock;
  1436. if ((gfxclk >10 ) && (gfxclk < fb_info.spec->max_gfxclk)) {
  1437. iprintk ("Using supplied graphic freq : %dMHzn", gfxclk);
  1438.  fb_info.gfx_clock = gfxclk *1000;
  1439. } else if (gfxclk) {
  1440. wprintk ("You fool, %dMhz is way out of spec! Using defaultn", gfxclk);
  1441. }
  1442. sst_calc_pll(fb_info.gfx_clock, &Fout, &gfx_timings);
  1443. fb_info.dac_sw->set_pll(&gfx_timings, GFX_CLOCK);
  1444. }
  1445. /* disable fbiinit remap */
  1446. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1447.                        PCI_EN_INIT_WR| PCI_EN_FIFO_WR );
  1448. /* defaults init registers */
  1449. /* FbiInit0: unreset gfx, unreset fifo */
  1450. fbiinit0 = FBIINIT0_DEFAULT;
  1451. fbiinit1 = FBIINIT1_DEFAULT;
  1452. fbiinit4 = FBIINIT4_DEFAULT;
  1453. if (vgapass)
  1454. fbiinit0 &= ~EN_VGA_PASSTHROUGH;
  1455. else
  1456. fbiinit0 |= EN_VGA_PASSTHROUGH;
  1457. if (slowpci) {
  1458. fbiinit1 |= SLOW_PCI_WRITES;
  1459. fbiinit4 |= SLOW_PCI_READS;
  1460. } else {
  1461. fbiinit1 &= ~SLOW_PCI_WRITES;
  1462. fbiinit4 &= ~SLOW_PCI_READS;
  1463. }
  1464. sst_write(FBIINIT0, fbiinit0);
  1465. sst_wait_idle();
  1466. sst_write(FBIINIT1, fbiinit1);
  1467. sst_wait_idle();
  1468. sst_write(FBIINIT2, FBIINIT2_DEFAULT);
  1469. sst_wait_idle();
  1470. sst_write(FBIINIT3, FBIINIT3_DEFAULT);
  1471. sst_wait_idle();
  1472. sst_write(FBIINIT4, fbiinit4);
  1473. sst_wait_idle();
  1474. if (fb_info.is_voodoo2) {
  1475. sst_write(FBIINIT6, FBIINIT6_DEFAULT);
  1476. sst_wait_idle();
  1477. }
  1478. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, PCI_EN_FIFO_WR );
  1479. pci_write_config_dword(sst_dev, PCI_VCLK_ENABLE, 0);
  1480. return dac_ok;
  1481. }
  1482. #ifdef MODULE
  1483. static void  __exit sst_shutdown(void)
  1484. {
  1485. struct pll_timing gfx_timings;
  1486. int Fout;
  1487. struct pci_dev * sst_dev = fb_info.dev;
  1488. f_dprintk("sst_shutdownn");
  1489. /* reset video, gfx, fifo, disable dram + remap fbiinit2/3 */
  1490. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, PCI_EN_INIT_WR);
  1491. sst_set_bits(FBIINIT1, VIDEO_RESET | EN_BLANKING);
  1492. sst_unset_bits(FBIINIT2, EN_DRAM_REFRESH);
  1493. sst_set_bits(FBIINIT0, FBI_RESET | FIFO_RESET);
  1494. sst_wait_idle();
  1495. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1496.                        PCI_EN_INIT_WR | PCI_REMAP_DAC );
  1497. /*set 20Mhz gfx clock */
  1498. sst_calc_pll(20000, &Fout, &gfx_timings);
  1499. fb_info.dac_sw->set_pll(&gfx_timings, GFX_CLOCK);
  1500. /* TODO maybe shutdown the dac, vrefresh and so on... */
  1501. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE,
  1502.                        PCI_EN_INIT_WR);
  1503. sst_unset_bits(FBIINIT0, FBI_RESET | FIFO_RESET | EN_VGA_PASSTHROUGH);
  1504. pci_write_config_dword(sst_dev, PCI_VCLK_DISABLE,0);
  1505. /* maybe keep fbiinit* and PCI_INIT_enable in the fb_info struct at the beginining ? */
  1506. pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, 0);
  1507. }
  1508. #endif /* MODULE */
  1509. /*
  1510.  * Interface to the world
  1511.  */
  1512. int  __init sstfb_setup(char *options)
  1513. {
  1514. char *this_opt;
  1515. f_dprintk("sstfb_setupn");
  1516. if (!options || !*options)
  1517. return 0;
  1518. while ((this_opt = strsep(&options, ",")) != NULL) {
  1519. if (!*this_opt) continue;
  1520. f_ddprintk("option %sn", this_opt);
  1521. if (!strcmp(this_opt, "inverse")) {
  1522. inverse = 1;
  1523. fb_invert_cmaps();
  1524. }
  1525. else if (!strcmp(this_opt, "vganopass"))
  1526. vgapass = 0;
  1527. else if (!strcmp(this_opt, "vgapass"))
  1528. vgapass = 1;
  1529. else if (!strcmp(this_opt, "clipping"))
  1530.         clipping = 1;
  1531. else if (!strcmp(this_opt, "noclipping"))
  1532.         clipping = 0;
  1533. else if (!strcmp(this_opt, "fastpci"))
  1534.         slowpci = 0;
  1535. else if (!strcmp(this_opt, "slowpci"))
  1536.         slowpci = 1;
  1537. else if (!strncmp(this_opt, "mem:",4))
  1538. mem=simple_strtoul (this_opt+4, NULL, 0);
  1539. else if (!strncmp(this_opt, "gfxclk:",7))
  1540. gfxclk=simple_strtoul (this_opt+7, NULL, 0);
  1541. else if (!strncmp(this_opt, "dev:",4))
  1542. dev=simple_strtoul (this_opt+4, NULL, 0);
  1543. else
  1544. mode_option=this_opt;
  1545. }
  1546. return 0;
  1547. }
  1548. int __init sstfb_init(void)
  1549. {
  1550. struct pci_dev * pdev;
  1551. struct fb_var_screeninfo var;
  1552. #define sst_dev (fb_info.dev)
  1553. f_dprintk("sstfb_initn");
  1554. dprintk("Compile date: "__DATE__" "__TIME__"n");
  1555. memset (&fb_info, 0, sizeof(fb_info));
  1556. pci_for_each_dev(pdev) {
  1557. if (pdev->vendor != PCI_VENDOR_ID_3DFX) continue;
  1558. if (pdev->device == PCI_DEVICE_ID_3DFX_VOODOO) {
  1559. fb_info.is_voodoo2=0;
  1560. fb_info.spec=&voodoo1_spec;
  1561. }
  1562. else if (pdev->device == PCI_DEVICE_ID_3DFX_VOODOO2) {
  1563. fb_info.is_voodoo2=1;
  1564. fb_info.spec=&voodoo2_spec;
  1565. }
  1566. else
  1567. continue;
  1568. if (dev > 0) {
  1569. dev--;
  1570. continue;
  1571. }
  1572. f_ddprintk("found device : %sn", fb_info.spec->name);
  1573. fb_info.dev = pdev;
  1574. fb_info.mmio.base = sst_dev->resource[0].start;
  1575. pci_read_config_byte(sst_dev,
  1576.                      PCI_REVISION_ID, &fb_info.revision);
  1577. fb_info.mmio.vbase = (u32) ioremap_nocache(fb_info.mmio.base, 0x400000);
  1578. if (!fb_info.mmio.vbase) {
  1579. eprintk("cannot remap register area %#lxn",
  1580.         fb_info.mmio.base);
  1581. return -ENXIO;
  1582. }
  1583. fb_info.video.base = fb_info.mmio.base+0x400000;
  1584. fb_info.video.vbase = (u32) ioremap_nocache(fb_info.video.base,
  1585.             0x400000);
  1586. if (!fb_info.video.vbase) {
  1587. eprintk("cannot remap framebuffer %#lxn",
  1588.         fb_info.video.base);
  1589. iounmap((void*) fb_info.mmio.vbase);
  1590. return -ENXIO;
  1591. }
  1592. if(!sst_init()) {
  1593. eprintk("Init failedn");
  1594. iounmap((void*)fb_info.mmio.vbase);
  1595. iounmap((void*)fb_info.video.vbase);
  1596. return -ENXIO;
  1597. }
  1598. sst_get_memsize(&fb_info.video.len);
  1599. fb_info.configured = 1;
  1600. strncpy(fb_info.info.modename, fb_info.spec->name, 16);
  1601. iprintk("%s with %s dacn", fb_info.info.modename, fb_info.dac_sw->name);
  1602. iprintk("framebuffer at %#lx, mapped to %#lx,"
  1603.         " size %ldMbn",
  1604.         fb_info.video.base, fb_info.video.vbase,
  1605.         fb_info.video.len >> 20);
  1606. f_ddprintk("revision: %dn", fb_info.revision);
  1607. f_ddprintk("regbase_virt: %#lxn", fb_info.mmio.vbase);
  1608. f_ddprintk("membase_phys: %#lxn", fb_info.video.base);
  1609. f_ddprintk("fbbase_virt: %#lxn", fb_info.video.vbase);
  1610. fb_info.info.node       = -1 ;
  1611. fb_info.info.flags      = FBINFO_FLAG_DEFAULT;
  1612. fb_info.info.fbops      = &sstfb_ops;
  1613. fb_info.info.disp       = &disp;
  1614. fb_info.info.changevar  = NULL;
  1615. fb_info.info.switch_con = &sstfbcon_switch;
  1616. fb_info.info.updatevar  = &sstfbcon_updatevar;
  1617. fb_info.info.blank      = &sstfbcon_blank;
  1618. if ( !mode_option &&
  1619.              !fb_find_mode(&var, &fb_info.info, mode_option,
  1620.                    NULL, 0, NULL, 16)) {
  1621. var = sstfb_default;
  1622. }
  1623. if (sstfb_set_var(&var, -1, &fb_info.info)) {
  1624. eprintk("can't set supplied video mode. Using defaultn");
  1625. var = sstfb_default;
  1626. if (sstfb_set_var(&var, -1, &fb_info.info)) {
  1627. eprintk("can't set default video mode.n");
  1628. return -ENXIO;
  1629. }
  1630. }
  1631. /*clear fb */
  1632. memset_io(fb_info.video.vbase, 0, fb_info.video.len);
  1633. /* print some squares ... */
  1634. sstfb_test16(&fb_info); /* FIXME this is only for 16bpp */
  1635. /* register fb */
  1636. if (register_framebuffer(&fb_info.info) < 0) {
  1637. eprintk("can't register framebuffer.n");
  1638. return -ENXIO;
  1639. }
  1640. printk(KERN_INFO "fb%d: %s frame buffer devicen",
  1641.        GET_FB_IDX(fb_info.info.node),fb_info.info.modename);
  1642. num_sst++;
  1643. if (dev <= 0) /* we use the first card only for now (==0) */
  1644. return 0;
  1645. }
  1646. return -ENXIO;  /* no voodoo detected */
  1647. #undef sst_dev
  1648. }
  1649. /*
  1650.  * console driver
  1651.  */
  1652. static int sstfbcon_switch(int con, struct fb_info *info)
  1653. {
  1654. #define sst_info  ((struct sstfb_info *) info)
  1655. struct sstfb_par par;
  1656. f_dprintk("sstfbcon_switch(con: %d)n",con);
  1657. f_ddprintk("currcon: %dn", currcon);
  1658. v_dprintk("currcon: %dn", currcon);
  1659. if (currcon >=  0) {
  1660. if (fb_display[currcon].cmap.len)
  1661. fb_get_cmap(&fb_display[currcon].cmap, 1,
  1662.             sstfb_getcolreg, info);
  1663. }
  1664. currcon = con;
  1665. fb_display[con].var.activate = FB_ACTIVATE_NOW;
  1666. print_var(&fb_display[con].var, "&fb_display[con: %d].var",con);
  1667. sstfb_decode_var(&fb_display[con].var, &par, sst_info);
  1668. if (memcmp(&par,&(sst_info->current_par),sizeof(par))) {
  1669. sstfb_set_par(&par, sst_info);
  1670. }
  1671. sstfb_install_cmap(con, info);
  1672. return 0;
  1673. #undef sst_info
  1674. }
  1675. static int sstfbcon_updatevar(int con, struct fb_info *info)
  1676. {
  1677. f_dprintk("sstfbcon_updatevarn");
  1678. return -EINVAL;
  1679. }
  1680. static void sstfbcon_blank(int blank, struct fb_info *info)
  1681. {
  1682. f_dprintk("sstfbcon_blank(level %d)n", blank);
  1683. }
  1684. /* print some squares on the fb (presuming 16bpp)  */
  1685. static void sstfb_test16(struct sstfb_info *sst_info)
  1686. {
  1687. int i,j;
  1688. u_long p;
  1689. u_long fbbase_virt = sst_info->video.vbase;
  1690. f_dprintk("sstfb_test16n");
  1691. /* rect blanc 20x100+200+0 */
  1692. for (i=0 ; i< 100; i++) {
  1693.   p = fbbase_virt + 2048 *i+400;
  1694.   for (j=0 ; j < 10 ; j++) {
  1695.     writel( 0xffffffff, p);
  1696.     p+=4;
  1697.   }
  1698. }
  1699. /* rect bleu 180x200+0+0 */
  1700. for (i=0 ; i< 200; i++) {
  1701.   p = fbbase_virt + 2048 *i;
  1702.   for (j=0 ; j < 90 ; j++) {
  1703.     writel(0x001f001f,p);
  1704.     p+=4;
  1705.   }
  1706. }
  1707. /* carre vert 40x40+100+0 */
  1708. for (i=0 ; i< 40 ; i++) {
  1709.   p = fbbase_virt + 2048 *i + 200;
  1710.   for (j=0; j <20;j++) {
  1711.     writel(0x07e007e0, p);
  1712.     p+=4;
  1713.   }
  1714. }
  1715. /*carre rouge 40x40+100+40 */
  1716. for (i=0; i<40; i++) {
  1717.   p = fbbase_virt + 2048 * (i+40) + 200;
  1718.   for (j=0; j <20;j++) {
  1719.     writel( 0xf800f800, p);
  1720.     p+=4;
  1721.   }
  1722. }
  1723. }
  1724. /* print some squares on the fb (24/32bpp)  */
  1725. #ifdef EN_24_32_BPP
  1726. static void sstfb_test32(struct sstfb_info *sst_info)
  1727. {
  1728. int i,j;
  1729. u_long p;
  1730. u32 fbbase_virt = sst_info->video.vbase;
  1731. f_dprintk("sstfb_test32n");
  1732. /* rect blanc 20x100+200+0 */
  1733. for (i=0 ; i< 100; i++) {
  1734.   p = fbbase_virt + 4096*i + 800;
  1735.   for (j=0 ; j < 20 ; j++) {
  1736.     writel( 0x00ffffff, p);
  1737.     p+=4;
  1738.   }
  1739. }
  1740. /* rect bleu 180x200+0+0 */
  1741. for (i=0 ; i< 200; i++) {
  1742.   p = fbbase_virt + 4096 * i;
  1743.   for (j=0 ; j < 180 ; j++) {
  1744.     writel(0x000000ff,p);
  1745.     p+=4;
  1746.   }
  1747. }
  1748. /* carre vert 40x40+100+0 */
  1749. for (i=0 ; i< 40 ; i++) {
  1750.   p = fbbase_virt + 4096 *i + 400;
  1751.   for (j=0; j <40;j++) {
  1752.     writel(0x0000ff00, p);
  1753.     p+=4;
  1754.   }
  1755. }
  1756. /*carre rouge 40x40+100+10 */
  1757. for (i=0; i<40; i++) {
  1758.   p = fbbase_virt + 4096 * (i+40) + 400;
  1759.   for (j=0; j <40;j++) {
  1760.     writel( 0x00ff0000, p);
  1761.     p+=4;
  1762.   }
  1763. }
  1764. }
  1765. #endif /* EN_24_32_BPP */
  1766. #ifdef MODULE
  1767. int init_module(void)
  1768. {
  1769. f_dprintk("init_modulen");
  1770. sstfb_init();
  1771. if (num_sst == 0 )
  1772. return -ENXIO;
  1773. return 0;
  1774. }
  1775. void cleanup_module(void)
  1776. {
  1777. f_dprintk("cleanup_modulen");
  1778. f_ddprintk("conf %dn",fb_info.configured);
  1779. if (fb_info.configured) {
  1780. sst_shutdown();
  1781. iounmap((void*)fb_info.mmio.vbase);
  1782. iounmap((void*)fb_info.video.vbase);
  1783. unregister_framebuffer(&fb_info.info);
  1784. }
  1785. }
  1786. MODULE_AUTHOR("(c) 2000,2001 Ghozlane Toumi <gtoumi@messel.emse.fr>");
  1787. MODULE_DESCRIPTION("FBDev driver for 3dfx Voodoo Graphics and Voodoo2 based video boards");
  1788. MODULE_LICENSE("GPL");
  1789. MODULE_PARM(mem, "i");
  1790. MODULE_PARM_DESC(mem, "Size of frame buffer memory in MiB (1, 2, 4 Mb, default=autodetect)");
  1791. MODULE_PARM(vgapass, "i");
  1792. MODULE_PARM_DESC(vgapass, "Enable VGA PassThrough cable (0 or 1) (default=0)");
  1793. MODULE_PARM(inverse, "i");
  1794. MODULE_PARM_DESC(inverse, "Inverse colormap (0 or 1) (default=0)");
  1795. MODULE_PARM(clipping , "i");
  1796. MODULE_PARM_DESC(clipping, "Enable clipping (slower, safer) (0 or 1) (default=1)");
  1797. MODULE_PARM(gfxclk , "i");
  1798. MODULE_PARM_DESC(gfxclk, "Force graphic chip frequency in Mhz. DANGEROUS. (default=auto)");
  1799. MODULE_PARM(slowpci, "i");
  1800. MODULE_PARM_DESC(slowpci, "Uses slow PCI settings (0 or 1) (default=0)");
  1801. MODULE_PARM(dev,"i");
  1802. MODULE_PARM_DESC(dev , "Attach to device ID (0..n) (default=1st device)");
  1803. #endif /* MODULE */
  1804. /*
  1805.  * Overrides for Emacs so that we follow Linus's tabbing style.
  1806.  * ---------------------------------------------------------------------------
  1807.  * Local variables:
  1808.  * c-basic-offset: 8
  1809.  * End:
  1810.  */
  1811. #if 0
  1812. void Dump_regs ( void)
  1813. {
  1814. struct { u32 reg ; char * reg_name;}  pci_regs [] =  {
  1815. { PCI_INIT_ENABLE, "initenable"},
  1816. { PCI_VCLK_ENABLE, "enable vclk"}, 
  1817. { PCI_VCLK_DISABLE, "disable vclk"}, 
  1818. };
  1819. struct { u32 reg ; char * reg_name;}  sst_regs [] =  {
  1820. {FBIINIT0,"fbiinit0"},
  1821. {FBIINIT1,"fbiinit1"},
  1822. {FBIINIT2,"fbiinit2"},
  1823. {FBIINIT3,"fbiinit3"},
  1824. {FBIINIT4,"fbiinit4"},
  1825. {FBIINIT5,"fbiinit5"},
  1826. {FBIINIT6,"fbiinit6"},
  1827. {FBIINIT7,"fbiinit7"},
  1828. {LFBMODE,"lfbmode"},
  1829. {FBZMODE,"fbzmode"},
  1830. };
  1831. u32 pci_res[sizeof(pci_regs)/sizeof(pci_regs[0])];
  1832. u32 sst_res[sizeof(sst_regs)/sizeof(sst_regs[0])];
  1833. struct pci_dev * dev = fb_info.dev;
  1834. int i;
  1835. for (i=0; i<(sizeof(pci_regs)/sizeof(pci_regs[0])) ; i++ ) {
  1836. pci_read_config_dword ( dev, pci_regs[i].reg , &pci_res[i]) ;
  1837. }
  1838. for (i=0; i<(sizeof(sst_regs)/sizeof(sst_regs[0])) ; i++ ) {
  1839. sst_res[i]=sst_read(sst_regs[i].reg);
  1840. }
  1841. dprintk ("Dump regsn");
  1842. for (i=0; i<(sizeof(pci_regs)/sizeof(pci_regs[0])) ; i++ ) {
  1843. dprintk("%s = %0#10xn", pci_regs[i].reg_name , pci_res[i]) ;
  1844. }
  1845. for (i=0; i<(sizeof(sst_regs)/sizeof(sst_regs[0])) ; i++ ) {
  1846. dprintk("%s = %0#10xn", sst_regs[i].reg_name , sst_res[i]) ;
  1847. }
  1848. }
  1849. #endif