blob: 2c9a030c5595edb982ad61a2b73f16062daa5f7a [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>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010013#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010016#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010017#include <linux/io.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080018#include <linux/spi/spi.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010019
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/hardware.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010021#include <asm/mach/map.h>
22
Tony Lindgrence491cf2009-10-20 09:40:47 -070023#include <plat/tc.h>
24#include <plat/board.h>
25#include <plat/mux.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/gpio.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070027#include <plat/mmc.h>
Cory Maccarronec5c4dce2010-01-08 10:29:05 -080028#include <plat/omap7xx.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010029
Tony Lindgren7c38cf02005-09-08 23:07:38 +010030/*-------------------------------------------------------------------------*/
31
David Brownelldb68b182006-12-06 20:38:36 -080032#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010033
34#define OMAP_RTC_BASE 0xfffb4800
35
36static struct resource rtc_resources[] = {
37 {
38 .start = OMAP_RTC_BASE,
39 .end = OMAP_RTC_BASE + 0x5f,
40 .flags = IORESOURCE_MEM,
41 },
42 {
43 .start = INT_RTC_TIMER,
44 .flags = IORESOURCE_IRQ,
45 },
46 {
47 .start = INT_RTC_ALARM,
48 .flags = IORESOURCE_IRQ,
49 },
50};
51
52static struct platform_device omap_rtc_device = {
53 .name = "omap_rtc",
54 .id = -1,
Tony Lindgren7c38cf02005-09-08 23:07:38 +010055 .num_resources = ARRAY_SIZE(rtc_resources),
56 .resource = rtc_resources,
57};
58
59static void omap_init_rtc(void)
60{
61 (void) platform_device_register(&omap_rtc_device);
62}
63#else
64static inline void omap_init_rtc(void) {}
65#endif
66
Tony Lindgrenc40fae952006-12-07 13:58:10 -080067static inline void omap_init_mbox(void) { }
Tony Lindgrenc40fae952006-12-07 13:58:10 -080068
Tony Lindgrend8874662008-12-10 17:37:16 -080069/*-------------------------------------------------------------------------*/
70
71#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
72
73static inline void omap1_mmc_mux(struct omap_mmc_platform_data *mmc_controller,
74 int controller_nr)
75{
76 if (controller_nr == 0) {
Cory Maccarrone490a5662009-11-22 10:10:50 -080077 if (cpu_is_omap7xx()) {
78 omap_cfg_reg(MMC_7XX_CMD);
79 omap_cfg_reg(MMC_7XX_CLK);
80 omap_cfg_reg(MMC_7XX_DAT0);
81 } else {
82 omap_cfg_reg(MMC_CMD);
83 omap_cfg_reg(MMC_CLK);
84 omap_cfg_reg(MMC_DAT0);
85 }
86
Tony Lindgrend8874662008-12-10 17:37:16 -080087 if (cpu_is_omap1710()) {
88 omap_cfg_reg(M15_1710_MMC_CLKI);
89 omap_cfg_reg(P19_1710_MMC_CMDDIR);
90 omap_cfg_reg(P20_1710_MMC_DATDIR0);
91 }
Cory Maccarrone490a5662009-11-22 10:10:50 -080092 if (mmc_controller->slots[0].wires == 4 && !cpu_is_omap7xx()) {
Tony Lindgrend8874662008-12-10 17:37:16 -080093 omap_cfg_reg(MMC_DAT1);
94 /* NOTE: DAT2 can be on W10 (here) or M15 */
95 if (!mmc_controller->slots[0].nomux)
96 omap_cfg_reg(MMC_DAT2);
97 omap_cfg_reg(MMC_DAT3);
98 }
99 }
100
101 /* Block 2 is on newer chips, and has many pinout options */
102 if (cpu_is_omap16xx() && controller_nr == 1) {
103 if (!mmc_controller->slots[1].nomux) {
104 omap_cfg_reg(Y8_1610_MMC2_CMD);
105 omap_cfg_reg(Y10_1610_MMC2_CLK);
106 omap_cfg_reg(R18_1610_MMC2_CLKIN);
107 omap_cfg_reg(W8_1610_MMC2_DAT0);
Tony Lindgren90c62bf2008-12-10 17:37:17 -0800108 if (mmc_controller->slots[1].wires == 4) {
Tony Lindgrend8874662008-12-10 17:37:16 -0800109 omap_cfg_reg(V8_1610_MMC2_DAT1);
110 omap_cfg_reg(W15_1610_MMC2_DAT2);
111 omap_cfg_reg(R10_1610_MMC2_DAT3);
112 }
113
114 /* These are needed for the level shifter */
115 omap_cfg_reg(V9_1610_MMC2_CMDDIR);
116 omap_cfg_reg(V5_1610_MMC2_DATDIR0);
117 omap_cfg_reg(W19_1610_MMC2_DATDIR1);
118 }
119
120 /* Feedback clock must be set on OMAP-1710 MMC2 */
121 if (cpu_is_omap1710())
122 omap_writel(omap_readl(MOD_CONF_CTRL_1) | (1 << 24),
123 MOD_CONF_CTRL_1);
124 }
125}
126
127void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
128 int nr_controllers)
129{
130 int i;
131
132 for (i = 0; i < nr_controllers; i++) {
133 unsigned long base, size;
134 unsigned int irq = 0;
135
136 if (!mmc_data[i])
137 continue;
138
139 omap1_mmc_mux(mmc_data[i], i);
140
141 switch (i) {
142 case 0:
143 base = OMAP1_MMC1_BASE;
144 irq = INT_MMC;
145 break;
146 case 1:
147 if (!cpu_is_omap16xx())
148 return;
149 base = OMAP1_MMC2_BASE;
150 irq = INT_1610_MMC2;
151 break;
152 default:
153 continue;
154 }
155 size = OMAP1_MMC_SIZE;
156
Tony Lindgren0dffb5c2009-01-29 08:57:16 -0800157 omap_mmc_add("mmci-omap", i, base, size, irq, mmc_data[i]);
Tony Lindgrend8874662008-12-10 17:37:16 -0800158 };
159}
160
161#endif
162
163/*-------------------------------------------------------------------------*/
164
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800165/* OMAP7xx SPI support */
166#if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE)
167
168struct platform_device omap_spi1 = {
169 .name = "omap1_spi100k",
170 .id = 1,
171};
172
173struct platform_device omap_spi2 = {
174 .name = "omap1_spi100k",
175 .id = 2,
176};
177
178static void omap_init_spi100k(void)
179{
180 omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff);
181 if (omap_spi1.dev.platform_data)
182 platform_device_register(&omap_spi1);
183
184 omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff);
185 if (omap_spi2.dev.platform_data)
186 platform_device_register(&omap_spi2);
187}
188
189#else
190static inline void omap_init_spi100k(void)
191{
192}
193#endif
194
Janusz Krzysztofik1a96edd2010-10-01 16:37:00 -0700195
196#define OMAP1_CAMERA_BASE 0xfffb6800
197#define OMAP1_CAMERA_IOSIZE 0x1c
198
199static struct resource omap1_camera_resources[] = {
200 [0] = {
201 .start = OMAP1_CAMERA_BASE,
202 .end = OMAP1_CAMERA_BASE + OMAP1_CAMERA_IOSIZE - 1,
203 .flags = IORESOURCE_MEM,
204 },
205 [1] = {
206 .start = INT_CAMERA,
207 .flags = IORESOURCE_IRQ,
208 },
209};
210
211static u64 omap1_camera_dma_mask = DMA_BIT_MASK(32);
212
213static struct platform_device omap1_camera_device = {
214 .name = "omap1-camera",
215 .id = 0, /* This is used to put cameras on this interface */
216 .dev = {
217 .dma_mask = &omap1_camera_dma_mask,
218 .coherent_dma_mask = DMA_BIT_MASK(32),
219 },
220 .num_resources = ARRAY_SIZE(omap1_camera_resources),
221 .resource = omap1_camera_resources,
222};
223
224void __init omap1_camera_init(void *info)
225{
226 struct platform_device *dev = &omap1_camera_device;
227 int ret;
228
229 dev->dev.platform_data = info;
230
231 ret = platform_device_register(dev);
232 if (ret)
233 dev_err(&dev->dev, "unable to register device: %d\n", ret);
234}
235
236
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800237/*-------------------------------------------------------------------------*/
238
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100239static inline void omap_init_sti(void) {}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100240
241/*-------------------------------------------------------------------------*/
242
243/*
244 * This gets called after board-specific INIT_MACHINE, and initializes most
245 * on-chip peripherals accessible on this board (except for few like USB):
246 *
247 * (a) Does any "standard config" pin muxing needed. Board-specific
248 * code will have muxed GPIO pins and done "nonstandard" setup;
249 * that code could live in the boot loader.
250 * (b) Populating board-specific platform_data with the data drivers
251 * rely on to handle wiring variations.
252 * (c) Creating platform devices as meaningful on this board and
253 * with this kernel configuration.
254 *
255 * Claiming GPIOs, and setting their direction and initial values, is the
256 * responsibility of the device drivers. So is responding to probe().
257 *
258 * Board-specific knowlege like creating devices or pin setup is to be
259 * kept out of drivers as much as possible. In particular, pin setup
260 * may be handled by the boot loader, and drivers should expect it will
261 * normally have been done by the time they're probed.
262 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000263static int __init omap1_init_devices(void)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100264{
265 /* please keep these calls, and their implementations above,
266 * in alphabetical order so they're easier to sort through.
267 */
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800268
269 omap_init_mbox();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100270 omap_init_rtc();
Cory Maccarronec5c4dce2010-01-08 10:29:05 -0800271 omap_init_spi100k();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100272 omap_init_sti();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100273
274 return 0;
275}
Tony Lindgren3179a012005-11-10 14:26:48 +0000276arch_initcall(omap1_init_devices);
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100277