aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2009-12-08 18:34:16 -0500
committerpaul <paul@twilight.(none)>2009-12-11 19:00:43 -0500
commit718bfd76932c566f79eb55083693ef0b68071bf8 (patch)
treeb12d20715e1b419c6a9ed4b0d163a40e69ad83d1 /arch/arm/plat-omap
parent726072e5dd459e3831d1dd4308ba469ff3ded419 (diff)
OMAP hwmod: add names to module MPU IRQ lines
Replace the existing u8 array of module MPU IRQ lines with a struct that includes a name - similar to the existing struct omap_hwmod_dma_info. Device drivers can then use platform_get_resource_byname() to retrieve specific IRQs without nasty dependencies on array ordering. Thanks to Benoît Cousson <b-cousson@ti.com> and Kevin Hilman <khilman@deeprootsystems.com> for feedback on this approach. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Benoît Cousson <b-cousson@ti.com> Cc: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r--arch/arm/plat-omap/include/plat/omap_hwmod.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h
index 643a9727de35..007935a921ea 100644
--- a/arch/arm/plat-omap/include/plat/omap_hwmod.h
+++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h
@@ -64,7 +64,21 @@ struct omap_device;
64 64
65 65
66/** 66/**
67 * struct omap_hwmod_dma_info - MPU address space handled by the hwmod 67 * struct omap_hwmod_irq_info - MPU IRQs used by the hwmod
68 * @name: name of the IRQ channel (module local name)
69 * @irq_ch: IRQ channel ID
70 *
71 * @name should be something short, e.g., "tx" or "rx". It is for use
72 * by platform_get_resource_byname(). It is defined locally to the
73 * hwmod.
74 */
75struct omap_hwmod_irq_info {
76 const char *name;
77 u16 irq;
78};
79
80/**
81 * struct omap_hwmod_dma_info - DMA channels used by the hwmod
68 * @name: name of the DMA channel (module local name) 82 * @name: name of the DMA channel (module local name)
69 * @dma_ch: DMA channel ID 83 * @dma_ch: DMA channel ID
70 * 84 *
@@ -379,7 +393,7 @@ struct omap_hwmod_omap4_prcm {
379struct omap_hwmod { 393struct omap_hwmod {
380 const char *name; 394 const char *name;
381 struct omap_device *od; 395 struct omap_device *od;
382 u8 *mpu_irqs; 396 struct omap_hwmod_irq_info *mpu_irqs;
383 struct omap_hwmod_dma_info *sdma_chs; 397 struct omap_hwmod_dma_info *sdma_chs;
384 union { 398 union {
385 struct omap_hwmod_omap2_prcm omap2; 399 struct omap_hwmod_omap2_prcm omap2;