Jetpack/kernel/nvidia/include/linux/nvhost_interrupt_syncpt.h
dchvs 31faf4d851 cti_kernel: Add CTI sources
Elroy L4T r32.4.4 – JetPack 4.4.1
2021-03-15 20:15:11 -06:00

17 lines
584 B
C

#ifndef NVHOST_INTERRUPT_SYNCPT_H
#define NVHOST_INTERRUPT_SYNCPT_H
#include <linux/of.h>
struct nvhost_interrupt_syncpt;
struct nvhost_interrupt_syncpt *nvhost_interrupt_syncpt_get(
struct device_node *np, void (*callback)(void *), void *private_data);
u32 nvhost_interrupt_syncpt_get_syncpt_index(struct nvhost_interrupt_syncpt *is);
phys_addr_t nvhost_interrupt_syncpt_get_syncpt_addr(
struct nvhost_interrupt_syncpt *is);
void nvhost_interrupt_syncpt_free(struct nvhost_interrupt_syncpt *is);
int nvhost_interrupt_syncpt_prime(struct nvhost_interrupt_syncpt *is);
#endif