1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Support for Intel Camera Imaging ISP subsystem. 4 * Copyright (c) 2015, Intel Corporation. 5 */ 6 7 #ifndef __ISYS_IRQ_LOCAL_H__ 8 #define __ISYS_IRQ_LOCAL_H__ 9 10 #include <type_support.h> 11 12 typedef struct isys_irqc_state_s isys_irqc_state_t; 13 14 struct isys_irqc_state_s { 15 hrt_data edge; 16 hrt_data mask; 17 hrt_data status; 18 hrt_data enable; 19 hrt_data level_no; 20 /*hrt_data clear; */ /* write-only register */ 21 }; 22 23 24 #endif /* __ISYS_IRQ_LOCAL_H__ */ 25