blob: da8a3ac47e136c52dfc122641d866d207f1233b7 [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
Tony Lindgren7c38cf02005-09-08 23:07:38 +010012#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010015#include <linux/platform_device.h>
Tony Lindgren7c38cf02005-09-08 23:07:38 +010016
17#include <asm/hardware.h>
18#include <asm/io.h>
19#include <asm/mach-types.h>
20#include <asm/mach/map.h>
21
22#include <asm/arch/tc.h>
23#include <asm/arch/board.h>
24#include <asm/arch/mux.h>
25#include <asm/arch/gpio.h>
26
Tony Lindgren7c38cf02005-09-08 23:07:38 +010027/*-------------------------------------------------------------------------*/
28
David Brownelldb68b182006-12-06 20:38:36 -080029#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010030
31#define OMAP_RTC_BASE 0xfffb4800
32
33static struct resource rtc_resources[] = {
34 {
35 .start = OMAP_RTC_BASE,
36 .end = OMAP_RTC_BASE + 0x5f,
37 .flags = IORESOURCE_MEM,
38 },
39 {
40 .start = INT_RTC_TIMER,
41 .flags = IORESOURCE_IRQ,
42 },
43 {
44 .start = INT_RTC_ALARM,
45 .flags = IORESOURCE_IRQ,
46 },
47};
48
49static struct platform_device omap_rtc_device = {
50 .name = "omap_rtc",
51 .id = -1,
Tony Lindgren7c38cf02005-09-08 23:07:38 +010052 .num_resources = ARRAY_SIZE(rtc_resources),
53 .resource = rtc_resources,
54};
55
56static void omap_init_rtc(void)
57{
58 (void) platform_device_register(&omap_rtc_device);
59}
60#else
61static inline void omap_init_rtc(void) {}
62#endif
63
Tony Lindgrenc40fae92006-12-07 13:58:10 -080064#if defined(CONFIG_OMAP_DSP) || defined(CONFIG_OMAP_DSP_MODULE)
65
66#if defined(CONFIG_ARCH_OMAP15XX)
67# define OMAP1_MBOX_SIZE 0x23
68# define INT_DSP_MAILBOX1 INT_1510_DSP_MAILBOX1
69#elif defined(CONFIG_ARCH_OMAP16XX)
70# define OMAP1_MBOX_SIZE 0x2f
71# define INT_DSP_MAILBOX1 INT_1610_DSP_MAILBOX1
72#endif
73
74#define OMAP1_MBOX_BASE IO_ADDRESS(OMAP16XX_MAILBOX_BASE)
75
76static struct resource mbox_resources[] = {
77 {
78 .start = OMAP1_MBOX_BASE,
79 .end = OMAP1_MBOX_BASE + OMAP1_MBOX_SIZE,
80 .flags = IORESOURCE_MEM,
81 },
82 {
83 .start = INT_DSP_MAILBOX1,
84 .flags = IORESOURCE_IRQ,
85 },
86};
87
88static struct platform_device mbox_device = {
89 .name = "mailbox",
90 .id = -1,
91 .num_resources = ARRAY_SIZE(mbox_resources),
92 .resource = mbox_resources,
93};
94
95static inline void omap_init_mbox(void)
96{
97 platform_device_register(&mbox_device);
98}
99#else
100static inline void omap_init_mbox(void) { }
101#endif
102
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100103#if defined(CONFIG_OMAP_STI)
104
105#define OMAP1_STI_BASE IO_ADDRESS(0xfffea000)
106#define OMAP1_STI_CHANNEL_BASE (OMAP1_STI_BASE + 0x400)
107
108static struct resource sti_resources[] = {
109 {
110 .start = OMAP1_STI_BASE,
111 .end = OMAP1_STI_BASE + SZ_1K - 1,
112 .flags = IORESOURCE_MEM,
113 },
114 {
115 .start = OMAP1_STI_CHANNEL_BASE,
116 .end = OMAP1_STI_CHANNEL_BASE + SZ_1K - 1,
117 .flags = IORESOURCE_MEM,
118 },
119 {
120 .start = INT_1610_STI,
121 .flags = IORESOURCE_IRQ,
122 }
123};
124
125static struct platform_device sti_device = {
126 .name = "sti",
127 .id = -1,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100128 .num_resources = ARRAY_SIZE(sti_resources),
129 .resource = sti_resources,
130};
131
132static inline void omap_init_sti(void)
133{
134 platform_device_register(&sti_device);
135}
136#else
137static inline void omap_init_sti(void) {}
138#endif
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100139
140/*-------------------------------------------------------------------------*/
141
142/*
143 * This gets called after board-specific INIT_MACHINE, and initializes most
144 * on-chip peripherals accessible on this board (except for few like USB):
145 *
146 * (a) Does any "standard config" pin muxing needed. Board-specific
147 * code will have muxed GPIO pins and done "nonstandard" setup;
148 * that code could live in the boot loader.
149 * (b) Populating board-specific platform_data with the data drivers
150 * rely on to handle wiring variations.
151 * (c) Creating platform devices as meaningful on this board and
152 * with this kernel configuration.
153 *
154 * Claiming GPIOs, and setting their direction and initial values, is the
155 * responsibility of the device drivers. So is responding to probe().
156 *
157 * Board-specific knowlege like creating devices or pin setup is to be
158 * kept out of drivers as much as possible. In particular, pin setup
159 * may be handled by the boot loader, and drivers should expect it will
160 * normally have been done by the time they're probed.
161 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000162static int __init omap1_init_devices(void)
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100163{
164 /* please keep these calls, and their implementations above,
165 * in alphabetical order so they're easier to sort through.
166 */
Tony Lindgrenc40fae92006-12-07 13:58:10 -0800167
168 omap_init_mbox();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100169 omap_init_rtc();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100170 omap_init_sti();
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100171
172 return 0;
173}
Tony Lindgren3179a012005-11-10 14:26:48 +0000174arch_initcall(omap1_init_devices);
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100175