/* SPDX-License-Identifier: GPL-2.0 */12/*3* arch/arm/mach-omap1/ams-delta-fiq.h4*5* Taken from the original Amstrad modifications to fiq.h6*7* Copyright (c) 2004 Amstrad Plc8* Copyright (c) 2006 Matt Callow9* Copyright (c) 2010 Janusz Krzysztofik10*11* This program is free software; you can redistribute it and/or modify12* it under the terms of the GNU General Public License version 2 as13* published by the Free Software Foundation.14*/15#ifndef __AMS_DELTA_FIQ_H16#define __AMS_DELTA_FIQ_H1718#include "irqs.h"1920/*21* Interrupt number used for passing control from FIQ to IRQ.22* IRQ12, described as reserved, has been selected.23*/24#define INT_DEFERRED_FIQ INT_1510_RES1225/*26* Base address of an interrupt handler that the INT_DEFERRED_FIQ belongs to.27*/28#if (INT_DEFERRED_FIQ < IH2_BASE)29#define DEFERRED_FIQ_IH_BASE OMAP_IH1_BASE30#else31#define DEFERRED_FIQ_IH_BASE OMAP_IH2_BASE32#endif3334#ifndef __ASSEMBLER__35extern unsigned char qwerty_fiqin_start, qwerty_fiqin_end;3637extern void __init ams_delta_init_fiq(struct gpio_chip *chip,38struct platform_device *pdev);39#endif4041#endif424344