Searched refs:timer_id (Results 1 – 6 of 6) sorted by relevance
453 uint8_t timer_id = (addr - 0x100) / 0x20; in hpet_ram_read() local 454 HPETTimer *timer = &s->timer[timer_id]; in hpet_ram_read() 456 if (timer_id > s->num_timers) { in hpet_ram_read() 457 trace_hpet_timer_id_out_of_range(timer_id); in hpet_ram_read() 547 uint8_t timer_id = (addr - 0x100) / 0x20; in hpet_ram_write() local 548 HPETTimer *timer = &s->timer[timer_id]; in hpet_ram_write() 550 trace_hpet_ram_write_timer_id(timer_id); in hpet_ram_write() 551 if (timer_id > s->num_timers) { in hpet_ram_write() 552 trace_hpet_timer_id_out_of_range(timer_id); in hpet_ram_write() 570 && (s->isr & (1 << timer_id))) { in hpet_ram_write() [all...]
64 nrf51_timer_read(uint8_t timer_id, uint64_t addr, uint32_t value, unsigned size) "timer %u read add…65 nrf51_timer_write(uint8_t timer_id, uint64_t addr, uint32_t value, unsigned size) "timer %u write a…66 nrf51_timer_set_count(uint8_t timer_id, uint8_t counter_id, uint32_t value) "timer %u counter %u co…110 hpet_timer_id_out_of_range(uint8_t timer_id) "timer id out of range: 0x%" PRIx8116 hpet_ram_write_timer_id(uint64_t timer_id) "hpet_ram_writel timer_id = 0x%" PRIx64
65 static const int timer_id[] = {95 r = timer_id[(offset - A_PID4) / 4]; in cmsdk_apb_timer_read()
84 static const int timer_id[] = {266 r = timer_id[(offset - A_PID4) / 4]; in sse_timer_read()
77 static const int timer_id[] = {250 r = timer_id[(offset - A_PID4) / 4]; in cmsdk_apb_dualtimer_read()
778 let timer_id: usize = ((addr - 0x100) / 0x20) as usize; in decode() 779 if timer_id < self.num_timers { in decode() 780 // TODO: Add trace point - trace_hpet_ram_[read|write]_timer_id(timer_id) in decode() 782 .map(|reg| HPETRegister::Timer(&self.timers[timer_id], reg)) in decode() 784 // TODO: Add trace point - trace_hpet_timer_id_out_of_range(timer_id) in decode() localVariable