smol-gilbraltar/include/coherent_page.h
2024-12-23 01:46:17 +01:00

12 lines
253 B
C

#ifndef __GILBRALTAR_COHERENT_PAGE__
#define __GILBRALTAR_COHERENT_PAGE__
#include <stdbool.h>
#include <stdint.h>
#include <sysconfig.h>
enum coherent_page { PROP_MAILBOX = 0, GPIO_VIRTBUF };
uintptr_t get_coherent_page(enum coherent_page);
#endif