Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
time.c
Go to the documentation of this file.
1 /*
2  * arch/blackfin/kernel/time.c
3  *
4  * This file contains the Blackfin-specific time handling details.
5  * Most of the stuff is located in the machine specific files.
6  *
7  * Copyright 2004-2008 Analog Devices Inc.
8  * Licensed under the GPL-2 or later.
9  */
10 
11 #include <linux/module.h>
12 #include <linux/profile.h>
13 #include <linux/interrupt.h>
14 #include <linux/time.h>
15 #include <linux/irq.h>
16 #include <linux/delay.h>
17 #include <linux/sched.h>
18 
19 #include <asm/blackfin.h>
20 #include <asm/time.h>
21 #include <asm/gptimers.h>
22 
23 /* This is an NTP setting */
24 #define TICK_SIZE (tick_nsec / 1000)
25 
26 static struct irqaction bfin_timer_irq = {
27  .name = "Blackfin Timer Tick",
28 };
29 
30 #if defined(CONFIG_IPIPE)
31 void __init setup_system_timer0(void)
32 {
33  /* Power down the core timer, just to play safe. */
35 
39  udelay(10);
40 
41  set_gptimer_config(0, 0x59); /* IRQ enable, periodic, PWM_OUT, SCLKed, OUT PAD disabled */
44  SSYNC();
46 }
47 #else
49 {
50  u32 tcount;
51 
52  /* power up the timer, but don't enable it just yet */
54  CSYNC();
55 
56  /* the TSCALE prescaler counter */
58 
59  tcount = ((get_cclk() / (HZ * TIME_SCALE)) - 1);
60  bfin_write_TPERIOD(tcount);
61  bfin_write_TCOUNT(tcount);
62 
63  /* now enable the timer */
64  CSYNC();
65 
67 }
68 #endif
69 
70 static void __init
71 time_sched_init(irqreturn_t(*timer_routine) (int, void *))
72 {
73 #if defined(CONFIG_IPIPE)
74  setup_system_timer0();
75  bfin_timer_irq.handler = timer_routine;
76  setup_irq(IRQ_TIMER0, &bfin_timer_irq);
77 #else
79  bfin_timer_irq.handler = timer_routine;
80  setup_irq(IRQ_CORETMR, &bfin_timer_irq);
81 #endif
82 }
83 
84 #ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
85 /*
86  * Should return useconds since last timer tick
87  */
89 {
90  unsigned long offset;
91  unsigned long clocks_per_jiffy;
92 
93 #if defined(CONFIG_IPIPE)
94  clocks_per_jiffy = bfin_read_TIMER0_PERIOD();
95  offset = bfin_read_TIMER0_COUNTER() / \
96  (((clocks_per_jiffy + 1) * HZ) / USEC_PER_SEC);
97 
98  if ((get_gptimer_status(0) & TIMER_STATUS_TIMIL0) && offset < (100000 / HZ / 2))
99  offset += (USEC_PER_SEC / HZ);
100 #else
101  clocks_per_jiffy = bfin_read_TPERIOD();
102  offset = (clocks_per_jiffy - bfin_read_TCOUNT()) / \
103  (((clocks_per_jiffy + 1) * HZ) / USEC_PER_SEC);
104 
105  /* Check if we just wrapped the counters and maybe missed a tick */
106  if ((bfin_read_ILAT() & (1 << IRQ_CORETMR))
107  && (offset < (100000 / HZ / 2)))
108  offset += (USEC_PER_SEC / HZ);
109 #endif
110  return offset;
111 }
112 #endif
113 
114 /*
115  * timer_interrupt() needs to keep up the real-time clock,
116  * as well as call the "xtime_update()" routine every clocktick
117  */
118 #ifdef CONFIG_CORE_TIMER_IRQ_L1
119 __attribute__((l1_text))
120 #endif
122 {
123  xtime_update(1);
124 
125 #ifdef CONFIG_IPIPE
126  update_root_process_times(get_irq_regs());
127 #else
129 #endif
131 
132  return IRQ_HANDLED;
133 }
134 
136 {
137  time_t secs_since_1970 = (365 * 37 + 9) * 24 * 60 * 60; /* 1 Jan 2007 */
138  ts->tv_sec = secs_since_1970;
139  ts->tv_nsec = 0;
140 }
141 
142 void __init time_init(void)
143 {
144 #ifdef CONFIG_RTC_DRV_BFIN
145  /* [#2663] hack to filter junk RTC values that would cause
146  * userspace to have to deal with time values greater than
147  * 2^31 seconds (which uClibc cannot cope with yet)
148  */
149  if ((bfin_read_RTC_STAT() & 0xC0000000) == 0xC0000000) {
150  printk(KERN_NOTICE "bfin-rtc: invalid date; resetting\n");
152  }
153 #endif
154 
155  time_sched_init(timer_interrupt);
156 }