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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Miscellaneous Mac68K-specific stuff 
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/types.h>
  6. #include <linux/errno.h>
  7. #include <linux/miscdevice.h>
  8. #include <linux/kernel.h>
  9. #include <linux/delay.h>
  10. #include <linux/sched.h>
  11. #include <linux/slab.h>
  12. #include <linux/time.h>
  13. #include <linux/rtc.h>
  14. #include <linux/mm.h>
  15. #include <linux/adb.h>
  16. #include <linux/cuda.h>
  17. #include <linux/pmu.h>
  18. #include <asm/uaccess.h>
  19. #include <asm/io.h>
  20. #include <asm/rtc.h>
  21. #include <asm/system.h>
  22. #include <asm/segment.h>
  23. #include <asm/setup.h>
  24. #include <asm/macintosh.h>
  25. #include <asm/mac_via.h>
  26. #include <asm/mac_oss.h>
  27. #define BOOTINFO_COMPAT_1_0
  28. #include <asm/bootinfo.h>
  29. #include <asm/machdep.h>
  30. /* Offset between Unix time (1970-based) and Mac time (1904-based) */
  31. #define RTC_OFFSET 2082844800
  32. extern struct mac_booter_data mac_bi_data;
  33. static void (*rom_reset)(void);
  34. /*
  35.  * Return the current time as the number of seconds since January 1, 1904.
  36.  */
  37. static long adb_read_time(void)
  38. {
  39. volatile struct adb_request req;
  40. long time;
  41. adb_request((struct adb_request *) &req, NULL,
  42. ADBREQ_RAW|ADBREQ_SYNC,
  43. 2, CUDA_PACKET, CUDA_GET_TIME);
  44. time = (req.reply[3] << 24) | (req.reply[4] << 16)
  45. | (req.reply[5] << 8) | req.reply[6];
  46. return time - RTC_OFFSET;
  47. }
  48. /*
  49.  * Set the current system time
  50.  */
  51. static void adb_write_time(long data)
  52. {
  53. volatile struct adb_request req;
  54. data += RTC_OFFSET;
  55. adb_request((struct adb_request *) &req, NULL,
  56. ADBREQ_RAW|ADBREQ_SYNC,
  57. 6, CUDA_PACKET, CUDA_SET_TIME,
  58. (data >> 24) & 0xFF, (data >> 16) & 0xFF,
  59. (data >> 8) & 0xFF, data & 0xFF);
  60. }
  61. /*
  62.  * Get a byte from the NVRAM
  63.  */
  64. static __u8 adb_read_pram(int offset)
  65. {
  66. volatile struct adb_request req;
  67. adb_request((struct adb_request *) &req, NULL,
  68. ADBREQ_RAW|ADBREQ_SYNC,
  69. 4, CUDA_PACKET, CUDA_GET_PRAM,
  70. (offset >> 8) & 0xFF, offset & 0xFF);
  71. return req.reply[3];
  72. }
  73. /*
  74.  * Write a byte to the NVRAM
  75.  */
  76. static void adb_write_pram(int offset, __u8 data)
  77. {
  78. volatile struct adb_request req;
  79. adb_request((struct adb_request *) &req, NULL,
  80. ADBREQ_RAW|ADBREQ_SYNC,
  81. 5, CUDA_PACKET, CUDA_SET_PRAM,
  82. (offset >> 8) & 0xFF, offset & 0xFF,
  83. data);
  84. }
  85. /*
  86.  * VIA PRAM/RTC access routines
  87.  *
  88.  * Must be called with interrupts disabled and
  89.  * the RTC should be enabled.
  90.  */
  91. static __u8 via_pram_readbyte(void)
  92. {
  93. int i,reg;
  94. __u8 data;
  95. reg = via1[vBufB] & ~VIA1B_vRTCClk;
  96. /* Set the RTC data line to be an input. */
  97. via1[vDirB] &= ~VIA1B_vRTCData;
  98. /* The bits of the byte come out in MSB order */
  99. data = 0;
  100. for (i = 0 ; i < 8 ; i++) {
  101. via1[vBufB] = reg;
  102. via1[vBufB] = reg | VIA1B_vRTCClk;
  103. data = (data << 1) | (via1[vBufB] & VIA1B_vRTCData);
  104. }
  105. /* Return RTC data line to output state */
  106. via1[vDirB] |= VIA1B_vRTCData;
  107. return data;
  108. }
  109. static void via_pram_writebyte(__u8 data)
  110. {
  111. int i,reg,bit;
  112. reg = via1[vBufB] & ~(VIA1B_vRTCClk | VIA1B_vRTCData);
  113. /* The bits of the byte go in in MSB order */
  114. for (i = 0 ; i < 8 ; i++) {
  115. bit = data & 0x80? 1 : 0;
  116. data <<= 1;
  117. via1[vBufB] = reg | bit;
  118. via1[vBufB] = reg | bit | VIA1B_vRTCClk;
  119. }
  120. }
  121. /*
  122.  * Execute a VIA PRAM/RTC command. For read commands
  123.  * data should point to a one-byte buffer for the
  124.  * resulting data. For write commands it should point
  125.  * to the data byte to for the command.
  126.  *
  127.  * This function disables all interrupts while running.
  128.  */
  129. static void via_pram_command(int command, __u8 *data)
  130. {
  131. unsigned long cpu_flags;
  132. int is_read;
  133. save_flags(cpu_flags);
  134. cli();
  135. /* Enable the RTC and make sure the strobe line is high */
  136. via1[vBufB] = (via1[vBufB] | VIA1B_vRTCClk) & ~VIA1B_vRTCEnb;
  137. if (command & 0xFF00) { /* extended (two-byte) command */
  138. via_pram_writebyte((command & 0xFF00) >> 8);
  139. via_pram_writebyte(command & 0xFF);
  140. is_read = command & 0x8000;
  141. } else { /* one-byte command */
  142. via_pram_writebyte(command);
  143. is_read = command & 0x80;
  144. }
  145. if (is_read) {
  146. *data = via_pram_readbyte();
  147. } else {
  148. via_pram_writebyte(*data);
  149. }
  150. /* All done, disable the RTC */
  151. via1[vBufB] |= VIA1B_vRTCEnb;
  152. restore_flags(cpu_flags);
  153. }
  154. static __u8 via_read_pram(int offset)
  155. {
  156. return 0;
  157. }
  158. static void via_write_pram(int offset, __u8 data)
  159. {
  160. }
  161. /*
  162.  * Return the current time in seconds since January 1, 1904.
  163.  *
  164.  * This only works on machines with the VIA-based PRAM/RTC, which
  165.  * is basically any machine with Mac II-style ADB.
  166.  */
  167. static long via_read_time(void)
  168. {
  169. union {
  170. __u8  cdata[4];
  171. long  idata;
  172. } result, last_result;
  173. int ct;
  174. /*
  175.  * The NetBSD guys say to loop until you get the same reading
  176.  * twice in a row.
  177.  */
  178. ct = 0;
  179. do {
  180. if (++ct > 10) {
  181. printk("via_read_time: couldn't get valid time, "
  182.        "last read = 0x%08lx and 0x%08lxn",
  183.        last_result.idata, result.idata);
  184. break;
  185. }
  186. last_result.idata = result.idata;
  187. result.idata = 0;
  188. via_pram_command(0x81, &result.cdata[3]);
  189. via_pram_command(0x85, &result.cdata[2]);
  190. via_pram_command(0x89, &result.cdata[1]);
  191. via_pram_command(0x8D, &result.cdata[0]);
  192. } while (result.idata != last_result.idata);
  193. return result.idata - RTC_OFFSET;
  194. }
  195. /*
  196.  * Set the current time to a number of seconds since January 1, 1904.
  197.  *
  198.  * This only works on machines with the VIA-based PRAM/RTC, which
  199.  * is basically any machine with Mac II-style ADB.
  200.  */
  201. static void via_write_time(long time)
  202. {
  203. union {
  204. __u8  cdata[4];
  205. long  idata;
  206. } data;
  207. __u8 temp;
  208. /* Clear the write protect bit */
  209. temp = 0x55;
  210. via_pram_command(0x35, &temp);
  211. data.idata = time + RTC_OFFSET;
  212. via_pram_command(0x01, &data.cdata[3]);
  213. via_pram_command(0x05, &data.cdata[2]);
  214. via_pram_command(0x09, &data.cdata[1]);
  215. via_pram_command(0x0D, &data.cdata[0]);
  216. /* Set the write protect bit */
  217. temp = 0xD5;
  218. via_pram_command(0x35, &temp);
  219. }
  220. static void via_shutdown(void)
  221. {
  222. if (rbv_present) {
  223. via2[rBufB] &= ~0x04;
  224. } else {
  225. /* Direction of vDirB is output */
  226. via2[vDirB] |= 0x04;
  227. /* Send a value of 0 on that line */
  228. via2[vBufB] &= ~0x04;
  229. mdelay(1000);
  230. }
  231. }
  232. /*
  233.  * FIXME: not sure how this is supposed to work exactly...
  234.  */
  235. static void oss_shutdown(void)
  236. {
  237. oss->rom_ctrl = OSS_POWEROFF;
  238. }
  239. #ifdef CONFIG_ADB_CUDA
  240. static void cuda_restart(void)
  241. {
  242. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  243. 2, CUDA_PACKET, CUDA_RESET_SYSTEM);
  244. }
  245. static void cuda_shutdown(void)
  246. {
  247. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  248. 2, CUDA_PACKET, CUDA_POWERDOWN);
  249. }
  250. #endif /* CONFIG_ADB_CUDA */
  251. #ifdef CONFIG_ADB_PMU
  252. void pmu_restart(void)
  253. {
  254. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  255. 3, PMU_PACKET, PMU_SET_INTR_MASK,
  256. PMU_INT_ADB|PMU_INT_TICK);
  257. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  258. 2, PMU_PACKET, PMU_RESET);
  259. }
  260. void pmu_shutdown(void)
  261. {
  262. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  263. 3, PMU_PACKET, PMU_SET_INTR_MASK,
  264. PMU_INT_ADB|PMU_INT_TICK);
  265. adb_request(NULL, NULL, ADBREQ_RAW|ADBREQ_SYNC,
  266. 6, PMU_PACKET, PMU_SHUTDOWN,
  267. 'M', 'A', 'T', 'T');
  268. }
  269. #endif /* CONFIG_ADB_PMU */
  270. /*
  271.  *-------------------------------------------------------------------
  272.  * Below this point are the generic routines; they'll dispatch to the
  273.  * correct routine for the hardware on which we're running.
  274.  *-------------------------------------------------------------------
  275.  */
  276. void mac_pram_read(int offset, __u8 *buffer, int len)
  277. {
  278. __u8 (*func)(int) = NULL;
  279. int i;
  280. if (macintosh_config->adb_type == MAC_ADB_IISI ||
  281.     macintosh_config->adb_type == MAC_ADB_PB1 ||
  282.     macintosh_config->adb_type == MAC_ADB_PB2 ||
  283.     macintosh_config->adb_type == MAC_ADB_CUDA) {
  284. func = adb_read_pram;
  285. } else {
  286. func = via_read_pram;
  287. }
  288. for (i = 0 ; i < len ; i++) {
  289. buffer[i] = (*func)(offset++);
  290. }
  291. }
  292. void mac_pram_write(int offset, __u8 *buffer, int len)
  293. {
  294. void (*func)(int, __u8) = NULL;
  295. int i;
  296. if (macintosh_config->adb_type == MAC_ADB_IISI ||
  297.     macintosh_config->adb_type == MAC_ADB_PB1 ||
  298.     macintosh_config->adb_type == MAC_ADB_PB2 ||
  299.     macintosh_config->adb_type == MAC_ADB_CUDA) {
  300. func = adb_write_pram;
  301. } else {
  302. func = via_write_pram;
  303. }
  304. for (i = 0 ; i < len ; i++) {
  305. (*func)(offset++, buffer[i]);
  306. }
  307. }
  308. void mac_poweroff(void)
  309. {
  310. /*
  311.  * MAC_ADB_IISI may need to be moved up here if it doesn't actually
  312.  * work using the ADB packet method.  --David Kilzer
  313.  */
  314. if (oss_present) {
  315. oss_shutdown();
  316. } else if (macintosh_config->adb_type == MAC_ADB_II) {
  317. via_shutdown();
  318. #ifdef CONFIG_ADB_CUDA
  319. } else if (macintosh_config->adb_type == MAC_ADB_CUDA) {
  320. cuda_shutdown();
  321. #endif
  322. #ifdef CONFIG_ADB_PMU
  323. } else if (macintosh_config->adb_type == MAC_ADB_PB1
  324. || macintosh_config->adb_type == MAC_ADB_PB2) {
  325. pmu_shutdown();
  326. #endif
  327. }
  328. sti();
  329. printk("It is now safe to turn off your Macintosh.n");
  330. while(1);
  331. }
  332. void mac_reset(void)
  333. {
  334. if (macintosh_config->adb_type == MAC_ADB_II) {
  335. unsigned long cpu_flags;
  336. /* need ROMBASE in booter */
  337. /* indeed, plus need to MAP THE ROM !! */
  338. if (mac_bi_data.rombase == 0)
  339. mac_bi_data.rombase = 0x40800000;
  340. /* works on some */
  341. rom_reset = (void *) (mac_bi_data.rombase + 0xa);
  342. if (macintosh_config->ident == MAC_MODEL_SE30) {
  343. /*
  344.  * MSch: Machines known to crash on ROM reset ...
  345.  */
  346. } else {
  347. save_flags(cpu_flags);
  348. cli();
  349. rom_reset();
  350. restore_flags(cpu_flags);
  351. }
  352. #ifdef CONFIG_ADB_CUDA
  353. } else if (macintosh_config->adb_type == MAC_ADB_CUDA) {
  354. cuda_restart();
  355. #endif
  356. #ifdef CONFIG_ADB_PMU
  357. } else if (macintosh_config->adb_type == MAC_ADB_PB1
  358. || macintosh_config->adb_type == MAC_ADB_PB2) {
  359. pmu_restart();
  360. #endif
  361. } else if (CPU_IS_030) {
  362. /* 030-specific reset routine.  The idea is general, but the
  363.  * specific registers to reset are '030-specific.  Until I
  364.  * have a non-030 machine, I can't test anything else.
  365.  *  -- C. Scott Ananian <cananian@alumni.princeton.edu>
  366.  */
  367. unsigned long rombase = 0x40000000;
  368. /* make a 1-to-1 mapping, using the transparent tran. reg. */
  369. unsigned long virt = (unsigned long) mac_reset;
  370. unsigned long phys = virt_to_phys(mac_reset);
  371. unsigned long offset = phys-virt;
  372. cli(); /* lets not screw this up, ok? */
  373. __asm__ __volatile__(".chip 68030nt"
  374.      "pmove %0,%/tt0nt"
  375.      ".chip 68k"
  376.      : : "m" ((phys&0xFF000000)|0x8777));
  377. /* Now jump to physical address so we can disable MMU */
  378. __asm__ __volatile__(
  379.                     ".chip 68030nt"
  380.     "lea %/pc@(1f),%/a0nt"
  381.     "addl %0,%/a0nt"/* fixup target address and stack ptr */
  382.     "addl %0,%/spnt" 
  383.     "pflushant"
  384.     "jmp %/a0@nt" /* jump into physical memory */
  385.     "0:.long 0nt" /* a constant zero. */
  386.     /* OK.  Now reset everything and jump to reset vector. */
  387.     "1:nt"
  388.     "lea %/pc@(0b),%/a0nt"
  389.     "pmove %/a0@, %/tcnt" /* disable mmu */
  390.     "pmove %/a0@, %/tt0nt" /* disable tt0 */
  391.     "pmove %/a0@, %/tt1nt" /* disable tt1 */
  392.     "movel #0, %/a0nt"
  393.     "movec %/a0, %/vbrnt" /* clear vector base register */
  394.     "movec %/a0, %/cacrnt" /* disable caches */
  395.     "movel #0x0808,%/a0nt"
  396.     "movec %/a0, %/cacrnt" /* flush i&d caches */
  397.     "movew #0x2700,%/srnt" /* set up status register */
  398.     "movel %1@(0x0),%/a0nt"/* load interrupt stack pointer */
  399.     "movec %/a0, %/ispnt" 
  400.     "movel %1@(0x4),%/a0nt" /* load reset vector */
  401.     "resetnt" /* reset external devices */
  402.     "jmp %/a0@nt" /* jump to the reset vector */
  403.     ".chip 68k"
  404.     : : "r" (offset), "a" (rombase) : "a0");
  405. }
  406. /* should never get here */
  407. sti();
  408. printk ("Restart failed.  Please restart manually.n");
  409. while(1);
  410. }
  411. /*
  412.  * This function translates seconds since 1970 into a proper date.
  413.  *
  414.  * Algorithm cribbed from glibc2.1, __offtime().
  415.  */
  416. #define SECS_PER_MINUTE (60)
  417. #define SECS_PER_HOUR  (SECS_PER_MINUTE * 60)
  418. #define SECS_PER_DAY   (SECS_PER_HOUR * 24)
  419. static void unmktime(unsigned long time, long offset,
  420.      int *yearp, int *monp, int *dayp,
  421.      int *hourp, int *minp, int *secp)
  422. {
  423.         /* How many days come before each month (0-12).  */
  424. static const unsigned short int __mon_yday[2][13] =
  425. {
  426. /* Normal years.  */
  427. { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
  428. /* Leap years.  */
  429. { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
  430. };
  431. long int days, rem, y, wday, yday;
  432. const unsigned short int *ip;
  433. days = time / SECS_PER_DAY;
  434. rem = time % SECS_PER_DAY;
  435. rem += offset;
  436. while (rem < 0) {
  437. rem += SECS_PER_DAY;
  438. --days;
  439. }
  440. while (rem >= SECS_PER_DAY) {
  441. rem -= SECS_PER_DAY;
  442. ++days;
  443. }
  444. *hourp = rem / SECS_PER_HOUR;
  445. rem %= SECS_PER_HOUR;
  446. *minp = rem / SECS_PER_MINUTE;
  447. *secp = rem % SECS_PER_MINUTE;
  448. /* January 1, 1970 was a Thursday. */
  449. wday = (4 + days) % 7; /* Day in the week. Not currently used */
  450. if (wday < 0) wday += 7;
  451. y = 1970;
  452. #define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
  453. #define LEAPS_THRU_END_OF(y) (DIV (y, 4) - DIV (y, 100) + DIV (y, 400))
  454. #define __isleap(year)
  455.   ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
  456. while (days < 0 || days >= (__isleap (y) ? 366 : 365))
  457. {
  458. /* Guess a corrected year, assuming 365 days per year.  */
  459. long int yg = y + days / 365 - (days % 365 < 0);
  460. /* Adjust DAYS and Y to match the guessed year.  */
  461. days -= ((yg - y) * 365
  462.  + LEAPS_THRU_END_OF (yg - 1)
  463.  - LEAPS_THRU_END_OF (y - 1));
  464. y = yg;
  465. }
  466. *yearp = y - 1900;
  467. yday = days; /* day in the year.  Not currently used. */
  468. ip = __mon_yday[__isleap(y)];
  469. for (y = 11; days < (long int) ip[y]; --y)
  470. continue;
  471. days -= ip[y];
  472. *monp = y;
  473. *dayp = days + 1; /* day in the month */
  474. return;
  475. }
  476. /*
  477.  * Return the boot time for use in initializing the kernel clock.
  478.  *
  479.  * I'd like to read the hardware clock here but many machines read
  480.  * the PRAM through ADB, and interrupts aren't initialized when this
  481.  * is called so ADB obviously won't work.
  482.  */
  483. void mac_gettod(int *yearp, int *monp, int *dayp,
  484.        int *hourp, int *minp, int *secp)
  485. {
  486. /* Yes the GMT bias is backwards.  It looks like Penguin is
  487.            screwing up the boottime it gives us... This works for me
  488.            in Canada/Eastern but it might be wrong everywhere else. */
  489. unmktime(mac_bi_data.boottime, -mac_bi_data.gmtbias * 60,
  490. yearp, monp, dayp, hourp, minp, secp);
  491. /* For some reason this is off by one */
  492. *monp = *monp + 1;
  493. }
  494. /* 
  495.  * Read/write the hardware clock.
  496.  */
  497. int mac_hwclk(int op, struct rtc_time *t)
  498. {
  499. unsigned long now;
  500. if (!op) { /* read */
  501. if (macintosh_config->adb_type == MAC_ADB_II) {
  502. now = via_read_time();
  503. } else if ((macintosh_config->adb_type == MAC_ADB_IISI) ||
  504.    (macintosh_config->adb_type == MAC_ADB_PB1) ||
  505.    (macintosh_config->adb_type == MAC_ADB_PB2) ||
  506.    (macintosh_config->adb_type == MAC_ADB_CUDA)) {
  507. now = adb_read_time();
  508. } else if (macintosh_config->adb_type == MAC_ADB_IOP) {
  509. now = via_read_time();
  510. } else {
  511. now = 0;
  512. }
  513. t->tm_wday = 0;
  514. unmktime(now, 0,
  515.  &t->tm_year, &t->tm_mon, &t->tm_mday,
  516.  &t->tm_hour, &t->tm_min, &t->tm_sec);
  517. printk("mac_hwclk: read %04d-%02d-%-2d %02d:%02d:%02dn",
  518. t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
  519. } else { /* write */
  520. printk("mac_hwclk: tried to write %04d-%02d-%-2d %02d:%02d:%02dn",
  521. t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
  522. #if 0 /* it trashes my rtc */
  523. now = mktime(t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
  524.      t->tm_hour, t->tm_min, t->tm_sec);
  525. if (macintosh_config->adb_type == MAC_ADB_II) {
  526. via_write_time(now);
  527. } else if ((macintosh_config->adb_type == MAC_ADB_IISI) ||
  528.    (macintosh_config->adb_type == MAC_ADB_PB1) ||
  529.    (macintosh_config->adb_type == MAC_ADB_PB2) ||
  530.    (macintosh_config->adb_type == MAC_ADB_CUDA)) {
  531. adb_write_time(now);
  532. } else if (macintosh_config->adb_type == MAC_ADB_IOP) {
  533. via_write_time(now);
  534. }
  535. #endif
  536. }
  537. return 0;
  538. }
  539. /*
  540.  * Set minutes/seconds in the hardware clock
  541.  */
  542. int mac_set_clock_mmss (unsigned long nowtime)
  543. {
  544. struct rtc_time now;
  545. mac_hwclk(0, &now);
  546. now.tm_sec = nowtime % 60;
  547. now.tm_min = (nowtime / 60) % 60;
  548. mac_hwclk(1, &now);
  549. return 0;
  550. }