1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /** 3 * irq-omap-intc.h - INTC Idle Functions 4 * 5 * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com 6 * 7 * Author: Felipe Balbi <balbi@ti.com> 8 */ 9 10 #ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H 11 #define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H 12 13 int omap_irq_pending(void); 14 void omap_intc_save_context(void); 15 void omap_intc_restore_context(void); 16 void omap3_intc_suspend(void); 17 void omap3_intc_prepare_idle(void); 18 void omap3_intc_resume_idle(void); 19 20 #endif /* __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H */ 21