blob: 9d47ca7f80fae989d098f3170f0ab77bbe9e0801 [file] [log] [blame]
Tony Lindgren7c38cf02005-09-08 23:07:38 +01001/*
2 * linux/arch/arm/mach-omap1/devices.c
3 *
4 * OMAP1 platform device setup/initialization
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
Janusz Krzysztofik1a96edd2010-10-01 16:37:00 -070012#include <linux/dma-mapping.h>
Russell King2f8163b2011-07-26 10:53:52 +010013#include <linux/gpio.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010017#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010018#include <linux/io.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080019#include <linux/spi/spi.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010020
Aaro Koskinen706afdd2010-11-18 19:59:46 +020021#include <mach/camera.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010023#include <asm/mach/map.h>
24
Tony Lindgren4e653312011-11-10 22:45:17 +010025#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/tc.h>
27#include <plat/board.h>
28#include <plat/mux.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/mmc.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080030#include <plat/omap7xx.h>
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000031#include <plat/mcbsp.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010032
Tony Lindgren7c38cf02005-09-08 23:07:38 +010033/*-------------------------------------------------------------------------*/
34
David Brownelldb68b182006-12-06 20:38:36 -080035#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010036
37#define OMAP_RTC_BASE 0xfffb4800
38
39static struct resource rtc_resources[] = {
40 {
41 .start = OMAP_RTC_BASE,
42 .end = OMAP_RTC_BASE + 0x5f,
43 .flags = IORESOURCE_MEM,
44 },
45 {
46 .start = INT_RTC_TIMER,
47 .flags = IORESOURCE_IRQ,
48 },
49 {
50 .start = INT_RTC_ALARM,
51 .flags = IORESOURCE_IRQ,
52 },
53};
54
55static struct platform_device omap_rtc_device = {
56 .name = "omap_rtc",
57 .id = -1,
Tony Lindgren7c38cf02005-09-08 23:07:38 +010058 .num_resources = ARRAY_SIZE(rtc_resources),
59 .resource = rtc_resources,
60};
61
62static void omap_init_rtc(void)
63{
64 (void) platform_device_register(&omap_rtc_device);
65}
66#else
67static inline void omap_init_rtc(void) {}
68#endif
69
Tony Lindgrenc40fae952006-12-07 13:58:10 -080070static inline void omap_init_mbox(void) { }
Tony Lindgrenc40fae952006-12-07 13:58:10 -080071
Tony Lindgrend8874662008-12-10 17:37:16 -080072/*-------------------------------------------------------------------------*/
73
74#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
75
76static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
77 int controller_nr)
78{
79 if (controller_nr == 0) {
Cory Maccarrone490a5662009-11-22 10:10:50 -080080 if (cpu_is_omap7xx()) {
81 omap_cfg_reg(MMC_7XX_CMD);
82 omap_cfg_reg(MMC_7XX_CLK);
83 omap_cfg_reg(MMC_7XX_DAT0);
84 } else {
85 omap_cfg_reg(MMC_CMD);
86 omap_cfg_reg(MMC_CLK);
87 omap_cfg_reg(MMC_DAT0);
88 }
89
Tony Lindgrend8874662008-12-10 17:37:16 -080090 if (cpu_is_omap1710()) {
91 omap_cfg_reg(M15_1710_MMC_CLKI);
92 omap_cfg_reg(P19_1710_MMC_CMDDIR);
93 omap_cfg_reg(P20_1710_MMC_DATDIR0);
94 }
Cory Maccarrone490a5662009-11-22 10:10:50 -080095 if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) {
Tony Lindgrend8874662008-12-10 17:37:16 -080096 omap_cfg_reg(MMC_DAT1);
97 /* NOTE: DAT2 can be on W10 (here) or M15 */
98 if (!mmc_controller->slots[0].nomux)
99 omap_cfg_reg(MMC_DAT2);
100 omap_cfg_reg(MMC_DAT3);
101 }
102 }
103
104 /* Block 2 is on newer chips, and has many pinout options */
105 if (cpu_is_omap16xx() && controller_nr == 1) {
106 if (!mmc_controller->slots[1].nomux) {
107 omap_cfg_reg(Y8_1610_MMC2_CMD);
108 omap_cfg_reg(Y10_1610_MMC2_CLK);
109 omap_cfg_reg(R18_1610_MMC2_CLKIN);
110 omap_cfg_reg(W8_1610_MMC2_DAT0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800111 if (mmc_controller->slots[1].wires == 4) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800112 omap_cfg_reg(V8_1610_MMC2_DAT1);
113 omap_cfg_reg(W15_1610_MMC2_DAT2);
114 omap_cfg_reg(R10_1610_MMC2_DAT3);
115 }
116
117 /* These are needed for the level shifter */
118 omap_cfg_reg(V9_1610_MMC2_CMDDIR);
119 omap_cfg_reg(V5_1610_MMC2_DATDIR0);
120 omap_cfg_reg(W19_1610_MMC2_DATDIR1);
121 }
122
123 /* Feedback clock must be set on OMAP-1710 MMC2 */
124 if (cpu_is_omap1710())
125 omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
126 MOD_CONF_CTRL_1);
127 }
128}
129
130void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
131 int nr_controllers)
132{
133 int i;
134
135 for (i = 0; i < nr_controllers; i++) {
136 unsigned long base, size;
137 unsigned int irq = 0;
138
139 if (!mmc_data[i])
140 continue;
141
142 omap1_mmc_mux(mmc_data[i], i);
143
144 switch (i) {
145 case 0:
146 base = OMAP1_MMC1_BASE;
147 irq = INT_MMC;
148 break;
149 case 1:
150 if (!cpu_is_omap16xx())
151 return;
152 base = OMAP1_MMC2_BASE;
153 irq = INT_1610_MMC2;
154 break;
155 default:
156 continue;
157 }
158 size = OMAP1_MMC_SIZE;
159
Tony Lindgren0dffb5c2009-01-29 08:57:16 -0800160 omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800161 };
162}
163
164#endif
165
166/*-------------------------------------------------------------------------*/
167
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800168/* OMAP7xx SPI support */
169#if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE)
170
171struct platform_device omap_spi1 = {
172 .name = "omap1_spi100k",
173 .id = 1,
174};
175
176struct platform_device omap_spi2 = {
177 .name = "omap1_spi100k",
178 .id = 2,
179};
180
181static void omap_init_spi100k(void)
182{
183 omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff);
184 if (omap_spi1.dev.platform_data)
185 platform_device_register(&omap_spi1);
186
187 omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff);
188 if (omap_spi2.dev.platform_data)
189 platform_device_register(&omap_spi2);
190}
191
192#else
193static inline void omap_init_spi100k(void)
194{
195}
196#endif
197
Janusz Krzysztofik1a96edd2010-10-01 16:37:00 -0700198
199#define OMAP1_CAMERA_BASE 0xfffb6800
200#define OMAP1_CAMERA_IOSIZE 0x1c
201
202static struct resource omap1_camera_resources[] = {
203 [0] = {
204 .start = OMAP1_CAMERA_BASE,
205 .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1,
206 .flags = IORESOURCE_MEM,
207 },
208 [1] = {
209 .start = INT_CAMERA,
210 .flags = IORESOURCE_IRQ,
211 },
212};
213
214static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32);
215
216static struct platform_device omap1_camera_device = {
217 .name = "omap1-camera",
218 .id = 0, /* This is used to put cameras on this interface */
219 .dev = {
220 .dma_mask = &omap1_camera_dma_mask,
221 .coherent_dma_mask = DMA_BIT_MASK(32),
222 },
223 .num_resources = ARRAY_SIZE(omap1_camera_resources),
224 .resource = omap1_camera_resources,
225};
226
227void __init omap1_camera_init(void *info)
228{
229 struct platform_device *dev = &omap1_camera_device;
230 int ret;
231
232 dev->dev.platform_data = info;
233
234 ret = platform_device_register(dev);
235 if (ret)
236 dev_err(&dev->dev, "unable to register device: %d\n", ret);
237}
238
239
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800240/*-------------------------------------------------------------------------*/
241
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100242static inline void omap_init_sti(void) {}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100243
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000244#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
245
246static struct platform_device omap_pcm = {
247 .name = "omap-pcm-audio",
248 .id = -1,
249};
250
251OMAP_MCBSP_PLATFORM_DEVICE(1);
252OMAP_MCBSP_PLATFORM_DEVICE(2);
253OMAP_MCBSP_PLATFORM_DEVICE(3);
254
255static void omap_init_audio(void)
256{
257 platform_device_register(&omap_mcbsp1);
258 platform_device_register(&omap_mcbsp2);
259 if (!cpu_is_omap7xx())
260 platform_device_register(&omap_mcbsp3);
261 platform_device_register(&omap_pcm);
262}
263
264#else
265static inline void omap_init_audio(void) {}
266#endif
267
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100268/*-------------------------------------------------------------------------*/
269
270/*
271 * This gets called after board-specific INIT_MACHINE, and initializes most
272 * on-chip peripherals accessible on this board (except for few like USB):
273 *
274 * (a) Does any "standard config" pin muxing needed. Board-specific
275 * code will have muxed GPIO pins and done "nonstandard" setup;
276 * that code could live in the boot loader.
277 * (b) Populating board-specific platform_data with the data drivers
278 * rely on to handle wiring variations.
279 * (c) Creating platform devices as meaningful on this board and
280 * with this kernel configuration.
281 *
282 * Claiming GPIOs, and setting their direction and initial values, is the
283 * responsibility of the device drivers. So is responding to probe().
284 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300285 * Board-specific knowledge like creating devices or pin setup is to be
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100286 * kept out of drivers as much as possible. In particular, pin setup
287 * may be handled by the boot loader, and drivers should expect it will
288 * normally have been done by the time they're probed.
289 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000290static int __init omap1_init_devices(void)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100291{
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800292 if (!cpu_class_is_omap1())
293 return -ENODEV;
294
Tony Lindgrena66cb342011-10-04 13:52:57 -0700295 omap_sram_init();
296
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100297 /* please keep these calls, and their implementations above,
298 * in alphabetical order so they're easier to sort through.
299 */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800300
301 omap_init_mbox();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100302 omap_init_rtc();
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800303 omap_init_spi100k();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100304 omap_init_sti();
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000305 omap_init_audio();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100306
307 return 0;
308}
Tony Lindgren3179a012005-11-10 14:26:48 +0000309arch_initcall(omap1_init_devices);
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100310
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530311#if defined(CONFIG_OMAP_WATCHDOG) || defined(CONFIG_OMAP_WATCHDOG_MODULE)
312
313static struct resource wdt_resources[] = {
314 {
315 .start = 0xfffeb000,
316 .end = 0xfffeb07F,
317 .flags = IORESOURCE_MEM,
318 },
319};
320
321static struct platform_device omap_wdt_device = {
322 .name = "omap_wdt",
323 .id = -1,
324 .num_resources = ARRAY_SIZE(wdt_resources),
325 .resource = wdt_resources,
326};
327
328static int __init omap_init_wdt(void)
329{
330 if (!cpu_is_omap16xx())
Felipe Balbidfcccd32010-11-08 06:48:00 +0000331 return -ENODEV;
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530332
Felipe Balbidfcccd32010-11-08 06:48:00 +0000333 return platform_device_register(&omap_wdt_device);
Varadarajan, Charulathaf2ce6232010-09-23 20:02:42 +0530334}
335subsys_initcall(omap_init_wdt);
336#endif