Searched refs:out8 (Results 1 - 10 of 10) sorted by relevance

/seL4-camkes-master/kernel/src/plat/pc99/machine/
H A Dpic.c19 out8(PIC1_BASE, 0x11);
20 out8(PIC2_BASE, 0x11);
21 out8(PIC1_BASE + 1, interrupt);
22 out8(PIC2_BASE + 1, interrupt + 8);
23 out8(PIC1_BASE + 1, 0x04);
24 out8(PIC2_BASE + 1, 0x02);
25 out8(PIC1_BASE + 1, 0x01);
26 out8(PIC2_BASE + 1, 0x01);
27 out8(PIC1_BASE + 1, 0x0);
28 out8(PIC2_BAS
[all...]
H A Dio.c18 out8(port + 1, 0x00); /* disable generating interrupts */
19 out8(port + 3, 0x80); /* line control register: command: set divisor */
20 out8(port, 0x01); /* set low byte of divisor to 0x01 = 115200 baud */
21 out8(port + 1, 0x00); /* set high byte of divisor to 0x00 */
22 out8(port + 3, 0x03); /* line control register: set 8 bit, no parity, 1 stop bit */
23 out8(port + 4, 0x0b); /* modem control register: set DTR/RTS/OUT2 */
33 out8(x86KSdebugPort, a);
H A Dpit.c22 out8(PIT_MODE, 0x34); /* Set mode 2 and wait for divisor bytes */
23 out8(PIT_CH0, divisor & 0xff); /* Set low byte of divisor */
24 out8(PIT_CH0, divisor >> 8); /* Set high byte of divisor */
32 out8(PIT_MODE, 0x00);
39 out8(PIT_MODE, 0x00);
/seL4-camkes-master/projects/seL4_projects_libs/libsel4keyboard/arch_include/x86/keyboard/
H A Dkeyboard.h23 * out8 - Function for writing a byte to either IO port 0x60 or port 0x64.
25 void sel4keyboard_init(int enable_interrupt, in8_fn in8, out8_fn out8);
/seL4-camkes-master/kernel/include/plat/pc99/plat/machine/
H A Dio.h14 void out8(uint16_t port, uint8_t value);
/seL4-camkes-master/projects/camkes/apps/aeroplage/components/KeyboardDriver/
H A Ddriver.c34 static void out8(uint16_t port, uint8_t value) function
44 sel4keyboard_init(0, in8, out8);
/seL4-camkes-master/projects/seL4_projects_libs/libsel4keyboard/src/arch-x86/
H A Dkeyboard.c75 void sel4keyboard_init(int enable_interrupt, in8_fn in8, out8_fn out8) argument
78 io_out8 = out8;
/seL4-camkes-master/kernel/src/arch/x86/32/
H A Dmachine_asm.S74 BEGIN_FUNC(out8)
79 END_FUNC(out8)
/seL4-camkes-master/kernel/src/arch/x86/64/
H A Dmachine_asm.S21 BEGIN_FUNC(out8) # port, value
26 END_FUNC(out8)
/seL4-camkes-master/kernel/src/arch/x86/object/
H A Dioport.c220 out8(port, data);

Completed in 305 milliseconds