Lines Matching refs:cd
49 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_counter_handler() local
56 cd->event_handler(cd); in hub_rt_counter_handler()
82 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_clock_event_init() local
86 cd->name = name; in hub_rt_clock_event_init()
87 cd->features = CLOCK_EVT_FEAT_ONESHOT; in hub_rt_clock_event_init()
88 clockevent_set_clock(cd, CYCLES_PER_SEC); in hub_rt_clock_event_init()
89 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd); in hub_rt_clock_event_init()
90 cd->max_delta_ticks = 0xfffffffffffff; in hub_rt_clock_event_init()
91 cd->min_delta_ns = clockevent_delta2ns(0x300, cd); in hub_rt_clock_event_init()
92 cd->min_delta_ticks = 0x300; in hub_rt_clock_event_init()
93 cd->rating = 200; in hub_rt_clock_event_init()
94 cd->irq = IP27_RT_TIMER_IRQ; in hub_rt_clock_event_init()
95 cd->cpumask = cpumask_of(cpu); in hub_rt_clock_event_init()
96 cd->set_next_event = rt_next_event; in hub_rt_clock_event_init()
97 clockevents_register_device(cd); in hub_rt_clock_event_init()