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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/m68k/atari/time.c
  3.  *
  4.  * Atari time and real time clock stuff
  5.  *
  6.  * Assembled of parts of former atari/config.c 97-12-18 by Roman Hodek
  7.  *  
  8.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file COPYING in the main directory of this archive
  10.  * for more details.
  11.  */
  12. #include <linux/types.h>
  13. #include <linux/mc146818rtc.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/init.h>
  16. #include <linux/rtc.h>
  17. #include <asm/rtc.h>
  18. void __init
  19. atari_sched_init(void (*timer_routine)(int, void *, struct pt_regs *))
  20. {
  21.     /* set Timer C data Register */
  22.     mfp.tim_dt_c = INT_TICKS;
  23.     /* start timer C, div = 1:100 */
  24.     mfp.tim_ct_cd = (mfp.tim_ct_cd & 15) | 0x60; 
  25.     /* install interrupt service routine for MFP Timer C */
  26.     request_irq(IRQ_MFP_TIMC, timer_routine, IRQ_TYPE_SLOW,
  27.                 "timer", timer_routine);
  28. }
  29. /* ++andreas: gettimeoffset fixed to check for pending interrupt */
  30. #define TICK_SIZE 10000
  31.   
  32. /* This is always executed with interrupts disabled.  */
  33. unsigned long atari_gettimeoffset (void)
  34. {
  35.   unsigned long ticks, offset = 0;
  36.   /* read MFP timer C current value */
  37.   ticks = mfp.tim_dt_c;
  38.   /* The probability of underflow is less than 2% */
  39.   if (ticks > INT_TICKS - INT_TICKS / 50)
  40.     /* Check for pending timer interrupt */
  41.     if (mfp.int_pn_b & (1 << 5))
  42.       offset = TICK_SIZE;
  43.   ticks = INT_TICKS - ticks;
  44.   ticks = ticks * 10000L / INT_TICKS;
  45.   return ticks + offset;
  46. }
  47. static void mste_read(struct MSTE_RTC *val)
  48. {
  49. #define COPY(v) val->v=(mste_rtc.v & 0xf)
  50. do {
  51. COPY(sec_ones) ; COPY(sec_tens) ; COPY(min_ones) ; 
  52. COPY(min_tens) ; COPY(hr_ones) ; COPY(hr_tens) ; 
  53. COPY(weekday) ; COPY(day_ones) ; COPY(day_tens) ; 
  54. COPY(mon_ones) ; COPY(mon_tens) ; COPY(year_ones) ;
  55. COPY(year_tens) ;
  56. /* prevent from reading the clock while it changed */
  57. } while (val->sec_ones != (mste_rtc.sec_ones & 0xf));
  58. #undef COPY
  59. }
  60. static void mste_write(struct MSTE_RTC *val)
  61. {
  62. #define COPY(v) mste_rtc.v=val->v
  63. do {
  64. COPY(sec_ones) ; COPY(sec_tens) ; COPY(min_ones) ; 
  65. COPY(min_tens) ; COPY(hr_ones) ; COPY(hr_tens) ; 
  66. COPY(weekday) ; COPY(day_ones) ; COPY(day_tens) ; 
  67. COPY(mon_ones) ; COPY(mon_tens) ; COPY(year_ones) ;
  68. COPY(year_tens) ;
  69. /* prevent from writing the clock while it changed */
  70. } while (val->sec_ones != (mste_rtc.sec_ones & 0xf));
  71. #undef COPY
  72. }
  73. #define RTC_READ(reg)
  74.     ({ unsigned char __val;
  75. (void) atari_writeb(reg,&tt_rtc.regsel);
  76. __val = tt_rtc.data;
  77. __val;
  78. })
  79. #define RTC_WRITE(reg,val)
  80.     do {
  81. atari_writeb(reg,&tt_rtc.regsel);
  82. tt_rtc.data = (val);
  83. } while(0)
  84. void atari_mste_gettod (int *yearp, int *monp, int *dayp,
  85. int *hourp, int *minp, int *secp)
  86. {
  87.     int hr24=0, hour;
  88.     struct MSTE_RTC val;
  89.     mste_rtc.mode=(mste_rtc.mode | 1);
  90.     hr24=mste_rtc.mon_tens & 1;
  91.     mste_rtc.mode=(mste_rtc.mode & ~1);
  92.     mste_read(&val);
  93.     *secp = val.sec_ones + val.sec_tens * 10;
  94.     *minp = val.min_ones + val.min_tens * 10;
  95.     hour = val.hr_ones + val.hr_tens * 10;
  96.     if (!hr24) {
  97.         if (hour == 12 || hour == 12 + 20)
  98.     hour -= 12;
  99. if (hour >= 20)
  100.     hour += 12 - 20;
  101.     }
  102.     *hourp = hour;
  103.     *dayp = val.day_ones + val.day_tens * 10;
  104.     *monp = val.mon_ones + val.mon_tens * 10;
  105.     *yearp = val.year_ones + val.year_tens * 10 + 80;
  106. }
  107.   
  108. void atari_tt_gettod (int *yearp, int *monp, int *dayp,
  109.       int *hourp, int *minp, int *secp)
  110. {
  111.     unsigned char ctrl;
  112.     int hour, pm;
  113.     while (!(RTC_READ(RTC_FREQ_SELECT) & RTC_UIP)) ;
  114.     while (RTC_READ(RTC_FREQ_SELECT) & RTC_UIP) ;
  115.     *secp  = RTC_READ(RTC_SECONDS);
  116.     *minp  = RTC_READ(RTC_MINUTES);
  117.     hour = RTC_READ(RTC_HOURS);
  118.     *dayp  = RTC_READ(RTC_DAY_OF_MONTH);
  119.     *monp  = RTC_READ(RTC_MONTH);
  120.     *yearp = RTC_READ(RTC_YEAR);
  121.     pm = hour & 0x80;
  122.     hour &= ~0x80;
  123.     ctrl = RTC_READ(RTC_CONTROL); 
  124.     if (!(ctrl & RTC_DM_BINARY)) {
  125.         BCD_TO_BIN(*secp);
  126.         BCD_TO_BIN(*minp);
  127.         BCD_TO_BIN(hour);
  128.         BCD_TO_BIN(*dayp);
  129.         BCD_TO_BIN(*monp);
  130.         BCD_TO_BIN(*yearp);
  131.     }
  132.     if (!(ctrl & RTC_24H)) {
  133. if (!pm && hour == 12)
  134.     hour = 0;
  135. else if (pm && hour != 12)
  136.             hour += 12;
  137.     }
  138.     *hourp = hour;
  139.     /* Adjust values (let the setup valid) */
  140.     *yearp += atari_rtc_year_offset;
  141. }
  142. #define HWCLK_POLL_INTERVAL 5
  143. int atari_mste_hwclk( int op, struct rtc_time *t )
  144. {
  145.     int hour, year;
  146.     int hr24=0;
  147.     struct MSTE_RTC val;
  148.     
  149.     mste_rtc.mode=(mste_rtc.mode | 1);
  150.     hr24=mste_rtc.mon_tens & 1;
  151.     mste_rtc.mode=(mste_rtc.mode & ~1);
  152.     if (op) {
  153.         /* write: prepare values */
  154.         
  155.         val.sec_ones = t->tm_sec % 10;
  156.         val.sec_tens = t->tm_sec / 10;
  157.         val.min_ones = t->tm_min % 10;
  158.         val.min_tens = t->tm_min / 10;
  159.         hour = t->tm_hour;
  160.         if (!hr24) {
  161.     if (hour > 11)
  162. hour += 20 - 12;
  163.     if (hour == 0 || hour == 20)
  164. hour += 12;
  165.         }
  166.         val.hr_ones = hour % 10;
  167.         val.hr_tens = hour / 10;
  168.         val.day_ones = t->tm_mday % 10;
  169.         val.day_tens = t->tm_mday / 10;
  170.         val.mon_ones = (t->tm_mon+1) % 10;
  171.         val.mon_tens = (t->tm_mon+1) / 10;
  172.         year = t->tm_year - 80;
  173.         val.year_ones = year % 10;
  174.         val.year_tens = year / 10;
  175.         val.weekday = t->tm_wday;
  176.         mste_write(&val);
  177.         mste_rtc.mode=(mste_rtc.mode | 1);
  178.         val.year_ones = (year % 4); /* leap year register */
  179.         mste_rtc.mode=(mste_rtc.mode & ~1);
  180.     }
  181.     else {
  182.         mste_read(&val);
  183.         t->tm_sec = val.sec_ones + val.sec_tens * 10;
  184.         t->tm_min = val.min_ones + val.min_tens * 10;
  185.         hour = val.hr_ones + val.hr_tens * 10;
  186. if (!hr24) {
  187.     if (hour == 12 || hour == 12 + 20)
  188. hour -= 12;
  189.     if (hour >= 20)
  190.                 hour += 12 - 20;
  191.         }
  192. t->tm_hour = hour;
  193. t->tm_mday = val.day_ones + val.day_tens * 10;
  194.         t->tm_mon  = val.mon_ones + val.mon_tens * 10 - 1;
  195.         t->tm_year = val.year_ones + val.year_tens * 10 + 80;
  196.         t->tm_wday = val.weekday;
  197.     }
  198.     return 0;
  199. }
  200. int atari_tt_hwclk( int op, struct rtc_time *t )
  201. {
  202.     int sec=0, min=0, hour=0, day=0, mon=0, year=0, wday=0; 
  203.     unsigned long  flags;
  204.     unsigned char ctrl;
  205.     int pm = 0;
  206.     ctrl = RTC_READ(RTC_CONTROL); /* control registers are
  207.                                    * independent from the UIP */
  208.     if (op) {
  209.         /* write: prepare values */
  210.         
  211.         sec  = t->tm_sec;
  212.         min  = t->tm_min;
  213.         hour = t->tm_hour;
  214.         day  = t->tm_mday;
  215.         mon  = t->tm_mon + 1;
  216.         year = t->tm_year - atari_rtc_year_offset;
  217.         wday = t->tm_wday + (t->tm_wday >= 0);
  218.         
  219.         if (!(ctrl & RTC_24H)) {
  220.     if (hour > 11) {
  221. pm = 0x80;
  222. if (hour != 12)
  223.     hour -= 12;
  224.     }
  225.     else if (hour == 0)
  226. hour = 12;
  227.         }
  228.         
  229.         if (!(ctrl & RTC_DM_BINARY)) {
  230.             BIN_TO_BCD(sec);
  231.             BIN_TO_BCD(min);
  232.             BIN_TO_BCD(hour);
  233.             BIN_TO_BCD(day);
  234.             BIN_TO_BCD(mon);
  235.             BIN_TO_BCD(year);
  236.             if (wday >= 0) BIN_TO_BCD(wday);
  237.         }
  238.     }
  239.     
  240.     /* Reading/writing the clock registers is a bit critical due to
  241.      * the regular update cycle of the RTC. While an update is in
  242.      * progress, registers 0..9 shouldn't be touched.
  243.      * The problem is solved like that: If an update is currently in
  244.      * progress (the UIP bit is set), the process sleeps for a while
  245.      * (50ms). This really should be enough, since the update cycle
  246.      * normally needs 2 ms.
  247.      * If the UIP bit reads as 0, we have at least 244 usecs until the
  248.      * update starts. This should be enough... But to be sure,
  249.      * additionally the RTC_SET bit is set to prevent an update cycle.
  250.      */
  251.     while( RTC_READ(RTC_FREQ_SELECT) & RTC_UIP ) {
  252.         current->state = TASK_INTERRUPTIBLE;
  253.         schedule_timeout(HWCLK_POLL_INTERVAL);
  254.     }
  255.     save_flags(flags);
  256.     cli();
  257.     RTC_WRITE( RTC_CONTROL, ctrl | RTC_SET );
  258.     if (!op) {
  259.         sec  = RTC_READ( RTC_SECONDS );
  260.         min  = RTC_READ( RTC_MINUTES );
  261.         hour = RTC_READ( RTC_HOURS );
  262.         day  = RTC_READ( RTC_DAY_OF_MONTH );
  263.         mon  = RTC_READ( RTC_MONTH );
  264.         year = RTC_READ( RTC_YEAR );
  265.         wday = RTC_READ( RTC_DAY_OF_WEEK );
  266.     }
  267.     else {
  268.         RTC_WRITE( RTC_SECONDS, sec );
  269.         RTC_WRITE( RTC_MINUTES, min );
  270.         RTC_WRITE( RTC_HOURS, hour + pm);
  271.         RTC_WRITE( RTC_DAY_OF_MONTH, day );
  272.         RTC_WRITE( RTC_MONTH, mon );
  273.         RTC_WRITE( RTC_YEAR, year );
  274.         if (wday >= 0) RTC_WRITE( RTC_DAY_OF_WEEK, wday );
  275.     }
  276.     RTC_WRITE( RTC_CONTROL, ctrl & ~RTC_SET );
  277.     restore_flags(flags);
  278.     if (!op) {
  279.         /* read: adjust values */
  280.         
  281.         if (hour & 0x80) {
  282.     hour &= ~0x80;
  283.     pm = 1;
  284. }
  285. if (!(ctrl & RTC_DM_BINARY)) {
  286.             BCD_TO_BIN(sec);
  287.             BCD_TO_BIN(min);
  288.             BCD_TO_BIN(hour);
  289.             BCD_TO_BIN(day);
  290.             BCD_TO_BIN(mon);
  291.             BCD_TO_BIN(year);
  292.             BCD_TO_BIN(wday);
  293.         }
  294.         if (!(ctrl & RTC_24H)) {
  295.     if (!pm && hour == 12)
  296. hour = 0;
  297.     else if (pm && hour != 12)
  298. hour += 12;
  299.         }
  300.         t->tm_sec  = sec;
  301.         t->tm_min  = min;
  302.         t->tm_hour = hour;
  303.         t->tm_mday = day;
  304.         t->tm_mon  = mon - 1;
  305.         t->tm_year = year + atari_rtc_year_offset;
  306.         t->tm_wday = wday - 1;
  307.     }
  308.     return( 0 );
  309. }
  310. int atari_mste_set_clock_mmss (unsigned long nowtime)
  311. {
  312.     short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
  313.     struct MSTE_RTC val;
  314.     unsigned char rtc_minutes;
  315.     mste_read(&val);  
  316.     rtc_minutes= val.min_ones + val.min_tens * 10;
  317.     if ((rtc_minutes < real_minutes
  318.          ? real_minutes - rtc_minutes
  319.          : rtc_minutes - real_minutes) < 30)
  320.     {
  321.         val.sec_ones = real_seconds % 10;
  322.         val.sec_tens = real_seconds / 10;
  323.         val.min_ones = real_minutes % 10;
  324.         val.min_tens = real_minutes / 10;
  325.         mste_write(&val);
  326.     }
  327.     else
  328.         return -1;
  329.     return 0;
  330. }
  331. int atari_tt_set_clock_mmss (unsigned long nowtime)
  332. {
  333.     int retval = 0;
  334.     short real_seconds = nowtime % 60, real_minutes = (nowtime / 60) % 60;
  335.     unsigned char save_control, save_freq_select, rtc_minutes;
  336.     save_control = RTC_READ (RTC_CONTROL); /* tell the clock it's being set */
  337.     RTC_WRITE (RTC_CONTROL, save_control | RTC_SET);
  338.     save_freq_select = RTC_READ (RTC_FREQ_SELECT); /* stop and reset prescaler */
  339.     RTC_WRITE (RTC_FREQ_SELECT, save_freq_select | RTC_DIV_RESET2);
  340.     rtc_minutes = RTC_READ (RTC_MINUTES);
  341.     if (!(save_control & RTC_DM_BINARY))
  342.         BCD_TO_BIN (rtc_minutes);
  343.     /* Since we're only adjusting minutes and seconds, don't interfere
  344.        with hour overflow.  This avoids messing with unknown time zones
  345.        but requires your RTC not to be off by more than 30 minutes.  */
  346.     if ((rtc_minutes < real_minutes
  347.          ? real_minutes - rtc_minutes
  348.          : rtc_minutes - real_minutes) < 30)
  349.         {
  350.             if (!(save_control & RTC_DM_BINARY))
  351.                 {
  352.                     BIN_TO_BCD (real_seconds);
  353.                     BIN_TO_BCD (real_minutes);
  354.                 }
  355.             RTC_WRITE (RTC_SECONDS, real_seconds);
  356.             RTC_WRITE (RTC_MINUTES, real_minutes);
  357.         }
  358.     else
  359.         retval = -1;
  360.     RTC_WRITE (RTC_FREQ_SELECT, save_freq_select);
  361.     RTC_WRITE (RTC_CONTROL, save_control);
  362.     return retval;
  363. }
  364. /*
  365.  * Local variables:
  366.  *  c-indent-level: 4
  367.  *  tab-width: 8
  368.  * End:
  369.  */