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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * CMOS/NV-RAM driver for Linux
  3.  *
  4.  * Copyright (C) 1997 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
  5.  * idea by and with help from Richard Jelinek <rj@suse.de>
  6.  *
  7.  * This driver allows you to access the contents of the non-volatile memory in
  8.  * the mc146818rtc.h real-time clock. This chip is built into all PCs and into
  9.  * many Atari machines. In the former it's called "CMOS-RAM", in the latter
  10.  * "NVRAM" (NV stands for non-volatile).
  11.  *
  12.  * The data are supplied as a (seekable) character device, /dev/nvram. The
  13.  * size of this file is 50, the number of freely available bytes in the memory
  14.  * (i.e., not used by the RTC itself).
  15.  * 
  16.  * Checksums over the NVRAM contents are managed by this driver. In case of a
  17.  * bad checksum, reads and writes return -EIO. The checksum can be initialized
  18.  * to a sane state either by ioctl(NVRAM_INIT) (clear whole NVRAM) or
  19.  * ioctl(NVRAM_SETCKS) (doesn't change contents, just makes checksum valid
  20.  * again; use with care!)
  21.  *
  22.  * This file also provides some functions for other parts of the kernel that
  23.  * want to access the NVRAM: nvram_{read,write,check_checksum,set_checksum}.
  24.  * Obviously this can be used only if this driver is always configured into
  25.  * the kernel and is not a module. Since the functions are used by some Atari
  26.  * drivers, this is the case on the Atari.
  27.  *
  28.  *
  29.  *  1.1 Cesar Barros: SMP locking fixes
  30.  *  added changelog
  31.  */
  32. #define NVRAM_VERSION "1.1"
  33. #include <linux/module.h>
  34. #include <linux/config.h>
  35. #include <linux/sched.h>
  36. #include <linux/smp_lock.h>
  37. #define PC 1
  38. #define ATARI 2
  39. /* select machine configuration */
  40. #if defined(CONFIG_ATARI)
  41. #define MACH ATARI
  42. #elif defined(__i386__) || defined(__x86_64__) || defined(__arm__) /* and others?? */
  43. #define MACH PC
  44. #else
  45. #error Cannot build nvram driver for this machine configuration.
  46. #endif
  47. #if MACH == PC
  48. /* RTC in a PC */
  49. #define CHECK_DRIVER_INIT() 1
  50. /* On PCs, the checksum is built only over bytes 2..31 */
  51. #define PC_CKS_RANGE_START 2
  52. #define PC_CKS_RANGE_END 31
  53. #define PC_CKS_LOC 32
  54. #define mach_check_checksum pc_check_checksum
  55. #define mach_set_checksum pc_set_checksum
  56. #define mach_proc_infos pc_proc_infos
  57. #endif
  58. #if MACH == ATARI
  59. /* Special parameters for RTC in Atari machines */
  60. #include <asm/atarihw.h>
  61. #include <asm/atariints.h>
  62. #define RTC_PORT(x) (TT_RTC_BAS + 2*(x))
  63. #define CHECK_DRIVER_INIT() (MACH_IS_ATARI && ATARIHW_PRESENT(TT_CLK))
  64. /* On Ataris, the checksum is over all bytes except the checksum bytes
  65.  * themselves; these are at the very end */
  66. #define ATARI_CKS_RANGE_START 0
  67. #define ATARI_CKS_RANGE_END 47
  68. #define ATARI_CKS_LOC 48
  69. #define mach_check_checksum atari_check_checksum
  70. #define mach_set_checksum atari_set_checksum
  71. #define mach_proc_infos atari_proc_infos
  72. #endif
  73. /* Note that *all* calls to CMOS_READ and CMOS_WRITE must be done with
  74.  * rtc_lock held. Due to the index-port/data-port design of the RTC, we
  75.  * don't want two different things trying to get to it at once. (e.g. the
  76.  * periodic 11 min sync from time.c vs. this driver.)
  77.  */
  78. #include <linux/types.h>
  79. #include <linux/errno.h>
  80. #include <linux/miscdevice.h>
  81. #include <linux/slab.h>
  82. #include <linux/ioport.h>
  83. #include <linux/fcntl.h>
  84. #include <linux/mc146818rtc.h>
  85. #include <linux/nvram.h>
  86. #include <linux/init.h>
  87. #include <linux/proc_fs.h>
  88. #include <linux/spinlock.h>
  89. #include <asm/io.h>
  90. #include <asm/uaccess.h>
  91. #include <asm/system.h>
  92. static int nvram_open_cnt; /* #times opened */
  93. static int nvram_open_mode; /* special open modes */
  94. #define NVRAM_WRITE 1 /* opened for writing (exclusive) */
  95. #define NVRAM_EXCL 2 /* opened with O_EXCL */
  96. #define RTC_FIRST_BYTE 14 /* RTC register number of first NVRAM byte */
  97. #define NVRAM_BYTES 128-RTC_FIRST_BYTE /* number of NVRAM bytes */
  98. static int mach_check_checksum( void );
  99. static void mach_set_checksum( void );
  100. #ifdef CONFIG_PROC_FS
  101. static int mach_proc_infos( unsigned char *contents, char *buffer, int *len,
  102. off_t *begin, off_t offset, int size );
  103. #endif
  104. /*
  105.  * These are the internal NVRAM access functions, which do NOT disable
  106.  * interrupts and do not check the checksum. Both tasks are left to higher
  107.  * level function, so they need to be done only once per syscall.
  108.  */
  109. static __inline__ unsigned char nvram_read_int( int i )
  110. {
  111. return( CMOS_READ( RTC_FIRST_BYTE+i ) );
  112. }
  113. static __inline__ void nvram_write_int( unsigned char c, int i )
  114. {
  115. CMOS_WRITE( c, RTC_FIRST_BYTE+i );
  116. }
  117. static __inline__ int nvram_check_checksum_int( void )
  118. {
  119. return( mach_check_checksum() );
  120. }
  121. static __inline__ void nvram_set_checksum_int( void )
  122. {
  123. mach_set_checksum();
  124. }
  125. #if MACH == ATARI
  126. /*
  127.  * These non-internal functions are provided to be called by other parts of
  128.  * the kernel. It's up to the caller to ensure correct checksum before reading
  129.  * or after writing (needs to be done only once).
  130.  *
  131.  * They're only built if CONFIG_ATARI is defined, because Atari drivers use
  132.  * them. For other configurations (PC), the rest of the kernel can't rely on
  133.  * them being present (this driver may not be configured at all, or as a
  134.  * module), so they access config information themselves.
  135.  */
  136. unsigned char nvram_read_byte( int i )
  137. {
  138. unsigned long flags;
  139. unsigned char c;
  140. spin_lock_irqsave (&rtc_lock, flags);
  141. c = nvram_read_int( i );
  142. spin_unlock_irqrestore (&rtc_lock, flags);
  143. return( c );
  144. }
  145. /* This races nicely with trying to read with checksum checking (nvram_read) */
  146. void nvram_write_byte( unsigned char c, int i )
  147. {
  148. unsigned long flags;
  149. spin_lock_irqsave (&rtc_lock, flags);
  150. nvram_write_int( c, i );
  151. spin_unlock_irqrestore (&rtc_lock, flags);
  152. }
  153. int nvram_check_checksum( void )
  154. {
  155. unsigned long flags;
  156. int rv;
  157. spin_lock_irqsave (&rtc_lock, flags);
  158. rv = nvram_check_checksum_int();
  159. spin_unlock_irqrestore (&rtc_lock, flags);
  160. return( rv );
  161. }
  162. void nvram_set_checksum( void )
  163. {
  164. unsigned long flags;
  165. spin_lock_irqsave (&rtc_lock, flags);
  166. nvram_set_checksum_int();
  167. spin_unlock_irqrestore (&rtc_lock, flags);
  168. }
  169. #endif /* MACH == ATARI */
  170. /*
  171.  * The are the file operation function for user access to /dev/nvram
  172.  */
  173. static long long nvram_llseek(struct file *file,loff_t offset, int origin )
  174. {
  175. switch( origin ) {
  176.   case 0:
  177. /* nothing to do */
  178. break;
  179.   case 1:
  180. offset += file->f_pos;
  181. break;
  182.   case 2:
  183. offset += NVRAM_BYTES;
  184. break;
  185. }
  186. return( (offset >= 0) ? (file->f_pos = offset) : -EINVAL );
  187. }
  188. static ssize_t nvram_read(struct file * file,
  189. char * buf, size_t count, loff_t *ppos )
  190. {
  191. char contents [NVRAM_BYTES];
  192. unsigned i = *ppos;
  193. char *tmp;
  194. spin_lock_irq (&rtc_lock);
  195. if (!nvram_check_checksum_int())
  196. goto checksum_err;
  197. for (tmp = contents; count-- > 0 && i < NVRAM_BYTES; ++i, ++tmp)
  198. *tmp = nvram_read_int(i);
  199. spin_unlock_irq (&rtc_lock);
  200. if (copy_to_user (buf, contents, tmp - contents))
  201. return -EFAULT;
  202. *ppos = i;
  203. return (tmp - contents);
  204. checksum_err:
  205. spin_unlock_irq (&rtc_lock);
  206. return -EIO;
  207. }
  208. static ssize_t nvram_write(struct file * file,
  209. const char * buf, size_t count, loff_t *ppos )
  210. {
  211. char contents [NVRAM_BYTES];
  212. unsigned i = *ppos;
  213. char * tmp;
  214. if (copy_from_user (contents, buf, (NVRAM_BYTES - i) < count ?
  215. (NVRAM_BYTES - i) : count))
  216. return -EFAULT;
  217. spin_lock_irq (&rtc_lock);
  218. if (!nvram_check_checksum_int())
  219. goto checksum_err;
  220. for (tmp = contents; count-- > 0 && i < NVRAM_BYTES; ++i, ++tmp)
  221. nvram_write_int (*tmp, i);
  222. nvram_set_checksum_int();
  223. spin_unlock_irq (&rtc_lock);
  224. *ppos = i;
  225. return (tmp - contents);
  226. checksum_err:
  227. spin_unlock_irq (&rtc_lock);
  228. return -EIO;
  229. }
  230. static int nvram_ioctl( struct inode *inode, struct file *file,
  231. unsigned int cmd, unsigned long arg )
  232. {
  233. int i;
  234. switch( cmd ) {
  235.   case NVRAM_INIT: /* initialize NVRAM contents and checksum */
  236. if (!capable(CAP_SYS_ADMIN))
  237. return( -EACCES );
  238. spin_lock_irq (&rtc_lock);
  239. for( i = 0; i < NVRAM_BYTES; ++i )
  240. nvram_write_int( 0, i );
  241. nvram_set_checksum_int();
  242. spin_unlock_irq (&rtc_lock);
  243. return( 0 );
  244.   
  245.   case NVRAM_SETCKS: /* just set checksum, contents unchanged
  246.  * (maybe useful after checksum garbaged
  247.  * somehow...) */
  248. if (!capable(CAP_SYS_ADMIN))
  249. return( -EACCES );
  250. spin_lock_irq (&rtc_lock);
  251. nvram_set_checksum_int();
  252. spin_unlock_irq (&rtc_lock);
  253. return( 0 );
  254.   default:
  255. return( -EINVAL );
  256. }
  257. }
  258. static int nvram_open( struct inode *inode, struct file *file )
  259. {
  260. if ((nvram_open_cnt && (file->f_flags & O_EXCL)) ||
  261. (nvram_open_mode & NVRAM_EXCL) ||
  262. ((file->f_mode & 2) && (nvram_open_mode & NVRAM_WRITE)))
  263. return( -EBUSY );
  264. if (file->f_flags & O_EXCL)
  265. nvram_open_mode |= NVRAM_EXCL;
  266. if (file->f_mode & 2)
  267. nvram_open_mode |= NVRAM_WRITE;
  268. nvram_open_cnt++;
  269. return( 0 );
  270. }
  271. static int nvram_release( struct inode *inode, struct file *file )
  272. {
  273. lock_kernel();
  274. nvram_open_cnt--;
  275. if (file->f_flags & O_EXCL)
  276. nvram_open_mode &= ~NVRAM_EXCL;
  277. if (file->f_mode & 2)
  278. nvram_open_mode &= ~NVRAM_WRITE;
  279. unlock_kernel();
  280. return( 0 );
  281. }
  282. #ifndef CONFIG_PROC_FS
  283. static int nvram_read_proc( char *buffer, char **start, off_t offset,
  284.     int size, int *eof, void *data) { return 0; }
  285. #else
  286. static int nvram_read_proc( char *buffer, char **start, off_t offset,
  287. int size, int *eof, void *data )
  288. {
  289. unsigned char contents[NVRAM_BYTES];
  290.     int i, len = 0;
  291.     off_t begin = 0;
  292. spin_lock_irq (&rtc_lock);
  293. for( i = 0; i < NVRAM_BYTES; ++i )
  294. contents[i] = nvram_read_int( i );
  295. spin_unlock_irq (&rtc_lock);
  296. *eof = mach_proc_infos( contents, buffer, &len, &begin, offset, size );
  297.     if (offset >= begin + len)
  298. return( 0 );
  299.     *start = buffer + (offset - begin);
  300.     return( size < begin + len - offset ? size : begin + len - offset );
  301. }
  302. /* This macro frees the machine specific function from bounds checking and
  303.  * this like that... */
  304. #define PRINT_PROC(fmt,args...)
  305. do {
  306. *len += sprintf( buffer+*len, fmt, ##args );
  307. if (*begin + *len > offset + size)
  308. return( 0 );
  309. if (*begin + *len < offset) {
  310. *begin += *len;
  311. *len = 0;
  312. }
  313. } while(0)
  314. #endif /* CONFIG_PROC_FS */
  315. static struct file_operations nvram_fops = {
  316. owner: THIS_MODULE,
  317. llseek: nvram_llseek,
  318. read: nvram_read,
  319. write: nvram_write,
  320. ioctl: nvram_ioctl,
  321. open: nvram_open,
  322. release: nvram_release,
  323. };
  324. static struct miscdevice nvram_dev = {
  325. NVRAM_MINOR,
  326. "nvram",
  327. &nvram_fops
  328. };
  329. static int __init nvram_init(void)
  330. {
  331. int ret;
  332. /* First test whether the driver should init at all */
  333. if (!CHECK_DRIVER_INIT())
  334.     return( -ENXIO );
  335. ret = misc_register( &nvram_dev );
  336. if (ret) {
  337. printk(KERN_ERR "nvram: can't misc_register on minor=%dn", NVRAM_MINOR);
  338. goto out;
  339. }
  340. if (!create_proc_read_entry("driver/nvram",0,0,nvram_read_proc,NULL)) {
  341. printk(KERN_ERR "nvram: can't create /proc/driver/nvramn");
  342. ret = -ENOMEM;
  343. goto outmisc;
  344. }
  345. ret = 0;
  346. printk(KERN_INFO "Non-volatile memory driver v" NVRAM_VERSION "n");
  347. out:
  348. return( ret );
  349. outmisc:
  350. misc_deregister( &nvram_dev );
  351. goto out;
  352. }
  353. static void __exit nvram_cleanup_module (void)
  354. {
  355. remove_proc_entry( "driver/nvram", 0 );
  356. misc_deregister( &nvram_dev );
  357. }
  358. module_init(nvram_init);
  359. module_exit(nvram_cleanup_module);
  360. /*
  361.  * Machine specific functions
  362.  */
  363. #if MACH == PC
  364. static int pc_check_checksum( void )
  365. {
  366. int i;
  367. unsigned short sum = 0;
  368. for( i = PC_CKS_RANGE_START; i <= PC_CKS_RANGE_END; ++i )
  369. sum += nvram_read_int( i );
  370. return( (sum & 0xffff) ==
  371. ((nvram_read_int(PC_CKS_LOC) << 8) |
  372.  nvram_read_int(PC_CKS_LOC+1)) );
  373. }
  374. static void pc_set_checksum( void )
  375. {
  376. int i;
  377. unsigned short sum = 0;
  378. for( i = PC_CKS_RANGE_START; i <= PC_CKS_RANGE_END; ++i )
  379. sum += nvram_read_int( i );
  380. nvram_write_int( sum >> 8, PC_CKS_LOC );
  381. nvram_write_int( sum & 0xff, PC_CKS_LOC+1 );
  382. }
  383. #ifdef CONFIG_PROC_FS
  384. static char *floppy_types[] = {
  385. "none", "5.25'' 360k", "5.25'' 1.2M", "3.5'' 720k", "3.5'' 1.44M",
  386. "3.5'' 2.88M", "3.5'' 2.88M"
  387. };
  388. static char *gfx_types[] = {
  389. "EGA, VGA, ... (with BIOS)",
  390. "CGA (40 cols)",
  391. "CGA (80 cols)",
  392. "monochrome",
  393. };
  394. static int pc_proc_infos( unsigned char *nvram, char *buffer, int *len,
  395.   off_t *begin, off_t offset, int size )
  396. {
  397. int checksum;
  398. int type;
  399. spin_lock_irq (&rtc_lock);
  400. checksum = nvram_check_checksum_int();
  401. spin_unlock_irq (&rtc_lock);
  402. PRINT_PROC( "Checksum status: %svalidn", checksum ? "" : "not " );
  403. PRINT_PROC( "# floppies     : %dn",
  404. (nvram[6] & 1) ? (nvram[6] >> 6) + 1 : 0 );
  405. PRINT_PROC( "Floppy 0 type  : " );
  406. type = nvram[2] >> 4;
  407. if (type < sizeof(floppy_types)/sizeof(*floppy_types))
  408. PRINT_PROC( "%sn", floppy_types[type] );
  409. else
  410. PRINT_PROC( "%d (unknown)n", type );
  411. PRINT_PROC( "Floppy 1 type  : " );
  412. type = nvram[2] & 0x0f;
  413. if (type < sizeof(floppy_types)/sizeof(*floppy_types))
  414. PRINT_PROC( "%sn", floppy_types[type] );
  415. else
  416. PRINT_PROC( "%d (unknown)n", type );
  417. PRINT_PROC( "HD 0 type      : " );
  418. type = nvram[4] >> 4;
  419. if (type)
  420. PRINT_PROC( "%02xn", type == 0x0f ? nvram[11] : type );
  421. else
  422. PRINT_PROC( "nonen" );
  423. PRINT_PROC( "HD 1 type      : " );
  424. type = nvram[4] & 0x0f;
  425. if (type)
  426. PRINT_PROC( "%02xn", type == 0x0f ? nvram[12] : type );
  427. else
  428. PRINT_PROC( "nonen" );
  429. PRINT_PROC( "HD type 48 data: %d/%d/%d C/H/S, precomp %d, lz %dn",
  430. nvram[18] | (nvram[19] << 8),
  431. nvram[20], nvram[25],
  432. nvram[21] | (nvram[22] << 8),
  433. nvram[23] | (nvram[24] << 8) );
  434. PRINT_PROC( "HD type 49 data: %d/%d/%d C/H/S, precomp %d, lz %dn",
  435. nvram[39] | (nvram[40] << 8),
  436. nvram[41], nvram[46],
  437. nvram[42] | (nvram[43] << 8),
  438. nvram[44] | (nvram[45] << 8) );
  439. PRINT_PROC( "DOS base memory: %d kBn", nvram[7] | (nvram[8] << 8) );
  440. PRINT_PROC( "Extended memory: %d kB (configured), %d kB (tested)n",
  441. nvram[9] | (nvram[10] << 8),
  442. nvram[34] | (nvram[35] << 8) );
  443. PRINT_PROC( "Gfx adapter    : %sn", gfx_types[ (nvram[6] >> 4)&3 ] );
  444. PRINT_PROC( "FPU            : %sinstalledn",
  445. (nvram[6] & 2) ? "" : "not " );
  446. return( 1 );
  447. }
  448. #endif
  449. #endif /* MACH == PC */
  450. #if MACH == ATARI
  451. static int atari_check_checksum( void )
  452. {
  453. int i;
  454. unsigned char sum = 0;
  455. for( i = ATARI_CKS_RANGE_START; i <= ATARI_CKS_RANGE_END; ++i )
  456. sum += nvram_read_int( i );
  457. return( nvram_read_int( ATARI_CKS_LOC ) == (~sum & 0xff) &&
  458. nvram_read_int( ATARI_CKS_LOC+1 ) == (sum & 0xff) );
  459. }
  460. static void atari_set_checksum( void )
  461. {
  462. int i;
  463. unsigned char sum = 0;
  464. for( i = ATARI_CKS_RANGE_START; i <= ATARI_CKS_RANGE_END; ++i )
  465. sum += nvram_read_int( i );
  466. nvram_write_int( ~sum, ATARI_CKS_LOC );
  467. nvram_write_int( sum, ATARI_CKS_LOC+1 );
  468. }
  469. #ifdef CONFIG_PROC_FS
  470. static struct {
  471. unsigned char val;
  472. char *name;
  473. } boot_prefs[] = {
  474. { 0x80, "TOS" },
  475. { 0x40, "ASV" },
  476. { 0x20, "NetBSD (?)" },
  477. { 0x10, "Linux" },
  478. { 0x00, "unspecified" }
  479. };
  480. static char *languages[] = {
  481. "English (US)",
  482. "German",
  483. "French",
  484. "English (UK)",
  485. "Spanish",
  486. "Italian",
  487. "6 (undefined)",
  488. "Swiss (French)",
  489. "Swiss (German)"
  490. };
  491. static char *dateformat[] = {
  492. "MM%cDD%cYY",
  493. "DD%cMM%cYY",
  494. "YY%cMM%cDD",
  495. "YY%cDD%cMM",
  496. "4 (undefined)",
  497. "5 (undefined)",
  498. "6 (undefined)",
  499. "7 (undefined)"
  500. };
  501. static char *colors[] = {
  502. "2", "4", "16", "256", "65536", "??", "??", "??"
  503. };
  504. #define fieldsize(a) (sizeof(a)/sizeof(*a))
  505. static int atari_proc_infos( unsigned char *nvram, char *buffer, int *len,
  506.     off_t *begin, off_t offset, int size )
  507. {
  508. int checksum = nvram_check_checksum();
  509. int i;
  510. unsigned vmode;
  511. PRINT_PROC( "Checksum status  : %svalidn", checksum ? "" : "not " );
  512. PRINT_PROC( "Boot preference  : " );
  513. for( i = fieldsize(boot_prefs)-1; i >= 0; --i ) {
  514. if (nvram[1] == boot_prefs[i].val) {
  515. PRINT_PROC( "%sn", boot_prefs[i].name );
  516. break;
  517. }
  518. }
  519. if (i < 0)
  520. PRINT_PROC( "0x%02x (undefined)n", nvram[1] );
  521. PRINT_PROC( "SCSI arbitration : %sn", (nvram[16] & 0x80) ? "on" : "off" );
  522. PRINT_PROC( "SCSI host ID     : " );
  523. if (nvram[16] & 0x80)
  524. PRINT_PROC( "%dn", nvram[16] & 7 );
  525. else
  526. PRINT_PROC( "n/an" );
  527. /* the following entries are defined only for the Falcon */
  528. if ((atari_mch_cookie >> 16) != ATARI_MCH_FALCON)
  529. return 1;
  530. PRINT_PROC( "OS language      : " );
  531. if (nvram[6] < fieldsize(languages))
  532. PRINT_PROC( "%sn", languages[nvram[6]] );
  533. else
  534. PRINT_PROC( "%u (undefined)n", nvram[6] );
  535. PRINT_PROC( "Keyboard language: " );
  536. if (nvram[7] < fieldsize(languages))
  537. PRINT_PROC( "%sn", languages[nvram[7]] );
  538. else
  539. PRINT_PROC( "%u (undefined)n", nvram[7] );
  540. PRINT_PROC( "Date format      : " );
  541. PRINT_PROC( dateformat[nvram[8]&7],
  542. nvram[9] ? nvram[9] : '/', nvram[9] ? nvram[9] : '/' );
  543. PRINT_PROC( ", %dh clockn", nvram[8] & 16 ? 24 : 12 );
  544. PRINT_PROC( "Boot delay       : " );
  545. if (nvram[10] == 0)
  546. PRINT_PROC( "default" );
  547. else
  548. PRINT_PROC( "%ds%sn", nvram[10],
  549. nvram[10] < 8 ? ", no memory test" : "" );
  550. vmode = (nvram[14] << 8) || nvram[15];
  551. PRINT_PROC( "Video mode       : %s colors, %d columns, %s %s monitorn",
  552. colors[vmode & 7],
  553. vmode & 8 ? 80 : 40,
  554. vmode & 16 ? "VGA" : "TV",
  555. vmode & 32 ? "PAL" : "NTSC" );
  556. PRINT_PROC( "                   %soverscan, compat. mode %s%sn",
  557. vmode & 64 ? "" : "no ",
  558. vmode & 128 ? "on" : "off",
  559. vmode & 256 ?
  560.   (vmode & 16 ? ", line doubling" : ", half screen") : "" );
  561. return( 1 );
  562. }
  563. #endif
  564. #endif /* MACH == ATARI */
  565. MODULE_LICENSE("GPL");
  566. EXPORT_NO_SYMBOLS;
  567. /*
  568.  * Local variables:
  569.  *  c-indent-level: 4
  570.  *  tab-width: 4
  571.  * End:
  572.  */