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

Linux/Unix编程

开发平台:

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.  * Portions copyright (c) 2001,2002 Sun Microsystems (thockin@sun.com)
  7.  *
  8.  * This driver allows you to access the contents of the non-volatile memory in
  9.  * the mc146818rtc.h real-time clock. This chip is built into all PCs and into
  10.  * many Atari machines. In the former it's called "CMOS-RAM", in the latter
  11.  * "NVRAM" (NV stands for non-volatile).
  12.  *
  13.  * The data are supplied as a (seekable) character device, /dev/nvram. The
  14.  * size of this file is dependant on the controller.  The usual size is 114,
  15.  * the number of freely available bytes in the memory (i.e., not used by the
  16.  * RTC itself).
  17.  *
  18.  * Checksums over the NVRAM contents are managed by this driver. In case of a
  19.  * bad checksum, reads and writes return -EIO. The checksum can be initialized
  20.  * to a sane state either by ioctl(NVRAM_INIT) (clear whole NVRAM) or
  21.  * ioctl(NVRAM_SETCKS) (doesn't change contents, just makes checksum valid
  22.  * again; use with care!)
  23.  *
  24.  * This file also provides some functions for other parts of the kernel that
  25.  * want to access the NVRAM: nvram_{read,write,check_checksum,set_checksum}.
  26.  * Obviously this can be used only if this driver is always configured into
  27.  * the kernel and is not a module. Since the functions are used by some Atari
  28.  * drivers, this is the case on the Atari.
  29.  *
  30.  *
  31.  *  1.1 Cesar Barros: SMP locking fixes
  32.  *  added changelog
  33.  *  1.2 Erik Gilling: Cobalt Networks support
  34.  *  Tim Hockin: general cleanup, Cobalt support
  35.  */
  36. #define NVRAM_VERSION "1.2"
  37. #include <linux/module.h>
  38. #include <linux/config.h>
  39. #include <linux/sched.h>
  40. #include <linux/smp_lock.h>
  41. #include <linux/nvram.h>
  42. #define PC 1
  43. #define ATARI 2
  44. #define COBALT 3
  45. /* select machine configuration */
  46. #if defined(CONFIG_ATARI)
  47. #  define MACH ATARI
  48. #elif defined(__i386__) || defined(__x86_64__) || defined(__arm__)  /* and others?? */
  49. #define MACH PC
  50. #  if defined(CONFIG_COBALT)
  51. #    include <linux/cobalt-nvram.h>
  52. #    define MACH COBALT
  53. #  else
  54. #    define MACH PC
  55. #  endif
  56. #else
  57. #  error Cannot build nvram driver for this machine configuration.
  58. #endif
  59. #if MACH == PC
  60. /* RTC in a PC */
  61. #define CHECK_DRIVER_INIT() 1
  62. /* On PCs, the checksum is built only over bytes 2..31 */
  63. #define PC_CKS_RANGE_START 2
  64. #define PC_CKS_RANGE_END 31
  65. #define PC_CKS_LOC 32
  66. #define NVRAM_BYTES (128-NVRAM_FIRST_BYTE)
  67. #define mach_check_checksum pc_check_checksum
  68. #define mach_set_checksum pc_set_checksum
  69. #define mach_proc_infos pc_proc_infos
  70. #endif
  71. #if MACH == COBALT
  72. #define CHECK_DRIVER_INIT()     1
  73. #define NVRAM_BYTES (128-NVRAM_FIRST_BYTE)
  74. #define mach_check_checksum cobalt_check_checksum
  75. #define mach_set_checksum cobalt_set_checksum
  76. #define mach_proc_infos cobalt_proc_infos
  77. #endif
  78. #if MACH == ATARI
  79. /* Special parameters for RTC in Atari machines */
  80. #include <asm/atarihw.h>
  81. #include <asm/atariints.h>
  82. #define RTC_PORT(x) (TT_RTC_BAS + 2*(x))
  83. #define CHECK_DRIVER_INIT() (MACH_IS_ATARI && ATARIHW_PRESENT(TT_CLK))
  84. /* On Ataris, the checksum is over all bytes except the checksum bytes
  85.  * themselves; these are at the very end */
  86. #define ATARI_CKS_RANGE_START 0
  87. #define ATARI_CKS_RANGE_END 47
  88. #define ATARI_CKS_LOC 48
  89. #define mach_check_checksum atari_check_checksum
  90. #define mach_set_checksum atari_set_checksum
  91. #define mach_proc_infos atari_proc_infos
  92. #endif
  93. /* Note that *all* calls to CMOS_READ and CMOS_WRITE must be done with
  94.  * rtc_lock held. Due to the index-port/data-port design of the RTC, we
  95.  * don't want two different things trying to get to it at once. (e.g. the
  96.  * periodic 11 min sync from time.c vs. this driver.)
  97.  */
  98. #include <linux/types.h>
  99. #include <linux/errno.h>
  100. #include <linux/miscdevice.h>
  101. #include <linux/slab.h>
  102. #include <linux/ioport.h>
  103. #include <linux/fcntl.h>
  104. #include <linux/mc146818rtc.h>
  105. #include <linux/init.h>
  106. #include <linux/proc_fs.h>
  107. #include <linux/spinlock.h>
  108. #include <asm/io.h>
  109. #include <asm/uaccess.h>
  110. #include <asm/system.h>
  111. static spinlock_t nvram_state_lock = SPIN_LOCK_UNLOCKED;
  112. static int nvram_open_cnt; /* #times opened */
  113. static int nvram_open_mode; /* special open modes */
  114. #define NVRAM_WRITE 1 /* opened for writing (exclusive) */
  115. #define NVRAM_EXCL 2 /* opened with O_EXCL */
  116. static int mach_check_checksum(void);
  117. static void mach_set_checksum(void);
  118. #ifdef CONFIG_PROC_FS
  119. static int mach_proc_infos(unsigned char *contents, char *buffer, int *len,
  120.     off_t *begin, off_t offset, int size);
  121. #endif
  122. /*
  123.  * These functions are provided to be called internally or by other parts of
  124.  * the kernel. It's up to the caller to ensure correct checksum before reading
  125.  * or after writing (needs to be done only once).
  126.  *
  127.  * It is worth noting that these functions all access bytes of general
  128.  * purpose memory in the NVRAM - that is to say, they all add the
  129.  * NVRAM_FIRST_BYTE offset.  Pass them offsets into NVRAM as if you did not 
  130.  * know about the RTC cruft.
  131.  */
  132. unsigned char
  133. __nvram_read_byte(int i)
  134. {
  135. return CMOS_READ(NVRAM_FIRST_BYTE + i);
  136. }
  137. unsigned char
  138. nvram_read_byte(int i)
  139. {
  140. unsigned long flags;
  141. unsigned char c;
  142. spin_lock_irqsave(&rtc_lock, flags);
  143. c = __nvram_read_byte(i);
  144. spin_unlock_irqrestore(&rtc_lock, flags);
  145. return c;
  146. }
  147. /* This races nicely with trying to read with checksum checking (nvram_read) */
  148. void
  149. __nvram_write_byte(unsigned char c, int i)
  150. {
  151. CMOS_WRITE(c, NVRAM_FIRST_BYTE + i);
  152. }
  153. void
  154. nvram_write_byte(unsigned char c, int i)
  155. {
  156. unsigned long flags;
  157. spin_lock_irqsave(&rtc_lock, flags);
  158. __nvram_write_byte(c, i);
  159. spin_unlock_irqrestore(&rtc_lock, flags);
  160. }
  161. int
  162. __nvram_check_checksum(void)
  163. {
  164. return mach_check_checksum();
  165. }
  166. int
  167. nvram_check_checksum(void)
  168. {
  169. unsigned long flags;
  170. int rv;
  171. spin_lock_irqsave(&rtc_lock, flags);
  172. rv = __nvram_check_checksum();
  173. spin_unlock_irqrestore(&rtc_lock, flags);
  174. return rv;
  175. }
  176. void
  177. __nvram_set_checksum(void)
  178. {
  179. mach_set_checksum();
  180. }
  181. void
  182. nvram_set_checksum(void)
  183. {
  184. unsigned long flags;
  185. spin_lock_irqsave(&rtc_lock, flags);
  186. __nvram_set_checksum();
  187. spin_unlock_irqrestore(&rtc_lock, flags);
  188. }
  189. /*
  190.  * The are the file operation function for user access to /dev/nvram
  191.  */
  192. static long long
  193. nvram_llseek(struct file *file, loff_t offset, int origin)
  194. {
  195. switch (origin) {
  196. case 0:
  197. /* nothing to do */
  198. break;
  199. case 1:
  200. offset += file->f_pos;
  201. break;
  202. case 2:
  203. offset += NVRAM_BYTES;
  204. break;
  205. }
  206. return (offset >= 0) ? (file->f_pos = offset) : -EINVAL;
  207. }
  208. static ssize_t
  209. nvram_read(struct file *file, char *buf, size_t count, loff_t *ppos)
  210. {
  211. unsigned char contents[NVRAM_BYTES];
  212. unsigned i = *ppos;
  213. unsigned char *tmp;
  214. spin_lock_irq(&rtc_lock);
  215. if (!__nvram_check_checksum())
  216. goto checksum_err;
  217. for (tmp = contents; count-- > 0 && i < NVRAM_BYTES; ++i, ++tmp)
  218. *tmp = __nvram_read_byte(i);
  219. spin_unlock_irq(&rtc_lock);
  220. if (copy_to_user(buf, contents, tmp - contents))
  221. return -EFAULT;
  222. *ppos = i;
  223. return tmp - contents;
  224.       checksum_err:
  225. spin_unlock_irq(&rtc_lock);
  226. return -EIO;
  227. }
  228. static ssize_t
  229. nvram_write(struct file *file, const char *buf, size_t count, loff_t *ppos)
  230. {
  231. unsigned char contents[NVRAM_BYTES];
  232. unsigned i = *ppos;
  233. unsigned char *tmp;
  234. int len;
  235. len = (NVRAM_BYTES - i) < count ? (NVRAM_BYTES - i) : count;
  236. if (copy_from_user(contents, buf, len))
  237. return -EFAULT;
  238. spin_lock_irq(&rtc_lock);
  239. if (!__nvram_check_checksum())
  240. goto checksum_err;
  241. for (tmp = contents; count-- > 0 && i < NVRAM_BYTES; ++i, ++tmp)
  242. __nvram_write_byte(*tmp, i);
  243. __nvram_set_checksum();
  244. spin_unlock_irq(&rtc_lock);
  245. *ppos = i;
  246. return tmp - contents;
  247.       checksum_err:
  248. spin_unlock_irq(&rtc_lock);
  249. return -EIO;
  250. }
  251. static int
  252. nvram_ioctl(struct inode *inode, struct file *file,
  253.     unsigned int cmd, unsigned long arg)
  254. {
  255. int i;
  256. switch (cmd) {
  257. case NVRAM_INIT:
  258. /* initialize NVRAM contents and checksum */
  259. if (!capable(CAP_SYS_ADMIN))
  260. return -EACCES;
  261. spin_lock_irq(&rtc_lock);
  262. for (i = 0; i < NVRAM_BYTES; ++i)
  263. __nvram_write_byte(0, i);
  264. __nvram_set_checksum();
  265. spin_unlock_irq(&rtc_lock);
  266. return 0;
  267. case NVRAM_SETCKS:
  268. /* just set checksum, contents unchanged (maybe useful after 
  269.  * checksum garbaged somehow...) */
  270. if (!capable(CAP_SYS_ADMIN))
  271. return -EACCES;
  272. spin_lock_irq(&rtc_lock);
  273. __nvram_set_checksum();
  274. spin_unlock_irq(&rtc_lock);
  275. return 0;
  276. default:
  277. return -ENOTTY;
  278. }
  279. }
  280. static int
  281. nvram_open(struct inode *inode, struct file *file)
  282. {
  283. spin_lock(&nvram_state_lock);
  284. if ((nvram_open_cnt && (file->f_flags & O_EXCL)) ||
  285.     (nvram_open_mode & NVRAM_EXCL) ||
  286.     ((file->f_mode & 2) && (nvram_open_mode & NVRAM_WRITE))) {
  287. spin_unlock(&nvram_state_lock);
  288. return -EBUSY;
  289. }
  290. if (file->f_flags & O_EXCL)
  291. nvram_open_mode |= NVRAM_EXCL;
  292. if (file->f_mode & 2)
  293. nvram_open_mode |= NVRAM_WRITE;
  294. nvram_open_cnt++;
  295. spin_unlock(&nvram_state_lock);
  296. return 0;
  297. }
  298. static int
  299. nvram_release(struct inode *inode, struct file *file)
  300. {
  301. spin_lock(&nvram_state_lock);
  302. nvram_open_cnt--;
  303. /* if only one instance is open, clear the EXCL bit */
  304. if (nvram_open_mode & NVRAM_EXCL)
  305. nvram_open_mode &= ~NVRAM_EXCL;
  306. if (file->f_mode & 2)
  307. nvram_open_mode &= ~NVRAM_WRITE;
  308. spin_unlock(&nvram_state_lock);
  309. return 0;
  310. }
  311. #ifndef CONFIG_PROC_FS
  312. static int
  313. nvram_read_proc(char *buffer, char **start, off_t offset,
  314.     int size, int *eof, void *data)
  315. {
  316. return 0;
  317. }
  318. #else
  319. static int
  320. nvram_read_proc(char *buffer, char **start, off_t offset,
  321.     int size, int *eof, void *data)
  322. {
  323. unsigned char contents[NVRAM_BYTES];
  324. int i, len = 0;
  325. off_t begin = 0;
  326. spin_lock_irq(&rtc_lock);
  327. for (i = 0; i < NVRAM_BYTES; ++i)
  328. contents[i] = __nvram_read_byte(i);
  329. spin_unlock_irq(&rtc_lock);
  330. *eof = mach_proc_infos(contents, buffer, &len, &begin, offset, size);
  331. if (offset >= begin + len)
  332. return 0;
  333. *start = buffer + (offset - begin);
  334. return (size < begin + len - offset) ? size : begin + len - offset;
  335. }
  336. /* This macro frees the machine specific function from bounds checking and
  337.  * this like that... */
  338. #define PRINT_PROC(fmt,args...)
  339. do {
  340. *len += sprintf(buffer+*len, fmt, ##args);
  341. if (*begin + *len > offset + size)
  342. return 0;
  343. if (*begin + *len < offset) {
  344. *begin += *len;
  345. *len = 0;
  346. }
  347. } while(0)
  348. #endif /* CONFIG_PROC_FS */
  349. static struct file_operations nvram_fops = {
  350. owner: THIS_MODULE,
  351. llseek: nvram_llseek,
  352. read: nvram_read,
  353. write: nvram_write,
  354. ioctl: nvram_ioctl,
  355. open: nvram_open,
  356. release: nvram_release,
  357. };
  358. static struct miscdevice nvram_dev = {
  359. NVRAM_MINOR,
  360. "nvram",
  361. &nvram_fops
  362. };
  363. static int __init
  364. nvram_init(void)
  365. {
  366. int ret;
  367. /* First test whether the driver should init at all */
  368. if (!CHECK_DRIVER_INIT())
  369. return -ENXIO;
  370. ret = misc_register(&nvram_dev);
  371. if (ret) {
  372. printk(KERN_ERR "nvram: can't misc_register on minor=%dn",
  373.     NVRAM_MINOR);
  374. goto out;
  375. }
  376. if (!create_proc_read_entry("driver/nvram", 0, 0, nvram_read_proc,
  377. NULL)) {
  378. printk(KERN_ERR "nvram: can't create /proc/driver/nvramn");
  379. ret = -ENOMEM;
  380. goto outmisc;
  381. }
  382. ret = 0;
  383. printk(KERN_INFO "Non-volatile memory driver v" NVRAM_VERSION "n");
  384.       out:
  385. return ret;
  386.       outmisc:
  387. misc_deregister(&nvram_dev);
  388. goto out;
  389. }
  390. static void __exit
  391. nvram_cleanup_module(void)
  392. {
  393. remove_proc_entry("driver/nvram", 0);
  394. misc_deregister(&nvram_dev);
  395. }
  396. module_init(nvram_init);
  397. module_exit(nvram_cleanup_module);
  398. /*
  399.  * Machine specific functions
  400.  */
  401. #if MACH == PC
  402. static int
  403. pc_check_checksum(void)
  404. {
  405. int i;
  406. unsigned short sum = 0;
  407. unsigned short expect;
  408. for (i = PC_CKS_RANGE_START; i <= PC_CKS_RANGE_END; ++i)
  409. sum += __nvram_read_byte(i);
  410. expect = __nvram_read_byte(PC_CKS_LOC)<<8 |
  411.     __nvram_read_byte(PC_CKS_LOC+1);
  412. return ((sum & 0xffff) == expect);
  413. }
  414. static void
  415. pc_set_checksum(void)
  416. {
  417. int i;
  418. unsigned short sum = 0;
  419. for (i = PC_CKS_RANGE_START; i <= PC_CKS_RANGE_END; ++i)
  420. sum += __nvram_read_byte(i);
  421. __nvram_write_byte(sum >> 8, PC_CKS_LOC);
  422. __nvram_write_byte(sum & 0xff, PC_CKS_LOC + 1);
  423. }
  424. #ifdef CONFIG_PROC_FS
  425. static char *floppy_types[] = {
  426. "none", "5.25'' 360k", "5.25'' 1.2M", "3.5'' 720k", "3.5'' 1.44M",
  427. "3.5'' 2.88M", "3.5'' 2.88M"
  428. };
  429. static char *gfx_types[] = {
  430. "EGA, VGA, ... (with BIOS)",
  431. "CGA (40 cols)",
  432. "CGA (80 cols)",
  433. "monochrome",
  434. };
  435. static int
  436. pc_proc_infos(unsigned char *nvram, char *buffer, int *len,
  437.     off_t *begin, off_t offset, int size)
  438. {
  439. int checksum;
  440. int type;
  441. spin_lock_irq(&rtc_lock);
  442. checksum = __nvram_check_checksum();
  443. spin_unlock_irq(&rtc_lock);
  444. PRINT_PROC("Checksum status: %svalidn", checksum ? "" : "not ");
  445. PRINT_PROC("# floppies     : %dn",
  446.     (nvram[6] & 1) ? (nvram[6] >> 6) + 1 : 0);
  447. PRINT_PROC("Floppy 0 type  : ");
  448. type = nvram[2] >> 4;
  449. if (type < sizeof (floppy_types) / sizeof (*floppy_types))
  450. PRINT_PROC("%sn", floppy_types[type]);
  451. else
  452. PRINT_PROC("%d (unknown)n", type);
  453. PRINT_PROC("Floppy 1 type  : ");
  454. type = nvram[2] & 0x0f;
  455. if (type < sizeof (floppy_types) / sizeof (*floppy_types))
  456. PRINT_PROC("%sn", floppy_types[type]);
  457. else
  458. PRINT_PROC("%d (unknown)n", type);
  459. PRINT_PROC("HD 0 type      : ");
  460. type = nvram[4] >> 4;
  461. if (type)
  462. PRINT_PROC("%02xn", type == 0x0f ? nvram[11] : type);
  463. else
  464. PRINT_PROC("nonen");
  465. PRINT_PROC("HD 1 type      : ");
  466. type = nvram[4] & 0x0f;
  467. if (type)
  468. PRINT_PROC("%02xn", type == 0x0f ? nvram[12] : type);
  469. else
  470. PRINT_PROC("nonen");
  471. PRINT_PROC("HD type 48 data: %d/%d/%d C/H/S, precomp %d, lz %dn",
  472.     nvram[18] | (nvram[19] << 8),
  473.     nvram[20], nvram[25],
  474.     nvram[21] | (nvram[22] << 8), nvram[23] | (nvram[24] << 8));
  475. PRINT_PROC("HD type 49 data: %d/%d/%d C/H/S, precomp %d, lz %dn",
  476.     nvram[39] | (nvram[40] << 8),
  477.     nvram[41], nvram[46],
  478.     nvram[42] | (nvram[43] << 8), nvram[44] | (nvram[45] << 8));
  479. PRINT_PROC("DOS base memory: %d kBn", nvram[7] | (nvram[8] << 8));
  480. PRINT_PROC("Extended memory: %d kB (configured), %d kB (tested)n",
  481.     nvram[9] | (nvram[10] << 8), nvram[34] | (nvram[35] << 8));
  482. PRINT_PROC("Gfx adapter    : %sn", gfx_types[(nvram[6] >> 4) & 3]);
  483. PRINT_PROC("FPU            : %sinstalledn",
  484.     (nvram[6] & 2) ? "" : "not ");
  485. return 1;
  486. }
  487. #endif
  488. #endif /* MACH == PC */
  489. #if MACH == COBALT
  490. /* the cobalt CMOS has a wider range of it's checksum */
  491. static int cobalt_check_checksum(void)
  492. {
  493. int i;
  494. unsigned short sum = 0;
  495. unsigned short expect;
  496. for (i = COBT_CMOS_CKS_START; i <= COBT_CMOS_CKS_END; ++i) {
  497. if ((i == COBT_CMOS_CHECKSUM) || (i == (COBT_CMOS_CHECKSUM+1)))
  498. continue;
  499. sum += __nvram_read_byte(i);
  500. }
  501. expect = __nvram_read_byte(COBT_CMOS_CHECKSUM) << 8 |
  502.     __nvram_read_byte(COBT_CMOS_CHECKSUM+1);
  503. return ((sum & 0xffff) == expect);
  504. }
  505. static void cobalt_set_checksum(void)
  506. {
  507. int i;
  508. unsigned short sum = 0;
  509. for (i = COBT_CMOS_CKS_START; i <= COBT_CMOS_CKS_END; ++i) {
  510. if ((i == COBT_CMOS_CHECKSUM) || (i == (COBT_CMOS_CHECKSUM+1)))
  511. continue;
  512. sum += __nvram_read_byte(i);
  513. }
  514. __nvram_write_byte(sum >> 8, COBT_CMOS_CHECKSUM);
  515. __nvram_write_byte(sum & 0xff, COBT_CMOS_CHECKSUM+1);
  516. }
  517. #ifdef CONFIG_PROC_FS
  518. static int cobalt_proc_infos(unsigned char *nvram, char *buffer, int *len,
  519. off_t *begin, off_t offset, int size)
  520. {
  521. int i;
  522. unsigned int checksum;
  523. unsigned int flags;
  524. char sernum[14];
  525. char *key = "cNoEbTaWlOtR!";
  526. unsigned char bto_csum;
  527. spin_lock_irq(&rtc_lock);
  528. checksum = __nvram_check_checksum();
  529. spin_unlock_irq(&rtc_lock);
  530. PRINT_PROC("Checksum status: %svalidn", checksum ? "" : "not ");
  531. flags = nvram[COBT_CMOS_FLAG_BYTE_0] << 8 
  532.     | nvram[COBT_CMOS_FLAG_BYTE_1];
  533. PRINT_PROC("Console: %sn",
  534. flags & COBT_CMOS_CONSOLE_FLAG ?  "on": "off");
  535. PRINT_PROC("Firmware Debug Messages: %sn",
  536. flags & COBT_CMOS_DEBUG_FLAG ? "on": "off");
  537. PRINT_PROC("Auto Prompt: %sn",
  538. flags & COBT_CMOS_AUTO_PROMPT_FLAG ? "on": "off");
  539. PRINT_PROC("Shutdown Status: %sn",
  540. flags & COBT_CMOS_CLEAN_BOOT_FLAG ? "clean": "dirty");
  541. PRINT_PROC("Hardware Probe: %sn",
  542. flags & COBT_CMOS_HW_NOPROBE_FLAG ? "partial": "full");
  543. PRINT_PROC("System Fault: %sdetectedn",
  544. flags & COBT_CMOS_SYSFAULT_FLAG ? "": "not ");
  545. PRINT_PROC("Panic on OOPS: %sn",
  546. flags & COBT_CMOS_OOPSPANIC_FLAG ? "yes": "no");
  547. PRINT_PROC("Delayed Cache Initialization: %sn",
  548. flags & COBT_CMOS_DELAY_CACHE_FLAG ? "yes": "no");
  549. PRINT_PROC("Show Logo at Boot: %sn",
  550. flags & COBT_CMOS_NOLOGO_FLAG ? "no": "yes");
  551. PRINT_PROC("Boot Method: ");
  552. switch (nvram[COBT_CMOS_BOOT_METHOD]) {
  553. case COBT_CMOS_BOOT_METHOD_DISK:
  554. PRINT_PROC("diskn");
  555. break;
  556. case COBT_CMOS_BOOT_METHOD_ROM:
  557. PRINT_PROC("romn");
  558. break;
  559. case COBT_CMOS_BOOT_METHOD_NET:
  560. PRINT_PROC("netn");
  561. break;
  562. default:
  563. PRINT_PROC("unknownn");
  564. break;
  565. }
  566. PRINT_PROC("Primary Boot Device: %d:%dn",
  567. nvram[COBT_CMOS_BOOT_DEV0_MAJ],
  568. nvram[COBT_CMOS_BOOT_DEV0_MIN] );
  569. PRINT_PROC("Secondary Boot Device: %d:%dn",
  570. nvram[COBT_CMOS_BOOT_DEV1_MAJ],
  571. nvram[COBT_CMOS_BOOT_DEV1_MIN] );
  572. PRINT_PROC("Tertiary Boot Device: %d:%dn",
  573. nvram[COBT_CMOS_BOOT_DEV2_MAJ],
  574. nvram[COBT_CMOS_BOOT_DEV2_MIN] );
  575. PRINT_PROC("Uptime: %dn",
  576. nvram[COBT_CMOS_UPTIME_0] << 24 |
  577. nvram[COBT_CMOS_UPTIME_1] << 16 |
  578. nvram[COBT_CMOS_UPTIME_2] << 8  |
  579. nvram[COBT_CMOS_UPTIME_3]);
  580. PRINT_PROC("Boot Count: %dn",
  581. nvram[COBT_CMOS_BOOTCOUNT_0] << 24 |
  582. nvram[COBT_CMOS_BOOTCOUNT_1] << 16 |
  583. nvram[COBT_CMOS_BOOTCOUNT_2] << 8  |
  584. nvram[COBT_CMOS_BOOTCOUNT_3]);
  585. /* 13 bytes of serial num */
  586. for (i=0 ; i<13 ; i++) {
  587. sernum[i] = nvram[COBT_CMOS_SYS_SERNUM_0 + i];
  588. }
  589. sernum[13] = '';
  590. checksum = 0;
  591. for (i=0 ; i<13 ; i++) {
  592. checksum += sernum[i] ^ key[i];
  593. }
  594. checksum = ((checksum & 0x7f) ^ (0xd6)) & 0xff;
  595. PRINT_PROC("Serial Number: %s", sernum);
  596. if (checksum != nvram[COBT_CMOS_SYS_SERNUM_CSUM]) {
  597. PRINT_PROC(" (invalid checksum)");
  598. }
  599. PRINT_PROC("n");
  600. PRINT_PROC("Rom Revison: %d.%d.%dn", nvram[COBT_CMOS_ROM_REV_MAJ],
  601. nvram[COBT_CMOS_ROM_REV_MIN], nvram[COBT_CMOS_ROM_REV_REV]);
  602. PRINT_PROC("BTO Server: %d.%d.%d.%d", nvram[COBT_CMOS_BTO_IP_0],
  603. nvram[COBT_CMOS_BTO_IP_1], nvram[COBT_CMOS_BTO_IP_2],
  604. nvram[COBT_CMOS_BTO_IP_3]);
  605. bto_csum = nvram[COBT_CMOS_BTO_IP_0] + nvram[COBT_CMOS_BTO_IP_1]
  606. + nvram[COBT_CMOS_BTO_IP_2] + nvram[COBT_CMOS_BTO_IP_3];
  607. if (bto_csum != nvram[COBT_CMOS_BTO_IP_CSUM]) {
  608. PRINT_PROC(" (invalid checksum)");
  609. }
  610. PRINT_PROC("n");
  611. if (flags & COBT_CMOS_VERSION_FLAG
  612.  && nvram[COBT_CMOS_VERSION] >= COBT_CMOS_VER_BTOCODE) {
  613. PRINT_PROC("BTO Code: 0x%xn",
  614. nvram[COBT_CMOS_BTO_CODE_0] << 24 |
  615. nvram[COBT_CMOS_BTO_CODE_1] << 16 |
  616. nvram[COBT_CMOS_BTO_CODE_2] << 8 |
  617. nvram[COBT_CMOS_BTO_CODE_3]);
  618. }
  619. return 1;
  620. }
  621. #endif /* CONFIG_PROC_FS */
  622. #endif /* MACH == COBALT */
  623. #if MACH == ATARI
  624. static int
  625. atari_check_checksum(void)
  626. {
  627. int i;
  628. unsigned char sum = 0;
  629. for (i = ATARI_CKS_RANGE_START; i <= ATARI_CKS_RANGE_END; ++i)
  630. sum += __nvram_read_byte(i);
  631. return (__nvram_read_byte(ATARI_CKS_LOC) == (~sum & 0xff) &&
  632.     __nvram_read_byte(ATARI_CKS_LOC + 1) == (sum & 0xff));
  633. }
  634. static void
  635. atari_set_checksum(void)
  636. {
  637. int i;
  638. unsigned char sum = 0;
  639. for (i = ATARI_CKS_RANGE_START; i <= ATARI_CKS_RANGE_END; ++i)
  640. sum += __nvram_read_byte(i);
  641. __nvram_write_byte(~sum, ATARI_CKS_LOC);
  642. __nvram_write_byte(sum, ATARI_CKS_LOC + 1);
  643. }
  644. #ifdef CONFIG_PROC_FS
  645. static struct {
  646. unsigned char val;
  647. char *name;
  648. } boot_prefs[] = {
  649. { 0x80, "TOS" },
  650. { 0x40, "ASV" },
  651. { 0x20, "NetBSD (?)" },
  652. { 0x10, "Linux" },
  653. { 0x00, "unspecified" }
  654. };
  655. static char *languages[] = {
  656. "English (US)",
  657. "German",
  658. "French",
  659. "English (UK)",
  660. "Spanish",
  661. "Italian",
  662. "6 (undefined)",
  663. "Swiss (French)",
  664. "Swiss (German)"
  665. };
  666. static char *dateformat[] = {
  667. "MM%cDD%cYY",
  668. "DD%cMM%cYY",
  669. "YY%cMM%cDD",
  670. "YY%cDD%cMM",
  671. "4 (undefined)",
  672. "5 (undefined)",
  673. "6 (undefined)",
  674. "7 (undefined)"
  675. };
  676. static char *colors[] = {
  677. "2", "4", "16", "256", "65536", "??", "??", "??"
  678. };
  679. #define fieldsize(a) (sizeof(a)/sizeof(*a))
  680. static int
  681. atari_proc_infos(unsigned char *nvram, char *buffer, int *len,
  682.     off_t *begin, off_t offset, int size)
  683. {
  684. int checksum = nvram_check_checksum();
  685. int i;
  686. unsigned vmode;
  687. PRINT_PROC("Checksum status  : %svalidn", checksum ? "" : "not ");
  688. PRINT_PROC("Boot preference  : ");
  689. for (i = fieldsize(boot_prefs) - 1; i >= 0; --i) {
  690. if (nvram[1] == boot_prefs[i].val) {
  691. PRINT_PROC("%sn", boot_prefs[i].name);
  692. break;
  693. }
  694. }
  695. if (i < 0)
  696. PRINT_PROC("0x%02x (undefined)n", nvram[1]);
  697. PRINT_PROC("SCSI arbitration : %sn",
  698.     (nvram[16] & 0x80) ? "on" : "off");
  699. PRINT_PROC("SCSI host ID     : ");
  700. if (nvram[16] & 0x80)
  701. PRINT_PROC("%dn", nvram[16] & 7);
  702. else
  703. PRINT_PROC("n/an");
  704. /* the following entries are defined only for the Falcon */
  705. if ((atari_mch_cookie >> 16) != ATARI_MCH_FALCON)
  706. return 1;
  707. PRINT_PROC("OS language      : ");
  708. if (nvram[6] < fieldsize(languages))
  709. PRINT_PROC("%sn", languages[nvram[6]]);
  710. else
  711. PRINT_PROC("%u (undefined)n", nvram[6]);
  712. PRINT_PROC("Keyboard language: ");
  713. if (nvram[7] < fieldsize(languages))
  714. PRINT_PROC("%sn", languages[nvram[7]]);
  715. else
  716. PRINT_PROC("%u (undefined)n", nvram[7]);
  717. PRINT_PROC("Date format      : ");
  718. PRINT_PROC(dateformat[nvram[8] & 7],
  719.     nvram[9] ? nvram[9] : '/', nvram[9] ? nvram[9] : '/');
  720. PRINT_PROC(", %dh clockn", nvram[8] & 16 ? 24 : 12);
  721. PRINT_PROC("Boot delay       : ");
  722. if (nvram[10] == 0)
  723. PRINT_PROC("default");
  724. else
  725. PRINT_PROC("%ds%sn", nvram[10],
  726.     nvram[10] < 8 ? ", no memory test" : "");
  727. vmode = (nvram[14] << 8) || nvram[15];
  728. PRINT_PROC("Video mode       : %s colors, %d columns, %s %s monitorn",
  729.     colors[vmode & 7],
  730.     vmode & 8 ? 80 : 40,
  731.     vmode & 16 ? "VGA" : "TV", vmode & 32 ? "PAL" : "NTSC");
  732. PRINT_PROC("                   %soverscan, compat. mode %s%sn",
  733.     vmode & 64 ? "" : "no ",
  734.     vmode & 128 ? "on" : "off",
  735.     vmode & 256 ?
  736.     (vmode & 16 ? ", line doubling" : ", half screen") : "");
  737. return 1;
  738. }
  739. #endif
  740. #endif /* MACH == ATARI */
  741. MODULE_LICENSE("GPL");
  742. EXPORT_SYMBOL(__nvram_read_byte);
  743. EXPORT_SYMBOL(nvram_read_byte);
  744. EXPORT_SYMBOL(__nvram_write_byte);
  745. EXPORT_SYMBOL(nvram_write_byte);
  746. EXPORT_SYMBOL(__nvram_check_checksum);
  747. EXPORT_SYMBOL(nvram_check_checksum);
  748. EXPORT_SYMBOL(__nvram_set_checksum);
  749. EXPORT_SYMBOL(nvram_set_checksum);