irq.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. #ifdef __KERNEL__
  2. #ifndef _ASM_POWERPC_IRQ_H
  3. #define _ASM_POWERPC_IRQ_H
  4. /*
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version
  8. * 2 of the License, or (at your option) any later version.
  9. */
  10. #include <linux/threads.h>
  11. #include <linux/list.h>
  12. #include <linux/radix-tree.h>
  13. #include <asm/types.h>
  14. #include <asm/atomic.h>
  15. #define get_irq_desc(irq) (&irq_desc[(irq)])
  16. /* Define a way to iterate across irqs. */
  17. #define for_each_irq(i) \
  18. for ((i) = 0; (i) < NR_IRQS; ++(i))
  19. extern atomic_t ppc_n_lost_interrupts;
  20. #ifdef CONFIG_PPC_MERGE
  21. /* This number is used when no interrupt has been assigned */
  22. #define NO_IRQ (0)
  23. /* This is a special irq number to return from get_irq() to tell that
  24. * no interrupt happened _and_ ignore it (don't count it as bad). Some
  25. * platforms like iSeries rely on that.
  26. */
  27. #define NO_IRQ_IGNORE ((unsigned int)-1)
  28. /* Total number of virq in the platform (make it a CONFIG_* option ? */
  29. #define NR_IRQS 512
  30. /* Number of irqs reserved for the legacy controller */
  31. #define NUM_ISA_INTERRUPTS 16
  32. /* This type is the placeholder for a hardware interrupt number. It has to
  33. * be big enough to enclose whatever representation is used by a given
  34. * platform.
  35. */
  36. typedef unsigned long irq_hw_number_t;
  37. /* Interrupt controller "host" data structure. This could be defined as a
  38. * irq domain controller. That is, it handles the mapping between hardware
  39. * and virtual interrupt numbers for a given interrupt domain. The host
  40. * structure is generally created by the PIC code for a given PIC instance
  41. * (though a host can cover more than one PIC if they have a flat number
  42. * model). It's the host callbacks that are responsible for setting the
  43. * irq_chip on a given irq_desc after it's been mapped.
  44. *
  45. * The host code and data structures are fairly agnostic to the fact that
  46. * we use an open firmware device-tree. We do have references to struct
  47. * device_node in two places: in irq_find_host() to find the host matching
  48. * a given interrupt controller node, and of course as an argument to its
  49. * counterpart host->ops->match() callback. However, those are treated as
  50. * generic pointers by the core and the fact that it's actually a device-node
  51. * pointer is purely a convention between callers and implementation. This
  52. * code could thus be used on other architectures by replacing those two
  53. * by some sort of arch-specific void * "token" used to identify interrupt
  54. * controllers.
  55. */
  56. struct irq_host;
  57. struct radix_tree_root;
  58. /* Functions below are provided by the host and called whenever a new mapping
  59. * is created or an old mapping is disposed. The host can then proceed to
  60. * whatever internal data structures management is required. It also needs
  61. * to setup the irq_desc when returning from map().
  62. */
  63. struct irq_host_ops {
  64. /* Match an interrupt controller device node to a host, returns
  65. * 1 on a match
  66. */
  67. int (*match)(struct irq_host *h, struct device_node *node);
  68. /* Create or update a mapping between a virtual irq number and a hw
  69. * irq number. This is called only once for a given mapping.
  70. */
  71. int (*map)(struct irq_host *h, unsigned int virq, irq_hw_number_t hw);
  72. /* Dispose of such a mapping */
  73. void (*unmap)(struct irq_host *h, unsigned int virq);
  74. /* Update of such a mapping */
  75. void (*remap)(struct irq_host *h, unsigned int virq, irq_hw_number_t hw);
  76. /* Translate device-tree interrupt specifier from raw format coming
  77. * from the firmware to a irq_hw_number_t (interrupt line number) and
  78. * type (sense) that can be passed to set_irq_type(). In the absence
  79. * of this callback, irq_create_of_mapping() and irq_of_parse_and_map()
  80. * will return the hw number in the first cell and IRQ_TYPE_NONE for
  81. * the type (which amount to keeping whatever default value the
  82. * interrupt controller has for that line)
  83. */
  84. int (*xlate)(struct irq_host *h, struct device_node *ctrler,
  85. u32 *intspec, unsigned int intsize,
  86. irq_hw_number_t *out_hwirq, unsigned int *out_type);
  87. };
  88. struct irq_host {
  89. struct list_head link;
  90. /* type of reverse mapping technique */
  91. unsigned int revmap_type;
  92. #define IRQ_HOST_MAP_LEGACY 0 /* legacy 8259, gets irqs 1..15 */
  93. #define IRQ_HOST_MAP_NOMAP 1 /* no fast reverse mapping */
  94. #define IRQ_HOST_MAP_LINEAR 2 /* linear map of interrupts */
  95. #define IRQ_HOST_MAP_TREE 3 /* radix tree */
  96. union {
  97. struct {
  98. unsigned int size;
  99. unsigned int *revmap;
  100. } linear;
  101. struct radix_tree_root tree;
  102. } revmap_data;
  103. struct irq_host_ops *ops;
  104. void *host_data;
  105. irq_hw_number_t inval_irq;
  106. /* Optional device node pointer */
  107. struct device_node *of_node;
  108. };
  109. /* The main irq map itself is an array of NR_IRQ entries containing the
  110. * associate host and irq number. An entry with a host of NULL is free.
  111. * An entry can be allocated if it's free, the allocator always then sets
  112. * hwirq first to the host's invalid irq number and then fills ops.
  113. */
  114. struct irq_map_entry {
  115. irq_hw_number_t hwirq;
  116. struct irq_host *host;
  117. };
  118. extern struct irq_map_entry irq_map[NR_IRQS];
  119. extern irq_hw_number_t virq_to_hw(unsigned int virq);
  120. /**
  121. * irq_alloc_host - Allocate a new irq_host data structure
  122. * @of_node: optional device-tree node of the interrupt controller
  123. * @revmap_type: type of reverse mapping to use
  124. * @revmap_arg: for IRQ_HOST_MAP_LINEAR linear only: size of the map
  125. * @ops: map/unmap host callbacks
  126. * @inval_irq: provide a hw number in that host space that is always invalid
  127. *
  128. * Allocates and initialize and irq_host structure. Note that in the case of
  129. * IRQ_HOST_MAP_LEGACY, the map() callback will be called before this returns
  130. * for all legacy interrupts except 0 (which is always the invalid irq for
  131. * a legacy controller). For a IRQ_HOST_MAP_LINEAR, the map is allocated by
  132. * this call as well. For a IRQ_HOST_MAP_TREE, the radix tree will be allocated
  133. * later during boot automatically (the reverse mapping will use the slow path
  134. * until that happens).
  135. */
  136. extern struct irq_host *irq_alloc_host(struct device_node *of_node,
  137. unsigned int revmap_type,
  138. unsigned int revmap_arg,
  139. struct irq_host_ops *ops,
  140. irq_hw_number_t inval_irq);
  141. /**
  142. * irq_find_host - Locates a host for a given device node
  143. * @node: device-tree node of the interrupt controller
  144. */
  145. extern struct irq_host *irq_find_host(struct device_node *node);
  146. /**
  147. * irq_set_default_host - Set a "default" host
  148. * @host: default host pointer
  149. *
  150. * For convenience, it's possible to set a "default" host that will be used
  151. * whenever NULL is passed to irq_create_mapping(). It makes life easier for
  152. * platforms that want to manipulate a few hard coded interrupt numbers that
  153. * aren't properly represented in the device-tree.
  154. */
  155. extern void irq_set_default_host(struct irq_host *host);
  156. /**
  157. * irq_set_virq_count - Set the maximum number of virt irqs
  158. * @count: number of linux virtual irqs, capped with NR_IRQS
  159. *
  160. * This is mainly for use by platforms like iSeries who want to program
  161. * the virtual irq number in the controller to avoid the reverse mapping
  162. */
  163. extern void irq_set_virq_count(unsigned int count);
  164. /**
  165. * irq_create_mapping - Map a hardware interrupt into linux virq space
  166. * @host: host owning this hardware interrupt or NULL for default host
  167. * @hwirq: hardware irq number in that host space
  168. *
  169. * Only one mapping per hardware interrupt is permitted. Returns a linux
  170. * virq number.
  171. * If the sense/trigger is to be specified, set_irq_type() should be called
  172. * on the number returned from that call.
  173. */
  174. extern unsigned int irq_create_mapping(struct irq_host *host,
  175. irq_hw_number_t hwirq);
  176. /**
  177. * irq_dispose_mapping - Unmap an interrupt
  178. * @virq: linux virq number of the interrupt to unmap
  179. */
  180. extern void irq_dispose_mapping(unsigned int virq);
  181. /**
  182. * irq_find_mapping - Find a linux virq from an hw irq number.
  183. * @host: host owning this hardware interrupt
  184. * @hwirq: hardware irq number in that host space
  185. *
  186. * This is a slow path, for use by generic code. It's expected that an
  187. * irq controller implementation directly calls the appropriate low level
  188. * mapping function.
  189. */
  190. extern unsigned int irq_find_mapping(struct irq_host *host,
  191. irq_hw_number_t hwirq);
  192. /**
  193. * irq_create_direct_mapping - Allocate a virq for direct mapping
  194. * @host: host to allocate the virq for or NULL for default host
  195. *
  196. * This routine is used for irq controllers which can choose the hardware
  197. * interrupt numbers they generate. In such a case it's simplest to use
  198. * the linux virq as the hardware interrupt number.
  199. */
  200. extern unsigned int irq_create_direct_mapping(struct irq_host *host);
  201. /**
  202. * irq_radix_revmap - Find a linux virq from a hw irq number.
  203. * @host: host owning this hardware interrupt
  204. * @hwirq: hardware irq number in that host space
  205. *
  206. * This is a fast path, for use by irq controller code that uses radix tree
  207. * revmaps
  208. */
  209. extern unsigned int irq_radix_revmap(struct irq_host *host,
  210. irq_hw_number_t hwirq);
  211. /**
  212. * irq_linear_revmap - Find a linux virq from a hw irq number.
  213. * @host: host owning this hardware interrupt
  214. * @hwirq: hardware irq number in that host space
  215. *
  216. * This is a fast path, for use by irq controller code that uses linear
  217. * revmaps. It does fallback to the slow path if the revmap doesn't exist
  218. * yet and will create the revmap entry with appropriate locking
  219. */
  220. extern unsigned int irq_linear_revmap(struct irq_host *host,
  221. irq_hw_number_t hwirq);
  222. /**
  223. * irq_alloc_virt - Allocate virtual irq numbers
  224. * @host: host owning these new virtual irqs
  225. * @count: number of consecutive numbers to allocate
  226. * @hint: pass a hint number, the allocator will try to use a 1:1 mapping
  227. *
  228. * This is a low level function that is used internally by irq_create_mapping()
  229. * and that can be used by some irq controllers implementations for things
  230. * like allocating ranges of numbers for MSIs. The revmaps are left untouched.
  231. */
  232. extern unsigned int irq_alloc_virt(struct irq_host *host,
  233. unsigned int count,
  234. unsigned int hint);
  235. /**
  236. * irq_free_virt - Free virtual irq numbers
  237. * @virq: virtual irq number of the first interrupt to free
  238. * @count: number of interrupts to free
  239. *
  240. * This function is the opposite of irq_alloc_virt. It will not clear reverse
  241. * maps, this should be done previously by unmap'ing the interrupt. In fact,
  242. * all interrupts covered by the range being freed should have been unmapped
  243. * prior to calling this.
  244. */
  245. extern void irq_free_virt(unsigned int virq, unsigned int count);
  246. /* -- OF helpers -- */
  247. /* irq_create_of_mapping - Map a hardware interrupt into linux virq space
  248. * @controller: Device node of the interrupt controller
  249. * @inspec: Interrupt specifier from the device-tree
  250. * @intsize: Size of the interrupt specifier from the device-tree
  251. *
  252. * This function is identical to irq_create_mapping except that it takes
  253. * as input informations straight from the device-tree (typically the results
  254. * of the of_irq_map_*() functions.
  255. */
  256. extern unsigned int irq_create_of_mapping(struct device_node *controller,
  257. u32 *intspec, unsigned int intsize);
  258. /* irq_of_parse_and_map - Parse nad Map an interrupt into linux virq space
  259. * @device: Device node of the device whose interrupt is to be mapped
  260. * @index: Index of the interrupt to map
  261. *
  262. * This function is a wrapper that chains of_irq_map_one() and
  263. * irq_create_of_mapping() to make things easier to callers
  264. */
  265. extern unsigned int irq_of_parse_and_map(struct device_node *dev, int index);
  266. /* -- End OF helpers -- */
  267. /**
  268. * irq_early_init - Init irq remapping subsystem
  269. */
  270. extern void irq_early_init(void);
  271. static __inline__ int irq_canonicalize(int irq)
  272. {
  273. return irq;
  274. }
  275. #else /* CONFIG_PPC_MERGE */
  276. /* This number is used when no interrupt has been assigned */
  277. #define NO_IRQ (-1)
  278. #define NO_IRQ_IGNORE (-2)
  279. /*
  280. * These constants are used for passing information about interrupt
  281. * signal polarity and level/edge sensing to the low-level PIC chip
  282. * drivers.
  283. */
  284. #define IRQ_SENSE_MASK 0x1
  285. #define IRQ_SENSE_LEVEL 0x1 /* interrupt on active level */
  286. #define IRQ_SENSE_EDGE 0x0 /* interrupt triggered by edge */
  287. #define IRQ_POLARITY_MASK 0x2
  288. #define IRQ_POLARITY_POSITIVE 0x2 /* high level or low->high edge */
  289. #define IRQ_POLARITY_NEGATIVE 0x0 /* low level or high->low edge */
  290. #if defined(CONFIG_40x)
  291. #include <asm/ibm4xx.h>
  292. #ifndef NR_BOARD_IRQS
  293. #define NR_BOARD_IRQS 0
  294. #endif
  295. #ifndef UIC_WIDTH /* Number of interrupts per device */
  296. #define UIC_WIDTH 32
  297. #endif
  298. #ifndef NR_UICS /* number of UIC devices */
  299. #define NR_UICS 1
  300. #endif
  301. #if defined (CONFIG_403)
  302. /*
  303. * The PowerPC 403 cores' Asynchronous Interrupt Controller (AIC) has
  304. * 32 possible interrupts, a majority of which are not implemented on
  305. * all cores. There are six configurable, external interrupt pins and
  306. * there are eight internal interrupts for the on-chip serial port
  307. * (SPU), DMA controller, and JTAG controller.
  308. *
  309. */
  310. #define NR_AIC_IRQS 32
  311. #define NR_IRQS (NR_AIC_IRQS + NR_BOARD_IRQS)
  312. #elif !defined (CONFIG_403)
  313. /*
  314. * The PowerPC 405 cores' Universal Interrupt Controller (UIC) has 32
  315. * possible interrupts as well. There are seven, configurable external
  316. * interrupt pins and there are 17 internal interrupts for the on-chip
  317. * serial port, DMA controller, on-chip Ethernet controller, PCI, etc.
  318. *
  319. */
  320. #define NR_UIC_IRQS UIC_WIDTH
  321. #define NR_IRQS ((NR_UIC_IRQS * NR_UICS) + NR_BOARD_IRQS)
  322. #endif
  323. #elif defined(CONFIG_44x)
  324. #include <asm/ibm44x.h>
  325. #define NR_UIC_IRQS 32
  326. #define NR_IRQS ((NR_UIC_IRQS * NR_UICS) + NR_BOARD_IRQS)
  327. #elif defined(CONFIG_8xx)
  328. /* Now include the board configuration specific associations.
  329. */
  330. #include <asm/mpc8xx.h>
  331. /* The MPC8xx cores have 16 possible interrupts. There are eight
  332. * possible level sensitive interrupts assigned and generated internally
  333. * from such devices as CPM, PCMCIA, RTC, PIT, TimeBase and Decrementer.
  334. * There are eight external interrupts (IRQs) that can be configured
  335. * as either level or edge sensitive.
  336. *
  337. * On some implementations, there is also the possibility of an 8259
  338. * through the PCI and PCI-ISA bridges.
  339. *
  340. * We are "flattening" the interrupt vectors of the cascaded CPM
  341. * and 8259 interrupt controllers so that we can uniquely identify
  342. * any interrupt source with a single integer.
  343. */
  344. #define NR_SIU_INTS 16
  345. #define NR_CPM_INTS 32
  346. #ifndef NR_8259_INTS
  347. #define NR_8259_INTS 0
  348. #endif
  349. #define SIU_IRQ_OFFSET 0
  350. #define CPM_IRQ_OFFSET (SIU_IRQ_OFFSET + NR_SIU_INTS)
  351. #define I8259_IRQ_OFFSET (CPM_IRQ_OFFSET + NR_CPM_INTS)
  352. #define NR_IRQS (NR_SIU_INTS + NR_CPM_INTS + NR_8259_INTS)
  353. /* These values must be zero-based and map 1:1 with the SIU configuration.
  354. * They are used throughout the 8xx I/O subsystem to generate
  355. * interrupt masks, flags, and other control patterns. This is why the
  356. * current kernel assumption of the 8259 as the base controller is such
  357. * a pain in the butt.
  358. */
  359. #define SIU_IRQ0 (0) /* Highest priority */
  360. #define SIU_LEVEL0 (1)
  361. #define SIU_IRQ1 (2)
  362. #define SIU_LEVEL1 (3)
  363. #define SIU_IRQ2 (4)
  364. #define SIU_LEVEL2 (5)
  365. #define SIU_IRQ3 (6)
  366. #define SIU_LEVEL3 (7)
  367. #define SIU_IRQ4 (8)
  368. #define SIU_LEVEL4 (9)
  369. #define SIU_IRQ5 (10)
  370. #define SIU_LEVEL5 (11)
  371. #define SIU_IRQ6 (12)
  372. #define SIU_LEVEL6 (13)
  373. #define SIU_IRQ7 (14)
  374. #define SIU_LEVEL7 (15)
  375. #define MPC8xx_INT_FEC1 SIU_LEVEL1
  376. #define MPC8xx_INT_FEC2 SIU_LEVEL3
  377. #define MPC8xx_INT_SCC1 (CPM_IRQ_OFFSET + CPMVEC_SCC1)
  378. #define MPC8xx_INT_SCC2 (CPM_IRQ_OFFSET + CPMVEC_SCC2)
  379. #define MPC8xx_INT_SCC3 (CPM_IRQ_OFFSET + CPMVEC_SCC3)
  380. #define MPC8xx_INT_SCC4 (CPM_IRQ_OFFSET + CPMVEC_SCC4)
  381. #define MPC8xx_INT_SMC1 (CPM_IRQ_OFFSET + CPMVEC_SMC1)
  382. #define MPC8xx_INT_SMC2 (CPM_IRQ_OFFSET + CPMVEC_SMC2)
  383. /* The internal interrupts we can configure as we see fit.
  384. * My personal preference is CPM at level 2, which puts it above the
  385. * MBX PCI/ISA/IDE interrupts.
  386. */
  387. #ifndef PIT_INTERRUPT
  388. #define PIT_INTERRUPT SIU_LEVEL0
  389. #endif
  390. #ifndef CPM_INTERRUPT
  391. #define CPM_INTERRUPT SIU_LEVEL2
  392. #endif
  393. #ifndef PCMCIA_INTERRUPT
  394. #define PCMCIA_INTERRUPT SIU_LEVEL6
  395. #endif
  396. #ifndef DEC_INTERRUPT
  397. #define DEC_INTERRUPT SIU_LEVEL7
  398. #endif
  399. /* Some internal interrupt registers use an 8-bit mask for the interrupt
  400. * level instead of a number.
  401. */
  402. #define mk_int_int_mask(IL) (1 << (7 - (IL/2)))
  403. #elif defined(CONFIG_83xx)
  404. #include <asm/mpc83xx.h>
  405. #define NR_IRQS (NR_IPIC_INTS)
  406. #elif defined(CONFIG_85xx)
  407. /* Now include the board configuration specific associations.
  408. */
  409. #include <asm/mpc85xx.h>
  410. /* The MPC8548 openpic has 48 internal interrupts and 12 external
  411. * interrupts.
  412. *
  413. * We are "flattening" the interrupt vectors of the cascaded CPM
  414. * so that we can uniquely identify any interrupt source with a
  415. * single integer.
  416. */
  417. #define NR_CPM_INTS 64
  418. #define NR_EPIC_INTS 60
  419. #ifndef NR_8259_INTS
  420. #define NR_8259_INTS 0
  421. #endif
  422. #define NUM_8259_INTERRUPTS NR_8259_INTS
  423. #ifndef CPM_IRQ_OFFSET
  424. #define CPM_IRQ_OFFSET 0
  425. #endif
  426. #define NR_IRQS (NR_EPIC_INTS + NR_CPM_INTS + NR_8259_INTS)
  427. /* Internal IRQs on MPC85xx OpenPIC */
  428. #ifndef MPC85xx_OPENPIC_IRQ_OFFSET
  429. #ifdef CONFIG_CPM2
  430. #define MPC85xx_OPENPIC_IRQ_OFFSET (CPM_IRQ_OFFSET + NR_CPM_INTS)
  431. #else
  432. #define MPC85xx_OPENPIC_IRQ_OFFSET 0
  433. #endif
  434. #endif
  435. /* Not all of these exist on all MPC85xx implementations */
  436. #define MPC85xx_IRQ_L2CACHE ( 0 + MPC85xx_OPENPIC_IRQ_OFFSET)
  437. #define MPC85xx_IRQ_ECM ( 1 + MPC85xx_OPENPIC_IRQ_OFFSET)
  438. #define MPC85xx_IRQ_DDR ( 2 + MPC85xx_OPENPIC_IRQ_OFFSET)
  439. #define MPC85xx_IRQ_LBIU ( 3 + MPC85xx_OPENPIC_IRQ_OFFSET)
  440. #define MPC85xx_IRQ_DMA0 ( 4 + MPC85xx_OPENPIC_IRQ_OFFSET)
  441. #define MPC85xx_IRQ_DMA1 ( 5 + MPC85xx_OPENPIC_IRQ_OFFSET)
  442. #define MPC85xx_IRQ_DMA2 ( 6 + MPC85xx_OPENPIC_IRQ_OFFSET)
  443. #define MPC85xx_IRQ_DMA3 ( 7 + MPC85xx_OPENPIC_IRQ_OFFSET)
  444. #define MPC85xx_IRQ_PCI1 ( 8 + MPC85xx_OPENPIC_IRQ_OFFSET)
  445. #define MPC85xx_IRQ_PCI2 ( 9 + MPC85xx_OPENPIC_IRQ_OFFSET)
  446. #define MPC85xx_IRQ_RIO_ERROR ( 9 + MPC85xx_OPENPIC_IRQ_OFFSET)
  447. #define MPC85xx_IRQ_RIO_BELL (10 + MPC85xx_OPENPIC_IRQ_OFFSET)
  448. #define MPC85xx_IRQ_RIO_TX (11 + MPC85xx_OPENPIC_IRQ_OFFSET)
  449. #define MPC85xx_IRQ_RIO_RX (12 + MPC85xx_OPENPIC_IRQ_OFFSET)
  450. #define MPC85xx_IRQ_TSEC1_TX (13 + MPC85xx_OPENPIC_IRQ_OFFSET)
  451. #define MPC85xx_IRQ_TSEC1_RX (14 + MPC85xx_OPENPIC_IRQ_OFFSET)
  452. #define MPC85xx_IRQ_TSEC3_TX (15 + MPC85xx_OPENPIC_IRQ_OFFSET)
  453. #define MPC85xx_IRQ_TSEC3_RX (16 + MPC85xx_OPENPIC_IRQ_OFFSET)
  454. #define MPC85xx_IRQ_TSEC3_ERROR (17 + MPC85xx_OPENPIC_IRQ_OFFSET)
  455. #define MPC85xx_IRQ_TSEC1_ERROR (18 + MPC85xx_OPENPIC_IRQ_OFFSET)
  456. #define MPC85xx_IRQ_TSEC2_TX (19 + MPC85xx_OPENPIC_IRQ_OFFSET)
  457. #define MPC85xx_IRQ_TSEC2_RX (20 + MPC85xx_OPENPIC_IRQ_OFFSET)
  458. #define MPC85xx_IRQ_TSEC4_TX (21 + MPC85xx_OPENPIC_IRQ_OFFSET)
  459. #define MPC85xx_IRQ_TSEC4_RX (22 + MPC85xx_OPENPIC_IRQ_OFFSET)
  460. #define MPC85xx_IRQ_TSEC4_ERROR (23 + MPC85xx_OPENPIC_IRQ_OFFSET)
  461. #define MPC85xx_IRQ_TSEC2_ERROR (24 + MPC85xx_OPENPIC_IRQ_OFFSET)
  462. #define MPC85xx_IRQ_FEC (25 + MPC85xx_OPENPIC_IRQ_OFFSET)
  463. #define MPC85xx_IRQ_DUART (26 + MPC85xx_OPENPIC_IRQ_OFFSET)
  464. #define MPC85xx_IRQ_IIC1 (27 + MPC85xx_OPENPIC_IRQ_OFFSET)
  465. #define MPC85xx_IRQ_PERFMON (28 + MPC85xx_OPENPIC_IRQ_OFFSET)
  466. #define MPC85xx_IRQ_SEC2 (29 + MPC85xx_OPENPIC_IRQ_OFFSET)
  467. #define MPC85xx_IRQ_CPM (30 + MPC85xx_OPENPIC_IRQ_OFFSET)
  468. /* The 12 external interrupt lines */
  469. #define MPC85xx_IRQ_EXT0 (48 + MPC85xx_OPENPIC_IRQ_OFFSET)
  470. #define MPC85xx_IRQ_EXT1 (49 + MPC85xx_OPENPIC_IRQ_OFFSET)
  471. #define MPC85xx_IRQ_EXT2 (50 + MPC85xx_OPENPIC_IRQ_OFFSET)
  472. #define MPC85xx_IRQ_EXT3 (51 + MPC85xx_OPENPIC_IRQ_OFFSET)
  473. #define MPC85xx_IRQ_EXT4 (52 + MPC85xx_OPENPIC_IRQ_OFFSET)
  474. #define MPC85xx_IRQ_EXT5 (53 + MPC85xx_OPENPIC_IRQ_OFFSET)
  475. #define MPC85xx_IRQ_EXT6 (54 + MPC85xx_OPENPIC_IRQ_OFFSET)
  476. #define MPC85xx_IRQ_EXT7 (55 + MPC85xx_OPENPIC_IRQ_OFFSET)
  477. #define MPC85xx_IRQ_EXT8 (56 + MPC85xx_OPENPIC_IRQ_OFFSET)
  478. #define MPC85xx_IRQ_EXT9 (57 + MPC85xx_OPENPIC_IRQ_OFFSET)
  479. #define MPC85xx_IRQ_EXT10 (58 + MPC85xx_OPENPIC_IRQ_OFFSET)
  480. #define MPC85xx_IRQ_EXT11 (59 + MPC85xx_OPENPIC_IRQ_OFFSET)
  481. /* CPM related interrupts */
  482. #define SIU_INT_ERROR ((uint)0x00+CPM_IRQ_OFFSET)
  483. #define SIU_INT_I2C ((uint)0x01+CPM_IRQ_OFFSET)
  484. #define SIU_INT_SPI ((uint)0x02+CPM_IRQ_OFFSET)
  485. #define SIU_INT_RISC ((uint)0x03+CPM_IRQ_OFFSET)
  486. #define SIU_INT_SMC1 ((uint)0x04+CPM_IRQ_OFFSET)
  487. #define SIU_INT_SMC2 ((uint)0x05+CPM_IRQ_OFFSET)
  488. #define SIU_INT_USB ((uint)0x0b+CPM_IRQ_OFFSET)
  489. #define SIU_INT_TIMER1 ((uint)0x0c+CPM_IRQ_OFFSET)
  490. #define SIU_INT_TIMER2 ((uint)0x0d+CPM_IRQ_OFFSET)
  491. #define SIU_INT_TIMER3 ((uint)0x0e+CPM_IRQ_OFFSET)
  492. #define SIU_INT_TIMER4 ((uint)0x0f+CPM_IRQ_OFFSET)
  493. #define SIU_INT_FCC1 ((uint)0x20+CPM_IRQ_OFFSET)
  494. #define SIU_INT_FCC2 ((uint)0x21+CPM_IRQ_OFFSET)
  495. #define SIU_INT_FCC3 ((uint)0x22+CPM_IRQ_OFFSET)
  496. #define SIU_INT_MCC1 ((uint)0x24+CPM_IRQ_OFFSET)
  497. #define SIU_INT_MCC2 ((uint)0x25+CPM_IRQ_OFFSET)
  498. #define SIU_INT_SCC1 ((uint)0x28+CPM_IRQ_OFFSET)
  499. #define SIU_INT_SCC2 ((uint)0x29+CPM_IRQ_OFFSET)
  500. #define SIU_INT_SCC3 ((uint)0x2a+CPM_IRQ_OFFSET)
  501. #define SIU_INT_SCC4 ((uint)0x2b+CPM_IRQ_OFFSET)
  502. #define SIU_INT_PC15 ((uint)0x30+CPM_IRQ_OFFSET)
  503. #define SIU_INT_PC14 ((uint)0x31+CPM_IRQ_OFFSET)
  504. #define SIU_INT_PC13 ((uint)0x32+CPM_IRQ_OFFSET)
  505. #define SIU_INT_PC12 ((uint)0x33+CPM_IRQ_OFFSET)
  506. #define SIU_INT_PC11 ((uint)0x34+CPM_IRQ_OFFSET)
  507. #define SIU_INT_PC10 ((uint)0x35+CPM_IRQ_OFFSET)
  508. #define SIU_INT_PC9 ((uint)0x36+CPM_IRQ_OFFSET)
  509. #define SIU_INT_PC8 ((uint)0x37+CPM_IRQ_OFFSET)
  510. #define SIU_INT_PC7 ((uint)0x38+CPM_IRQ_OFFSET)
  511. #define SIU_INT_PC6 ((uint)0x39+CPM_IRQ_OFFSET)
  512. #define SIU_INT_PC5 ((uint)0x3a+CPM_IRQ_OFFSET)
  513. #define SIU_INT_PC4 ((uint)0x3b+CPM_IRQ_OFFSET)
  514. #define SIU_INT_PC3 ((uint)0x3c+CPM_IRQ_OFFSET)
  515. #define SIU_INT_PC2 ((uint)0x3d+CPM_IRQ_OFFSET)
  516. #define SIU_INT_PC1 ((uint)0x3e+CPM_IRQ_OFFSET)
  517. #define SIU_INT_PC0 ((uint)0x3f+CPM_IRQ_OFFSET)
  518. #elif defined(CONFIG_PPC_86xx)
  519. #include <asm/mpc86xx.h>
  520. #define NR_EPIC_INTS 48
  521. #ifndef NR_8259_INTS
  522. #define NR_8259_INTS 16 /*ULI 1575 can route 12 interrupts */
  523. #endif
  524. #define NUM_8259_INTERRUPTS NR_8259_INTS
  525. #ifndef I8259_OFFSET
  526. #define I8259_OFFSET 0
  527. #endif
  528. #define NR_IRQS 256
  529. /* Internal IRQs on MPC86xx OpenPIC */
  530. #ifndef MPC86xx_OPENPIC_IRQ_OFFSET
  531. #define MPC86xx_OPENPIC_IRQ_OFFSET NR_8259_INTS
  532. #endif
  533. /* The 48 internal sources */
  534. #define MPC86xx_IRQ_NULL ( 0 + MPC86xx_OPENPIC_IRQ_OFFSET)
  535. #define MPC86xx_IRQ_MCM ( 1 + MPC86xx_OPENPIC_IRQ_OFFSET)
  536. #define MPC86xx_IRQ_DDR ( 2 + MPC86xx_OPENPIC_IRQ_OFFSET)
  537. #define MPC86xx_IRQ_LBC ( 3 + MPC86xx_OPENPIC_IRQ_OFFSET)
  538. #define MPC86xx_IRQ_DMA0 ( 4 + MPC86xx_OPENPIC_IRQ_OFFSET)
  539. #define MPC86xx_IRQ_DMA1 ( 5 + MPC86xx_OPENPIC_IRQ_OFFSET)
  540. #define MPC86xx_IRQ_DMA2 ( 6 + MPC86xx_OPENPIC_IRQ_OFFSET)
  541. #define MPC86xx_IRQ_DMA3 ( 7 + MPC86xx_OPENPIC_IRQ_OFFSET)
  542. /* no 10,11 */
  543. #define MPC86xx_IRQ_UART2 (12 + MPC86xx_OPENPIC_IRQ_OFFSET)
  544. #define MPC86xx_IRQ_TSEC1_TX (13 + MPC86xx_OPENPIC_IRQ_OFFSET)
  545. #define MPC86xx_IRQ_TSEC1_RX (14 + MPC86xx_OPENPIC_IRQ_OFFSET)
  546. #define MPC86xx_IRQ_TSEC3_TX (15 + MPC86xx_OPENPIC_IRQ_OFFSET)
  547. #define MPC86xx_IRQ_TSEC3_RX (16 + MPC86xx_OPENPIC_IRQ_OFFSET)
  548. #define MPC86xx_IRQ_TSEC3_ERROR (17 + MPC86xx_OPENPIC_IRQ_OFFSET)
  549. #define MPC86xx_IRQ_TSEC1_ERROR (18 + MPC86xx_OPENPIC_IRQ_OFFSET)
  550. #define MPC86xx_IRQ_TSEC2_TX (19 + MPC86xx_OPENPIC_IRQ_OFFSET)
  551. #define MPC86xx_IRQ_TSEC2_RX (20 + MPC86xx_OPENPIC_IRQ_OFFSET)
  552. #define MPC86xx_IRQ_TSEC4_TX (21 + MPC86xx_OPENPIC_IRQ_OFFSET)
  553. #define MPC86xx_IRQ_TSEC4_RX (22 + MPC86xx_OPENPIC_IRQ_OFFSET)
  554. #define MPC86xx_IRQ_TSEC4_ERROR (23 + MPC86xx_OPENPIC_IRQ_OFFSET)
  555. #define MPC86xx_IRQ_TSEC2_ERROR (24 + MPC86xx_OPENPIC_IRQ_OFFSET)
  556. /* no 25 */
  557. #define MPC86xx_IRQ_UART1 (26 + MPC86xx_OPENPIC_IRQ_OFFSET)
  558. #define MPC86xx_IRQ_IIC (27 + MPC86xx_OPENPIC_IRQ_OFFSET)
  559. #define MPC86xx_IRQ_PERFMON (28 + MPC86xx_OPENPIC_IRQ_OFFSET)
  560. /* no 29,30,31 */
  561. #define MPC86xx_IRQ_SRIO_ERROR (32 + MPC86xx_OPENPIC_IRQ_OFFSET)
  562. #define MPC86xx_IRQ_SRIO_OUT_BELL (33 + MPC86xx_OPENPIC_IRQ_OFFSET)
  563. #define MPC86xx_IRQ_SRIO_IN_BELL (34 + MPC86xx_OPENPIC_IRQ_OFFSET)
  564. /* no 35,36 */
  565. #define MPC86xx_IRQ_SRIO_OUT_MSG1 (37 + MPC86xx_OPENPIC_IRQ_OFFSET)
  566. #define MPC86xx_IRQ_SRIO_IN_MSG1 (38 + MPC86xx_OPENPIC_IRQ_OFFSET)
  567. #define MPC86xx_IRQ_SRIO_OUT_MSG2 (39 + MPC86xx_OPENPIC_IRQ_OFFSET)
  568. #define MPC86xx_IRQ_SRIO_IN_MSG2 (40 + MPC86xx_OPENPIC_IRQ_OFFSET)
  569. /* The 12 external interrupt lines */
  570. #define MPC86xx_IRQ_EXT_BASE 48
  571. #define MPC86xx_IRQ_EXT0 (0 + MPC86xx_IRQ_EXT_BASE \
  572. + MPC86xx_OPENPIC_IRQ_OFFSET)
  573. #define MPC86xx_IRQ_EXT1 (1 + MPC86xx_IRQ_EXT_BASE \
  574. + MPC86xx_OPENPIC_IRQ_OFFSET)
  575. #define MPC86xx_IRQ_EXT2 (2 + MPC86xx_IRQ_EXT_BASE \
  576. + MPC86xx_OPENPIC_IRQ_OFFSET)
  577. #define MPC86xx_IRQ_EXT3 (3 + MPC86xx_IRQ_EXT_BASE \
  578. + MPC86xx_OPENPIC_IRQ_OFFSET)
  579. #define MPC86xx_IRQ_EXT4 (4 + MPC86xx_IRQ_EXT_BASE \
  580. + MPC86xx_OPENPIC_IRQ_OFFSET)
  581. #define MPC86xx_IRQ_EXT5 (5 + MPC86xx_IRQ_EXT_BASE \
  582. + MPC86xx_OPENPIC_IRQ_OFFSET)
  583. #define MPC86xx_IRQ_EXT6 (6 + MPC86xx_IRQ_EXT_BASE \
  584. + MPC86xx_OPENPIC_IRQ_OFFSET)
  585. #define MPC86xx_IRQ_EXT7 (7 + MPC86xx_IRQ_EXT_BASE \
  586. + MPC86xx_OPENPIC_IRQ_OFFSET)
  587. #define MPC86xx_IRQ_EXT8 (8 + MPC86xx_IRQ_EXT_BASE \
  588. + MPC86xx_OPENPIC_IRQ_OFFSET)
  589. #define MPC86xx_IRQ_EXT9 (9 + MPC86xx_IRQ_EXT_BASE \
  590. + MPC86xx_OPENPIC_IRQ_OFFSET)
  591. #define MPC86xx_IRQ_EXT10 (10 + MPC86xx_IRQ_EXT_BASE \
  592. + MPC86xx_OPENPIC_IRQ_OFFSET)
  593. #define MPC86xx_IRQ_EXT11 (11 + MPC86xx_IRQ_EXT_BASE \
  594. + MPC86xx_OPENPIC_IRQ_OFFSET)
  595. #else /* CONFIG_40x + CONFIG_8xx */
  596. /*
  597. * this is the # irq's for all ppc arch's (pmac/chrp/prep)
  598. * so it is the max of them all
  599. */
  600. #define NR_IRQS 256
  601. #define __DO_IRQ_CANON 1
  602. #ifndef CONFIG_8260
  603. #define NUM_8259_INTERRUPTS 16
  604. #else /* CONFIG_8260 */
  605. /* The 8260 has an internal interrupt controller with a maximum of
  606. * 64 IRQs. We will use NR_IRQs from above since it is large enough.
  607. * Don't be confused by the 8260 documentation where they list an
  608. * "interrupt number" and "interrupt vector". We are only interested
  609. * in the interrupt vector. There are "reserved" holes where the
  610. * vector number increases, but the interrupt number in the table does not.
  611. * (Document errata updates have fixed this...make sure you have up to
  612. * date processor documentation -- Dan).
  613. */
  614. #ifndef CPM_IRQ_OFFSET
  615. #define CPM_IRQ_OFFSET 0
  616. #endif
  617. #define NR_CPM_INTS 64
  618. #define SIU_INT_ERROR ((uint)0x00 + CPM_IRQ_OFFSET)
  619. #define SIU_INT_I2C ((uint)0x01 + CPM_IRQ_OFFSET)
  620. #define SIU_INT_SPI ((uint)0x02 + CPM_IRQ_OFFSET)
  621. #define SIU_INT_RISC ((uint)0x03 + CPM_IRQ_OFFSET)
  622. #define SIU_INT_SMC1 ((uint)0x04 + CPM_IRQ_OFFSET)
  623. #define SIU_INT_SMC2 ((uint)0x05 + CPM_IRQ_OFFSET)
  624. #define SIU_INT_IDMA1 ((uint)0x06 + CPM_IRQ_OFFSET)
  625. #define SIU_INT_IDMA2 ((uint)0x07 + CPM_IRQ_OFFSET)
  626. #define SIU_INT_IDMA3 ((uint)0x08 + CPM_IRQ_OFFSET)
  627. #define SIU_INT_IDMA4 ((uint)0x09 + CPM_IRQ_OFFSET)
  628. #define SIU_INT_SDMA ((uint)0x0a + CPM_IRQ_OFFSET)
  629. #define SIU_INT_USB ((uint)0x0b + CPM_IRQ_OFFSET)
  630. #define SIU_INT_TIMER1 ((uint)0x0c + CPM_IRQ_OFFSET)
  631. #define SIU_INT_TIMER2 ((uint)0x0d + CPM_IRQ_OFFSET)
  632. #define SIU_INT_TIMER3 ((uint)0x0e + CPM_IRQ_OFFSET)
  633. #define SIU_INT_TIMER4 ((uint)0x0f + CPM_IRQ_OFFSET)
  634. #define SIU_INT_TMCNT ((uint)0x10 + CPM_IRQ_OFFSET)
  635. #define SIU_INT_PIT ((uint)0x11 + CPM_IRQ_OFFSET)
  636. #define SIU_INT_PCI ((uint)0x12 + CPM_IRQ_OFFSET)
  637. #define SIU_INT_IRQ1 ((uint)0x13 + CPM_IRQ_OFFSET)
  638. #define SIU_INT_IRQ2 ((uint)0x14 + CPM_IRQ_OFFSET)
  639. #define SIU_INT_IRQ3 ((uint)0x15 + CPM_IRQ_OFFSET)
  640. #define SIU_INT_IRQ4 ((uint)0x16 + CPM_IRQ_OFFSET)
  641. #define SIU_INT_IRQ5 ((uint)0x17 + CPM_IRQ_OFFSET)
  642. #define SIU_INT_IRQ6 ((uint)0x18 + CPM_IRQ_OFFSET)
  643. #define SIU_INT_IRQ7 ((uint)0x19 + CPM_IRQ_OFFSET)
  644. #define SIU_INT_FCC1 ((uint)0x20 + CPM_IRQ_OFFSET)
  645. #define SIU_INT_FCC2 ((uint)0x21 + CPM_IRQ_OFFSET)
  646. #define SIU_INT_FCC3 ((uint)0x22 + CPM_IRQ_OFFSET)
  647. #define SIU_INT_MCC1 ((uint)0x24 + CPM_IRQ_OFFSET)
  648. #define SIU_INT_MCC2 ((uint)0x25 + CPM_IRQ_OFFSET)
  649. #define SIU_INT_SCC1 ((uint)0x28 + CPM_IRQ_OFFSET)
  650. #define SIU_INT_SCC2 ((uint)0x29 + CPM_IRQ_OFFSET)
  651. #define SIU_INT_SCC3 ((uint)0x2a + CPM_IRQ_OFFSET)
  652. #define SIU_INT_SCC4 ((uint)0x2b + CPM_IRQ_OFFSET)
  653. #define SIU_INT_PC15 ((uint)0x30 + CPM_IRQ_OFFSET)
  654. #define SIU_INT_PC14 ((uint)0x31 + CPM_IRQ_OFFSET)
  655. #define SIU_INT_PC13 ((uint)0x32 + CPM_IRQ_OFFSET)
  656. #define SIU_INT_PC12 ((uint)0x33 + CPM_IRQ_OFFSET)
  657. #define SIU_INT_PC11 ((uint)0x34 + CPM_IRQ_OFFSET)
  658. #define SIU_INT_PC10 ((uint)0x35 + CPM_IRQ_OFFSET)
  659. #define SIU_INT_PC9 ((uint)0x36 + CPM_IRQ_OFFSET)
  660. #define SIU_INT_PC8 ((uint)0x37 + CPM_IRQ_OFFSET)
  661. #define SIU_INT_PC7 ((uint)0x38 + CPM_IRQ_OFFSET)
  662. #define SIU_INT_PC6 ((uint)0x39 + CPM_IRQ_OFFSET)
  663. #define SIU_INT_PC5 ((uint)0x3a + CPM_IRQ_OFFSET)
  664. #define SIU_INT_PC4 ((uint)0x3b + CPM_IRQ_OFFSET)
  665. #define SIU_INT_PC3 ((uint)0x3c + CPM_IRQ_OFFSET)
  666. #define SIU_INT_PC2 ((uint)0x3d + CPM_IRQ_OFFSET)
  667. #define SIU_INT_PC1 ((uint)0x3e + CPM_IRQ_OFFSET)
  668. #define SIU_INT_PC0 ((uint)0x3f + CPM_IRQ_OFFSET)
  669. #endif /* CONFIG_8260 */
  670. #endif /* Whatever way too big #ifdef */
  671. #define NR_MASK_WORDS ((NR_IRQS + 31) / 32)
  672. /* pedantic: these are long because they are used with set_bit --RR */
  673. extern unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
  674. /*
  675. * Because many systems have two overlapping names spaces for
  676. * interrupts (ISA and XICS for example), and the ISA interrupts
  677. * have historically not been easy to renumber, we allow ISA
  678. * interrupts to take values 0 - 15, and shift up the remaining
  679. * interrupts by 0x10.
  680. */
  681. #define NUM_ISA_INTERRUPTS 0x10
  682. extern int __irq_offset_value;
  683. static inline int irq_offset_up(int irq)
  684. {
  685. return(irq + __irq_offset_value);
  686. }
  687. static inline int irq_offset_down(int irq)
  688. {
  689. return(irq - __irq_offset_value);
  690. }
  691. static inline int irq_offset_value(void)
  692. {
  693. return __irq_offset_value;
  694. }
  695. #ifdef __DO_IRQ_CANON
  696. extern int ppc_do_canonicalize_irqs;
  697. #else
  698. #define ppc_do_canonicalize_irqs 0
  699. #endif
  700. static __inline__ int irq_canonicalize(int irq)
  701. {
  702. if (ppc_do_canonicalize_irqs && irq == 2)
  703. irq = 9;
  704. return irq;
  705. }
  706. #endif /* CONFIG_PPC_MERGE */
  707. extern int distribute_irqs;
  708. struct irqaction;
  709. struct pt_regs;
  710. #define __ARCH_HAS_DO_SOFTIRQ
  711. extern void __do_softirq(void);
  712. #ifdef CONFIG_IRQSTACKS
  713. /*
  714. * Per-cpu stacks for handling hard and soft interrupts.
  715. */
  716. extern struct thread_info *hardirq_ctx[NR_CPUS];
  717. extern struct thread_info *softirq_ctx[NR_CPUS];
  718. extern void irq_ctx_init(void);
  719. extern void call_do_softirq(struct thread_info *tp);
  720. extern int call_handle_irq(int irq, void *p1,
  721. struct thread_info *tp, void *func);
  722. #else
  723. #define irq_ctx_init()
  724. #endif /* CONFIG_IRQSTACKS */
  725. extern void do_IRQ(struct pt_regs *regs);
  726. #endif /* _ASM_IRQ_H */
  727. #endif /* __KERNEL__ */