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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/video/riva/fbdev.c - nVidia RIVA 128/TNT/TNT2 fb driver
  3.  *
  4.  * Maintained by Ani Joshi <ajoshi@shell.unixbox.com>
  5.  *
  6.  * Copyright 1999-2000 Jeff Garzik
  7.  *
  8.  * Contributors:
  9.  *
  10.  * Ani Joshi:  Lots of debugging and cleanup work, really helped
  11.  * get the driver going
  12.  *
  13.  * Ferenc Bakonyi:  Bug fixes, cleanup, modularization
  14.  *
  15.  * Jindrich Makovicka:  Accel code help, hw cursor, mtrr
  16.  *
  17.  * Initial template from skeletonfb.c, created 28 Dec 1997 by Geert Uytterhoeven
  18.  * Includes riva_hw.c from nVidia, see copyright below.
  19.  * KGI code provided the basis for state storage, init, and mode switching.
  20.  *
  21.  * This file is subject to the terms and conditions of the GNU General Public
  22.  * License.  See the file COPYING in the main directory of this archive
  23.  * for more details.
  24.  *
  25.  * Known bugs and issues:
  26.  * restoring text mode fails
  27.  * doublescan modes are broken
  28.  * option 'noaccel' has no effect
  29.  */
  30. #include <linux/config.h>
  31. #include <linux/module.h>
  32. #include <linux/kernel.h>
  33. #include <linux/errno.h>
  34. #include <linux/string.h>
  35. #include <linux/mm.h>
  36. #include <linux/selection.h>
  37. #include <linux/tty.h>
  38. #include <linux/slab.h>
  39. #include <linux/delay.h>
  40. #include <linux/fb.h>
  41. #include <linux/init.h>
  42. #include <linux/pci.h>
  43. #include <linux/console.h>
  44. #ifdef CONFIG_MTRR
  45. #include <asm/mtrr.h>
  46. #endif
  47. #include "rivafb.h"
  48. #include "nvreg.h"
  49. #ifndef CONFIG_PCI /* sanity check */
  50. #error This driver requires PCI support.
  51. #endif
  52. /* version number of this driver */
  53. #define RIVAFB_VERSION "0.9.2a"
  54. /* ------------------------------------------------------------------------- *
  55.  *
  56.  * various helpful macros and constants
  57.  *
  58.  * ------------------------------------------------------------------------- */
  59. #undef RIVAFBDEBUG
  60. #ifdef RIVAFBDEBUG
  61. #define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  62. #else
  63. #define DPRINTK(fmt, args...)
  64. #endif
  65. #ifndef RIVA_NDEBUG
  66. #define assert(expr) 
  67. if(!(expr)) { 
  68. printk( "Assertion failed! %s,%s,%s,line=%dn",
  69. #expr,__FILE__,__FUNCTION__,__LINE__); 
  70. BUG(); 
  71. }
  72. #else
  73. #define assert(expr)
  74. #endif
  75. #define PFX "rivafb: "
  76. /* macro that allows you to set overflow bits */
  77. #define SetBitField(value,from,to) SetBF(to,GetBF(value,from))
  78. #define SetBit(n) (1<<(n))
  79. #define Set8Bits(value) ((value)&0xff)
  80. /* HW cursor parameters */
  81. #define DEFAULT_CURSOR_BLINK_RATE (40)
  82. #define CURSOR_HIDE_DELAY (20)
  83. #define CURSOR_SHOW_DELAY (3)
  84. #define CURSOR_COLOR 0x7fff
  85. #define TRANSPARENT_COLOR 0x0000
  86. #define MAX_CURS 32
  87. /* ------------------------------------------------------------------------- *
  88.  *
  89.  * prototypes
  90.  *
  91.  * ------------------------------------------------------------------------- */
  92. static void rivafb_blank(int blank, struct fb_info *info);
  93. extern void riva_setup_accel(struct rivafb_info *rinfo);
  94. extern inline void wait_for_idle(struct rivafb_info *rinfo);
  95. /* ------------------------------------------------------------------------- *
  96.  *
  97.  * card identification
  98.  *
  99.  * ------------------------------------------------------------------------- */
  100. enum riva_chips {
  101. CH_RIVA_128 = 0,
  102. CH_RIVA_TNT,
  103. CH_RIVA_TNT2,
  104. CH_RIVA_UTNT2, /* UTNT2 */
  105. CH_RIVA_VTNT2, /* VTNT2 */
  106. CH_RIVA_UVTNT2, /* VTNT2 */
  107. CH_RIVA_ITNT2, /* ITNT2 */
  108. CH_GEFORCE_SDR,
  109. CH_GEFORCE_DDR,
  110. CH_QUADRO,
  111. CH_GEFORCE2_MX,
  112. CH_QUADRO2_MXR,
  113. CH_GEFORCE2_GTS,
  114. CH_GEFORCE2_ULTRA,
  115. CH_QUADRO2_PRO,
  116. CH_GEFORCE2_GO,
  117.         CH_GEFORCE3,
  118.         CH_GEFORCE3_1,
  119.         CH_GEFORCE3_2,
  120.         CH_QUADRO_DDC
  121. };
  122. /* directly indexed by riva_chips enum, above */
  123. static struct riva_chip_info {
  124. const char *name;
  125. unsigned arch_rev;
  126. } riva_chip_info[] __devinitdata = {
  127. { "RIVA-128", NV_ARCH_03 },
  128. { "RIVA-TNT", NV_ARCH_04 },
  129. { "RIVA-TNT2", NV_ARCH_04 },
  130. { "RIVA-UTNT2", NV_ARCH_04 },
  131. { "RIVA-VTNT2", NV_ARCH_04 },
  132. { "RIVA-UVTNT2", NV_ARCH_04 },
  133. { "RIVA-ITNT2", NV_ARCH_04 },
  134. { "GeForce-SDR", NV_ARCH_10},
  135. { "GeForce-DDR", NV_ARCH_10},
  136. { "Quadro", NV_ARCH_10},
  137. { "GeForce2-MX", NV_ARCH_10},
  138. { "Quadro2-MXR", NV_ARCH_10},
  139. { "GeForce2-GTS", NV_ARCH_10},
  140. { "GeForce2-ULTRA", NV_ARCH_10},
  141. { "Quadro2-PRO", NV_ARCH_10},
  142.         { "GeForce2-Go", NV_ARCH_10},
  143.         { "GeForce3", NV_ARCH_20}, 
  144.         { "GeForce3 Ti 200", NV_ARCH_20},
  145.         { "GeForce3 Ti 500", NV_ARCH_20},
  146.         { "Quadro DDC", NV_ARCH_20}
  147. };
  148. static struct pci_device_id rivafb_pci_tbl[] __devinitdata = {
  149. { PCI_VENDOR_ID_NVIDIA_SGS, PCI_DEVICE_ID_NVIDIA_SGS_RIVA128,
  150.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_128 },
  151. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_TNT,
  152.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_TNT },
  153. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_TNT2,
  154.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_TNT2 },
  155. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_UTNT2,
  156.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_UTNT2 },
  157. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_VTNT2,
  158.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_VTNT2 },
  159. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_UVTNT2,
  160.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_VTNT2 },
  161. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_ITNT2,
  162.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_RIVA_ITNT2 },
  163. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE_SDR,
  164.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE_SDR },
  165. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE_DDR,
  166.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE_DDR },
  167. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_QUADRO,
  168.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_QUADRO },
  169. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_MX,
  170.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_MX },
  171. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_MX2,
  172.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_MX },
  173. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_QUADRO2_MXR,
  174.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_QUADRO2_MXR },
  175. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GTS,
  176.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_GTS },
  177. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GTS2,
  178.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_GTS },
  179. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_ULTRA,
  180.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_ULTRA },
  181. { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_QUADRO2_PRO,
  182.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_QUADRO2_PRO },
  183.         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE2_GO,
  184.           PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE2_GO },
  185.         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE3,
  186.           PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE3 },
  187.         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE3_1,
  188.           PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE3_1 },
  189.         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_GEFORCE3_2,
  190.           PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_GEFORCE3_2 },
  191.         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_QUADRO_DDC,
  192.           PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_QUADRO_DDC },
  193. { 0, } /* terminate list */
  194. };
  195. MODULE_DEVICE_TABLE(pci, rivafb_pci_tbl);
  196. /* ------------------------------------------------------------------------- *
  197.  *
  198.  * framebuffer related structures
  199.  *
  200.  * ------------------------------------------------------------------------- */
  201. #ifdef FBCON_HAS_CFB8
  202. extern struct display_switch fbcon_riva8;
  203. #endif
  204. #ifdef FBCON_HAS_CFB16
  205. extern struct display_switch fbcon_riva16;
  206. #endif
  207. #ifdef FBCON_HAS_CFB32
  208. extern struct display_switch fbcon_riva32;
  209. #endif
  210. #if 0
  211. /* describes the state of a Riva board */
  212. struct rivafb_par {
  213. struct riva_regs state; /* state of hw board */
  214. __u32 visual; /* FB_VISUAL_xxx */
  215. unsigned depth; /* bpp of current mode */
  216. };
  217. #endif
  218. struct riva_cursor {
  219. int enable;
  220. int on;
  221. int vbl_cnt;
  222. int last_move_delay;
  223. int blink_rate;
  224. struct {
  225. u16 x, y;
  226. } pos, size;
  227. unsigned short image[MAX_CURS*MAX_CURS];
  228. struct timer_list *timer;
  229. };
  230. /* ------------------------------------------------------------------------- *
  231.  *
  232.  * global variables
  233.  *
  234.  * ------------------------------------------------------------------------- */
  235. struct rivafb_info *riva_boards = NULL;
  236. /* command line data, set in rivafb_setup() */
  237. static char fontname[40] __initdata = { 0 };
  238. static char noaccel __initdata = 0;
  239. static char nomove = 0;
  240. static char nohwcursor __initdata = 0;
  241. static char noblink = 0;
  242. #ifdef CONFIG_MTRR
  243. static char nomtrr __initdata = 0;
  244. #endif
  245. #ifndef MODULE
  246. static char *mode_option __initdata = NULL;
  247. #else
  248. static char *font = NULL;
  249. #endif
  250. static struct fb_var_screeninfo rivafb_default_var = {
  251. xres: 640,
  252. yres: 480,
  253. xres_virtual: 640,
  254. yres_virtual: 480,
  255. xoffset: 0,
  256. yoffset: 0,
  257. bits_per_pixel: 8,
  258. grayscale: 0,
  259. red: {0, 6, 0},
  260. green: {0, 6, 0},
  261. blue: {0, 6, 0},
  262. transp: {0, 0, 0},
  263. nonstd: 0,
  264. activate: 0,
  265. height: -1,
  266. width: -1,
  267. accel_flags: 0,
  268. pixclock: 39721,
  269. left_margin: 40,
  270. right_margin: 24,
  271. upper_margin: 32,
  272. lower_margin: 11,
  273. hsync_len: 96,
  274. vsync_len: 2,
  275. sync: 0,
  276. vmode: FB_VMODE_NONINTERLACED
  277. };
  278. /* from GGI */
  279. static const struct riva_regs reg_template = {
  280. {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* ATTR */
  281.  0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  282.  0x41, 0x01, 0x0F, 0x00, 0x00},
  283. {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* CRT  */
  284.  0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
  285.  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE3, /* 0x10 */
  286.  0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  287.  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x20 */
  288.  0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  289.  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x30 */
  290.  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  291.  0x00, /* 0x40 */
  292.  },
  293. {0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x0F, /* GRA  */
  294.  0xFF},
  295. {0x03, 0x01, 0x0F, 0x00, 0x0E}, /* SEQ  */
  296. 0xEB /* MISC */
  297. };
  298. /* ------------------------------------------------------------------------- *
  299.  *
  300.  * MMIO access macros
  301.  *
  302.  * ------------------------------------------------------------------------- */
  303. static inline void CRTCout(struct rivafb_info *rinfo, unsigned char index,
  304.    unsigned char val)
  305. {
  306. VGA_WR08(rinfo->riva.PCIO, 0x3d4, index);
  307. VGA_WR08(rinfo->riva.PCIO, 0x3d5, val);
  308. }
  309. static inline unsigned char CRTCin(struct rivafb_info *rinfo,
  310.    unsigned char index)
  311. {
  312. VGA_WR08(rinfo->riva.PCIO, 0x3d4, index);
  313. return (VGA_RD08(rinfo->riva.PCIO, 0x3d5));
  314. }
  315. static inline void GRAout(struct rivafb_info *rinfo, unsigned char index,
  316.   unsigned char val)
  317. {
  318. VGA_WR08(rinfo->riva.PVIO, 0x3ce, index);
  319. VGA_WR08(rinfo->riva.PVIO, 0x3cf, val);
  320. }
  321. static inline unsigned char GRAin(struct rivafb_info *rinfo,
  322.   unsigned char index)
  323. {
  324. VGA_WR08(rinfo->riva.PVIO, 0x3ce, index);
  325. return (VGA_RD08(rinfo->riva.PVIO, 0x3cf));
  326. }
  327. static inline void SEQout(struct rivafb_info *rinfo, unsigned char index,
  328.   unsigned char val)
  329. {
  330. VGA_WR08(rinfo->riva.PVIO, 0x3c4, index);
  331. VGA_WR08(rinfo->riva.PVIO, 0x3c5, val);
  332. }
  333. static inline unsigned char SEQin(struct rivafb_info *rinfo,
  334.   unsigned char index)
  335. {
  336. VGA_WR08(rinfo->riva.PVIO, 0x3c4, index);
  337. return (VGA_RD08(rinfo->riva.PVIO, 0x3c5));
  338. }
  339. static inline void ATTRout(struct rivafb_info *rinfo, unsigned char index,
  340.    unsigned char val)
  341. {
  342. VGA_WR08(rinfo->riva.PCIO, 0x3c0, index);
  343. VGA_WR08(rinfo->riva.PCIO, 0x3c0, val);
  344. }
  345. static inline unsigned char ATTRin(struct rivafb_info *rinfo,
  346.    unsigned char index)
  347. {
  348. VGA_WR08(rinfo->riva.PCIO, 0x3c0, index);
  349. return (VGA_RD08(rinfo->riva.PCIO, 0x3c1));
  350. }
  351. static inline void MISCout(struct rivafb_info *rinfo, unsigned char val)
  352. {
  353. VGA_WR08(rinfo->riva.PVIO, 0x3c2, val);
  354. }
  355. static inline unsigned char MISCin(struct rivafb_info *rinfo)
  356. {
  357. return (VGA_RD08(rinfo->riva.PVIO, 0x3cc));
  358. }
  359. /* ------------------------------------------------------------------------- *
  360.  *
  361.  * cursor stuff
  362.  *
  363.  * ------------------------------------------------------------------------- */
  364. /**
  365.  * riva_cursor_timer_handler - blink timer
  366.  * @dev_addr: pointer to rivafb_info object containing info for current riva board
  367.  *
  368.  * DESCRIPTION:
  369.  * Cursor blink timer.
  370.  */
  371. static void riva_cursor_timer_handler(unsigned long dev_addr)
  372. {
  373. struct rivafb_info *rinfo = (struct rivafb_info *)dev_addr;
  374. if (!rinfo->cursor) return;
  375. if (!rinfo->cursor->enable) goto out;
  376. if (rinfo->cursor->last_move_delay < 1000)
  377. rinfo->cursor->last_move_delay++;
  378. if (rinfo->cursor->vbl_cnt && --rinfo->cursor->vbl_cnt == 0) {
  379. rinfo->cursor->on ^= 1;
  380. if (rinfo->cursor->on)
  381. *(rinfo->riva.CURSORPOS) = (rinfo->cursor->pos.x & 0xFFFF)
  382.    | (rinfo->cursor->pos.y << 16);
  383. rinfo->riva.ShowHideCursor(&rinfo->riva, rinfo->cursor->on);
  384. if (!noblink)
  385. rinfo->cursor->vbl_cnt = rinfo->cursor->blink_rate;
  386. }
  387. out:
  388. rinfo->cursor->timer->expires = jiffies + (HZ / 100);
  389. add_timer(rinfo->cursor->timer);
  390. }
  391. /**
  392.  * rivafb_init_cursor - allocates cursor structure and starts blink timer
  393.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  394.  *
  395.  * DESCRIPTION:
  396.  * Allocates cursor structure and starts blink timer.
  397.  *
  398.  * RETURNS:
  399.  * Pointer to allocated cursor structure.
  400.  *
  401.  * CALLED FROM:
  402.  * rivafb_init_one()
  403.  */
  404. static struct riva_cursor * __init rivafb_init_cursor(struct rivafb_info *rinfo)
  405. {
  406. struct riva_cursor *cursor;
  407. cursor = kmalloc(sizeof(struct riva_cursor), GFP_KERNEL);
  408. if (!cursor) return 0;
  409. memset(cursor, 0, sizeof(*cursor));
  410. cursor->timer = kmalloc(sizeof(*cursor->timer), GFP_KERNEL);
  411. if (!cursor->timer) {
  412. kfree(cursor);
  413. return 0;
  414. }
  415. memset(cursor->timer, 0, sizeof(*cursor->timer));
  416. cursor->blink_rate = DEFAULT_CURSOR_BLINK_RATE;
  417. init_timer(cursor->timer);
  418. cursor->timer->expires = jiffies + (HZ / 100);
  419. cursor->timer->data = (unsigned long)rinfo;
  420. cursor->timer->function = riva_cursor_timer_handler;
  421. add_timer(cursor->timer);
  422. return cursor;
  423. }
  424. /**
  425.  * rivafb_exit_cursor - stops blink timer and releases cursor structure
  426.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  427.  *
  428.  * DESCRIPTION:
  429.  * Stops blink timer and releases cursor structure.
  430.  *
  431.  * CALLED FROM:
  432.  * rivafb_init_one()
  433.  * rivafb_remove_one()
  434.  */
  435. static void rivafb_exit_cursor(struct rivafb_info *rinfo)
  436. {
  437. struct riva_cursor *cursor = rinfo->cursor;
  438. if (cursor) {
  439. if (cursor->timer) {
  440. del_timer_sync(cursor->timer);
  441. kfree(cursor->timer);
  442. }
  443. kfree(cursor);
  444. rinfo->cursor = 0;
  445. }
  446. }
  447. /**
  448.  * rivafb_download_cursor - writes cursor shape into card registers
  449.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  450.  *
  451.  * DESCRIPTION:
  452.  * Writes cursor shape into card registers.
  453.  *
  454.  * CALLED FROM:
  455.  * riva_load_video_mode()
  456.  */
  457. static void rivafb_download_cursor(struct rivafb_info *rinfo)
  458. {
  459. int i, save;
  460. int *image;
  461. if (!rinfo->cursor) return;
  462. image = (int *)rinfo->cursor->image;
  463. save = rinfo->riva.ShowHideCursor(&rinfo->riva, 0);
  464. for (i = 0; i < (MAX_CURS*MAX_CURS*2)/sizeof(int); i++)
  465. writel(image[i], rinfo->riva.CURSOR + i);
  466. rinfo->riva.ShowHideCursor(&rinfo->riva, save);
  467. }
  468. /**
  469.  * rivafb_create_cursor - sets rectangular cursor
  470.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  471.  * @width: cursor width in pixels
  472.  * @height: cursor height in pixels
  473.  *
  474.  * DESCRIPTION:
  475.  * Sets rectangular cursor.
  476.  *
  477.  * CALLED FROM:
  478.  * rivafb_set_font()
  479.  * rivafb_set_var()
  480.  */
  481. static void rivafb_create_cursor(struct rivafb_info *rinfo, int width, int height)
  482. {
  483. struct riva_cursor *c = rinfo->cursor;
  484. int i, j, idx;
  485. if (c) {
  486. if (width <= 0 || height <= 0) {
  487. width = 8;
  488. height = 16;
  489. }
  490. if (width > MAX_CURS) width = MAX_CURS;
  491. if (height > MAX_CURS) height = MAX_CURS;
  492. c->size.x = width;
  493. c->size.y = height;
  494. idx = 0;
  495. for (i = 0; i < height; i++) {
  496. for (j = 0; j < width; j++,idx++)
  497. c->image[idx] = CURSOR_COLOR;
  498. for (j = width; j < MAX_CURS; j++,idx++)
  499. c->image[idx] = TRANSPARENT_COLOR;
  500. }
  501. for (i = height; i < MAX_CURS; i++)
  502. for (j = 0; j < MAX_CURS; j++,idx++)
  503. c->image[idx] = TRANSPARENT_COLOR;
  504. }
  505. }
  506. /**
  507.  * rivafb_set_font - change font size
  508.  * @p: pointer to display object
  509.  * @width: font width in pixels
  510.  * @height: font height in pixels
  511.  *
  512.  * DESCRIPTION:
  513.  * Callback function called if font settings changed.
  514.  *
  515.  * RETURNS:
  516.  * 1 (Always succeeds.)
  517.  */
  518. static int rivafb_set_font(struct display *p, int width, int height)
  519. {
  520. struct rivafb_info *fb = (struct rivafb_info *)(p->fb_info);
  521. rivafb_create_cursor(fb, width, height);
  522. return 1;
  523. }
  524. /**
  525.  * rivafb_cursor - cursor handler
  526.  * @p: pointer to display object
  527.  * @mode: cursor mode (see CM_*)
  528.  * @x: cursor x coordinate in characters
  529.  * @y: cursor y coordinate in characters
  530.  *
  531.  * DESCRIPTION:
  532.  * Cursor handler.
  533.  */
  534. static void rivafb_cursor(struct display *p, int mode, int x, int y)
  535. {
  536. struct rivafb_info *rinfo = (struct rivafb_info *)(p->fb_info);
  537. struct riva_cursor *c = rinfo->cursor;
  538. if (!c) return;
  539. x = x * fontwidth(p) - p->var.xoffset;
  540. y = y * fontheight(p) - p->var.yoffset;
  541. if (c->pos.x == x && c->pos.y == y && (mode == CM_ERASE) == !c->enable)
  542. return;
  543. c->enable = 0;
  544. if (c->on) rinfo->riva.ShowHideCursor(&rinfo->riva, 0);
  545. c->pos.x = x;
  546. c->pos.y = y;
  547. switch (mode) {
  548. case CM_ERASE:
  549. c->on = 0;
  550. break;
  551. case CM_DRAW:
  552. case CM_MOVE:
  553. if (c->last_move_delay <= 1) { /* rapid cursor movement */
  554. c->vbl_cnt = CURSOR_SHOW_DELAY;
  555. } else {
  556. *(rinfo->riva.CURSORPOS) = (x & 0xFFFF) | (y << 16);
  557. rinfo->riva.ShowHideCursor(&rinfo->riva, 1);
  558. if (!noblink) c->vbl_cnt = CURSOR_HIDE_DELAY;
  559. c->on = 1;
  560. }
  561. c->last_move_delay = 0;
  562. c->enable = 1;
  563. break;
  564. }
  565. }
  566. /* ------------------------------------------------------------------------- *
  567.  *
  568.  * general utility functions
  569.  *
  570.  * ------------------------------------------------------------------------- */
  571. /**
  572.  * riva_set_dispsw - sets dispsw
  573.  * @rinfo: pointer to internal driver struct for a given Riva card
  574.  * @disp: pointer to display object
  575.  *
  576.  * DESCRIPTION:
  577.  * Sets up console low level operations depending on the current? color depth
  578.  * of the display.
  579.  *
  580.  * CALLED FROM:
  581.  * rivafb_set_var()
  582.  * rivafb_switch()
  583.  * riva_init_disp()
  584.  */
  585. static void riva_set_dispsw(struct rivafb_info *rinfo, struct display *disp)
  586. {
  587. int accel = disp->var.accel_flags & FB_ACCELF_TEXT;
  588. DPRINTK("ENTERn");
  589. assert(rinfo != NULL);
  590. disp->dispsw_data = NULL;
  591. disp->screen_base = rinfo->fb_base;
  592. disp->type = FB_TYPE_PACKED_PIXELS;
  593. disp->type_aux = 0;
  594. disp->ypanstep = 1;
  595. disp->ywrapstep = 0;
  596. disp->can_soft_blank = 1;
  597. disp->inverse = 0;
  598. switch (disp->var.bits_per_pixel) {
  599. #ifdef FBCON_HAS_CFB8
  600. case 8:
  601. rinfo->dispsw = accel ? fbcon_riva8 : fbcon_cfb8;
  602. disp->dispsw = &rinfo->dispsw;
  603. disp->line_length = disp->var.xres_virtual;
  604. disp->visual = FB_VISUAL_PSEUDOCOLOR;
  605. break;
  606. #endif
  607. #ifdef FBCON_HAS_CFB16
  608. case 16:
  609. rinfo->dispsw = accel ? fbcon_riva16 : fbcon_cfb16;
  610. disp->dispsw_data = &rinfo->con_cmap.cfb16;
  611. disp->dispsw = &rinfo->dispsw;
  612. disp->line_length = disp->var.xres_virtual * 2;
  613. disp->visual = FB_VISUAL_DIRECTCOLOR;
  614. break;
  615. #endif
  616. #ifdef FBCON_HAS_CFB32
  617. case 32:
  618. rinfo->dispsw = accel ? fbcon_riva32 : fbcon_cfb32;
  619. disp->dispsw_data = rinfo->con_cmap.cfb32;
  620. disp->dispsw = &rinfo->dispsw;
  621. disp->line_length = disp->var.xres_virtual * 4;
  622. disp->visual = FB_VISUAL_DIRECTCOLOR;
  623. break;
  624. #endif
  625. default:
  626. DPRINTK("Setting fbcon_dummy renderern");
  627. rinfo->dispsw = fbcon_dummy;
  628. disp->dispsw = &rinfo->dispsw;
  629. }
  630. /* FIXME: verify that the above code sets dsp->* fields correctly */
  631. if (rinfo->cursor) {
  632. rinfo->dispsw.cursor = rivafb_cursor;
  633. rinfo->dispsw.set_font = rivafb_set_font;
  634. }
  635. DPRINTK("EXITn");
  636. }
  637. /**
  638.  * riva_wclut - set CLUT entry
  639.  * @chip: pointer to RIVA_HW_INST object
  640.  * @regnum: register number
  641.  * @red: red component
  642.  * @green: green component
  643.  * @blue: blue component
  644.  *
  645.  * DESCRIPTION:
  646.  * Sets color register @regnum.
  647.  *
  648.  * CALLED FROM:
  649.  * riva_setcolreg()
  650.  */
  651. static void riva_wclut(RIVA_HW_INST *chip,
  652.        unsigned char regnum, unsigned char red,
  653.        unsigned char green, unsigned char blue)
  654. {
  655. VGA_WR08(chip->PDIO, 0x3c8, regnum);
  656. VGA_WR08(chip->PDIO, 0x3c9, red);
  657. VGA_WR08(chip->PDIO, 0x3c9, green);
  658. VGA_WR08(chip->PDIO, 0x3c9, blue);
  659. }
  660. /**
  661.  * riva_save_state - saves current chip state
  662.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  663.  * @regs: pointer to riva_regs object
  664.  *
  665.  * DESCRIPTION:
  666.  * Saves current chip state to @regs.
  667.  *
  668.  * CALLED FROM:
  669.  * rivafb_init_one()
  670.  */
  671. /* from GGI */
  672. static void riva_save_state(struct rivafb_info *rinfo, struct riva_regs *regs)
  673. {
  674. int i;
  675. rinfo->riva.LockUnlock(&rinfo->riva, 0);
  676. rinfo->riva.UnloadStateExt(&rinfo->riva, &regs->ext);
  677. regs->misc_output = MISCin(rinfo);
  678. for (i = 0; i < NUM_CRT_REGS; i++) {
  679. regs->crtc[i] = CRTCin(rinfo, i);
  680. }
  681. for (i = 0; i < NUM_ATC_REGS; i++) {
  682. regs->attr[i] = ATTRin(rinfo, i);
  683. }
  684. for (i = 0; i < NUM_GRC_REGS; i++) {
  685. regs->gra[i] = GRAin(rinfo, i);
  686. }
  687. for (i = 0; i < NUM_SEQ_REGS; i++) {
  688. regs->seq[i] = SEQin(rinfo, i);
  689. }
  690. }
  691. /**
  692.  * riva_load_state - loads current chip state
  693.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  694.  * @regs: pointer to riva_regs object
  695.  *
  696.  * DESCRIPTION:
  697.  * Loads chip state from @regs.
  698.  *
  699.  * CALLED FROM:
  700.  * riva_load_video_mode()
  701.  * rivafb_init_one()
  702.  * rivafb_remove_one()
  703.  */
  704. /* from GGI */
  705. static void riva_load_state(struct rivafb_info *rinfo, struct riva_regs *regs)
  706. {
  707. int i;
  708. RIVA_HW_STATE *state = &regs->ext;
  709. CRTCout(rinfo, 0x11, 0x00);
  710. rinfo->riva.LockUnlock(&rinfo->riva, 0);
  711. rinfo->riva.LoadStateExt(&rinfo->riva, state);
  712. MISCout(rinfo, regs->misc_output);
  713. for (i = 0; i < NUM_CRT_REGS; i++) {
  714. switch (i) {
  715. case 0x19:
  716. case 0x20 ... 0x40:
  717. break;
  718. default:
  719. CRTCout(rinfo, i, regs->crtc[i]);
  720. }
  721. }
  722. for (i = 0; i < NUM_ATC_REGS; i++) {
  723. ATTRout(rinfo, i, regs->attr[i]);
  724. }
  725. for (i = 0; i < NUM_GRC_REGS; i++) {
  726. GRAout(rinfo, i, regs->gra[i]);
  727. }
  728. for (i = 0; i < NUM_SEQ_REGS; i++) {
  729. SEQout(rinfo, i, regs->seq[i]);
  730. }
  731. }
  732. /**
  733.  * riva_load_video_mode - calculate timings
  734.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  735.  * @video_mode: video mode to set
  736.  *
  737.  * DESCRIPTION:
  738.  * Calculate some timings and then send em off to riva_load_state().
  739.  *
  740.  * CALLED FROM:
  741.  * rivafb_set_var()
  742.  */
  743. static void riva_load_video_mode(struct rivafb_info *rinfo,
  744.  struct fb_var_screeninfo *video_mode)
  745. {
  746. struct riva_regs newmode;
  747. int bpp, width, hDisplaySize, hDisplay, hStart,
  748.     hEnd, hTotal, height, vDisplay, vStart, vEnd, vTotal, dotClock;
  749. /* time to calculate */
  750. rivafb_blank(1, (struct fb_info *)rinfo);
  751. bpp = video_mode->bits_per_pixel;
  752. if (bpp == 16 && video_mode->green.length == 5)
  753. bpp = 15;
  754. width = video_mode->xres_virtual;
  755. hDisplaySize = video_mode->xres;
  756. hDisplay = (hDisplaySize / 8) - 1;
  757. hStart = (hDisplaySize + video_mode->right_margin) / 8 + 2;
  758. hEnd = (hDisplaySize + video_mode->right_margin +
  759. video_mode->hsync_len) / 8 - 1;
  760. hTotal = (hDisplaySize + video_mode->right_margin +
  761.   video_mode->hsync_len + video_mode->left_margin) / 8 - 1;
  762. height = video_mode->yres_virtual;
  763. vDisplay = video_mode->yres - 1;
  764. vStart = video_mode->yres + video_mode->lower_margin - 1;
  765. vEnd = video_mode->yres + video_mode->lower_margin +
  766.        video_mode->vsync_len - 1;
  767. vTotal = video_mode->yres + video_mode->lower_margin +
  768.  video_mode->vsync_len + video_mode->upper_margin + 2;
  769. dotClock = 1000000000 / video_mode->pixclock;
  770. memcpy(&newmode, &reg_template, sizeof(struct riva_regs));
  771. newmode.crtc[0x0] = Set8Bits (hTotal - 4);
  772. newmode.crtc[0x1] = Set8Bits (hDisplay);
  773. newmode.crtc[0x2] = Set8Bits (hDisplay);
  774. newmode.crtc[0x3] = SetBitField (hTotal, 4: 0, 4:0) | SetBit (7);
  775. newmode.crtc[0x4] = Set8Bits (hStart);
  776. newmode.crtc[0x5] = SetBitField (hTotal, 5: 5, 7:7)
  777. | SetBitField (hEnd, 4: 0, 4:0);
  778. newmode.crtc[0x6] = SetBitField (vTotal, 7: 0, 7:0);
  779. newmode.crtc[0x7] = SetBitField (vTotal, 8: 8, 0:0)
  780. | SetBitField (vDisplay, 8: 8, 1:1)
  781. | SetBitField (vStart, 8: 8, 2:2)
  782. | SetBitField (vDisplay, 8: 8, 3:3)
  783. | SetBit (4)
  784. | SetBitField (vTotal, 9: 9, 5:5)
  785. | SetBitField (vDisplay, 9: 9, 6:6)
  786. | SetBitField (vStart, 9: 9, 7:7);
  787. newmode.crtc[0x9] = SetBitField (vDisplay, 9: 9, 5:5)
  788. | SetBit (6);
  789. newmode.crtc[0x10] = Set8Bits (vStart);
  790. newmode.crtc[0x11] = SetBitField (vEnd, 3: 0, 3:0)
  791. | SetBit (5);
  792. newmode.crtc[0x12] = Set8Bits (vDisplay);
  793. newmode.crtc[0x13] = ((width / 8) * ((bpp + 1) / 8)) & 0xFF;
  794. newmode.crtc[0x15] = Set8Bits (vDisplay);
  795. newmode.crtc[0x16] = Set8Bits (vTotal + 1);
  796. newmode.ext.bpp = bpp;
  797. newmode.ext.width = width;
  798. newmode.ext.height = height;
  799. rinfo->riva.CalcStateExt(&rinfo->riva, &newmode.ext, bpp, width,
  800.   hDisplaySize, hDisplay, hStart, hEnd,
  801.   hTotal, height, vDisplay, vStart, vEnd,
  802.   vTotal, dotClock);
  803. rinfo->current_state = newmode;
  804. riva_load_state(rinfo, &rinfo->current_state);
  805. rinfo->riva.LockUnlock(&rinfo->riva, 0); /* important for HW cursor */
  806. rivafb_download_cursor(rinfo);
  807. }
  808. /**
  809.  * riva_board_list_add - maintains board list
  810.  * @board_list: root node of list of boards
  811.  * @new_node: new node to be added
  812.  *
  813.  * DESCRIPTION:
  814.  * Adds @new_node to the list referenced by @board_list.
  815.  *
  816.  * RETURNS:
  817.  * New root node
  818.  *
  819.  * CALLED FROM:
  820.  * rivafb_init_one()
  821.  */
  822. static struct rivafb_info *riva_board_list_add(struct rivafb_info *board_list,
  823.        struct rivafb_info *new_node)
  824. {
  825. struct rivafb_info *i_p = board_list;
  826. new_node->next = NULL;
  827. if (board_list == NULL)
  828. return new_node;
  829. while (i_p->next != NULL)
  830. i_p = i_p->next;
  831. i_p->next = new_node;
  832. return board_list;
  833. }
  834. /**
  835.  * riva_board_list_del - maintains board list
  836.  * @board_list: root node of list of boards
  837.  * @del_node: node to be removed
  838.  *
  839.  * DESCRIPTION:
  840.  * Removes @del_node from the list referenced by @board_list.
  841.  *
  842.  * RETURNS:
  843.  * New root node
  844.  *
  845.  * CALLED FROM:
  846.  * rivafb_remove_one()
  847.  */
  848. static struct rivafb_info *riva_board_list_del(struct rivafb_info *board_list,
  849.        struct rivafb_info *del_node)
  850. {
  851. struct rivafb_info *i_p = board_list;
  852. if (board_list == del_node)
  853. return del_node->next;
  854. while (i_p->next != del_node)
  855. i_p = i_p->next;
  856. i_p->next = del_node->next;
  857. return board_list;
  858. }
  859. /**
  860.  * rivafb_do_maximize - 
  861.  * @rinfo: pointer to rivafb_info object containing info for current riva board
  862.  * @var:
  863.  * @v:
  864.  * @nom:
  865.  * @den:
  866.  *
  867.  * DESCRIPTION:
  868.  * .
  869.  *
  870.  * RETURNS:
  871.  * -EINVAL on failure, 0 on success
  872.  * 
  873.  *
  874.  * CALLED FROM:
  875.  * rivafb_set_var()
  876.  */
  877. static int rivafb_do_maximize(struct rivafb_info *rinfo,
  878.       struct fb_var_screeninfo *var,
  879.       struct fb_var_screeninfo *v,
  880.       int nom, int den)
  881. {
  882. static struct {
  883. int xres, yres;
  884. } modes[] = {
  885. {1600, 1280},
  886. {1280, 1024},
  887. {1024, 768},
  888. {800, 600},
  889. {640, 480},
  890. {-1, -1}
  891. };
  892. int i;
  893. /* use highest possible virtual resolution */
  894. if (v->xres_virtual == -1 && v->yres_virtual == -1) {
  895. printk(KERN_WARNING PFX
  896.        "using maximum available virtual resolutionn");
  897. for (i = 0; modes[i].xres != -1; i++) {
  898. if (modes[i].xres * nom / den * modes[i].yres <
  899.     rinfo->ram_amount / 2)
  900. break;
  901. }
  902. if (modes[i].xres == -1) {
  903. printk(KERN_ERR PFX
  904.        "could not find a virtual resolution that fits into video memory!!n");
  905. DPRINTK("EXIT - EINVAL errorn");
  906. return -EINVAL;
  907. }
  908. v->xres_virtual = modes[i].xres;
  909. v->yres_virtual = modes[i].yres;
  910. printk(KERN_INFO PFX
  911.        "virtual resolution set to maximum of %dx%dn",
  912.        v->xres_virtual, v->yres_virtual);
  913. } else if (v->xres_virtual == -1) {
  914. v->xres_virtual = (rinfo->ram_amount * den /
  915. (nom * v->yres_virtual * 2)) & ~15;
  916. printk(KERN_WARNING PFX
  917.        "setting virtual X resolution to %dn", v->xres_virtual);
  918. } else if (v->yres_virtual == -1) {
  919. v->xres_virtual = (v->xres_virtual + 15) & ~15;
  920. v->yres_virtual = rinfo->ram_amount * den /
  921. (nom * v->xres_virtual * 2);
  922. printk(KERN_WARNING PFX
  923.        "setting virtual Y resolution to %dn", v->yres_virtual);
  924. } else {
  925. v->xres_virtual = (v->xres_virtual + 15) & ~15;
  926. if (v->xres_virtual * nom / den * v->yres_virtual > rinfo->ram_amount) {
  927. printk(KERN_ERR PFX
  928.        "mode %dx%dx%d rejected...resolution too high to fit into video memory!n",
  929.        var->xres, var->yres, var->bits_per_pixel);
  930. DPRINTK("EXIT - EINVAL errorn");
  931. return -EINVAL;
  932. }
  933. }
  934. if (v->xres_virtual * nom / den >= 8192) {
  935. printk(KERN_WARNING PFX
  936.        "virtual X resolution (%d) is too high, lowering to %dn",
  937.        v->xres_virtual, 8192 * den / nom - 16);
  938. v->xres_virtual = 8192 * den / nom - 16;
  939. }
  940. if (v->xres_virtual < v->xres) {
  941. printk(KERN_ERR PFX
  942.        "virtual X resolution (%d) is smaller than realn", v->xres_virtual);
  943. return -EINVAL;
  944. }
  945. if (v->yres_virtual < v->yres) {
  946. printk(KERN_ERR PFX
  947.        "virtual Y resolution (%d) is smaller than realn", v->yres_virtual);
  948. return -EINVAL;
  949. }
  950. return 0;
  951. }
  952. /* ------------------------------------------------------------------------- *
  953.  *
  954.  * internal fb_ops helper functions
  955.  *
  956.  * ------------------------------------------------------------------------- */
  957. /**
  958.  * riva_get_cmap_len - query current color map length
  959.  * @var: standard kernel fb changeable data
  960.  *
  961.  * DESCRIPTION:
  962.  * Get current color map length.
  963.  *
  964.  * RETURNS:
  965.  * Length of color map
  966.  *
  967.  * CALLED FROM:
  968.  * riva_getcolreg()
  969.  * riva_setcolreg()
  970.  * rivafb_get_cmap()
  971.  * rivafb_set_cmap()
  972.  */
  973. static int riva_get_cmap_len(const struct fb_var_screeninfo *var)
  974. {
  975. int rc = 16; /* reasonable default */
  976. assert(var != NULL);
  977. switch (var->bits_per_pixel) {
  978. #ifdef FBCON_HAS_CFB8
  979. case 8:
  980. rc = 256; /* pseudocolor... 256 entries HW palette */
  981. break;
  982. #endif
  983. #ifdef FBCON_HAS_CFB16
  984. case 15:
  985. rc = 15; /* fix for 15 bpp depths on Riva 128 based cards */
  986. break;
  987. case 16:
  988. rc = 16; /* directcolor... 16 entries SW palette */
  989. break; /* Mystique: truecolor, 16 entries SW palette, HW palette hardwired into 1:1 mapping */
  990. #endif
  991. #ifdef FBCON_HAS_CFB32
  992. case 32:
  993. rc = 16; /* directcolor... 16 entries SW palette */
  994. break; /* Mystique: truecolor, 16 entries SW palette, HW palette hardwired into 1:1 mapping */
  995. #endif
  996. default:
  997. /* should not occur */
  998. break;
  999. }
  1000. return rc;
  1001. }
  1002. /**
  1003.  * riva_getcolreg
  1004.  * @regno: register index
  1005.  * @red: red component
  1006.  * @green: green component
  1007.  * @blue: blue component
  1008.  * @transp: transparency
  1009.  * @info: pointer to rivafb_info object containing info for current riva board
  1010.  *
  1011.  * DESCRIPTION:
  1012.  * Read a single color register and split it into colors/transparent.
  1013.  * The return values must have a 16 bit magnitude.
  1014.  *
  1015.  * RETURNS:
  1016.  * Return != 0 for invalid regno.
  1017.  *
  1018.  * CALLED FROM:
  1019.  * rivafb_get_cmap()
  1020.  * rivafb_switch()
  1021.  * fbcmap.c:fb_get_cmap()
  1022.  * fbgen.c:fbgen_get_cmap()
  1023.  * fbgen.c:fbgen_switch()
  1024.  */
  1025. static int riva_getcolreg(unsigned regno, unsigned *red, unsigned *green,
  1026.   unsigned *blue, unsigned *transp,
  1027.   struct fb_info *info)
  1028. {
  1029. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1030. if (regno >= riva_get_cmap_len(&rivainfo->currcon_display->var))
  1031. return 1;
  1032. *red = rivainfo->palette[regno].red;
  1033. *green = rivainfo->palette[regno].green;
  1034. *blue = rivainfo->palette[regno].blue;
  1035. *transp = 0;
  1036. return 0;
  1037. }
  1038. /**
  1039.  * riva_setcolreg
  1040.  * @regno: register index
  1041.  * @red: red component
  1042.  * @green: green component
  1043.  * @blue: blue component
  1044.  * @transp: transparency
  1045.  * @info: pointer to rivafb_info object containing info for current riva board
  1046.  *
  1047.  * DESCRIPTION:
  1048.  * Set a single color register. The values supplied have a 16 bit
  1049.  * magnitude.
  1050.  *
  1051.  * RETURNS:
  1052.  * Return != 0 for invalid regno.
  1053.  *
  1054.  * CALLED FROM:
  1055.  * rivafb_set_cmap()
  1056.  * fbcmap.c:fb_set_cmap()
  1057.  * fbgen.c:fbgen_get_cmap()
  1058.  * fbgen.c:fbgen_install_cmap()
  1059.  * fbgen.c:fbgen_set_var()
  1060.  * fbgen.c:fbgen_switch()
  1061.  * fbgen.c:fbgen_blank()
  1062.  * fbgen.c:fbgen_blank()
  1063.  */
  1064. static int riva_setcolreg(unsigned regno, unsigned red, unsigned green,
  1065.   unsigned blue, unsigned transp,
  1066.   struct fb_info *info)
  1067. {
  1068. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1069. RIVA_HW_INST *chip = &rivainfo->riva;
  1070. struct display *p;
  1071. DPRINTK("ENTERn");
  1072. assert(rivainfo != NULL);
  1073. assert(rivainfo->currcon_display != NULL);
  1074. p = rivainfo->currcon_display;
  1075. if (regno >= riva_get_cmap_len(&p->var))
  1076. return -EINVAL;
  1077. rivainfo->palette[regno].red = red;
  1078. rivainfo->palette[regno].green = green;
  1079. rivainfo->palette[regno].blue = blue;
  1080. if (p->var.grayscale) {
  1081. /* gray = 0.30*R + 0.59*G + 0.11*B */
  1082. red = green = blue =
  1083.     (red * 77 + green * 151 + blue * 28) >> 8;
  1084. }
  1085. switch (p->var.bits_per_pixel) {
  1086. #ifdef FBCON_HAS_CFB8
  1087. case 8:
  1088. /* "transparent" stuff is completely ignored. */
  1089. riva_wclut(chip, regno, red >> 8, green >> 8, blue >> 8);
  1090. break;
  1091. #endif /* FBCON_HAS_CFB8 */
  1092. #ifdef FBCON_HAS_CFB16
  1093. case 16:
  1094. assert(regno < 16);
  1095. if (p->var.green.length == 5) {
  1096. /* 0rrrrrgg gggbbbbb */
  1097. rivainfo->con_cmap.cfb16[regno] =
  1098.     ((red & 0xf800) >> 1) |
  1099.     ((green & 0xf800) >> 6) | ((blue & 0xf800) >> 11);
  1100. } else {
  1101. /* rrrrrggg gggbbbbb */
  1102. rivainfo->con_cmap.cfb16[regno] =
  1103.     ((red & 0xf800) >> 0) |
  1104.     ((green & 0xf800) >> 5) | ((blue & 0xf800) >> 11);
  1105. }
  1106. break;
  1107. #endif /* FBCON_HAS_CFB16 */
  1108. #ifdef FBCON_HAS_CFB32
  1109. case 32:
  1110. assert(regno < 16);
  1111. rivainfo->con_cmap.cfb32[regno] =
  1112.     ((red & 0xff00) << 8) |
  1113.     ((green & 0xff00)) | ((blue & 0xff00) >> 8);
  1114. break;
  1115. #endif /* FBCON_HAS_CFB32 */
  1116. default:
  1117. /* do nothing */
  1118. break;
  1119. }
  1120. return 0;
  1121. }
  1122. /* ------------------------------------------------------------------------- *
  1123.  *
  1124.  * framebuffer operations
  1125.  *
  1126.  * ------------------------------------------------------------------------- */
  1127. static int rivafb_get_fix(struct fb_fix_screeninfo *fix, int con,
  1128.   struct fb_info *info)
  1129. {
  1130. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1131. struct display *p;
  1132. DPRINTK("ENTERn");
  1133. assert(fix != NULL);
  1134. assert(info != NULL);
  1135. assert(rivainfo->drvr_name && rivainfo->drvr_name[0]);
  1136. assert(rivainfo->fb_base_phys > 0);
  1137. assert(rivainfo->ram_amount > 0);
  1138. p = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1139. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  1140. sprintf(fix->id, "nVidia %s", rivainfo->drvr_name);
  1141. fix->smem_start = rivainfo->fb_base_phys;
  1142. fix->smem_len = rivainfo->ram_amount;
  1143. fix->type = p->type;
  1144. fix->type_aux = p->type_aux;
  1145. fix->visual = p->visual;
  1146. fix->xpanstep = 1;
  1147. fix->ypanstep = 1;
  1148. fix->ywrapstep = 0; /* FIXME: no ywrap for now */
  1149. fix->line_length = p->line_length;
  1150. fix->mmio_start = rivainfo->ctrl_base_phys;
  1151. fix->mmio_len = rivainfo->base0_region_size;
  1152. fix->smem_start = rivainfo->fb_base_phys;
  1153. fix->smem_len = rivainfo->base1_region_size;
  1154. switch (rivainfo->riva.Architecture) {
  1155. case NV_ARCH_03:
  1156. fix->accel = FB_ACCEL_NV3;
  1157. break;
  1158. case NV_ARCH_04: /* riva_hw.c now doesn't distinguish between TNT & TNT2 */
  1159. fix->accel = FB_ACCEL_NV4;
  1160. break;
  1161. case NV_ARCH_10: /* FIXME: ID for GeForce */
  1162. case NV_ARCH_20:
  1163. fix->accel = FB_ACCEL_NV4;
  1164. break;
  1165. }
  1166. DPRINTK("EXIT, returning 0n");
  1167. return 0;
  1168. }
  1169. static int rivafb_get_var(struct fb_var_screeninfo *var, int con,
  1170.   struct fb_info *info)
  1171. {
  1172. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1173. DPRINTK("ENTERn");
  1174. assert(info != NULL);
  1175. assert(var != NULL);
  1176. *var = (con < 0) ? rivainfo->disp.var : fb_display[con].var;
  1177. DPRINTK("EXIT, returning 0n");
  1178. return 0;
  1179. }
  1180. static int rivafb_set_var(struct fb_var_screeninfo *var, int con,
  1181.   struct fb_info *info)
  1182. {
  1183. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1184. struct display *dsp;
  1185. struct fb_var_screeninfo v;
  1186. int nom, den; /* translating from pixels->bytes */
  1187. int accel;
  1188. unsigned chgvar = 0;
  1189. DPRINTK("ENTERn");
  1190. assert(info != NULL);
  1191. assert(var != NULL);
  1192. DPRINTK("Requested: %dx%dx%dn", var->xres, var->yres,
  1193. var->bits_per_pixel);
  1194. DPRINTK("  virtual: %dx%dn", var->xres_virtual,
  1195. var->yres_virtual);
  1196. DPRINTK("   offset: (%d,%d)n", var->xoffset, var->yoffset);
  1197. DPRINTK("grayscale: %dn", var->grayscale);
  1198. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1199. assert(dsp != NULL);
  1200. /* if var has changed, we should call changevar() later */
  1201. if (con >= 0) {
  1202. chgvar = ((dsp->var.xres != var->xres) ||
  1203.   (dsp->var.yres != var->yres) ||
  1204.   (dsp->var.xres_virtual != var->xres_virtual) ||
  1205.   (dsp->var.yres_virtual != var->yres_virtual) ||
  1206.   (dsp->var.accel_flags != var->accel_flags) ||
  1207.   (dsp->var.bits_per_pixel != var->bits_per_pixel)
  1208.   || memcmp(&dsp->var.red, &var->red,
  1209.     sizeof(var->red))
  1210.   || memcmp(&dsp->var.green, &var->green,
  1211.     sizeof(var->green))
  1212.   || memcmp(&dsp->var.blue, &var->blue,
  1213.     sizeof(var->blue)));
  1214. }
  1215. memcpy(&v, var, sizeof(v));
  1216. accel = v.accel_flags & FB_ACCELF_TEXT;
  1217. switch (v.bits_per_pixel) {
  1218. #ifdef FBCON_HAS_CFB8
  1219. case 1 ... 8:
  1220. v.bits_per_pixel = 8;
  1221. nom = 1;
  1222. den = 1;
  1223. v.red.offset = 0;
  1224. v.red.length = 8;
  1225. v.green.offset = 0;
  1226. v.green.length = 8;
  1227. v.blue.offset = 0;
  1228. v.blue.length = 8;
  1229. break;
  1230. #endif
  1231. #ifdef FBCON_HAS_CFB16
  1232. case 9 ... 15:
  1233. v.green.length = 5;
  1234. /* fall through */
  1235. case 16:
  1236. v.bits_per_pixel = 16;
  1237. nom = 2;
  1238. den = 1;
  1239. if (v.green.length == 5) {
  1240. /* 0rrrrrgg gggbbbbb */
  1241. v.red.offset = 10;
  1242. v.green.offset = 5;
  1243. v.blue.offset = 0;
  1244. v.red.length = 5;
  1245. v.green.length = 5;
  1246. v.blue.length = 5;
  1247. } else {
  1248. /* rrrrrggg gggbbbbb */
  1249. v.red.offset = 11;
  1250. v.green.offset = 5;
  1251. v.blue.offset = 0;
  1252. v.red.length = 5;
  1253. v.green.length = 6;
  1254. v.blue.length = 5;
  1255. }
  1256. break;
  1257. #endif
  1258. #ifdef FBCON_HAS_CFB32
  1259. case 17 ... 32:
  1260. v.bits_per_pixel = 32;
  1261. nom = 4;
  1262. den = 1;
  1263. v.red.offset = 16;
  1264. v.green.offset = 8;
  1265. v.blue.offset = 0;
  1266. v.red.length = 8;
  1267. v.green.length = 8;
  1268. v.blue.length = 8;
  1269. break;
  1270. #endif
  1271. default:
  1272. printk(KERN_ERR PFX
  1273.        "mode %dx%dx%d rejected...color depth not supported.n",
  1274.        var->xres, var->yres, var->bits_per_pixel);
  1275. DPRINTK("EXIT, returning -EINVALn");
  1276. return -EINVAL;
  1277. }
  1278. if (rivafb_do_maximize(rivainfo, var, &v, nom, den) < 0)
  1279. return -EINVAL;
  1280. if (v.xoffset < 0)
  1281. v.xoffset = 0;
  1282. if (v.yoffset < 0)
  1283. v.yoffset = 0;
  1284. /* truncate xoffset and yoffset to maximum if too high */
  1285. if (v.xoffset > v.xres_virtual - v.xres)
  1286. v.xoffset = v.xres_virtual - v.xres - 1;
  1287. if (v.yoffset > v.yres_virtual - v.yres)
  1288. v.yoffset = v.yres_virtual - v.yres - 1;
  1289. v.red.msb_right =
  1290.     v.green.msb_right =
  1291.     v.blue.msb_right =
  1292.     v.transp.offset = v.transp.length = v.transp.msb_right = 0;
  1293. switch (v.activate & FB_ACTIVATE_MASK) {
  1294. case FB_ACTIVATE_TEST:
  1295. DPRINTK("EXIT - FB_ACTIVATE_TESTn");
  1296. return 0;
  1297. case FB_ACTIVATE_NXTOPEN: /* ?? */
  1298. case FB_ACTIVATE_NOW:
  1299. break; /* continue */
  1300. default:
  1301. DPRINTK("EXIT - unknown activation typen");
  1302. return -EINVAL; /* unknown */
  1303. }
  1304. memcpy(&dsp->var, &v, sizeof(v));
  1305. if (chgvar) {
  1306. riva_set_dispsw(rivainfo, dsp);
  1307. if (accel) {
  1308. if (nomove)
  1309. dsp->scrollmode = SCROLL_YNOMOVE;
  1310. else
  1311. dsp->scrollmode = 0;
  1312. } else
  1313. dsp->scrollmode = SCROLL_YREDRAW;
  1314. if (info && info->changevar)
  1315. info->changevar(con);
  1316. }
  1317. rivafb_create_cursor(rivainfo, fontwidth(dsp), fontheight(dsp));
  1318. riva_load_video_mode(rivainfo, &v);
  1319. if (accel) riva_setup_accel(rivainfo);
  1320. DPRINTK("EXIT, returning 0n");
  1321. return 0;
  1322. }
  1323. static int rivafb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  1324.    struct fb_info *info)
  1325. {
  1326. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1327. struct display *dsp;
  1328. DPRINTK("ENTERn");
  1329. assert(rivainfo != NULL);
  1330. assert(cmap != NULL);
  1331. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1332. if (con == rivainfo->currcon) { /* current console? */
  1333. int rc = fb_get_cmap(cmap, kspc, riva_getcolreg, info);
  1334. DPRINTK("EXIT - returning %dn", rc);
  1335. return rc;
  1336. } else if (dsp->cmap.len) /* non default colormap? */
  1337. fb_copy_cmap(&dsp->cmap, cmap, kspc ? 0 : 2);
  1338. else
  1339. fb_copy_cmap(fb_default_cmap
  1340.      (riva_get_cmap_len(&dsp->var)), cmap,
  1341.      kspc ? 0 : 2);
  1342. DPRINTK("EXIT, returning 0n");
  1343. return 0;
  1344. }
  1345. static int rivafb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  1346.    struct fb_info *info)
  1347. {
  1348. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1349. struct display *dsp;
  1350. unsigned int cmap_len;
  1351. DPRINTK("ENTERn");
  1352. assert(rivainfo != NULL);
  1353. assert(cmap != NULL);
  1354. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1355. cmap_len = riva_get_cmap_len(&dsp->var);
  1356. if (dsp->cmap.len != cmap_len) {
  1357. int err = fb_alloc_cmap(&dsp->cmap, cmap_len, 0);
  1358. if (err) {
  1359. DPRINTK("EXIT - returning %dn", err);
  1360. return err;
  1361. }
  1362. }
  1363. if (con == rivainfo->currcon) { /* current console? */
  1364. int rc = fb_set_cmap(cmap, kspc, riva_setcolreg, info);
  1365. DPRINTK("EXIT - returning %dn", rc);
  1366. return rc;
  1367. } else
  1368. fb_copy_cmap(cmap, &dsp->cmap, kspc ? 0 : 1);
  1369. DPRINTK("EXIT, returning 0n");
  1370. return 0;
  1371. }
  1372. /**
  1373.  * rivafb_pan_display
  1374.  * @var: standard kernel fb changeable data
  1375.  * @con: TODO
  1376.  * @info: pointer to rivafb_info object containing info for current riva board
  1377.  *
  1378.  * DESCRIPTION:
  1379.  * Pan (or wrap, depending on the `vmode' field) the display using the
  1380.  * `xoffset' and `yoffset' fields of the `var' structure.
  1381.  * If the values don't fit, return -EINVAL.
  1382.  *
  1383.  * This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag
  1384.  */
  1385. static int rivafb_pan_display(struct fb_var_screeninfo *var, int con,
  1386.       struct fb_info *info)
  1387. {
  1388. unsigned int base;
  1389. struct display *dsp;
  1390. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1391. DPRINTK("ENTERn");
  1392. assert(rivainfo != NULL);
  1393. if (var->xoffset > (var->xres_virtual - var->xres))
  1394. return -EINVAL;
  1395. if (var->yoffset > (var->yres_virtual - var->yres))
  1396. return -EINVAL;
  1397. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1398. if (var->vmode & FB_VMODE_YWRAP) {
  1399. if (var->yoffset < 0
  1400.     || var->yoffset >= dsp->var.yres_virtual
  1401.     || var->xoffset) return -EINVAL;
  1402. } else {
  1403. if (var->xoffset + dsp->var.xres > dsp->var.xres_virtual ||
  1404.     var->yoffset + dsp->var.yres > dsp->var.yres_virtual)
  1405. return -EINVAL;
  1406. }
  1407. base = var->yoffset * dsp->line_length + var->xoffset;
  1408. if (con == rivainfo->currcon) {
  1409. rivainfo->riva.SetStartAddress(&rivainfo->riva, base);
  1410. }
  1411. dsp->var.xoffset = var->xoffset;
  1412. dsp->var.yoffset = var->yoffset;
  1413. if (var->vmode & FB_VMODE_YWRAP)
  1414. dsp->var.vmode |= FB_VMODE_YWRAP;
  1415. else
  1416. dsp->var.vmode &= ~FB_VMODE_YWRAP;
  1417. DPRINTK("EXIT, returning 0n");
  1418. return 0;
  1419. }
  1420. static int rivafb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  1421. unsigned long arg, int con, struct fb_info *info)
  1422. {
  1423. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1424. DPRINTK("ENTERn");
  1425. assert(rivainfo != NULL);
  1426. /* no rivafb-specific ioctls */
  1427. DPRINTK("EXIT, returning -EINVALn");
  1428. return -EINVAL;
  1429. }
  1430. static int rivafb_rasterimg(struct fb_info *info, int start)
  1431. {
  1432. struct rivafb_info *rinfo = (struct rivafb_info *)info;
  1433. wait_for_idle(rinfo);
  1434. return 0;
  1435. }
  1436. static int rivafb_switch(int con, struct fb_info *info)
  1437. {
  1438. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1439. struct fb_cmap *cmap;
  1440. struct display *dsp;
  1441. DPRINTK("ENTERn");
  1442. assert(rivainfo != NULL);
  1443. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1444. if (rivainfo->currcon >= 0) {
  1445. /* Do we have to save the colormap? */
  1446. cmap = &(rivainfo->currcon_display->cmap);
  1447. DPRINTK("switch1: con = %d, cmap.len = %dn",
  1448.  rivainfo->currcon, cmap->len);
  1449. if (cmap->len) {
  1450. DPRINTK("switch1a: %p %p %p %pn", cmap->red,
  1451.  cmap->green, cmap->blue, cmap->transp);
  1452. fb_get_cmap(cmap, 1, riva_getcolreg, info);
  1453. }
  1454. }
  1455. rivainfo->currcon = con;
  1456. rivainfo->currcon_display = dsp;
  1457. rivafb_set_var(&dsp->var, con, info);
  1458. riva_set_dispsw(rivainfo, dsp);
  1459. DPRINTK("EXIT, returning 0n");
  1460. return 0;
  1461. }
  1462. static int rivafb_updatevar(int con, struct fb_info *info)
  1463. {
  1464. int rc;
  1465. DPRINTK("ENTERn");
  1466. rc = (con < 0) ? -EINVAL : rivafb_pan_display(&fb_display[con].var,
  1467.       con, info);
  1468. DPRINTK("EXIT, returning %dn", rc);
  1469. return rc;
  1470. }
  1471. static void rivafb_blank(int blank, struct fb_info *info)
  1472. {
  1473. unsigned char tmp, vesa;
  1474. struct rivafb_info *rinfo = (struct rivafb_info *)info;
  1475. DPRINTK("ENTERn");
  1476. assert(rinfo != NULL);
  1477. tmp = SEQin(rinfo, 0x01) & ~0x20; /* screen on/off */
  1478. vesa = CRTCin(rinfo, 0x1a) & ~0xc0; /* sync on/off */
  1479. if (blank) {
  1480. tmp |= 0x20;
  1481. switch (blank - 1) {
  1482. case VESA_NO_BLANKING:
  1483. break;
  1484. case VESA_VSYNC_SUSPEND:
  1485. vesa |= 0x80;
  1486. break;
  1487. case VESA_HSYNC_SUSPEND:
  1488. vesa |= 0x40;
  1489. break;
  1490. case VESA_POWERDOWN:
  1491. vesa |= 0xc0;
  1492. break;
  1493. }
  1494. }
  1495. SEQout(rinfo, 0x01, tmp);
  1496. CRTCout(rinfo, 0x1a, vesa);
  1497. DPRINTK("EXITn");
  1498. }
  1499. /* ------------------------------------------------------------------------- *
  1500.  *
  1501.  * initialization helper functions
  1502.  *
  1503.  * ------------------------------------------------------------------------- */
  1504. /* kernel interface */
  1505. static struct fb_ops riva_fb_ops = {
  1506. owner: THIS_MODULE,
  1507. fb_get_fix: rivafb_get_fix,
  1508. fb_get_var: rivafb_get_var,
  1509. fb_set_var: rivafb_set_var,
  1510. fb_get_cmap: rivafb_get_cmap,
  1511. fb_set_cmap: rivafb_set_cmap,
  1512. fb_pan_display: rivafb_pan_display,
  1513. fb_ioctl: rivafb_ioctl,
  1514. fb_rasterimg: rivafb_rasterimg,
  1515. };
  1516. static int __devinit riva_init_disp_var(struct rivafb_info *rinfo)
  1517. {
  1518. #ifndef MODULE
  1519. if (mode_option)
  1520. fb_find_mode(&rinfo->disp.var, &rinfo->info, mode_option,
  1521.      NULL, 0, NULL, 8);
  1522. #endif
  1523. return 0;
  1524. }
  1525. static int __devinit riva_init_disp(struct rivafb_info *rinfo)
  1526. {
  1527. struct fb_info *info;
  1528. struct display *disp;
  1529. DPRINTK("ENTERn");
  1530. assert(rinfo != NULL);
  1531. info = &rinfo->info;
  1532. disp = &rinfo->disp;
  1533. disp->var = rivafb_default_var;
  1534. if (noaccel)
  1535. disp->var.accel_flags &= ~FB_ACCELF_TEXT;
  1536. else
  1537. disp->var.accel_flags |= FB_ACCELF_TEXT;
  1538. info->disp = disp;
  1539. /* FIXME: assure that disp->cmap is completely filled out */
  1540. rinfo->currcon_display = disp;
  1541. if ((riva_init_disp_var(rinfo)) < 0) {
  1542. DPRINTK("EXIT, returning -1n");
  1543. return -1;
  1544. }
  1545. riva_set_dispsw(rinfo, disp);
  1546. DPRINTK("EXIT, returning 0n");
  1547. return 0;
  1548. }
  1549. static int __devinit riva_set_fbinfo(struct rivafb_info *rinfo)
  1550. {
  1551. struct fb_info *info;
  1552. assert(rinfo != NULL);
  1553. info = &rinfo->info;
  1554. strcpy(info->modename, rinfo->drvr_name);
  1555. info->node = -1;
  1556. info->flags = FBINFO_FLAG_DEFAULT;
  1557. info->fbops = &riva_fb_ops;
  1558. /* FIXME: set monspecs to what??? */
  1559. info->display_fg = NULL;
  1560. strncpy(info->fontname, fontname, sizeof(info->fontname));
  1561. info->fontname[sizeof(info->fontname) - 1] = 0;
  1562. info->changevar = NULL;
  1563. info->switch_con = rivafb_switch;
  1564. info->updatevar = rivafb_updatevar;
  1565. info->blank = rivafb_blank;
  1566. if (riva_init_disp(rinfo) < 0) /* must be done last */
  1567. return -1;
  1568. return 0;
  1569. }
  1570. /* ------------------------------------------------------------------------- *
  1571.  *
  1572.  * PCI bus
  1573.  *
  1574.  * ------------------------------------------------------------------------- */
  1575. static int __devinit rivafb_init_one(struct pci_dev *pd,
  1576.      const struct pci_device_id *ent)
  1577. {
  1578. struct rivafb_info *rinfo;
  1579. struct riva_chip_info *rci = &riva_chip_info[ent->driver_data];
  1580. assert(pd != NULL);
  1581. assert(rci != NULL);
  1582. rinfo = kmalloc(sizeof(struct rivafb_info), GFP_KERNEL);
  1583. if (!rinfo)
  1584. goto err_out;
  1585. memset(rinfo, 0, sizeof(struct rivafb_info));
  1586. rinfo->drvr_name = rci->name;
  1587. rinfo->riva.Architecture = rci->arch_rev;
  1588. rinfo->pd = pd;
  1589. rinfo->base0_region_size = pci_resource_len(pd, 0);
  1590. rinfo->base1_region_size = pci_resource_len(pd, 1);
  1591. assert(rinfo->base0_region_size >= 0x00800000); /* from GGI */
  1592. assert(rinfo->base1_region_size >= 0x01000000); /* from GGI */
  1593. rinfo->ctrl_base_phys = pci_resource_start(rinfo->pd, 0);
  1594. rinfo->fb_base_phys = pci_resource_start(rinfo->pd, 1);
  1595. if (!request_mem_region(rinfo->ctrl_base_phys,
  1596. rinfo->base0_region_size, "rivafb")) {
  1597. printk(KERN_ERR PFX "cannot reserve MMIO regionn");
  1598. goto err_out_kfree;
  1599. }
  1600. if (!request_mem_region(rinfo->fb_base_phys,
  1601. rinfo->base1_region_size, "rivafb")) {
  1602. printk(KERN_ERR PFX "cannot reserve FB regionn");
  1603. goto err_out_free_base0;
  1604. }
  1605. rinfo->ctrl_base = ioremap(rinfo->ctrl_base_phys,
  1606.    rinfo->base0_region_size);
  1607. if (!rinfo->ctrl_base) {
  1608. printk(KERN_ERR PFX "cannot ioremap MMIO basen");
  1609. goto err_out_free_base1;
  1610. }
  1611. rinfo->fb_base = ioremap(rinfo->fb_base_phys,
  1612.  rinfo->base1_region_size);
  1613. if (!rinfo->fb_base) {
  1614. printk(KERN_ERR PFX "cannot ioremap FB basen");
  1615. goto err_out_iounmap_ctrl;
  1616. }
  1617. #ifdef CONFIG_MTRR
  1618. if (!nomtrr) {
  1619. rinfo->mtrr.vram = mtrr_add(rinfo->fb_base_phys,
  1620.     rinfo->base1_region_size, MTRR_TYPE_WRCOMB, 1);
  1621. if (rinfo->mtrr.vram < 0) {
  1622. printk(KERN_ERR PFX "unable to setup MTRRn");
  1623. } else {
  1624. rinfo->mtrr.vram_valid = 1;
  1625. /* let there be speed */
  1626. printk(KERN_INFO PFX "RIVA MTRR set to ONn");
  1627. }
  1628. }
  1629. #endif /* CONFIG_MTRR */
  1630. rinfo->riva.EnableIRQ = 0;
  1631. rinfo->riva.PRAMDAC = (unsigned *)(rinfo->ctrl_base + 0x00680000);
  1632. rinfo->riva.PFB = (unsigned *)(rinfo->ctrl_base + 0x00100000);
  1633. rinfo->riva.PFIFO = (unsigned *)(rinfo->ctrl_base + 0x00002000);
  1634. rinfo->riva.PGRAPH = (unsigned *)(rinfo->ctrl_base + 0x00400000);
  1635. rinfo->riva.PEXTDEV = (unsigned *)(rinfo->ctrl_base + 0x00101000);
  1636. rinfo->riva.PTIMER = (unsigned *)(rinfo->ctrl_base + 0x00009000);
  1637. rinfo->riva.PMC = (unsigned *)(rinfo->ctrl_base + 0x00000000);
  1638. rinfo->riva.FIFO = (unsigned *)(rinfo->ctrl_base + 0x00800000);
  1639. rinfo->riva.PCIO = (U008 *)(rinfo->ctrl_base + 0x00601000);
  1640. rinfo->riva.PDIO = (U008 *)(rinfo->ctrl_base + 0x00681000);
  1641. rinfo->riva.PVIO = (U008 *)(rinfo->ctrl_base + 0x000C0000);
  1642. rinfo->riva.IO = (MISCin(rinfo) & 0x01) ? 0x3D0 : 0x3B0;
  1643. switch (rinfo->riva.Architecture) {
  1644. case NV_ARCH_03:
  1645. rinfo->riva.PRAMIN = (unsigned *)(rinfo->fb_base + 0x00C00000);
  1646. break;
  1647. case NV_ARCH_04:
  1648. case NV_ARCH_10:
  1649. case NV_ARCH_20:
  1650. rinfo->riva.PCRTC = (unsigned *)(rinfo->ctrl_base + 0x00600000);
  1651. rinfo->riva.PRAMIN = (unsigned *)(rinfo->ctrl_base + 0x00710000);
  1652. break;
  1653. }
  1654. RivaGetConfig(&rinfo->riva);
  1655. /* back to normal */
  1656. assert(rinfo->pd != NULL);
  1657. /* unlock io */
  1658. CRTCout(rinfo, 0x11, 0xFF); /* vgaHWunlock() + riva unlock (0x7F) */
  1659. rinfo->riva.LockUnlock(&rinfo->riva, 0);
  1660. riva_save_state(rinfo, &rinfo->initial_state);
  1661. rinfo->ram_amount = rinfo->riva.RamAmountKBytes * 1024;
  1662. rinfo->dclk_max = rinfo->riva.MaxVClockFreqKHz * 1000;
  1663. if (!nohwcursor) rinfo->cursor = rivafb_init_cursor(rinfo);
  1664. if (riva_set_fbinfo(rinfo) < 0) {
  1665. printk(KERN_ERR PFX "error setting initial video moden");
  1666. goto err_out_cursor;
  1667. }
  1668. if (register_framebuffer((struct fb_info *)rinfo) < 0) {
  1669. printk(KERN_ERR PFX
  1670. "error registering riva framebuffern");
  1671. goto err_out_load_state;
  1672. }
  1673. riva_boards = riva_board_list_add(riva_boards, rinfo);
  1674. pci_set_drvdata(pd, rinfo);
  1675. printk(KERN_INFO PFX
  1676. "PCI nVidia NV%d framebuffer ver %s (%s, %dMB @ 0x%lX)n",
  1677. rinfo->riva.Architecture,
  1678. RIVAFB_VERSION,
  1679. rinfo->drvr_name,
  1680. rinfo->ram_amount / (1024 * 1024),
  1681. rinfo->fb_base_phys);
  1682. return 0;
  1683. err_out_load_state:
  1684. riva_load_state(rinfo, &rinfo->initial_state);
  1685. err_out_cursor:
  1686. rivafb_exit_cursor(rinfo);
  1687. /* err_out_iounmap_fb: */
  1688. iounmap(rinfo->fb_base);
  1689. err_out_iounmap_ctrl:
  1690. iounmap(rinfo->ctrl_base);
  1691. err_out_free_base1:
  1692. release_mem_region(rinfo->fb_base_phys, rinfo->base1_region_size);
  1693. err_out_free_base0:
  1694. release_mem_region(rinfo->ctrl_base_phys, rinfo->base0_region_size);
  1695. err_out_kfree:
  1696. kfree(rinfo);
  1697. err_out:
  1698. return -ENODEV;
  1699. }
  1700. static void __devexit rivafb_remove_one(struct pci_dev *pd)
  1701. {
  1702. struct rivafb_info *board = pci_get_drvdata(pd);
  1703. if (!board)
  1704. return;
  1705. riva_boards = riva_board_list_del(riva_boards, board);
  1706. riva_load_state(board, &board->initial_state);
  1707. unregister_framebuffer((struct fb_info *)board);
  1708. rivafb_exit_cursor(board);
  1709. #ifdef CONFIG_MTRR
  1710. if (board->mtrr.vram_valid)
  1711. mtrr_del(board->mtrr.vram, board->fb_base_phys,
  1712.  board->base1_region_size);
  1713. #endif /* CONFIG_MTRR */
  1714. iounmap(board->ctrl_base);
  1715. iounmap(board->fb_base);
  1716. release_mem_region(board->ctrl_base_phys,
  1717.    board->base0_region_size);
  1718. release_mem_region(board->fb_base_phys,
  1719.    board->base1_region_size);
  1720. kfree(board);
  1721. pci_set_drvdata(pd, NULL);
  1722. }
  1723. /* ------------------------------------------------------------------------- *
  1724.  *
  1725.  * initialization
  1726.  *
  1727.  * ------------------------------------------------------------------------- */
  1728. #ifndef MODULE
  1729. int __init rivafb_setup(char *options)
  1730. {
  1731. char *this_opt;
  1732. if (!options || !*options)
  1733. return 0;
  1734. while ((this_opt = strsep(&options, ",")) != NULL) {
  1735. if (!*this_opt)
  1736. continue;
  1737. if (!strncmp(this_opt, "font:", 5)) {
  1738. char *p;
  1739. int i;
  1740. p = this_opt + 5;
  1741. for (i = 0; i < sizeof(fontname) - 1; i++)
  1742. if (!*p || *p == ' ' || *p == ',')
  1743. break;
  1744. memcpy(fontname, this_opt + 5, i);
  1745. fontname[i] = 0;
  1746. } else if (!strncmp(this_opt, "noblink", 7)) {
  1747. noblink = 1;
  1748. } else if (!strncmp(this_opt, "noaccel", 7)) {
  1749. noaccel = 1;
  1750. } else if (!strncmp(this_opt, "nomove", 6)) {
  1751. nomove = 1;
  1752. #ifdef CONFIG_MTRR
  1753. } else if (!strncmp(this_opt, "nomtrr", 6)) {
  1754. nomtrr = 1;
  1755. #endif
  1756. } else if (!strncmp(this_opt, "nohwcursor", 10)) {
  1757. nohwcursor = 1;
  1758. } else
  1759. mode_option = this_opt;
  1760. }
  1761. return 0;
  1762. }
  1763. #endif /* !MODULE */
  1764. static struct pci_driver rivafb_driver = {
  1765. name: "rivafb",
  1766. id_table: rivafb_pci_tbl,
  1767. probe: rivafb_init_one,
  1768. remove: __devexit_p(rivafb_remove_one),
  1769. };
  1770. /* ------------------------------------------------------------------------- *
  1771.  *
  1772.  * modularization
  1773.  *
  1774.  * ------------------------------------------------------------------------- */
  1775. int __init rivafb_init(void)
  1776. {
  1777. int err;
  1778. #ifdef MODULE
  1779. if (font) strncpy(fontname, font, sizeof(fontname)-1);
  1780. #endif
  1781. err = pci_module_init(&rivafb_driver);
  1782. if (err)
  1783. return err;
  1784. return 0;
  1785. }
  1786. #ifdef MODULE
  1787. static void __exit rivafb_exit(void)
  1788. {
  1789. pci_unregister_driver(&rivafb_driver);
  1790. }
  1791. module_init(rivafb_init);
  1792. module_exit(rivafb_exit);
  1793. MODULE_PARM(font, "s");
  1794. MODULE_PARM_DESC(font, "Specifies one of the compiled-in fonts (default=none)");
  1795. MODULE_PARM(noaccel, "i");
  1796. MODULE_PARM_DESC(noaccel, "Disables hardware acceleration (0 or 1=disabled) (default=0)");
  1797. MODULE_PARM(nomove, "i");
  1798. MODULE_PARM_DESC(nomove, "Enables YSCROLL_NOMOVE (0 or 1=enabled) (default=0)");
  1799. MODULE_PARM(nohwcursor, "i");
  1800. MODULE_PARM_DESC(nohwcursor, "Disables hardware cursor (0 or 1=disabled) (default=0)");
  1801. MODULE_PARM(noblink, "i");
  1802. MODULE_PARM_DESC(noblink, "Disables hardware cursor blinking (0 or 1=disabled) (default=0)");
  1803. #ifdef CONFIG_MTRR
  1804. MODULE_PARM(nomtrr, "i");
  1805. MODULE_PARM_DESC(nomtrr, "Disables MTRR support (0 or 1=disabled) (default=0)");
  1806. #endif
  1807. #endif /* MODULE */
  1808. MODULE_AUTHOR("Ani Joshi, maintainer");
  1809. MODULE_DESCRIPTION("Framebuffer driver for nVidia Riva 128, TNT, TNT2");
  1810. MODULE_LICENSE("GPL");