Skip to content
Snippets Groups Projects
  • Alessandro Rubini's avatar
    Tom's sources, from svn:software/drivers (rev. 623) · 8d491953
    Alessandro Rubini authored
    This is a simple copy for files from the white-rabbit svn,
    currently at revision 623. No local modification is there
    at this commit. The author of the code is Tomasz Wlostowski,
    even though I haven't marked him as --author (lazy me).
    8d491953
wr_vic.h 366 B
#ifndef __WHITERABBIT_VIC_H
#define __WHITERABBIT_VIC_H


#define FPGA_BASE_VIC 0x70030000
#define WRMCH_VIC_MAX_IRQS 32

typedef void (*wrvic_irq_t)(void *dev_id);

int wrmch_vic_request_irq(int irq, wrvic_irq_t handler, void *dev_id);
void wrmch_vic_free_irq(int irq, void *dev_id);
void wrmch_vic_enable_irq(int irq);
void wrmch_vic_disable_irq(int irq);

#endif