Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / drivers / cuda.h
1 #include "adb_bus.h"
2
3 struct cuda_t {
4         phys_addr_t base;
5         adb_bus_t *adb_bus;
6 };
7 typedef struct cuda_t cuda_t;
8
9 enum {
10         CHARDEV_KBD = 0,
11         CHARDEV_MOUSE,
12         CHARDEV_SERIAL,
13         CHARDEV_DISPLAY,
14         CHARDEV_LAST,
15 };
16
17 cuda_t *cuda_init (const char *path, phys_addr_t base);