versatile-fpga.h 353 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef PLAT_FPGA_IRQ_H
  3. #define PLAT_FPGA_IRQ_H
  4. struct device_node;
  5. struct pt_regs;
  6. void fpga_handle_irq(struct pt_regs *regs);
  7. void fpga_irq_init(void __iomem *, const char *, int, int, u32,
  8. struct device_node *node);
  9. int fpga_irq_of_init(struct device_node *node,
  10. struct device_node *parent);
  11. #endif