fbdev.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:54k
源码类别:

Linux/Unix编程

开发平台:

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.3"
  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->type = p->type;
  1142. fix->type_aux = p->type_aux;
  1143. fix->visual = p->visual;
  1144. fix->xpanstep = 1;
  1145. fix->ypanstep = 1;
  1146. fix->ywrapstep = 0; /* FIXME: no ywrap for now */
  1147. fix->line_length = p->line_length;
  1148. fix->mmio_start = rivainfo->ctrl_base_phys;
  1149. fix->mmio_len = rivainfo->base0_region_size;
  1150. fix->smem_start = rivainfo->fb_base_phys;
  1151. fix->smem_len = rivainfo->ram_amount;
  1152. switch (rivainfo->riva.Architecture) {
  1153. case NV_ARCH_03:
  1154. fix->accel = FB_ACCEL_NV3;
  1155. break;
  1156. case NV_ARCH_04: /* riva_hw.c now doesn't distinguish between TNT & TNT2 */
  1157. fix->accel = FB_ACCEL_NV4;
  1158. break;
  1159. case NV_ARCH_10: /* FIXME: ID for GeForce */
  1160. case NV_ARCH_20:
  1161. fix->accel = FB_ACCEL_NV4;
  1162. break;
  1163. }
  1164. DPRINTK("EXIT, returning 0n");
  1165. return 0;
  1166. }
  1167. static int rivafb_get_var(struct fb_var_screeninfo *var, int con,
  1168.   struct fb_info *info)
  1169. {
  1170. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1171. DPRINTK("ENTERn");
  1172. assert(info != NULL);
  1173. assert(var != NULL);
  1174. *var = (con < 0) ? rivainfo->disp.var : fb_display[con].var;
  1175. DPRINTK("EXIT, returning 0n");
  1176. return 0;
  1177. }
  1178. static int rivafb_set_var(struct fb_var_screeninfo *var, int con,
  1179.   struct fb_info *info)
  1180. {
  1181. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1182. struct display *dsp;
  1183. struct fb_var_screeninfo v;
  1184. int nom, den; /* translating from pixels->bytes */
  1185. int accel;
  1186. unsigned chgvar = 0;
  1187. DPRINTK("ENTERn");
  1188. assert(info != NULL);
  1189. assert(var != NULL);
  1190. DPRINTK("Requested: %dx%dx%dn", var->xres, var->yres,
  1191. var->bits_per_pixel);
  1192. DPRINTK("  virtual: %dx%dn", var->xres_virtual,
  1193. var->yres_virtual);
  1194. DPRINTK("   offset: (%d,%d)n", var->xoffset, var->yoffset);
  1195. DPRINTK("grayscale: %dn", var->grayscale);
  1196. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1197. assert(dsp != NULL);
  1198. /* if var has changed, we should call changevar() later */
  1199. if (con >= 0) {
  1200. chgvar = ((dsp->var.xres != var->xres) ||
  1201.   (dsp->var.yres != var->yres) ||
  1202.   (dsp->var.xres_virtual != var->xres_virtual) ||
  1203.   (dsp->var.yres_virtual != var->yres_virtual) ||
  1204.   (dsp->var.accel_flags != var->accel_flags) ||
  1205.   (dsp->var.bits_per_pixel != var->bits_per_pixel)
  1206.   || memcmp(&dsp->var.red, &var->red,
  1207.     sizeof(var->red))
  1208.   || memcmp(&dsp->var.green, &var->green,
  1209.     sizeof(var->green))
  1210.   || memcmp(&dsp->var.blue, &var->blue,
  1211.     sizeof(var->blue)));
  1212. }
  1213. memcpy(&v, var, sizeof(v));
  1214. accel = v.accel_flags & FB_ACCELF_TEXT;
  1215. switch (v.bits_per_pixel) {
  1216. #ifdef FBCON_HAS_CFB8
  1217. case 1 ... 8:
  1218. v.bits_per_pixel = 8;
  1219. nom = 1;
  1220. den = 1;
  1221. v.red.offset = 0;
  1222. v.red.length = 8;
  1223. v.green.offset = 0;
  1224. v.green.length = 8;
  1225. v.blue.offset = 0;
  1226. v.blue.length = 8;
  1227. break;
  1228. #endif
  1229. #ifdef FBCON_HAS_CFB16
  1230. case 9 ... 15:
  1231. v.green.length = 5;
  1232. /* fall through */
  1233. case 16:
  1234. v.bits_per_pixel = 16;
  1235. nom = 2;
  1236. den = 1;
  1237. if (v.green.length == 5) {
  1238. /* 0rrrrrgg gggbbbbb */
  1239. v.red.offset = 10;
  1240. v.green.offset = 5;
  1241. v.blue.offset = 0;
  1242. v.red.length = 5;
  1243. v.green.length = 5;
  1244. v.blue.length = 5;
  1245. } else {
  1246. /* rrrrrggg gggbbbbb */
  1247. v.red.offset = 11;
  1248. v.green.offset = 5;
  1249. v.blue.offset = 0;
  1250. v.red.length = 5;
  1251. v.green.length = 6;
  1252. v.blue.length = 5;
  1253. }
  1254. break;
  1255. #endif
  1256. #ifdef FBCON_HAS_CFB32
  1257. case 17 ... 32:
  1258. v.bits_per_pixel = 32;
  1259. nom = 4;
  1260. den = 1;
  1261. v.red.offset = 16;
  1262. v.green.offset = 8;
  1263. v.blue.offset = 0;
  1264. v.red.length = 8;
  1265. v.green.length = 8;
  1266. v.blue.length = 8;
  1267. break;
  1268. #endif
  1269. default:
  1270. printk(KERN_ERR PFX
  1271.        "mode %dx%dx%d rejected...color depth not supported.n",
  1272.        var->xres, var->yres, var->bits_per_pixel);
  1273. DPRINTK("EXIT, returning -EINVALn");
  1274. return -EINVAL;
  1275. }
  1276. if (rivafb_do_maximize(rivainfo, var, &v, nom, den) < 0)
  1277. return -EINVAL;
  1278. if (v.xoffset < 0)
  1279. v.xoffset = 0;
  1280. if (v.yoffset < 0)
  1281. v.yoffset = 0;
  1282. /* truncate xoffset and yoffset to maximum if too high */
  1283. if (v.xoffset > v.xres_virtual - v.xres)
  1284. v.xoffset = v.xres_virtual - v.xres - 1;
  1285. if (v.yoffset > v.yres_virtual - v.yres)
  1286. v.yoffset = v.yres_virtual - v.yres - 1;
  1287. v.red.msb_right =
  1288.     v.green.msb_right =
  1289.     v.blue.msb_right =
  1290.     v.transp.offset = v.transp.length = v.transp.msb_right = 0;
  1291. switch (v.activate & FB_ACTIVATE_MASK) {
  1292. case FB_ACTIVATE_TEST:
  1293. DPRINTK("EXIT - FB_ACTIVATE_TESTn");
  1294. return 0;
  1295. case FB_ACTIVATE_NXTOPEN: /* ?? */
  1296. case FB_ACTIVATE_NOW:
  1297. break; /* continue */
  1298. default:
  1299. DPRINTK("EXIT - unknown activation typen");
  1300. return -EINVAL; /* unknown */
  1301. }
  1302. memcpy(&dsp->var, &v, sizeof(v));
  1303. if (chgvar) {
  1304. riva_set_dispsw(rivainfo, dsp);
  1305. if (accel) {
  1306. if (nomove)
  1307. dsp->scrollmode = SCROLL_YNOMOVE;
  1308. else
  1309. dsp->scrollmode = 0;
  1310. } else
  1311. dsp->scrollmode = SCROLL_YREDRAW;
  1312. if (info && info->changevar)
  1313. info->changevar(con);
  1314. }
  1315. rivafb_create_cursor(rivainfo, fontwidth(dsp), fontheight(dsp));
  1316. riva_load_video_mode(rivainfo, &v);
  1317. if (accel) riva_setup_accel(rivainfo);
  1318. DPRINTK("EXIT, returning 0n");
  1319. return 0;
  1320. }
  1321. static int rivafb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  1322.    struct fb_info *info)
  1323. {
  1324. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1325. struct display *dsp;
  1326. DPRINTK("ENTERn");
  1327. assert(rivainfo != NULL);
  1328. assert(cmap != NULL);
  1329. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1330. if (con == rivainfo->currcon) { /* current console? */
  1331. int rc = fb_get_cmap(cmap, kspc, riva_getcolreg, info);
  1332. DPRINTK("EXIT - returning %dn", rc);
  1333. return rc;
  1334. } else if (dsp->cmap.len) /* non default colormap? */
  1335. fb_copy_cmap(&dsp->cmap, cmap, kspc ? 0 : 2);
  1336. else
  1337. fb_copy_cmap(fb_default_cmap
  1338.      (riva_get_cmap_len(&dsp->var)), cmap,
  1339.      kspc ? 0 : 2);
  1340. DPRINTK("EXIT, returning 0n");
  1341. return 0;
  1342. }
  1343. static int rivafb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  1344.    struct fb_info *info)
  1345. {
  1346. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1347. struct display *dsp;
  1348. unsigned int cmap_len;
  1349. DPRINTK("ENTERn");
  1350. assert(rivainfo != NULL);
  1351. assert(cmap != NULL);
  1352. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1353. cmap_len = riva_get_cmap_len(&dsp->var);
  1354. if (dsp->cmap.len != cmap_len) {
  1355. int err = fb_alloc_cmap(&dsp->cmap, cmap_len, 0);
  1356. if (err) {
  1357. DPRINTK("EXIT - returning %dn", err);
  1358. return err;
  1359. }
  1360. }
  1361. if (con == rivainfo->currcon) { /* current console? */
  1362. int rc = fb_set_cmap(cmap, kspc, riva_setcolreg, info);
  1363. DPRINTK("EXIT - returning %dn", rc);
  1364. return rc;
  1365. } else
  1366. fb_copy_cmap(cmap, &dsp->cmap, kspc ? 0 : 1);
  1367. DPRINTK("EXIT, returning 0n");
  1368. return 0;
  1369. }
  1370. /**
  1371.  * rivafb_pan_display
  1372.  * @var: standard kernel fb changeable data
  1373.  * @con: TODO
  1374.  * @info: pointer to rivafb_info object containing info for current riva board
  1375.  *
  1376.  * DESCRIPTION:
  1377.  * Pan (or wrap, depending on the `vmode' field) the display using the
  1378.  * `xoffset' and `yoffset' fields of the `var' structure.
  1379.  * If the values don't fit, return -EINVAL.
  1380.  *
  1381.  * This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag
  1382.  */
  1383. static int rivafb_pan_display(struct fb_var_screeninfo *var, int con,
  1384.       struct fb_info *info)
  1385. {
  1386. unsigned int base;
  1387. struct display *dsp;
  1388. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1389. DPRINTK("ENTERn");
  1390. assert(rivainfo != NULL);
  1391. if (var->xoffset > (var->xres_virtual - var->xres))
  1392. return -EINVAL;
  1393. if (var->yoffset > (var->yres_virtual - var->yres))
  1394. return -EINVAL;
  1395. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1396. if (var->vmode & FB_VMODE_YWRAP) {
  1397. if (var->yoffset < 0
  1398.     || var->yoffset >= dsp->var.yres_virtual
  1399.     || var->xoffset) return -EINVAL;
  1400. } else {
  1401. if (var->xoffset + dsp->var.xres > dsp->var.xres_virtual ||
  1402.     var->yoffset + dsp->var.yres > dsp->var.yres_virtual)
  1403. return -EINVAL;
  1404. }
  1405. base = var->yoffset * dsp->line_length + var->xoffset;
  1406. if (con == rivainfo->currcon) {
  1407. rivainfo->riva.SetStartAddress(&rivainfo->riva, base);
  1408. }
  1409. dsp->var.xoffset = var->xoffset;
  1410. dsp->var.yoffset = var->yoffset;
  1411. if (var->vmode & FB_VMODE_YWRAP)
  1412. dsp->var.vmode |= FB_VMODE_YWRAP;
  1413. else
  1414. dsp->var.vmode &= ~FB_VMODE_YWRAP;
  1415. DPRINTK("EXIT, returning 0n");
  1416. return 0;
  1417. }
  1418. static int rivafb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  1419. unsigned long arg, int con, struct fb_info *info)
  1420. {
  1421. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1422. DPRINTK("ENTERn");
  1423. assert(rivainfo != NULL);
  1424. /* no rivafb-specific ioctls */
  1425. DPRINTK("EXIT, returning -EINVALn");
  1426. return -EINVAL;
  1427. }
  1428. static int rivafb_rasterimg(struct fb_info *info, int start)
  1429. {
  1430. struct rivafb_info *rinfo = (struct rivafb_info *)info;
  1431. wait_for_idle(rinfo);
  1432. return 0;
  1433. }
  1434. static int rivafb_switch(int con, struct fb_info *info)
  1435. {
  1436. struct rivafb_info *rivainfo = (struct rivafb_info *)info;
  1437. struct fb_cmap *cmap;
  1438. struct display *dsp;
  1439. DPRINTK("ENTERn");
  1440. assert(rivainfo != NULL);
  1441. dsp = (con < 0) ? rivainfo->info.disp : &fb_display[con];
  1442. if (rivainfo->currcon >= 0) {
  1443. /* Do we have to save the colormap? */
  1444. cmap = &(rivainfo->currcon_display->cmap);
  1445. DPRINTK("switch1: con = %d, cmap.len = %dn",
  1446.  rivainfo->currcon, cmap->len);
  1447. if (cmap->len) {
  1448. DPRINTK("switch1a: %p %p %p %pn", cmap->red,
  1449.  cmap->green, cmap->blue, cmap->transp);
  1450. fb_get_cmap(cmap, 1, riva_getcolreg, info);
  1451. }
  1452. }
  1453. rivainfo->currcon = con;
  1454. rivainfo->currcon_display = dsp;
  1455. rivafb_set_var(&dsp->var, con, info);
  1456. riva_set_dispsw(rivainfo, dsp);
  1457. DPRINTK("EXIT, returning 0n");
  1458. return 0;
  1459. }
  1460. static int rivafb_updatevar(int con, struct fb_info *info)
  1461. {
  1462. int rc;
  1463. DPRINTK("ENTERn");
  1464. rc = (con < 0) ? -EINVAL : rivafb_pan_display(&fb_display[con].var,
  1465.       con, info);
  1466. DPRINTK("EXIT, returning %dn", rc);
  1467. return rc;
  1468. }
  1469. static void rivafb_blank(int blank, struct fb_info *info)
  1470. {
  1471. unsigned char tmp, vesa;
  1472. struct rivafb_info *rinfo = (struct rivafb_info *)info;
  1473. DPRINTK("ENTERn");
  1474. assert(rinfo != NULL);
  1475. tmp = SEQin(rinfo, 0x01) & ~0x20; /* screen on/off */
  1476. vesa = CRTCin(rinfo, 0x1a) & ~0xc0; /* sync on/off */
  1477. if (blank) {
  1478. tmp |= 0x20;
  1479. switch (blank - 1) {
  1480. case VESA_NO_BLANKING:
  1481. break;
  1482. case VESA_VSYNC_SUSPEND:
  1483. vesa |= 0x80;
  1484. break;
  1485. case VESA_HSYNC_SUSPEND:
  1486. vesa |= 0x40;
  1487. break;
  1488. case VESA_POWERDOWN:
  1489. vesa |= 0xc0;
  1490. break;
  1491. }
  1492. }
  1493. SEQout(rinfo, 0x01, tmp);
  1494. CRTCout(rinfo, 0x1a, vesa);
  1495. DPRINTK("EXITn");
  1496. }
  1497. /* ------------------------------------------------------------------------- *
  1498.  *
  1499.  * initialization helper functions
  1500.  *
  1501.  * ------------------------------------------------------------------------- */
  1502. /* kernel interface */
  1503. static struct fb_ops riva_fb_ops = {
  1504. owner: THIS_MODULE,
  1505. fb_get_fix: rivafb_get_fix,
  1506. fb_get_var: rivafb_get_var,
  1507. fb_set_var: rivafb_set_var,
  1508. fb_get_cmap: rivafb_get_cmap,
  1509. fb_set_cmap: rivafb_set_cmap,
  1510. fb_pan_display: rivafb_pan_display,
  1511. fb_ioctl: rivafb_ioctl,
  1512. fb_rasterimg: rivafb_rasterimg,
  1513. };
  1514. static int __devinit riva_init_disp_var(struct rivafb_info *rinfo)
  1515. {
  1516. #ifndef MODULE
  1517. if (mode_option)
  1518. fb_find_mode(&rinfo->disp.var, &rinfo->info, mode_option,
  1519.      NULL, 0, NULL, 8);
  1520. #endif
  1521. return 0;
  1522. }
  1523. static int __devinit riva_init_disp(struct rivafb_info *rinfo)
  1524. {
  1525. struct fb_info *info;
  1526. struct display *disp;
  1527. DPRINTK("ENTERn");
  1528. assert(rinfo != NULL);
  1529. info = &rinfo->info;
  1530. disp = &rinfo->disp;
  1531. disp->var = rivafb_default_var;
  1532. if (noaccel)
  1533. disp->var.accel_flags &= ~FB_ACCELF_TEXT;
  1534. else
  1535. disp->var.accel_flags |= FB_ACCELF_TEXT;
  1536. info->disp = disp;
  1537. /* FIXME: assure that disp->cmap is completely filled out */
  1538. rinfo->currcon_display = disp;
  1539. if ((riva_init_disp_var(rinfo)) < 0) {
  1540. DPRINTK("EXIT, returning -1n");
  1541. return -1;
  1542. }
  1543. riva_set_dispsw(rinfo, disp);
  1544. DPRINTK("EXIT, returning 0n");
  1545. return 0;
  1546. }
  1547. static int __devinit riva_set_fbinfo(struct rivafb_info *rinfo)
  1548. {
  1549. struct fb_info *info;
  1550. assert(rinfo != NULL);
  1551. info = &rinfo->info;
  1552. strcpy(info->modename, rinfo->drvr_name);
  1553. info->node = -1;
  1554. info->flags = FBINFO_FLAG_DEFAULT;
  1555. info->fbops = &riva_fb_ops;
  1556. /* FIXME: set monspecs to what??? */
  1557. info->display_fg = NULL;
  1558. strncpy(info->fontname, fontname, sizeof(info->fontname));
  1559. info->fontname[sizeof(info->fontname) - 1] = 0;
  1560. info->changevar = NULL;
  1561. info->switch_con = rivafb_switch;
  1562. info->updatevar = rivafb_updatevar;
  1563. info->blank = rivafb_blank;
  1564. if (riva_init_disp(rinfo) < 0) /* must be done last */
  1565. return -1;
  1566. return 0;
  1567. }
  1568. /* ------------------------------------------------------------------------- *
  1569.  *
  1570.  * PCI bus
  1571.  *
  1572.  * ------------------------------------------------------------------------- */
  1573. static int __devinit rivafb_init_one(struct pci_dev *pd,
  1574.      const struct pci_device_id *ent)
  1575. {
  1576. struct rivafb_info *rinfo;
  1577. struct riva_chip_info *rci = &riva_chip_info[ent->driver_data];
  1578. assert(pd != NULL);
  1579. assert(rci != NULL);
  1580. rinfo = kmalloc(sizeof(struct rivafb_info), GFP_KERNEL);
  1581. if (!rinfo)
  1582. goto err_out;
  1583. memset(rinfo, 0, sizeof(struct rivafb_info));
  1584. rinfo->drvr_name = rci->name;
  1585. rinfo->riva.Architecture = rci->arch_rev;
  1586. rinfo->pd = pd;
  1587. rinfo->base0_region_size = pci_resource_len(pd, 0);
  1588. rinfo->base1_region_size = pci_resource_len(pd, 1);
  1589. rinfo->ctrl_base_phys = pci_resource_start(rinfo->pd, 0);
  1590. rinfo->fb_base_phys = pci_resource_start(rinfo->pd, 1);
  1591. if (!request_mem_region(rinfo->ctrl_base_phys,
  1592. rinfo->base0_region_size, "rivafb")) {
  1593. printk(KERN_ERR PFX "cannot reserve MMIO regionn");
  1594. goto err_out_kfree;
  1595. }
  1596. rinfo->ctrl_base = ioremap(rinfo->ctrl_base_phys,
  1597.    rinfo->base0_region_size);
  1598. if (!rinfo->ctrl_base) {
  1599. printk(KERN_ERR PFX "cannot ioremap MMIO basen");
  1600. goto err_out_free_base1;
  1601. }
  1602. rinfo->riva.EnableIRQ = 0;
  1603. rinfo->riva.PRAMDAC = (unsigned *)(rinfo->ctrl_base + 0x00680000);
  1604. rinfo->riva.PFB = (unsigned *)(rinfo->ctrl_base + 0x00100000);
  1605. rinfo->riva.PFIFO = (unsigned *)(rinfo->ctrl_base + 0x00002000);
  1606. rinfo->riva.PGRAPH = (unsigned *)(rinfo->ctrl_base + 0x00400000);
  1607. rinfo->riva.PEXTDEV = (unsigned *)(rinfo->ctrl_base + 0x00101000);
  1608. rinfo->riva.PTIMER = (unsigned *)(rinfo->ctrl_base + 0x00009000);
  1609. rinfo->riva.PMC = (unsigned *)(rinfo->ctrl_base + 0x00000000);
  1610. rinfo->riva.FIFO = (unsigned *)(rinfo->ctrl_base + 0x00800000);
  1611. rinfo->riva.PCIO = (U008 *)(rinfo->ctrl_base + 0x00601000);
  1612. rinfo->riva.PDIO = (U008 *)(rinfo->ctrl_base + 0x00681000);
  1613. rinfo->riva.PVIO = (U008 *)(rinfo->ctrl_base + 0x000C0000);
  1614. rinfo->riva.IO = (MISCin(rinfo) & 0x01) ? 0x3D0 : 0x3B0;
  1615. if (rinfo->riva.Architecture == NV_ARCH_03) {
  1616. /*
  1617.  * We have to map the full BASE_1 aperture for Riva128's
  1618.  * because they use the PRAMIN set in "framebuffer" space
  1619.  */
  1620. if (!request_mem_region(rinfo->fb_base_phys,
  1621. rinfo->base1_region_size, "rivafb")) {
  1622. printk(KERN_ERR PFX "cannot reserve FB regionn");
  1623. goto err_out_free_base0;
  1624. }
  1625. rinfo->fb_base = ioremap(rinfo->fb_base_phys,
  1626.  rinfo->base1_region_size);
  1627. if (!rinfo->fb_base) {
  1628. printk(KERN_ERR PFX "cannot ioremap FB basen");
  1629. goto err_out_iounmap_ctrl;
  1630. }
  1631. }
  1632. switch (rinfo->riva.Architecture) {
  1633. case NV_ARCH_03:
  1634. rinfo->riva.PRAMIN = (unsigned *)(rinfo->fb_base + 0x00C00000);
  1635. break;
  1636. case NV_ARCH_04:
  1637. case NV_ARCH_10:
  1638. case NV_ARCH_20:
  1639. rinfo->riva.PCRTC = (unsigned *)(rinfo->ctrl_base + 0x00600000);
  1640. rinfo->riva.PRAMIN = (unsigned *)(rinfo->ctrl_base + 0x00710000);
  1641. break;
  1642. }
  1643. RivaGetConfig(&rinfo->riva);
  1644. rinfo->ram_amount = rinfo->riva.RamAmountKBytes * 1024;
  1645. rinfo->dclk_max = rinfo->riva.MaxVClockFreqKHz * 1000;
  1646. if (rinfo->riva.Architecture != NV_ARCH_03) {
  1647. /*
  1648.  * Now the _normal_ chipsets can just map the amount of
  1649.  * real physical ram instead of the whole aperture
  1650.  */
  1651. if (!request_mem_region(rinfo->fb_base_phys,
  1652. rinfo->ram_amount, "rivafb")) {
  1653. printk(KERN_ERR PFX "cannot reserve FB regionn");
  1654. goto err_out_free_base0;
  1655. }
  1656. rinfo->fb_base = ioremap(rinfo->fb_base_phys,
  1657.  rinfo->ram_amount);
  1658. if (!rinfo->fb_base) {
  1659. printk(KERN_ERR PFX "cannot ioremap FB basen");
  1660. goto err_out_iounmap_ctrl;
  1661. }
  1662. }
  1663. #ifdef CONFIG_MTRR
  1664. if (!nomtrr) {
  1665. rinfo->mtrr.vram = mtrr_add(rinfo->fb_base_phys,
  1666.     rinfo->ram_amount,
  1667.     MTRR_TYPE_WRCOMB, 1);
  1668. if (rinfo->mtrr.vram < 0) {
  1669. printk(KERN_ERR PFX "unable to setup MTRRn");
  1670. } else {
  1671. rinfo->mtrr.vram_valid = 1;
  1672. /* let there be speed */
  1673. printk(KERN_INFO PFX "RIVA MTRR set to ONn");
  1674. }
  1675. }
  1676. #endif /* CONFIG_MTRR */
  1677. /* unlock io */
  1678. CRTCout(rinfo, 0x11, 0xFF); /* vgaHWunlock() + riva unlock (0x7F) */
  1679. rinfo->riva.LockUnlock(&rinfo->riva, 0);
  1680. riva_save_state(rinfo, &rinfo->initial_state);
  1681. if (!nohwcursor) rinfo->cursor = rivafb_init_cursor(rinfo);
  1682. if (riva_set_fbinfo(rinfo) < 0) {
  1683. printk(KERN_ERR PFX "error setting initial video moden");
  1684. goto err_out_cursor;
  1685. }
  1686. if (register_framebuffer((struct fb_info *)rinfo) < 0) {
  1687. printk(KERN_ERR PFX
  1688. "error registering riva framebuffern");
  1689. goto err_out_load_state;
  1690. }
  1691. riva_boards = riva_board_list_add(riva_boards, rinfo);
  1692. pci_set_drvdata(pd, rinfo);
  1693. printk(KERN_INFO PFX
  1694. "PCI nVidia NV%x framebuffer ver %s (%s, %dMB @ 0x%lX)n",
  1695. rinfo->riva.Architecture,
  1696. RIVAFB_VERSION,
  1697. rinfo->drvr_name,
  1698. rinfo->ram_amount / (1024 * 1024),
  1699. rinfo->fb_base_phys);
  1700. return 0;
  1701. err_out_load_state:
  1702. riva_load_state(rinfo, &rinfo->initial_state);
  1703. err_out_cursor:
  1704. rivafb_exit_cursor(rinfo);
  1705. /* err_out_iounmap_fb: */
  1706. iounmap(rinfo->fb_base);
  1707. err_out_iounmap_ctrl:
  1708. iounmap(rinfo->ctrl_base);
  1709. err_out_free_base1:
  1710. release_mem_region(rinfo->fb_base_phys, rinfo->base1_region_size);
  1711. err_out_free_base0:
  1712. release_mem_region(rinfo->ctrl_base_phys, rinfo->base0_region_size);
  1713. err_out_kfree:
  1714. kfree(rinfo);
  1715. err_out:
  1716. return -ENODEV;
  1717. }
  1718. static void __devexit rivafb_remove_one(struct pci_dev *pd)
  1719. {
  1720. struct rivafb_info *board = pci_get_drvdata(pd);
  1721. if (!board)
  1722. return;
  1723. riva_boards = riva_board_list_del(riva_boards, board);
  1724. riva_load_state(board, &board->initial_state);
  1725. unregister_framebuffer((struct fb_info *)board);
  1726. rivafb_exit_cursor(board);
  1727. #ifdef CONFIG_MTRR
  1728. if (board->mtrr.vram_valid)
  1729. mtrr_del(board->mtrr.vram, board->fb_base_phys,
  1730.  board->ram_amount);
  1731. #endif /* CONFIG_MTRR */
  1732. iounmap(board->ctrl_base);
  1733. iounmap(board->fb_base);
  1734. release_mem_region(board->ctrl_base_phys,
  1735.    board->base0_region_size);
  1736. release_mem_region(board->fb_base_phys,
  1737.    board->ram_amount);
  1738. kfree(board);
  1739. pci_set_drvdata(pd, NULL);
  1740. }
  1741. /* ------------------------------------------------------------------------- *
  1742.  *
  1743.  * initialization
  1744.  *
  1745.  * ------------------------------------------------------------------------- */
  1746. #ifndef MODULE
  1747. int __init rivafb_setup(char *options)
  1748. {
  1749. char *this_opt;
  1750. if (!options || !*options)
  1751. return 0;
  1752. while ((this_opt = strsep(&options, ",")) != NULL) {
  1753. if (!*this_opt)
  1754. continue;
  1755. if (!strncmp(this_opt, "font:", 5)) {
  1756. char *p;
  1757. int i;
  1758. p = this_opt + 5;
  1759. for (i = 0; i < sizeof(fontname) - 1; i++)
  1760. if (!*p || *p == ' ' || *p == ',')
  1761. break;
  1762. memcpy(fontname, this_opt + 5, i);
  1763. fontname[i] = 0;
  1764. } else if (!strncmp(this_opt, "noblink", 7)) {
  1765. noblink = 1;
  1766. } else if (!strncmp(this_opt, "noaccel", 7)) {
  1767. noaccel = 1;
  1768. } else if (!strncmp(this_opt, "nomove", 6)) {
  1769. nomove = 1;
  1770. #ifdef CONFIG_MTRR
  1771. } else if (!strncmp(this_opt, "nomtrr", 6)) {
  1772. nomtrr = 1;
  1773. #endif
  1774. } else if (!strncmp(this_opt, "nohwcursor", 10)) {
  1775. nohwcursor = 1;
  1776. } else
  1777. mode_option = this_opt;
  1778. }
  1779. return 0;
  1780. }
  1781. #endif /* !MODULE */
  1782. static struct pci_driver rivafb_driver = {
  1783. name: "rivafb",
  1784. id_table: rivafb_pci_tbl,
  1785. probe: rivafb_init_one,
  1786. remove: __devexit_p(rivafb_remove_one),
  1787. };
  1788. /* ------------------------------------------------------------------------- *
  1789.  *
  1790.  * modularization
  1791.  *
  1792.  * ------------------------------------------------------------------------- */
  1793. int __init rivafb_init(void)
  1794. {
  1795. int err;
  1796. #ifdef MODULE
  1797. if (font) strncpy(fontname, font, sizeof(fontname)-1);
  1798. #endif
  1799. err = pci_module_init(&rivafb_driver);
  1800. if (err)
  1801. return err;
  1802. return 0;
  1803. }
  1804. #ifdef MODULE
  1805. static void __exit rivafb_exit(void)
  1806. {
  1807. pci_unregister_driver(&rivafb_driver);
  1808. }
  1809. module_init(rivafb_init);
  1810. module_exit(rivafb_exit);
  1811. MODULE_PARM(font, "s");
  1812. MODULE_PARM_DESC(font, "Specifies one of the compiled-in fonts (default=none)");
  1813. MODULE_PARM(noaccel, "i");
  1814. MODULE_PARM_DESC(noaccel, "Disables hardware acceleration (0 or 1=disabled) (default=0)");
  1815. MODULE_PARM(nomove, "i");
  1816. MODULE_PARM_DESC(nomove, "Enables YSCROLL_NOMOVE (0 or 1=enabled) (default=0)");
  1817. MODULE_PARM(nohwcursor, "i");
  1818. MODULE_PARM_DESC(nohwcursor, "Disables hardware cursor (0 or 1=disabled) (default=0)");
  1819. MODULE_PARM(noblink, "i");
  1820. MODULE_PARM_DESC(noblink, "Disables hardware cursor blinking (0 or 1=disabled) (default=0)");
  1821. #ifdef CONFIG_MTRR
  1822. MODULE_PARM(nomtrr, "i");
  1823. MODULE_PARM_DESC(nomtrr, "Disables MTRR support (0 or 1=disabled) (default=0)");
  1824. #endif
  1825. #endif /* MODULE */
  1826. MODULE_AUTHOR("Ani Joshi, maintainer");
  1827. MODULE_DESCRIPTION("Framebuffer driver for nVidia Riva 128, TNT, TNT2");
  1828. MODULE_LICENSE("GPL");