Lines Matching refs:outb_p
52 outb_p(0x00, PIT_MODE); /* latch the count ASAP */ in i8253_read()
58 outb_p(0x34, PIT_MODE); in i8253_read()
59 outb_p(PIT_LATCH & 0xff, PIT_CH0); in i8253_read()
60 outb_p(PIT_LATCH >> 8, PIT_CH0); in i8253_read()
130 outb_p(0x30, PIT_MODE); in clockevent_i8253_disable()
131 outb_p(0, PIT_CH0); in clockevent_i8253_disable()
132 outb_p(0, PIT_CH0); in clockevent_i8253_disable()
134 outb_p(0x30, PIT_MODE); in clockevent_i8253_disable()
151 outb_p(0x38, PIT_MODE); in pit_set_oneshot()
161 outb_p(0x34, PIT_MODE); in pit_set_periodic()
162 outb_p(PIT_LATCH & 0xff, PIT_CH0); /* LSB */ in pit_set_periodic()
163 outb_p(PIT_LATCH >> 8, PIT_CH0); /* MSB */ in pit_set_periodic()
177 outb_p(delta & 0xff , PIT_CH0); /* LSB */ in pit_next_event()
178 outb_p(delta >> 8 , PIT_CH0); /* MSB */ in pit_next_event()