diff options
author | Tony Lindgren <tony@atomide.com> | 2009-03-23 21:23:49 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-03-23 21:51:23 -0400 |
commit | 828c707e6dbd0ca7882f721a466ff28729376ff0 (patch) | |
tree | e664f72712fdef0d9cb5f517b4ee6596fa93a5b2 /arch/arm/mach-omap2 | |
parent | e51151a53fc85fb1730ec4d6c1474275dcdb9ec3 (diff) |
ARM: OMAP3: Add base address definitions and resources for OMAP 3 IS, v2
This replaces earlier patch from Sergio Aguirre titled "[REVIEW PATCH 03/14]
OMAP34XX: CAM: Resources fixes".
Signed-off-by: Sakari Ailus <sakari.ailus@maxwell.research.nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 14537ffd8af3..7b2af1ba5533 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
@@ -28,6 +28,113 @@ | |||
28 | #include <mach/eac.h> | 28 | #include <mach/eac.h> |
29 | #include <mach/mmc.h> | 29 | #include <mach/mmc.h> |
30 | 30 | ||
31 | #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE) | ||
32 | |||
33 | static struct resource cam_resources[] = { | ||
34 | { | ||
35 | .start = OMAP24XX_CAMERA_BASE, | ||
36 | .end = OMAP24XX_CAMERA_BASE + 0xfff, | ||
37 | .flags = IORESOURCE_MEM, | ||
38 | }, | ||
39 | { | ||
40 | .start = INT_24XX_CAM_IRQ, | ||
41 | .flags = IORESOURCE_IRQ, | ||
42 | } | ||
43 | }; | ||
44 | |||
45 | static struct platform_device omap_cam_device = { | ||
46 | .name = "omap24xxcam", | ||
47 | .id = -1, | ||
48 | .num_resources = ARRAY_SIZE(cam_resources), | ||
49 | .resource = cam_resources, | ||
50 | }; | ||
51 | |||
52 | static inline void omap_init_camera(void) | ||
53 | { | ||
54 | platform_device_register(&omap_cam_device); | ||
55 | } | ||
56 | |||
57 | #elif defined(CONFIG_VIDEO_OMAP3) || defined(CONFIG_VIDEO_OMAP3_MODULE) | ||
58 | |||
59 | static struct resource omap3isp_resources[] = { | ||
60 | { | ||
61 | .start = OMAP3430_ISP_BASE, | ||
62 | .end = OMAP3430_ISP_END, | ||
63 | .flags = IORESOURCE_MEM, | ||
64 | }, | ||
65 | { | ||
66 | .start = OMAP3430_ISP_CBUFF_BASE, | ||
67 | .end = OMAP3430_ISP_CBUFF_END, | ||
68 | .flags = IORESOURCE_MEM, | ||
69 | }, | ||
70 | { | ||
71 | .start = OMAP3430_ISP_CCP2_BASE, | ||
72 | .end = OMAP3430_ISP_CCP2_END, | ||
73 | .flags = IORESOURCE_MEM, | ||
74 | }, | ||
75 | { | ||
76 | .start = OMAP3430_ISP_CCDC_BASE, | ||
77 | .end = OMAP3430_ISP_CCDC_END, | ||
78 | .flags = IORESOURCE_MEM, | ||
79 | }, | ||
80 | { | ||
81 | .start = OMAP3430_ISP_HIST_BASE, | ||
82 | .end = OMAP3430_ISP_HIST_END, | ||
83 | .flags = IORESOURCE_MEM, | ||
84 | }, | ||
85 | { | ||
86 | .start = OMAP3430_ISP_H3A_BASE, | ||
87 | .end = OMAP3430_ISP_H3A_END, | ||
88 | .flags = IORESOURCE_MEM, | ||
89 | }, | ||
90 | { | ||
91 | .start = OMAP3430_ISP_PREV_BASE, | ||
92 | .end = OMAP3430_ISP_PREV_END, | ||
93 | .flags = IORESOURCE_MEM, | ||
94 | }, | ||
95 | { | ||
96 | .start = OMAP3430_ISP_RESZ_BASE, | ||
97 | .end = OMAP3430_ISP_RESZ_END, | ||
98 | .flags = IORESOURCE_MEM, | ||
99 | }, | ||
100 | { | ||
101 | .start = OMAP3430_ISP_SBL_BASE, | ||
102 | .end = OMAP3430_ISP_SBL_END, | ||
103 | .flags = IORESOURCE_MEM, | ||
104 | }, | ||
105 | { | ||
106 | .start = OMAP3430_ISP_CSI2A_BASE, | ||
107 | .end = OMAP3430_ISP_CSI2A_END, | ||
108 | .flags = IORESOURCE_MEM, | ||
109 | }, | ||
110 | { | ||
111 | .start = OMAP3430_ISP_CSI2PHY_BASE, | ||
112 | .end = OMAP3430_ISP_CSI2PHY_END, | ||
113 | .flags = IORESOURCE_MEM, | ||
114 | }, | ||
115 | { | ||
116 | .start = INT_34XX_CAM_IRQ, | ||
117 | .flags = IORESOURCE_IRQ, | ||
118 | } | ||
119 | }; | ||
120 | |||
121 | static struct platform_device omap3isp_device = { | ||
122 | .name = "omap3isp", | ||
123 | .id = -1, | ||
124 | .num_resources = ARRAY_SIZE(omap3isp_resources), | ||
125 | .resource = omap3isp_resources, | ||
126 | }; | ||
127 | |||
128 | static inline void omap_init_camera(void) | ||
129 | { | ||
130 | platform_device_register(&omap3isp_device); | ||
131 | } | ||
132 | #else | ||
133 | static inline void omap_init_camera(void) | ||
134 | { | ||
135 | } | ||
136 | #endif | ||
137 | |||
31 | #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE) | 138 | #if defined(CONFIG_OMAP_MBOX_FWK) || defined(CONFIG_OMAP_MBOX_FWK_MODULE) |
32 | 139 | ||
33 | #define MBOX_REG_SIZE 0x120 | 140 | #define MBOX_REG_SIZE 0x120 |
@@ -527,6 +634,7 @@ static int __init omap2_init_devices(void) | |||
527 | * in alphabetical order so they're easier to sort through. | 634 | * in alphabetical order so they're easier to sort through. |
528 | */ | 635 | */ |
529 | omap_hsmmc_reset(); | 636 | omap_hsmmc_reset(); |
637 | omap_init_camera(); | ||
530 | omap_init_mbox(); | 638 | omap_init_mbox(); |
531 | omap_init_mcspi(); | 639 | omap_init_mcspi(); |
532 | omap_hdq_init(); | 640 | omap_hdq_init(); |