Rev | Line | |
---|
[34] | 1 | #ifndef __ASM_XENCONS_H__ |
---|
| 2 | #define __ASM_XENCONS_H__ |
---|
| 3 | |
---|
| 4 | struct dom0_vga_console_info; |
---|
| 5 | void dom0_init_screen_info(const struct dom0_vga_console_info *info); |
---|
| 6 | |
---|
| 7 | void xencons_force_flush(void); |
---|
| 8 | void xencons_resume(void); |
---|
| 9 | |
---|
| 10 | /* Interrupt work hooks. Receive data, or kick data out. */ |
---|
| 11 | void xencons_rx(char *buf, unsigned len, struct pt_regs *regs); |
---|
| 12 | void xencons_tx(void); |
---|
| 13 | |
---|
| 14 | int xencons_ring_init(void); |
---|
| 15 | int xencons_ring_send(const char *data, unsigned len); |
---|
| 16 | |
---|
| 17 | void xencons_early_setup(void); |
---|
| 18 | |
---|
| 19 | #endif /* __ASM_XENCONS_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.