b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
2 | /* | ||||
3 | * Copyright (C) BitBox Ltd 2010 | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef __PLAT_MXC_IRQ_COMMON_H__ | ||||
7 | #define __PLAT_MXC_IRQ_COMMON_H__ | ||||
8 | |||||
9 | /* all normal IRQs can be FIQs */ | ||||
10 | #define FIQ_START 0 | ||||
11 | |||||
12 | struct mxc_extra_irq | ||||
13 | { | ||||
14 | int (*set_irq_fiq)(unsigned int irq, unsigned int type); | ||||
15 | }; | ||||
16 | |||||
17 | #endif |