13 lines
253 B
C
13 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
|