1 /* 2 * PAPR Virtualized Interrupt System, aka ICS/ICP aka xics 3 * 4 * Copyright 2011 Matt Evans <matt@ozlabs.org>, IBM Corporation. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published 8 * by the Free Software Foundation. 9 */ 10 11 #ifndef XICS_H 12 #define XICS_H 13 14 #define XICS_IPI 0x2 15 16 int xics_alloc_irqnum(void); 17 18 #endif 19