1 #include <linux/init.h>
3 #include <linux/percpu.h>
4 #include <linux/delay.h>
5 #include <linux/spinlock.h>
6 #include <linux/interrupt.h>
11 #define SMBUS_CFG_BASE (loongson_sysconf.ht_control_base + 0x0300a000)
12 #define SMBUS_PCI_REG40 0x40
13 #define SMBUS_PCI_REG64 0x64
14 #define SMBUS_PCI_REGB4 0xb4
16 static DEFINE_SPINLOCK(hpet_lock
);
17 DEFINE_PER_CPU(struct clock_event_device
, hpet_clockevent_device
);
19 static unsigned int smbus_read(int offset
)
21 return *(volatile unsigned int *)(SMBUS_CFG_BASE
+ offset
);
24 static void smbus_write(int offset
, int data
)
26 *(volatile unsigned int *)(SMBUS_CFG_BASE
+ offset
) = data
;
29 static void smbus_enable(int offset
, int bit
)
31 unsigned int cfg
= smbus_read(offset
);
34 smbus_write(offset
, cfg
);
37 static int hpet_read(int offset
)
39 return *(volatile unsigned int *)(HPET_MMIO_ADDR
+ offset
);
42 static void hpet_write(int offset
, int data
)
44 *(volatile unsigned int *)(HPET_MMIO_ADDR
+ offset
) = data
;
47 static void hpet_start_counter(void)
49 unsigned int cfg
= hpet_read(HPET_CFG
);
51 cfg
|= HPET_CFG_ENABLE
;
52 hpet_write(HPET_CFG
, cfg
);
55 static void hpet_stop_counter(void)
57 unsigned int cfg
= hpet_read(HPET_CFG
);
59 cfg
&= ~HPET_CFG_ENABLE
;
60 hpet_write(HPET_CFG
, cfg
);
63 static void hpet_reset_counter(void)
65 hpet_write(HPET_COUNTER
, 0);
66 hpet_write(HPET_COUNTER
+ 4, 0);
69 static void hpet_restart_counter(void)
76 static void hpet_enable_legacy_int(void)
78 /* Do nothing on Loongson-3 */
81 static int hpet_set_state_periodic(struct clock_event_device
*evt
)
85 spin_lock(&hpet_lock
);
87 pr_info("set clock event to periodic mode!\n");
91 /* enables the timer0 to generate a periodic interrupt */
92 cfg
= hpet_read(HPET_T0_CFG
);
93 cfg
&= ~HPET_TN_LEVEL
;
94 cfg
|= HPET_TN_ENABLE
| HPET_TN_PERIODIC
| HPET_TN_SETVAL
|
96 hpet_write(HPET_T0_CFG
, cfg
);
98 /* set the comparator */
99 hpet_write(HPET_T0_CMP
, HPET_COMPARE_VAL
);
101 hpet_write(HPET_T0_CMP
, HPET_COMPARE_VAL
);
104 hpet_start_counter();
106 spin_unlock(&hpet_lock
);
110 static int hpet_set_state_shutdown(struct clock_event_device
*evt
)
114 spin_lock(&hpet_lock
);
116 cfg
= hpet_read(HPET_T0_CFG
);
117 cfg
&= ~HPET_TN_ENABLE
;
118 hpet_write(HPET_T0_CFG
, cfg
);
120 spin_unlock(&hpet_lock
);
124 static int hpet_set_state_oneshot(struct clock_event_device
*evt
)
128 spin_lock(&hpet_lock
);
130 pr_info("set clock event to one shot mode!\n");
131 cfg
= hpet_read(HPET_T0_CFG
);
134 * 1 : periodic interrupt
135 * 0 : non-periodic(oneshot) interrupt
137 cfg
&= ~HPET_TN_PERIODIC
;
138 cfg
|= HPET_TN_ENABLE
| HPET_TN_32BIT
;
139 hpet_write(HPET_T0_CFG
, cfg
);
141 spin_unlock(&hpet_lock
);
145 static int hpet_tick_resume(struct clock_event_device
*evt
)
147 spin_lock(&hpet_lock
);
148 hpet_enable_legacy_int();
149 spin_unlock(&hpet_lock
);
154 static int hpet_next_event(unsigned long delta
,
155 struct clock_event_device
*evt
)
160 cnt
= hpet_read(HPET_COUNTER
);
162 hpet_write(HPET_T0_CMP
, cnt
);
164 res
= ((int)(hpet_read(HPET_COUNTER
) - cnt
) > 0) ? -ETIME
: 0;
168 static irqreturn_t
hpet_irq_handler(int irq
, void *data
)
171 struct clock_event_device
*cd
;
172 unsigned int cpu
= smp_processor_id();
174 is_irq
= hpet_read(HPET_STATUS
);
175 if (is_irq
& HPET_T0_IRS
) {
176 /* clear the TIMER0 irq status register */
177 hpet_write(HPET_STATUS
, HPET_T0_IRS
);
178 cd
= &per_cpu(hpet_clockevent_device
, cpu
);
179 cd
->event_handler(cd
);
185 static struct irqaction hpet_irq
= {
186 .handler
= hpet_irq_handler
,
187 .flags
= IRQF_NOBALANCING
| IRQF_TIMER
,
192 * hpet address assignation and irq setting should be done in bios.
193 * but pmon don't do this, we just setup here directly.
194 * The operation under is normal. unfortunately, hpet_setup process
195 * is before pci initialize.
198 * struct pci_dev *pdev;
200 * pdev = pci_get_device(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS, NULL);
201 * pci_write_config_word(pdev, SMBUS_PCI_REGB4, HPET_ADDR);
206 static void hpet_setup(void)
208 /* set hpet base address */
209 smbus_write(SMBUS_PCI_REGB4
, HPET_ADDR
);
211 /* enable decodeing of access to HPET MMIO*/
212 smbus_enable(SMBUS_PCI_REG40
, (1 << 28));
214 /* HPET irq enable */
215 smbus_enable(SMBUS_PCI_REG64
, (1 << 10));
217 hpet_enable_legacy_int();
220 void __init
setup_hpet_timer(void)
222 unsigned int cpu
= smp_processor_id();
223 struct clock_event_device
*cd
;
227 cd
= &per_cpu(hpet_clockevent_device
, cpu
);
230 cd
->features
= CLOCK_EVT_FEAT_PERIODIC
| CLOCK_EVT_FEAT_ONESHOT
;
231 cd
->set_state_shutdown
= hpet_set_state_shutdown
;
232 cd
->set_state_periodic
= hpet_set_state_periodic
;
233 cd
->set_state_oneshot
= hpet_set_state_oneshot
;
234 cd
->tick_resume
= hpet_tick_resume
;
235 cd
->set_next_event
= hpet_next_event
;
236 cd
->irq
= HPET_T0_IRQ
;
237 cd
->cpumask
= cpumask_of(cpu
);
238 clockevent_set_clock(cd
, HPET_FREQ
);
239 cd
->max_delta_ns
= clockevent_delta2ns(0x7fffffff, cd
);
240 cd
->min_delta_ns
= 5000;
242 clockevents_register_device(cd
);
243 setup_irq(HPET_T0_IRQ
, &hpet_irq
);
244 pr_info("hpet clock event device register\n");
247 static cycle_t
hpet_read_counter(struct clocksource
*cs
)
249 return (cycle_t
)hpet_read(HPET_COUNTER
);
252 static void hpet_suspend(struct clocksource
*cs
)
256 static void hpet_resume(struct clocksource
*cs
)
259 hpet_restart_counter();
262 static struct clocksource csrc_hpet
= {
264 /* mips clocksource rating is less than 300, so hpet is better. */
266 .read
= hpet_read_counter
,
267 .mask
= CLOCKSOURCE_MASK(32),
268 /* oneshot mode work normal with this flag */
269 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
270 .suspend
= hpet_suspend
,
271 .resume
= hpet_resume
,
276 int __init
init_hpet_clocksource(void)
278 csrc_hpet
.mult
= clocksource_hz2mult(HPET_FREQ
, csrc_hpet
.shift
);
279 return clocksource_register_hz(&csrc_hpet
, HPET_FREQ
);
282 arch_initcall(init_hpet_clocksource
);