/* * Private extensions to galcore to support Other(tm) ways of doing things. */ #ifndef GAL_EXTENSION_H #define GAL_EXTENSION_H #include #include /* Map a DMABUF fd into galcore */ struct map_dma_buf { unsigned zero; unsigned status; int fd; gctPOINTER Info; gctUINT32 Address; }; #define IOC_GDMABUF_MAP _IOWR('_', 0, struct map_dma_buf) #endif