Lines Matching refs:cd
60 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_counter_handler() local
67 cd->event_handler(cd); in hub_rt_counter_handler()
93 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_clock_event_init() local
97 cd->name = name; in hub_rt_clock_event_init()
98 cd->features = CLOCK_EVT_FEAT_ONESHOT; in hub_rt_clock_event_init()
99 clockevent_set_clock(cd, CYCLES_PER_SEC); in hub_rt_clock_event_init()
100 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd); in hub_rt_clock_event_init()
101 cd->max_delta_ticks = 0xfffffffffffff; in hub_rt_clock_event_init()
102 cd->min_delta_ns = clockevent_delta2ns(0x300, cd); in hub_rt_clock_event_init()
103 cd->min_delta_ticks = 0x300; in hub_rt_clock_event_init()
104 cd->rating = 200; in hub_rt_clock_event_init()
105 cd->irq = IP27_RT_TIMER_IRQ; in hub_rt_clock_event_init()
106 cd->cpumask = cpumask_of(cpu); in hub_rt_clock_event_init()
107 cd->set_next_event = rt_next_event; in hub_rt_clock_event_init()
108 clockevents_register_device(cd); in hub_rt_clock_event_init()