smol-gilbraltar/include/coherent_page.h

13 lines
253 B
C
Raw Permalink Normal View History

2024-12-23 00:46:17 +00:00
#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