generic-chip.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. /*
  2. * Library implementing the most common irq chip callback functions
  3. *
  4. * Copyright (C) 2011, Thomas Gleixner
  5. */
  6. #include <linux/io.h>
  7. #include <linux/irq.h>
  8. #include <linux/slab.h>
  9. #include <linux/export.h>
  10. #include <linux/irqdomain.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/kernel_stat.h>
  13. #include <linux/syscore_ops.h>
  14. #include "internals.h"
  15. static LIST_HEAD(gc_list);
  16. static DEFINE_RAW_SPINLOCK(gc_lock);
  17. /**
  18. * irq_gc_noop - NOOP function
  19. * @d: irq_data
  20. */
  21. void irq_gc_noop(struct irq_data *d)
  22. {
  23. }
  24. /**
  25. * irq_gc_mask_disable_reg - Mask chip via disable register
  26. * @d: irq_data
  27. *
  28. * Chip has separate enable/disable registers instead of a single mask
  29. * register.
  30. */
  31. void irq_gc_mask_disable_reg(struct irq_data *d)
  32. {
  33. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  34. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  35. u32 mask = d->mask;
  36. irq_gc_lock(gc);
  37. irq_reg_writel(gc, mask, ct->regs.disable);
  38. *ct->mask_cache &= ~mask;
  39. irq_gc_unlock(gc);
  40. }
  41. /**
  42. * irq_gc_mask_set_bit - Mask chip via setting bit in mask register
  43. * @d: irq_data
  44. *
  45. * Chip has a single mask register. Values of this register are cached
  46. * and protected by gc->lock
  47. */
  48. void irq_gc_mask_set_bit(struct irq_data *d)
  49. {
  50. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  51. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  52. u32 mask = d->mask;
  53. irq_gc_lock(gc);
  54. *ct->mask_cache |= mask;
  55. irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask);
  56. irq_gc_unlock(gc);
  57. }
  58. EXPORT_SYMBOL_GPL(irq_gc_mask_set_bit);
  59. /**
  60. * irq_gc_mask_clr_bit - Mask chip via clearing bit in mask register
  61. * @d: irq_data
  62. *
  63. * Chip has a single mask register. Values of this register are cached
  64. * and protected by gc->lock
  65. */
  66. void irq_gc_mask_clr_bit(struct irq_data *d)
  67. {
  68. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  69. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  70. u32 mask = d->mask;
  71. irq_gc_lock(gc);
  72. *ct->mask_cache &= ~mask;
  73. irq_reg_writel(gc, *ct->mask_cache, ct->regs.mask);
  74. irq_gc_unlock(gc);
  75. }
  76. EXPORT_SYMBOL_GPL(irq_gc_mask_clr_bit);
  77. /**
  78. * irq_gc_unmask_enable_reg - Unmask chip via enable register
  79. * @d: irq_data
  80. *
  81. * Chip has separate enable/disable registers instead of a single mask
  82. * register.
  83. */
  84. void irq_gc_unmask_enable_reg(struct irq_data *d)
  85. {
  86. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  87. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  88. u32 mask = d->mask;
  89. irq_gc_lock(gc);
  90. irq_reg_writel(gc, mask, ct->regs.enable);
  91. *ct->mask_cache |= mask;
  92. irq_gc_unlock(gc);
  93. }
  94. /**
  95. * irq_gc_ack_set_bit - Ack pending interrupt via setting bit
  96. * @d: irq_data
  97. */
  98. void irq_gc_ack_set_bit(struct irq_data *d)
  99. {
  100. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  101. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  102. u32 mask = d->mask;
  103. irq_gc_lock(gc);
  104. irq_reg_writel(gc, mask, ct->regs.ack);
  105. irq_gc_unlock(gc);
  106. }
  107. EXPORT_SYMBOL_GPL(irq_gc_ack_set_bit);
  108. /**
  109. * irq_gc_ack_clr_bit - Ack pending interrupt via clearing bit
  110. * @d: irq_data
  111. */
  112. void irq_gc_ack_clr_bit(struct irq_data *d)
  113. {
  114. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  115. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  116. u32 mask = ~d->mask;
  117. irq_gc_lock(gc);
  118. irq_reg_writel(gc, mask, ct->regs.ack);
  119. irq_gc_unlock(gc);
  120. }
  121. /**
  122. * irq_gc_mask_disable_reg_and_ack - Mask and ack pending interrupt
  123. * @d: irq_data
  124. */
  125. void irq_gc_mask_disable_reg_and_ack(struct irq_data *d)
  126. {
  127. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  128. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  129. u32 mask = d->mask;
  130. irq_gc_lock(gc);
  131. irq_reg_writel(gc, mask, ct->regs.mask);
  132. irq_reg_writel(gc, mask, ct->regs.ack);
  133. irq_gc_unlock(gc);
  134. }
  135. /**
  136. * irq_gc_eoi - EOI interrupt
  137. * @d: irq_data
  138. */
  139. void irq_gc_eoi(struct irq_data *d)
  140. {
  141. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  142. struct irq_chip_type *ct = irq_data_get_chip_type(d);
  143. u32 mask = d->mask;
  144. irq_gc_lock(gc);
  145. irq_reg_writel(gc, mask, ct->regs.eoi);
  146. irq_gc_unlock(gc);
  147. }
  148. /**
  149. * irq_gc_set_wake - Set/clr wake bit for an interrupt
  150. * @d: irq_data
  151. * @on: Indicates whether the wake bit should be set or cleared
  152. *
  153. * For chips where the wake from suspend functionality is not
  154. * configured in a separate register and the wakeup active state is
  155. * just stored in a bitmask.
  156. */
  157. int irq_gc_set_wake(struct irq_data *d, unsigned int on)
  158. {
  159. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  160. u32 mask = d->mask;
  161. if (!(mask & gc->wake_enabled))
  162. return -EINVAL;
  163. irq_gc_lock(gc);
  164. if (on)
  165. gc->wake_active |= mask;
  166. else
  167. gc->wake_active &= ~mask;
  168. irq_gc_unlock(gc);
  169. return 0;
  170. }
  171. static u32 irq_readl_be(void __iomem *addr)
  172. {
  173. return ioread32be(addr);
  174. }
  175. static void irq_writel_be(u32 val, void __iomem *addr)
  176. {
  177. iowrite32be(val, addr);
  178. }
  179. void irq_init_generic_chip(struct irq_chip_generic *gc, const char *name,
  180. int num_ct, unsigned int irq_base,
  181. void __iomem *reg_base, irq_flow_handler_t handler)
  182. {
  183. raw_spin_lock_init(&gc->lock);
  184. gc->num_ct = num_ct;
  185. gc->irq_base = irq_base;
  186. gc->reg_base = reg_base;
  187. gc->chip_types->chip.name = name;
  188. gc->chip_types->handler = handler;
  189. }
  190. /**
  191. * irq_alloc_generic_chip - Allocate a generic chip and initialize it
  192. * @name: Name of the irq chip
  193. * @num_ct: Number of irq_chip_type instances associated with this
  194. * @irq_base: Interrupt base nr for this chip
  195. * @reg_base: Register base address (virtual)
  196. * @handler: Default flow handler associated with this chip
  197. *
  198. * Returns an initialized irq_chip_generic structure. The chip defaults
  199. * to the primary (index 0) irq_chip_type and @handler
  200. */
  201. struct irq_chip_generic *
  202. irq_alloc_generic_chip(const char *name, int num_ct, unsigned int irq_base,
  203. void __iomem *reg_base, irq_flow_handler_t handler)
  204. {
  205. struct irq_chip_generic *gc;
  206. unsigned long sz = sizeof(*gc) + num_ct * sizeof(struct irq_chip_type);
  207. gc = kzalloc(sz, GFP_KERNEL);
  208. if (gc) {
  209. irq_init_generic_chip(gc, name, num_ct, irq_base, reg_base,
  210. handler);
  211. }
  212. return gc;
  213. }
  214. EXPORT_SYMBOL_GPL(irq_alloc_generic_chip);
  215. static void
  216. irq_gc_init_mask_cache(struct irq_chip_generic *gc, enum irq_gc_flags flags)
  217. {
  218. struct irq_chip_type *ct = gc->chip_types;
  219. u32 *mskptr = &gc->mask_cache, mskreg = ct->regs.mask;
  220. int i;
  221. for (i = 0; i < gc->num_ct; i++) {
  222. if (flags & IRQ_GC_MASK_CACHE_PER_TYPE) {
  223. mskptr = &ct[i].mask_cache_priv;
  224. mskreg = ct[i].regs.mask;
  225. }
  226. ct[i].mask_cache = mskptr;
  227. if (flags & IRQ_GC_INIT_MASK_CACHE)
  228. *mskptr = irq_reg_readl(gc, mskreg);
  229. }
  230. }
  231. /**
  232. * __irq_alloc_domain_generic_chip - Allocate generic chips for an irq domain
  233. * @d: irq domain for which to allocate chips
  234. * @irqs_per_chip: Number of interrupts each chip handles (max 32)
  235. * @num_ct: Number of irq_chip_type instances associated with this
  236. * @name: Name of the irq chip
  237. * @handler: Default flow handler associated with these chips
  238. * @clr: IRQ_* bits to clear in the mapping function
  239. * @set: IRQ_* bits to set in the mapping function
  240. * @gcflags: Generic chip specific setup flags
  241. */
  242. int __irq_alloc_domain_generic_chips(struct irq_domain *d, int irqs_per_chip,
  243. int num_ct, const char *name,
  244. irq_flow_handler_t handler,
  245. unsigned int clr, unsigned int set,
  246. enum irq_gc_flags gcflags)
  247. {
  248. struct irq_domain_chip_generic *dgc;
  249. struct irq_chip_generic *gc;
  250. int numchips, sz, i;
  251. unsigned long flags;
  252. void *tmp;
  253. if (d->gc)
  254. return -EBUSY;
  255. numchips = DIV_ROUND_UP(d->revmap_size, irqs_per_chip);
  256. if (!numchips)
  257. return -EINVAL;
  258. /* Allocate a pointer, generic chip and chiptypes for each chip */
  259. sz = sizeof(*dgc) + numchips * sizeof(gc);
  260. sz += numchips * (sizeof(*gc) + num_ct * sizeof(struct irq_chip_type));
  261. tmp = dgc = kzalloc(sz, GFP_KERNEL);
  262. if (!dgc)
  263. return -ENOMEM;
  264. dgc->irqs_per_chip = irqs_per_chip;
  265. dgc->num_chips = numchips;
  266. dgc->irq_flags_to_set = set;
  267. dgc->irq_flags_to_clear = clr;
  268. dgc->gc_flags = gcflags;
  269. d->gc = dgc;
  270. /* Calc pointer to the first generic chip */
  271. tmp += sizeof(*dgc) + numchips * sizeof(gc);
  272. for (i = 0; i < numchips; i++) {
  273. /* Store the pointer to the generic chip */
  274. dgc->gc[i] = gc = tmp;
  275. irq_init_generic_chip(gc, name, num_ct, i * irqs_per_chip,
  276. NULL, handler);
  277. gc->domain = d;
  278. if (gcflags & IRQ_GC_BE_IO) {
  279. gc->reg_readl = &irq_readl_be;
  280. gc->reg_writel = &irq_writel_be;
  281. }
  282. raw_spin_lock_irqsave(&gc_lock, flags);
  283. list_add_tail(&gc->list, &gc_list);
  284. raw_spin_unlock_irqrestore(&gc_lock, flags);
  285. /* Calc pointer to the next generic chip */
  286. tmp += sizeof(*gc) + num_ct * sizeof(struct irq_chip_type);
  287. }
  288. d->name = name;
  289. return 0;
  290. }
  291. EXPORT_SYMBOL_GPL(__irq_alloc_domain_generic_chips);
  292. static struct irq_chip_generic *
  293. __irq_get_domain_generic_chip(struct irq_domain *d, unsigned int hw_irq)
  294. {
  295. struct irq_domain_chip_generic *dgc = d->gc;
  296. int idx;
  297. if (!dgc)
  298. return ERR_PTR(-ENODEV);
  299. idx = hw_irq / dgc->irqs_per_chip;
  300. if (idx >= dgc->num_chips)
  301. return ERR_PTR(-EINVAL);
  302. return dgc->gc[idx];
  303. }
  304. /**
  305. * irq_get_domain_generic_chip - Get a pointer to the generic chip of a hw_irq
  306. * @d: irq domain pointer
  307. * @hw_irq: Hardware interrupt number
  308. */
  309. struct irq_chip_generic *
  310. irq_get_domain_generic_chip(struct irq_domain *d, unsigned int hw_irq)
  311. {
  312. struct irq_chip_generic *gc = __irq_get_domain_generic_chip(d, hw_irq);
  313. return !IS_ERR(gc) ? gc : NULL;
  314. }
  315. EXPORT_SYMBOL_GPL(irq_get_domain_generic_chip);
  316. /*
  317. * Separate lockdep class for interrupt chip which can nest irq_desc
  318. * lock.
  319. */
  320. static struct lock_class_key irq_nested_lock_class;
  321. /*
  322. * irq_map_generic_chip - Map a generic chip for an irq domain
  323. */
  324. int irq_map_generic_chip(struct irq_domain *d, unsigned int virq,
  325. irq_hw_number_t hw_irq)
  326. {
  327. struct irq_data *data = irq_domain_get_irq_data(d, virq);
  328. struct irq_domain_chip_generic *dgc = d->gc;
  329. struct irq_chip_generic *gc;
  330. struct irq_chip_type *ct;
  331. struct irq_chip *chip;
  332. unsigned long flags;
  333. int idx;
  334. gc = __irq_get_domain_generic_chip(d, hw_irq);
  335. if (IS_ERR(gc))
  336. return PTR_ERR(gc);
  337. idx = hw_irq % dgc->irqs_per_chip;
  338. if (test_bit(idx, &gc->unused))
  339. return -ENOTSUPP;
  340. if (test_bit(idx, &gc->installed))
  341. return -EBUSY;
  342. ct = gc->chip_types;
  343. chip = &ct->chip;
  344. /* We only init the cache for the first mapping of a generic chip */
  345. if (!gc->installed) {
  346. raw_spin_lock_irqsave(&gc->lock, flags);
  347. irq_gc_init_mask_cache(gc, dgc->gc_flags);
  348. raw_spin_unlock_irqrestore(&gc->lock, flags);
  349. }
  350. /* Mark the interrupt as installed */
  351. set_bit(idx, &gc->installed);
  352. if (dgc->gc_flags & IRQ_GC_INIT_NESTED_LOCK)
  353. irq_set_lockdep_class(virq, &irq_nested_lock_class);
  354. if (chip->irq_calc_mask)
  355. chip->irq_calc_mask(data);
  356. else
  357. data->mask = 1 << idx;
  358. irq_domain_set_info(d, virq, hw_irq, chip, gc, ct->handler, NULL, NULL);
  359. irq_modify_status(virq, dgc->irq_flags_to_clear, dgc->irq_flags_to_set);
  360. return 0;
  361. }
  362. static void irq_unmap_generic_chip(struct irq_domain *d, unsigned int virq)
  363. {
  364. struct irq_data *data = irq_domain_get_irq_data(d, virq);
  365. struct irq_domain_chip_generic *dgc = d->gc;
  366. unsigned int hw_irq = data->hwirq;
  367. struct irq_chip_generic *gc;
  368. int irq_idx;
  369. gc = irq_get_domain_generic_chip(d, hw_irq);
  370. if (!gc)
  371. return;
  372. irq_idx = hw_irq % dgc->irqs_per_chip;
  373. clear_bit(irq_idx, &gc->installed);
  374. irq_domain_set_info(d, virq, hw_irq, &no_irq_chip, NULL, NULL, NULL,
  375. NULL);
  376. }
  377. struct irq_domain_ops irq_generic_chip_ops = {
  378. .map = irq_map_generic_chip,
  379. .unmap = irq_unmap_generic_chip,
  380. .xlate = irq_domain_xlate_onetwocell,
  381. };
  382. EXPORT_SYMBOL_GPL(irq_generic_chip_ops);
  383. /**
  384. * irq_setup_generic_chip - Setup a range of interrupts with a generic chip
  385. * @gc: Generic irq chip holding all data
  386. * @msk: Bitmask holding the irqs to initialize relative to gc->irq_base
  387. * @flags: Flags for initialization
  388. * @clr: IRQ_* bits to clear
  389. * @set: IRQ_* bits to set
  390. *
  391. * Set up max. 32 interrupts starting from gc->irq_base. Note, this
  392. * initializes all interrupts to the primary irq_chip_type and its
  393. * associated handler.
  394. */
  395. void irq_setup_generic_chip(struct irq_chip_generic *gc, u32 msk,
  396. enum irq_gc_flags flags, unsigned int clr,
  397. unsigned int set)
  398. {
  399. struct irq_chip_type *ct = gc->chip_types;
  400. struct irq_chip *chip = &ct->chip;
  401. unsigned int i;
  402. raw_spin_lock(&gc_lock);
  403. list_add_tail(&gc->list, &gc_list);
  404. raw_spin_unlock(&gc_lock);
  405. irq_gc_init_mask_cache(gc, flags);
  406. for (i = gc->irq_base; msk; msk >>= 1, i++) {
  407. if (!(msk & 0x01))
  408. continue;
  409. if (flags & IRQ_GC_INIT_NESTED_LOCK)
  410. irq_set_lockdep_class(i, &irq_nested_lock_class);
  411. if (!(flags & IRQ_GC_NO_MASK)) {
  412. struct irq_data *d = irq_get_irq_data(i);
  413. if (chip->irq_calc_mask)
  414. chip->irq_calc_mask(d);
  415. else
  416. d->mask = 1 << (i - gc->irq_base);
  417. }
  418. irq_set_chip_and_handler(i, chip, ct->handler);
  419. irq_set_chip_data(i, gc);
  420. irq_modify_status(i, clr, set);
  421. }
  422. gc->irq_cnt = i - gc->irq_base;
  423. }
  424. EXPORT_SYMBOL_GPL(irq_setup_generic_chip);
  425. /**
  426. * irq_setup_alt_chip - Switch to alternative chip
  427. * @d: irq_data for this interrupt
  428. * @type: Flow type to be initialized
  429. *
  430. * Only to be called from chip->irq_set_type() callbacks.
  431. */
  432. int irq_setup_alt_chip(struct irq_data *d, unsigned int type)
  433. {
  434. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
  435. struct irq_chip_type *ct = gc->chip_types;
  436. unsigned int i;
  437. for (i = 0; i < gc->num_ct; i++, ct++) {
  438. if (ct->type & type) {
  439. d->chip = &ct->chip;
  440. irq_data_to_desc(d)->handle_irq = ct->handler;
  441. return 0;
  442. }
  443. }
  444. return -EINVAL;
  445. }
  446. EXPORT_SYMBOL_GPL(irq_setup_alt_chip);
  447. /**
  448. * irq_remove_generic_chip - Remove a chip
  449. * @gc: Generic irq chip holding all data
  450. * @msk: Bitmask holding the irqs to initialize relative to gc->irq_base
  451. * @clr: IRQ_* bits to clear
  452. * @set: IRQ_* bits to set
  453. *
  454. * Remove up to 32 interrupts starting from gc->irq_base.
  455. */
  456. void irq_remove_generic_chip(struct irq_chip_generic *gc, u32 msk,
  457. unsigned int clr, unsigned int set)
  458. {
  459. unsigned int i = gc->irq_base;
  460. raw_spin_lock(&gc_lock);
  461. list_del(&gc->list);
  462. raw_spin_unlock(&gc_lock);
  463. for (; msk; msk >>= 1, i++) {
  464. if (!(msk & 0x01))
  465. continue;
  466. /* Remove handler first. That will mask the irq line */
  467. irq_set_handler(i, NULL);
  468. irq_set_chip(i, &no_irq_chip);
  469. irq_set_chip_data(i, NULL);
  470. irq_modify_status(i, clr, set);
  471. }
  472. }
  473. EXPORT_SYMBOL_GPL(irq_remove_generic_chip);
  474. static struct irq_data *irq_gc_get_irq_data(struct irq_chip_generic *gc)
  475. {
  476. unsigned int virq;
  477. if (!gc->domain)
  478. return irq_get_irq_data(gc->irq_base);
  479. /*
  480. * We don't know which of the irqs has been actually
  481. * installed. Use the first one.
  482. */
  483. if (!gc->installed)
  484. return NULL;
  485. virq = irq_find_mapping(gc->domain, gc->irq_base + __ffs(gc->installed));
  486. return virq ? irq_get_irq_data(virq) : NULL;
  487. }
  488. #ifdef CONFIG_PM
  489. static int irq_gc_suspend(void)
  490. {
  491. struct irq_chip_generic *gc;
  492. list_for_each_entry(gc, &gc_list, list) {
  493. struct irq_chip_type *ct = gc->chip_types;
  494. if (ct->chip.irq_suspend) {
  495. struct irq_data *data = irq_gc_get_irq_data(gc);
  496. if (data)
  497. ct->chip.irq_suspend(data);
  498. }
  499. if (gc->suspend)
  500. gc->suspend(gc);
  501. }
  502. return 0;
  503. }
  504. static void irq_gc_resume(void)
  505. {
  506. struct irq_chip_generic *gc;
  507. list_for_each_entry(gc, &gc_list, list) {
  508. struct irq_chip_type *ct = gc->chip_types;
  509. if (gc->resume)
  510. gc->resume(gc);
  511. if (ct->chip.irq_resume) {
  512. struct irq_data *data = irq_gc_get_irq_data(gc);
  513. if (data)
  514. ct->chip.irq_resume(data);
  515. }
  516. }
  517. }
  518. #else
  519. #define irq_gc_suspend NULL
  520. #define irq_gc_resume NULL
  521. #endif
  522. static void irq_gc_shutdown(void)
  523. {
  524. struct irq_chip_generic *gc;
  525. list_for_each_entry(gc, &gc_list, list) {
  526. struct irq_chip_type *ct = gc->chip_types;
  527. if (ct->chip.irq_pm_shutdown) {
  528. struct irq_data *data = irq_gc_get_irq_data(gc);
  529. if (data)
  530. ct->chip.irq_pm_shutdown(data);
  531. }
  532. }
  533. }
  534. static struct syscore_ops irq_gc_syscore_ops = {
  535. .suspend = irq_gc_suspend,
  536. .resume = irq_gc_resume,
  537. .shutdown = irq_gc_shutdown,
  538. };
  539. static int __init irq_gc_init_ops(void)
  540. {
  541. register_syscore_ops(&irq_gc_syscore_ops);
  542. return 0;
  543. }
  544. device_initcall(irq_gc_init_ops);