1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * linux/arch/arm/mach-omap1/devices.c
5 * OMAP1 platform device setup/initialization
8 #include <linux/dma-mapping.h>
9 #include <linux/gpio.h>
10 #include <linux/module.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/spi/spi.h>
16 #include <linux/platform_data/omap-wd-timer.h>
18 #include <asm/mach/map.h>
23 #include <mach/omap7xx.h>
24 #include <mach/hardware.h>
31 #if IS_ENABLED(CONFIG_RTC_DRV_OMAP)
33 #define OMAP_RTC_BASE 0xfffb4800
35 static struct resource rtc_resources
[] = {
37 .start
= OMAP_RTC_BASE
,
38 .end
= OMAP_RTC_BASE
+ 0x5f,
39 .flags
= IORESOURCE_MEM
,
42 .start
= INT_RTC_TIMER
,
43 .flags
= IORESOURCE_IRQ
,
46 .start
= INT_RTC_ALARM
,
47 .flags
= IORESOURCE_IRQ
,
51 static struct platform_device omap_rtc_device
= {
54 .num_resources
= ARRAY_SIZE(rtc_resources
),
55 .resource
= rtc_resources
,
58 static void omap_init_rtc(void)
60 (void) platform_device_register(&omap_rtc_device
);
63 static inline void omap_init_rtc(void) {}
66 static inline void omap_init_mbox(void) { }
68 /*-------------------------------------------------------------------------*/
70 #if IS_ENABLED(CONFIG_MMC_OMAP)
72 static inline void omap1_mmc_mux(struct omap_mmc_platform_data
*mmc_controller
,
75 if (controller_nr
== 0) {
76 if (cpu_is_omap7xx()) {
77 omap_cfg_reg(MMC_7XX_CMD
);
78 omap_cfg_reg(MMC_7XX_CLK
);
79 omap_cfg_reg(MMC_7XX_DAT0
);
81 omap_cfg_reg(MMC_CMD
);
82 omap_cfg_reg(MMC_CLK
);
83 omap_cfg_reg(MMC_DAT0
);
86 if (cpu_is_omap1710()) {
87 omap_cfg_reg(M15_1710_MMC_CLKI
);
88 omap_cfg_reg(P19_1710_MMC_CMDDIR
);
89 omap_cfg_reg(P20_1710_MMC_DATDIR0
);
91 if (mmc_controller
->slots
[0].wires
== 4 && !cpu_is_omap7xx()) {
92 omap_cfg_reg(MMC_DAT1
);
93 /* NOTE: DAT2 can be on W10 (here) or M15 */
94 if (!mmc_controller
->slots
[0].nomux
)
95 omap_cfg_reg(MMC_DAT2
);
96 omap_cfg_reg(MMC_DAT3
);
100 /* Block 2 is on newer chips, and has many pinout options */
101 if (cpu_is_omap16xx() && controller_nr
== 1) {
102 if (!mmc_controller
->slots
[1].nomux
) {
103 omap_cfg_reg(Y8_1610_MMC2_CMD
);
104 omap_cfg_reg(Y10_1610_MMC2_CLK
);
105 omap_cfg_reg(R18_1610_MMC2_CLKIN
);
106 omap_cfg_reg(W8_1610_MMC2_DAT0
);
107 if (mmc_controller
->slots
[1].wires
== 4) {
108 omap_cfg_reg(V8_1610_MMC2_DAT1
);
109 omap_cfg_reg(W15_1610_MMC2_DAT2
);
110 omap_cfg_reg(R10_1610_MMC2_DAT3
);
113 /* These are needed for the level shifter */
114 omap_cfg_reg(V9_1610_MMC2_CMDDIR
);
115 omap_cfg_reg(V5_1610_MMC2_DATDIR0
);
116 omap_cfg_reg(W19_1610_MMC2_DATDIR1
);
119 /* Feedback clock must be set on OMAP-1710 MMC2 */
120 if (cpu_is_omap1710())
121 omap_writel(omap_readl(MOD_CONF_CTRL_1
) | (1 << 24),
126 #define OMAP_MMC_NR_RES 4
129 * Register MMC devices.
131 static int __init
omap_mmc_add(const char *name
, int id
, unsigned long base
,
132 unsigned long size
, unsigned int irq
,
133 unsigned rx_req
, unsigned tx_req
,
134 struct omap_mmc_platform_data
*data
)
136 struct platform_device
*pdev
;
137 struct resource res
[OMAP_MMC_NR_RES
];
140 pdev
= platform_device_alloc(name
, id
);
144 memset(res
, 0, OMAP_MMC_NR_RES
* sizeof(struct resource
));
146 res
[0].end
= base
+ size
- 1;
147 res
[0].flags
= IORESOURCE_MEM
;
148 res
[1].start
= res
[1].end
= irq
;
149 res
[1].flags
= IORESOURCE_IRQ
;
150 res
[2].start
= rx_req
;
152 res
[2].flags
= IORESOURCE_DMA
;
153 res
[3].start
= tx_req
;
155 res
[3].flags
= IORESOURCE_DMA
;
157 if (cpu_is_omap7xx())
158 data
->slots
[0].features
= MMC_OMAP7XX
;
159 if (cpu_is_omap15xx())
160 data
->slots
[0].features
= MMC_OMAP15XX
;
161 if (cpu_is_omap16xx())
162 data
->slots
[0].features
= MMC_OMAP16XX
;
164 ret
= platform_device_add_resources(pdev
, res
, ARRAY_SIZE(res
));
166 ret
= platform_device_add_data(pdev
, data
, sizeof(*data
));
170 ret
= platform_device_add(pdev
);
174 /* return device handle to board setup code */
175 data
->dev
= &pdev
->dev
;
179 platform_device_put(pdev
);
183 void __init
omap1_init_mmc(struct omap_mmc_platform_data
**mmc_data
,
188 for (i
= 0; i
< nr_controllers
; i
++) {
189 unsigned long base
, size
;
190 unsigned rx_req
, tx_req
;
191 unsigned int irq
= 0;
196 omap1_mmc_mux(mmc_data
[i
], i
);
200 base
= OMAP1_MMC1_BASE
;
206 if (!cpu_is_omap16xx())
208 base
= OMAP1_MMC2_BASE
;
216 size
= OMAP1_MMC_SIZE
;
218 omap_mmc_add("mmci-omap", i
, base
, size
, irq
,
219 rx_req
, tx_req
, mmc_data
[i
]);
225 /*-------------------------------------------------------------------------*/
227 /* OMAP7xx SPI support */
228 #if IS_ENABLED(CONFIG_SPI_OMAP_100K)
230 struct platform_device omap_spi1
= {
231 .name
= "omap1_spi100k",
235 struct platform_device omap_spi2
= {
236 .name
= "omap1_spi100k",
240 static void omap_init_spi100k(void)
242 if (!cpu_is_omap7xx())
245 omap_spi1
.dev
.platform_data
= ioremap(OMAP7XX_SPI1_BASE
, 0x7ff);
246 if (omap_spi1
.dev
.platform_data
)
247 platform_device_register(&omap_spi1
);
249 omap_spi2
.dev
.platform_data
= ioremap(OMAP7XX_SPI2_BASE
, 0x7ff);
250 if (omap_spi2
.dev
.platform_data
)
251 platform_device_register(&omap_spi2
);
255 static inline void omap_init_spi100k(void)
260 /*-------------------------------------------------------------------------*/
262 static inline void omap_init_sti(void) {}
264 /* Numbering for the SPI-capable controllers when used for SPI:
271 #if IS_ENABLED(CONFIG_SPI_OMAP_UWIRE)
273 #define OMAP_UWIRE_BASE 0xfffb3000
275 static struct resource uwire_resources
[] = {
277 .start
= OMAP_UWIRE_BASE
,
278 .end
= OMAP_UWIRE_BASE
+ 0x20,
279 .flags
= IORESOURCE_MEM
,
283 static struct platform_device omap_uwire_device
= {
284 .name
= "omap_uwire",
286 .num_resources
= ARRAY_SIZE(uwire_resources
),
287 .resource
= uwire_resources
,
290 static void omap_init_uwire(void)
292 /* FIXME define and use a boot tag; not all boards will be hooking
293 * up devices to the microwire controller, and multi-board configs
294 * mean that CONFIG_SPI_OMAP_UWIRE may be configured anyway...
297 /* board-specific code must configure chipselects (only a few
298 * are normally used) and SCLK/SDI/SDO (each has two choices).
300 (void) platform_device_register(&omap_uwire_device
);
303 static inline void omap_init_uwire(void) {}
307 #define OMAP1_RNG_BASE 0xfffe5000
309 static struct resource omap1_rng_resources
[] = {
311 .start
= OMAP1_RNG_BASE
,
312 .end
= OMAP1_RNG_BASE
+ 0x4f,
313 .flags
= IORESOURCE_MEM
,
317 static struct platform_device omap1_rng_device
= {
320 .num_resources
= ARRAY_SIZE(omap1_rng_resources
),
321 .resource
= omap1_rng_resources
,
324 static void omap1_init_rng(void)
326 if (!cpu_is_omap16xx())
329 (void) platform_device_register(&omap1_rng_device
);
332 /*-------------------------------------------------------------------------*/
335 * This gets called after board-specific INIT_MACHINE, and initializes most
336 * on-chip peripherals accessible on this board (except for few like USB):
338 * (a) Does any "standard config" pin muxing needed. Board-specific
339 * code will have muxed GPIO pins and done "nonstandard" setup;
340 * that code could live in the boot loader.
341 * (b) Populating board-specific platform_data with the data drivers
342 * rely on to handle wiring variations.
343 * (c) Creating platform devices as meaningful on this board and
344 * with this kernel configuration.
346 * Claiming GPIOs, and setting their direction and initial values, is the
347 * responsibility of the device drivers. So is responding to probe().
349 * Board-specific knowledge like creating devices or pin setup is to be
350 * kept out of drivers as much as possible. In particular, pin setup
351 * may be handled by the boot loader, and drivers should expect it will
352 * normally have been done by the time they're probed.
354 static int __init
omap1_init_devices(void)
356 if (!cpu_class_is_omap1())
360 omap1_clk_late_init();
362 /* please keep these calls, and their implementations above,
363 * in alphabetical order so they're easier to sort through.
375 arch_initcall(omap1_init_devices
);
377 #if IS_ENABLED(CONFIG_OMAP_WATCHDOG)
379 static struct resource wdt_resources
[] = {
383 .flags
= IORESOURCE_MEM
,
387 static struct platform_device omap_wdt_device
= {
390 .num_resources
= ARRAY_SIZE(wdt_resources
),
391 .resource
= wdt_resources
,
394 static int __init
omap_init_wdt(void)
396 struct omap_wd_timer_platform_data pdata
;
399 if (!cpu_is_omap16xx())
402 pdata
.read_reset_sources
= omap1_get_reset_sources
;
404 ret
= platform_device_register(&omap_wdt_device
);
406 ret
= platform_device_add_data(&omap_wdt_device
, &pdata
,
409 platform_device_del(&omap_wdt_device
);
414 subsys_initcall(omap_init_wdt
);