2 * CMOS/NV-RAM driver for Linux
4 * Copyright (C) 1997 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
5 * idea by and with help from Richard Jelinek <rj@suse.de>
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).
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).
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!)
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.
30 #define NVRAM_VERSION "1.0"
32 #include <linux/module.h>
33 #include <linux/config.h>
38 /* select machine configuration */
39 #if defined(CONFIG_ATARI)
41 #elif defined(__i386__) /* and others?? */
44 #error Cannot build nvram driver for this machine configuration.
50 #define CHECK_DRIVER_INIT() 1
52 /* On PCs, the checksum is built only over bytes 2..31 */
53 #define PC_CKS_RANGE_START 2
54 #define PC_CKS_RANGE_END 31
57 #define mach_check_checksum pc_check_checksum
58 #define mach_set_checksum pc_set_checksum
59 #define mach_proc_infos pc_proc_infos
65 /* Special parameters for RTC in Atari machines */
66 #include <asm/atarihw.h>
67 #include <asm/atariints.h>
68 #define RTC_PORT(x) (TT_RTC_BAS + 2*(x))
69 #define CHECK_DRIVER_INIT() (MACH_IS_ATARI && ATARIHW_PRESENT(TT_CLK))
71 /* On Ataris, the checksum is over all bytes except the checksum bytes
72 * themselves; these are at the very end */
73 #define ATARI_CKS_RANGE_START 0
74 #define ATARI_CKS_RANGE_END 47
75 #define ATARI_CKS_LOC 48
77 #define mach_check_checksum atari_check_checksum
78 #define mach_set_checksum atari_set_checksum
79 #define mach_proc_infos atari_proc_infos
83 /* Note that *all* calls to CMOS_READ and CMOS_WRITE must be done with
84 * interrupts disabled. Due to the index-port/data-port design of the RTC, we
85 * don't want two different things trying to get to it at once. (e.g. the
86 * periodic 11 min sync from time.c vs. this driver.)
89 #include <linux/types.h>
90 #include <linux/errno.h>
91 #include <linux/miscdevice.h>
92 #include <linux/malloc.h>
93 #include <linux/ioport.h>
94 #include <linux/fcntl.h>
95 #include <linux/mc146818rtc.h>
96 #include <linux/nvram.h>
97 #include <linux/init.h>
98 #include <linux/proc_fs.h>
101 #include <asm/uaccess.h>
102 #include <asm/system.h>
105 static int nvram_open_cnt
= 0; /* #times opened */
106 static int nvram_open_mode
; /* special open modes */
107 #define NVRAM_WRITE 1 /* opened for writing (exclusive) */
108 #define NVRAM_EXCL 2 /* opened with O_EXCL */
110 #define RTC_FIRST_BYTE 14 /* RTC register number of first NVRAM byte */
111 #define NVRAM_BYTES 50 /* number of NVRAM bytes */
114 static int mach_check_checksum( void );
115 static void mach_set_checksum( void );
116 #ifdef CONFIG_PROC_FS
117 static int mach_proc_infos( unsigned char *contents
, char *buffer
, int *len
,
118 off_t
*begin
, off_t offset
, int size
);
123 * These are the internal NVRAM access functions, which do NOT disable
124 * interrupts and do not check the checksum. Both tasks are left to higher
125 * level function, so they need to be done only once per syscall.
128 static __inline__
unsigned char nvram_read_int( int i
)
130 return( CMOS_READ( RTC_FIRST_BYTE
+i
) );
133 static __inline__
void nvram_write_int( unsigned char c
, int i
)
135 CMOS_WRITE( c
, RTC_FIRST_BYTE
+i
);
138 static __inline__
int nvram_check_checksum_int( void )
140 return( mach_check_checksum() );
143 static __inline__
void nvram_set_checksum_int( void )
151 * These non-internal functions are provided to be called by other parts of
152 * the kernel. It's up to the caller to ensure correct checksum before reading
153 * or after writing (needs to be done only once).
155 * They're only built if CONFIG_ATARI is defined, because Atari drivers use
156 * them. For other configurations (PC), the rest of the kernel can't rely on
157 * them being present (this driver may not be configured at all, or as a
158 * module), so they access config information themselves.
161 unsigned char nvram_read_byte( int i
)
168 c
= nvram_read_int( i
);
169 restore_flags(flags
);
173 void nvram_write_byte( unsigned char c
, int i
)
179 nvram_write_int( c
, i
);
180 restore_flags(flags
);
183 int nvram_check_checksum( void )
190 rv
= nvram_check_checksum_int();
191 restore_flags(flags
);
195 void nvram_set_checksum( void )
201 nvram_set_checksum_int();
202 restore_flags(flags
);
205 #endif /* MACH == ATARI */
209 * The are the file operation function for user access to /dev/nvram
212 static long long nvram_llseek(struct file
*file
,loff_t offset
, int origin
)
219 offset
+= file
->f_pos
;
222 offset
+= NVRAM_BYTES
;
225 return( (offset
>= 0) ? (file
->f_pos
= offset
) : -EINVAL
);
228 static ssize_t
nvram_read(struct file
* file
,
229 char * buf
, size_t count
, loff_t
*ppos
)
241 if (!nvram_check_checksum_int()) {
242 restore_flags(flags
);
246 for( ; count
-- > 0 && i
< NVRAM_BYTES
; ++i
, ++tmp
)
247 put_user( nvram_read_int(i
), tmp
);
250 restore_flags(flags
);
254 static ssize_t
nvram_write(struct file
* file
,
255 const char * buf
, size_t count
, loff_t
*ppos
)
259 const char *tmp
= buf
;
268 if (!nvram_check_checksum_int()) {
269 restore_flags(flags
);
273 for( ; count
-- > 0 && i
< NVRAM_BYTES
; ++i
, ++tmp
) {
275 nvram_write_int( c
, i
);
277 nvram_set_checksum_int();
280 restore_flags(flags
);
284 static int nvram_ioctl( struct inode
*inode
, struct file
*file
,
285 unsigned int cmd
, unsigned long arg
)
292 case NVRAM_INIT
: /* initialize NVRAM contents and checksum */
293 if (!capable(CAP_SYS_ADMIN
))
299 for( i
= 0; i
< NVRAM_BYTES
; ++i
)
300 nvram_write_int( 0, i
);
301 nvram_set_checksum_int();
303 restore_flags(flags
);
306 case NVRAM_SETCKS
: /* just set checksum, contents unchanged
307 * (maybe useful after checksum garbaged
309 if (!capable(CAP_SYS_ADMIN
))
314 nvram_set_checksum_int();
315 restore_flags(flags
);
323 static int nvram_open( struct inode
*inode
, struct file
*file
)
325 if ((nvram_open_cnt
&& (file
->f_flags
& O_EXCL
)) ||
326 (nvram_open_mode
& NVRAM_EXCL
) ||
327 ((file
->f_mode
& 2) && (nvram_open_mode
& NVRAM_WRITE
)))
330 if (file
->f_flags
& O_EXCL
)
331 nvram_open_mode
|= NVRAM_EXCL
;
332 if (file
->f_mode
& 2)
333 nvram_open_mode
|= NVRAM_WRITE
;
339 static int nvram_release( struct inode
*inode
, struct file
*file
)
342 if (file
->f_flags
& O_EXCL
)
343 nvram_open_mode
&= ~NVRAM_EXCL
;
344 if (file
->f_mode
& 2)
345 nvram_open_mode
&= ~NVRAM_WRITE
;
352 #ifdef CONFIG_PROC_FS
353 static int nvram_read_proc( char *buffer
, char **start
, off_t offset
,
358 static int nvram_read_proc( char *buffer
, char **start
, off_t offset
,
359 int size
, int *eof
, void *data
)
362 unsigned char contents
[NVRAM_BYTES
];
368 for( i
= 0; i
< NVRAM_BYTES
; ++i
)
369 contents
[i
] = nvram_read_int( i
);
370 restore_flags(flags
);
372 *eof
= mach_proc_infos( contents
, buffer
, &len
, &begin
, offset
, size
);
374 if (offset
>= begin
+ len
)
376 *start
= buffer
+ (begin
- offset
);
377 return( size
< begin
+ len
- offset
? size
: begin
+ len
- offset
);
381 /* This macro frees the machine specific function from bounds checking and
382 * this like that... */
383 #define PRINT_PROC(fmt,args...) \
385 *len += sprintf( buffer+*len, fmt, ##args ); \
386 if (*begin + *len > offset + size) \
388 if (*begin + *len < offset) { \
394 #endif /* CONFIG_PROC_FS */
396 static struct file_operations nvram_fops
= {
400 NULL
, /* No readdir */
409 static struct miscdevice nvram_dev
= {
416 static int __init
nvram_init(void)
418 /* First test whether the driver should init at all */
419 if (!CHECK_DRIVER_INIT())
422 printk(KERN_INFO
"Non-volatile memory driver v%s\n", NVRAM_VERSION
);
423 misc_register( &nvram_dev
);
424 create_proc_read_entry("driver/nvram",0,0,nvram_read_proc
,NULL
);
428 static void __exit
nvram_cleanup_module (void)
430 remove_proc_entry( "driver/nvram", 0 );
431 misc_deregister( &nvram_dev
);
434 module_init(nvram_init
);
435 module_exit(nvram_cleanup_module
);
439 * Machine specific functions
445 static int pc_check_checksum( void )
448 unsigned short sum
= 0;
450 for( i
= PC_CKS_RANGE_START
; i
<= PC_CKS_RANGE_END
; ++i
)
451 sum
+= nvram_read_int( i
);
452 return( (sum
& 0xffff) ==
453 ((nvram_read_int(PC_CKS_LOC
) << 8) |
454 nvram_read_int(PC_CKS_LOC
+1)) );
457 static void pc_set_checksum( void )
460 unsigned short sum
= 0;
462 for( i
= PC_CKS_RANGE_START
; i
<= PC_CKS_RANGE_END
; ++i
)
463 sum
+= nvram_read_int( i
);
464 nvram_write_int( sum
>> 8, PC_CKS_LOC
);
465 nvram_write_int( sum
& 0xff, PC_CKS_LOC
+1 );
468 #ifdef CONFIG_PROC_FS
470 static char *floppy_types
[] = {
471 "none", "5.25'' 360k", "5.25'' 1.2M", "3.5'' 720k", "3.5'' 1.44M", "3.5'' 2.88M"
474 static char *gfx_types
[] = {
475 "EGA, VGA, ... (with BIOS)",
481 static int pc_proc_infos( unsigned char *nvram
, char *buffer
, int *len
,
482 off_t
*begin
, off_t offset
, int size
)
490 checksum
= nvram_check_checksum_int();
491 restore_flags(flags
);
493 PRINT_PROC( "Checksum status: %svalid\n", checksum
? "" : "not " );
495 PRINT_PROC( "# floppies : %d\n",
496 (nvram
[6] & 1) ? (nvram
[6] >> 6) + 1 : 0 );
497 PRINT_PROC( "Floppy 0 type : " );
498 type
= nvram
[2] >> 4;
499 if (type
< sizeof(floppy_types
)/sizeof(*floppy_types
))
500 PRINT_PROC( "%s\n", floppy_types
[type
] );
502 PRINT_PROC( "%d (unknown)\n", type
);
503 PRINT_PROC( "Floppy 1 type : " );
504 type
= nvram
[2] & 0x0f;
505 if (type
< sizeof(floppy_types
)/sizeof(*floppy_types
))
506 PRINT_PROC( "%s\n", floppy_types
[type
] );
508 PRINT_PROC( "%d (unknown)\n", type
);
510 PRINT_PROC( "HD 0 type : " );
511 type
= nvram
[4] >> 4;
513 PRINT_PROC( "%02x\n", type
== 0x0f ? nvram
[11] : type
);
515 PRINT_PROC( "none\n" );
517 PRINT_PROC( "HD 1 type : " );
518 type
= nvram
[4] & 0x0f;
520 PRINT_PROC( "%02x\n", type
== 0x0f ? nvram
[12] : type
);
522 PRINT_PROC( "none\n" );
524 PRINT_PROC( "HD type 48 data: %d/%d/%d C/H/S, precomp %d, lz %d\n",
525 nvram
[18] | (nvram
[19] << 8),
526 nvram
[20], nvram
[25],
527 nvram
[21] | (nvram
[22] << 8),
528 nvram
[23] | (nvram
[24] << 8) );
529 PRINT_PROC( "HD type 49 data: %d/%d/%d C/H/S, precomp %d, lz %d\n",
530 nvram
[39] | (nvram
[40] << 8),
531 nvram
[41], nvram
[46],
532 nvram
[42] | (nvram
[43] << 8),
533 nvram
[44] | (nvram
[45] << 8) );
535 PRINT_PROC( "DOS base memory: %d kB\n", nvram
[7] | (nvram
[8] << 8) );
536 PRINT_PROC( "Extended memory: %d kB (configured), %d kB (tested)\n",
537 nvram
[9] | (nvram
[10] << 8),
538 nvram
[34] | (nvram
[35] << 8) );
540 PRINT_PROC( "Gfx adapter : %s\n", gfx_types
[ (nvram
[6] >> 4)&3 ] );
542 PRINT_PROC( "FPU : %sinstalled\n",
543 (nvram
[6] & 2) ? "" : "not " );
549 #endif /* MACH == PC */
553 static int atari_check_checksum( void )
556 unsigned char sum
= 0;
558 for( i
= ATARI_CKS_RANGE_START
; i
<= ATARI_CKS_RANGE_END
; ++i
)
559 sum
+= nvram_read_int( i
);
560 return( nvram_read_int( ATARI_CKS_LOC
) == (~sum
& 0xff) &&
561 nvram_read_int( ATARI_CKS_LOC
+1 ) == (sum
& 0xff) );
564 static void atari_set_checksum( void )
567 unsigned char sum
= 0;
569 for( i
= ATARI_CKS_RANGE_START
; i
<= ATARI_CKS_RANGE_END
; ++i
)
570 sum
+= nvram_read_int( i
);
571 nvram_write_int( ~sum
, ATARI_CKS_LOC
);
572 nvram_write_int( sum
, ATARI_CKS_LOC
+1 );
575 #ifdef CONFIG_PROC_FS
583 { 0x20, "NetBSD (?)" },
585 { 0x00, "unspecified" }
588 static char *languages
[] = {
600 static char *dateformat
[] = {
611 static char *colors
[] = {
612 "2", "4", "16", "256", "65536", "??", "??", "??"
615 #define fieldsize(a) (sizeof(a)/sizeof(*a))
617 static int atari_proc_infos( unsigned char *nvram
, char *buffer
, int *len
,
618 off_t
*begin
, off_t offset
, int size
)
620 int checksum
= nvram_check_checksum();
624 PRINT_PROC( "Checksum status : %svalid\n", checksum
? "" : "not " );
626 PRINT_PROC( "Boot preference : " );
627 for( i
= fieldsize(boot_prefs
)-1; i
>= 0; --i
) {
628 if (nvram
[1] == boot_prefs
[i
].val
) {
629 PRINT_PROC( "%s\n", boot_prefs
[i
].name
);
634 PRINT_PROC( "0x%02x (undefined)\n", nvram
[1] );
636 PRINT_PROC( "SCSI arbitration : %s\n", (nvram
[16] & 0x80) ? "on" : "off" );
637 PRINT_PROC( "SCSI host ID : " );
638 if (nvram
[16] & 0x80)
639 PRINT_PROC( "%d\n", nvram
[16] & 7 );
641 PRINT_PROC( "n/a\n" );
643 /* the following entries are defined only for the Falcon */
644 if ((atari_mch_cookie
>> 16) != ATARI_MCH_FALCON
)
647 PRINT_PROC( "OS language : " );
648 if (nvram
[6] < fieldsize(languages
))
649 PRINT_PROC( "%s\n", languages
[nvram
[6]] );
651 PRINT_PROC( "%u (undefined)\n", nvram
[6] );
652 PRINT_PROC( "Keyboard language: " );
653 if (nvram
[7] < fieldsize(languages
))
654 PRINT_PROC( "%s\n", languages
[nvram
[7]] );
656 PRINT_PROC( "%u (undefined)\n", nvram
[7] );
657 PRINT_PROC( "Date format : " );
658 PRINT_PROC( dateformat
[nvram
[8]&7],
659 nvram
[9] ? nvram
[9] : '/', nvram
[9] ? nvram
[9] : '/' );
660 PRINT_PROC( ", %dh clock\n", nvram
[8] & 16 ? 24 : 12 );
661 PRINT_PROC( "Boot delay : " );
663 PRINT_PROC( "default" );
665 PRINT_PROC( "%ds%s\n", nvram
[10],
666 nvram
[10] < 8 ? ", no memory test" : "" );
668 vmode
= (nvram
[14] << 8) || nvram
[15];
669 PRINT_PROC( "Video mode : %s colors, %d columns, %s %s monitor\n",
672 vmode
& 16 ? "VGA" : "TV",
673 vmode
& 32 ? "PAL" : "NTSC" );
674 PRINT_PROC( " %soverscan, compat. mode %s%s\n",
675 vmode
& 64 ? "" : "no ",
676 vmode
& 128 ? "on" : "off",
678 (vmode
& 16 ? ", line doubling" : ", half screen") : "" );
684 #endif /* MACH == ATARI */