blob: 24b88504df0f403227c3a0e20fb229f876649902 [file] [log] [blame]
Hiroshi DOYU340a6142006-12-07 15:43:59 -08001/*
Hiroshi DOYU733ecc52009-03-23 18:07:23 -07002 * Mailbox reservation modules for OMAP2/3
Hiroshi DOYU340a6142006-12-07 15:43:59 -08003 *
Hiroshi DOYU733ecc52009-03-23 18:07:23 -07004 * Copyright (C) 2006-2009 Nokia Corporation
Hiroshi DOYU340a6142006-12-07 15:43:59 -08005 * Written by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
Hiroshi DOYU733ecc52009-03-23 18:07:23 -07006 * and Paul Mundt
Hiroshi DOYU340a6142006-12-07 15:43:59 -08007 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12
Hiroshi DOYU340a6142006-12-07 15:43:59 -080013#include <linux/clk.h>
14#include <linux/err.h>
15#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010016#include <linux/io.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070017#include <plat/mailbox.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010018#include <mach/irqs.h>
Hiroshi DOYU340a6142006-12-07 15:43:59 -080019
Hiroshi DOYU733ecc52009-03-23 18:07:23 -070020#define MAILBOX_REVISION 0x000
21#define MAILBOX_SYSCONFIG 0x010
22#define MAILBOX_SYSSTATUS 0x014
23#define MAILBOX_MESSAGE(m) (0x040 + 4 * (m))
24#define MAILBOX_FIFOSTATUS(m) (0x080 + 4 * (m))
25#define MAILBOX_MSGSTATUS(m) (0x0c0 + 4 * (m))
26#define MAILBOX_IRQSTATUS(u) (0x100 + 8 * (u))
27#define MAILBOX_IRQENABLE(u) (0x104 + 8 * (u))
28
C A Subramaniam5f00ec62009-11-22 10:11:22 -080029#define OMAP4_MAILBOX_IRQSTATUS(u) (0x104 + 10 * (u))
30#define OMAP4_MAILBOX_IRQENABLE(u) (0x108 + 10 * (u))
31#define OMAP4_MAILBOX_IRQENABLE_CLR(u) (0x10c + 10 * (u))
32
33#define MAILBOX_IRQ_NEWMSG(m) (1 << (2 * (m)))
34#define MAILBOX_IRQ_NOTFULL(m) (1 << (2 * (m) + 1))
Hiroshi DOYU340a6142006-12-07 15:43:59 -080035
Hiroshi DOYU1ffe6272009-09-24 16:23:09 -070036/* SYSCONFIG: register bit definition */
37#define AUTOIDLE (1 << 0)
38#define SOFTRESET (1 << 1)
39#define SMARTIDLE (2 << 3)
Suman Annaa6a60222010-01-26 16:55:29 -060040#define OMAP4_SOFTRESET (1 << 0)
Suman Anna4499ce42010-02-05 17:20:26 -060041#define OMAP4_NOIDLE (1 << 2)
42#define OMAP4_SMARTIDLE (2 << 2)
Hiroshi DOYU1ffe6272009-09-24 16:23:09 -070043
44/* SYSSTATUS: register bit definition */
45#define RESETDONE (1 << 0)
46
Hiroshi DOYUc75ee752009-03-23 18:07:26 -070047#define MBOX_REG_SIZE 0x120
C A Subramaniam5f00ec62009-11-22 10:11:22 -080048
49#define OMAP4_MBOX_REG_SIZE 0x130
50
Hiroshi DOYUc75ee752009-03-23 18:07:26 -070051#define MBOX_NR_REGS (MBOX_REG_SIZE / sizeof(u32))
C A Subramaniam5f00ec62009-11-22 10:11:22 -080052#define OMAP4_MBOX_NR_REGS (OMAP4_MBOX_REG_SIZE / sizeof(u32))
Hiroshi DOYUc75ee752009-03-23 18:07:26 -070053
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070054static void __iomem *mbox_base;
Hiroshi DOYU340a6142006-12-07 15:43:59 -080055
Hiroshi DOYU340a6142006-12-07 15:43:59 -080056struct omap_mbox2_fifo {
57 unsigned long msg;
58 unsigned long fifo_stat;
59 unsigned long msg_stat;
60};
61
62struct omap_mbox2_priv {
63 struct omap_mbox2_fifo tx_fifo;
64 struct omap_mbox2_fifo rx_fifo;
65 unsigned long irqenable;
66 unsigned long irqstatus;
67 u32 newmsg_bit;
68 u32 notfull_bit;
C A Subramaniam5f00ec62009-11-22 10:11:22 -080069 u32 ctx[OMAP4_MBOX_NR_REGS];
70 unsigned long irqdisable;
Hiroshi DOYU340a6142006-12-07 15:43:59 -080071};
72
73static struct clk *mbox_ick_handle;
74
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +030075static void omap2_mbox_enable_irq(struct omap_mbox *mbox,
76 omap_mbox_type_t irq);
77
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070078static inline unsigned int mbox_read_reg(size_t ofs)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080079{
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070080 return __raw_readl(mbox_base + ofs);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080081}
82
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070083static inline void mbox_write_reg(u32 val, size_t ofs)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080084{
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070085 __raw_writel(val, mbox_base + ofs);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080086}
87
88/* Mailbox H/W preparations */
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +030089static int omap2_mbox_startup(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080090{
Hiroshi DOYU1ffe6272009-09-24 16:23:09 -070091 u32 l;
92 unsigned long timeout;
Hiroshi DOYU340a6142006-12-07 15:43:59 -080093
94 mbox_ick_handle = clk_get(NULL, "mailboxes_ick");
95 if (IS_ERR(mbox_ick_handle)) {
Felipe Balbi0cd7e1c2010-02-15 10:03:33 -080096 printk(KERN_ERR "Could not get mailboxes_ick: %ld\n",
C A Subramaniam5f00ec62009-11-22 10:11:22 -080097 PTR_ERR(mbox_ick_handle));
98 return PTR_ERR(mbox_ick_handle);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080099 }
100 clk_enable(mbox_ick_handle);
101
Suman Annaa6a60222010-01-26 16:55:29 -0600102 if (cpu_is_omap44xx()) {
103 mbox_write_reg(OMAP4_SOFTRESET, MAILBOX_SYSCONFIG);
104 timeout = jiffies + msecs_to_jiffies(20);
105 do {
106 l = mbox_read_reg(MAILBOX_SYSCONFIG);
107 if (!(l & OMAP4_SOFTRESET))
108 break;
109 } while (!time_after(jiffies, timeout));
Hiroshi DOYU1ffe6272009-09-24 16:23:09 -0700110
Suman Annaa6a60222010-01-26 16:55:29 -0600111 if (l & OMAP4_SOFTRESET) {
112 pr_err("Can't take mailbox out of reset\n");
113 return -ENODEV;
114 }
115 } else {
116 mbox_write_reg(SOFTRESET, MAILBOX_SYSCONFIG);
117 timeout = jiffies + msecs_to_jiffies(20);
118 do {
119 l = mbox_read_reg(MAILBOX_SYSSTATUS);
120 if (l & RESETDONE)
121 break;
122 } while (!time_after(jiffies, timeout));
123
124 if (!(l & RESETDONE)) {
125 pr_err("Can't take mailbox out of reset\n");
126 return -ENODEV;
127 }
Hiroshi DOYU1ffe6272009-09-24 16:23:09 -0700128 }
129
Hiroshi DOYU94fc58c2009-03-23 18:07:24 -0700130 l = mbox_read_reg(MAILBOX_REVISION);
Felipe Contreras909f9dc2010-06-11 15:51:37 +0000131 pr_debug("omap mailbox rev %d.%d\n", (l & 0xf0) >> 4, (l & 0x0f));
Hiroshi DOYU94fc58c2009-03-23 18:07:24 -0700132
Suman Anna4499ce42010-02-05 17:20:26 -0600133 if (cpu_is_omap44xx())
134 l = OMAP4_SMARTIDLE;
135 else
136 l = SMARTIDLE | AUTOIDLE;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800137 mbox_write_reg(l, MAILBOX_SYSCONFIG);
138
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300139 omap2_mbox_enable_irq(mbox, IRQ_RX);
140
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800141 return 0;
142}
143
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300144static void omap2_mbox_shutdown(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800145{
146 clk_disable(mbox_ick_handle);
147 clk_put(mbox_ick_handle);
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800148 mbox_ick_handle = NULL;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800149}
150
151/* Mailbox FIFO handle functions */
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300152static mbox_msg_t omap2_mbox_fifo_read(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800153{
154 struct omap_mbox2_fifo *fifo =
155 &((struct omap_mbox2_priv *)mbox->priv)->rx_fifo;
156 return (mbox_msg_t) mbox_read_reg(fifo->msg);
157}
158
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300159static void omap2_mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800160{
161 struct omap_mbox2_fifo *fifo =
162 &((struct omap_mbox2_priv *)mbox->priv)->tx_fifo;
163 mbox_write_reg(msg, fifo->msg);
164}
165
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300166static int omap2_mbox_fifo_empty(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800167{
168 struct omap_mbox2_fifo *fifo =
169 &((struct omap_mbox2_priv *)mbox->priv)->rx_fifo;
170 return (mbox_read_reg(fifo->msg_stat) == 0);
171}
172
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300173static int omap2_mbox_fifo_full(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800174{
175 struct omap_mbox2_fifo *fifo =
176 &((struct omap_mbox2_priv *)mbox->priv)->tx_fifo;
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800177 return mbox_read_reg(fifo->fifo_stat);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800178}
179
180/* Mailbox IRQ handle functions */
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300181static void omap2_mbox_enable_irq(struct omap_mbox *mbox,
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800182 omap_mbox_type_t irq)
183{
matt mooneyb45b5012010-09-27 19:04:32 -0700184 struct omap_mbox2_priv *p = mbox->priv;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800185 u32 l, bit = (irq == IRQ_TX) ? p->notfull_bit : p->newmsg_bit;
186
187 l = mbox_read_reg(p->irqenable);
188 l |= bit;
189 mbox_write_reg(l, p->irqenable);
190}
191
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300192static void omap2_mbox_disable_irq(struct omap_mbox *mbox,
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800193 omap_mbox_type_t irq)
194{
matt mooneyb45b5012010-09-27 19:04:32 -0700195 struct omap_mbox2_priv *p = mbox->priv;
Hari Kanigeri525a1132011-03-02 22:14:18 +0000196 u32 bit = (irq == IRQ_TX) ? p->notfull_bit : p->newmsg_bit;
197
198 if (!cpu_is_omap44xx())
199 bit = mbox_read_reg(p->irqdisable) & ~bit;
200
201 mbox_write_reg(bit, p->irqdisable);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800202}
203
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300204static void omap2_mbox_ack_irq(struct omap_mbox *mbox,
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800205 omap_mbox_type_t irq)
206{
matt mooneyb45b5012010-09-27 19:04:32 -0700207 struct omap_mbox2_priv *p = mbox->priv;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800208 u32 bit = (irq == IRQ_TX) ? p->notfull_bit : p->newmsg_bit;
209
210 mbox_write_reg(bit, p->irqstatus);
Hiroshi DOYU88288802009-09-24 16:23:10 -0700211
212 /* Flush posted write for irq status to avoid spurious interrupts */
213 mbox_read_reg(p->irqstatus);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800214}
215
Hiroshi DOYUbfbdcf82007-07-30 14:04:04 +0300216static int omap2_mbox_is_irq(struct omap_mbox *mbox,
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800217 omap_mbox_type_t irq)
218{
matt mooneyb45b5012010-09-27 19:04:32 -0700219 struct omap_mbox2_priv *p = mbox->priv;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800220 u32 bit = (irq == IRQ_TX) ? p->notfull_bit : p->newmsg_bit;
221 u32 enable = mbox_read_reg(p->irqenable);
222 u32 status = mbox_read_reg(p->irqstatus);
223
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800224 return (int)(enable & status & bit);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800225}
226
Hiroshi DOYUc75ee752009-03-23 18:07:26 -0700227static void omap2_mbox_save_ctx(struct omap_mbox *mbox)
228{
229 int i;
230 struct omap_mbox2_priv *p = mbox->priv;
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800231 int nr_regs;
232 if (cpu_is_omap44xx())
233 nr_regs = OMAP4_MBOX_NR_REGS;
234 else
235 nr_regs = MBOX_NR_REGS;
236 for (i = 0; i < nr_regs; i++) {
Hiroshi DOYUc75ee752009-03-23 18:07:26 -0700237 p->ctx[i] = mbox_read_reg(i * sizeof(u32));
238
239 dev_dbg(mbox->dev, "%s: [%02x] %08x\n", __func__,
240 i, p->ctx[i]);
241 }
242}
243
244static void omap2_mbox_restore_ctx(struct omap_mbox *mbox)
245{
246 int i;
247 struct omap_mbox2_priv *p = mbox->priv;
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800248 int nr_regs;
249 if (cpu_is_omap44xx())
250 nr_regs = OMAP4_MBOX_NR_REGS;
251 else
252 nr_regs = MBOX_NR_REGS;
253 for (i = 0; i < nr_regs; i++) {
Hiroshi DOYUc75ee752009-03-23 18:07:26 -0700254 mbox_write_reg(p->ctx[i], i * sizeof(u32));
255
256 dev_dbg(mbox->dev, "%s: [%02x] %08x\n", __func__,
257 i, p->ctx[i]);
258 }
259}
260
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800261static struct omap_mbox_ops omap2_mbox_ops = {
262 .type = OMAP_MBOX_TYPE2,
263 .startup = omap2_mbox_startup,
264 .shutdown = omap2_mbox_shutdown,
265 .fifo_read = omap2_mbox_fifo_read,
266 .fifo_write = omap2_mbox_fifo_write,
267 .fifo_empty = omap2_mbox_fifo_empty,
268 .fifo_full = omap2_mbox_fifo_full,
269 .enable_irq = omap2_mbox_enable_irq,
270 .disable_irq = omap2_mbox_disable_irq,
271 .ack_irq = omap2_mbox_ack_irq,
272 .is_irq = omap2_mbox_is_irq,
Hiroshi DOYUc75ee752009-03-23 18:07:26 -0700273 .save_ctx = omap2_mbox_save_ctx,
274 .restore_ctx = omap2_mbox_restore_ctx,
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800275};
276
277/*
278 * MAILBOX 0: ARM -> DSP,
279 * MAILBOX 1: ARM <- DSP.
280 * MAILBOX 2: ARM -> IVA,
281 * MAILBOX 3: ARM <- IVA.
282 */
283
284/* FIXME: the following structs should be filled automatically by the user id */
Felipe Contreras07d65d82010-06-11 15:51:38 +0000285
Omar Ramirez Lunaff0fba02010-10-22 20:10:58 -0500286#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP2)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800287/* DSP */
288static struct omap_mbox2_priv omap2_mbox_dsp_priv = {
289 .tx_fifo = {
Hiroshi DOYU733ecc52009-03-23 18:07:23 -0700290 .msg = MAILBOX_MESSAGE(0),
291 .fifo_stat = MAILBOX_FIFOSTATUS(0),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800292 },
293 .rx_fifo = {
Hiroshi DOYU733ecc52009-03-23 18:07:23 -0700294 .msg = MAILBOX_MESSAGE(1),
295 .msg_stat = MAILBOX_MSGSTATUS(1),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800296 },
Hiroshi DOYU733ecc52009-03-23 18:07:23 -0700297 .irqenable = MAILBOX_IRQENABLE(0),
298 .irqstatus = MAILBOX_IRQSTATUS(0),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800299 .notfull_bit = MAILBOX_IRQ_NOTFULL(0),
300 .newmsg_bit = MAILBOX_IRQ_NEWMSG(1),
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800301 .irqdisable = MAILBOX_IRQENABLE(0),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800302};
303
Felipe Contreras07d65d82010-06-11 15:51:38 +0000304struct omap_mbox mbox_dsp_info = {
305 .name = "dsp",
306 .ops = &omap2_mbox_ops,
307 .priv = &omap2_mbox_dsp_priv,
308};
Felipe Contreras14476bd2010-06-11 15:51:47 +0000309#endif
Felipe Contreras07d65d82010-06-11 15:51:38 +0000310
Omar Ramirez Lunaff0fba02010-10-22 20:10:58 -0500311#if defined(CONFIG_ARCH_OMAP3)
Felipe Contreras898ee752010-06-11 15:51:45 +0000312struct omap_mbox *omap3_mboxes[] = { &mbox_dsp_info, NULL };
Felipe Contreras14476bd2010-06-11 15:51:47 +0000313#endif
Felipe Contreras898ee752010-06-11 15:51:45 +0000314
Felipe Contreras07d65d82010-06-11 15:51:38 +0000315#if defined(CONFIG_ARCH_OMAP2420)
Felipe Contreras07d65d82010-06-11 15:51:38 +0000316/* IVA */
317static struct omap_mbox2_priv omap2_mbox_iva_priv = {
318 .tx_fifo = {
319 .msg = MAILBOX_MESSAGE(2),
320 .fifo_stat = MAILBOX_FIFOSTATUS(2),
321 },
322 .rx_fifo = {
323 .msg = MAILBOX_MESSAGE(3),
324 .msg_stat = MAILBOX_MSGSTATUS(3),
325 },
326 .irqenable = MAILBOX_IRQENABLE(3),
327 .irqstatus = MAILBOX_IRQSTATUS(3),
328 .notfull_bit = MAILBOX_IRQ_NOTFULL(2),
329 .newmsg_bit = MAILBOX_IRQ_NEWMSG(3),
330 .irqdisable = MAILBOX_IRQENABLE(3),
331};
332
333static struct omap_mbox mbox_iva_info = {
334 .name = "iva",
335 .ops = &omap2_mbox_ops,
336 .priv = &omap2_mbox_iva_priv,
337};
Felipe Contreras898ee752010-06-11 15:51:45 +0000338
Kevin Hilmaneca83252011-02-11 19:56:42 +0000339struct omap_mbox *omap2_mboxes[] = { &mbox_dsp_info, &mbox_iva_info, NULL };
Felipe Contreras07d65d82010-06-11 15:51:38 +0000340#endif
341
Felipe Contreras14476bd2010-06-11 15:51:47 +0000342#if defined(CONFIG_ARCH_OMAP4)
Felipe Contreras07d65d82010-06-11 15:51:38 +0000343/* OMAP4 */
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800344static struct omap_mbox2_priv omap2_mbox_1_priv = {
345 .tx_fifo = {
346 .msg = MAILBOX_MESSAGE(0),
347 .fifo_stat = MAILBOX_FIFOSTATUS(0),
348 },
349 .rx_fifo = {
350 .msg = MAILBOX_MESSAGE(1),
351 .msg_stat = MAILBOX_MSGSTATUS(1),
352 },
353 .irqenable = OMAP4_MAILBOX_IRQENABLE(0),
354 .irqstatus = OMAP4_MAILBOX_IRQSTATUS(0),
355 .notfull_bit = MAILBOX_IRQ_NOTFULL(0),
356 .newmsg_bit = MAILBOX_IRQ_NEWMSG(1),
357 .irqdisable = OMAP4_MAILBOX_IRQENABLE_CLR(0),
358};
359
360struct omap_mbox mbox_1_info = {
361 .name = "mailbox-1",
362 .ops = &omap2_mbox_ops,
363 .priv = &omap2_mbox_1_priv,
364};
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800365
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800366static struct omap_mbox2_priv omap2_mbox_2_priv = {
367 .tx_fifo = {
368 .msg = MAILBOX_MESSAGE(3),
369 .fifo_stat = MAILBOX_FIFOSTATUS(3),
370 },
371 .rx_fifo = {
372 .msg = MAILBOX_MESSAGE(2),
373 .msg_stat = MAILBOX_MSGSTATUS(2),
374 },
375 .irqenable = OMAP4_MAILBOX_IRQENABLE(0),
376 .irqstatus = OMAP4_MAILBOX_IRQSTATUS(0),
377 .notfull_bit = MAILBOX_IRQ_NOTFULL(3),
378 .newmsg_bit = MAILBOX_IRQ_NEWMSG(2),
379 .irqdisable = OMAP4_MAILBOX_IRQENABLE_CLR(0),
380};
381
382struct omap_mbox mbox_2_info = {
383 .name = "mailbox-2",
384 .ops = &omap2_mbox_ops,
385 .priv = &omap2_mbox_2_priv,
386};
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800387
Felipe Contreras898ee752010-06-11 15:51:45 +0000388struct omap_mbox *omap4_mboxes[] = { &mbox_1_info, &mbox_2_info, NULL };
Felipe Contreras14476bd2010-06-11 15:51:47 +0000389#endif
Felipe Contreras898ee752010-06-11 15:51:45 +0000390
Hiroshi DOYUda8cfe02009-03-23 18:07:25 -0700391static int __devinit omap2_mbox_probe(struct platform_device *pdev)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800392{
Felipe Contreras898ee752010-06-11 15:51:45 +0000393 struct resource *mem;
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700394 int ret;
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000395 struct omap_mbox **list;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800396
Felipe Contreras14476bd2010-06-11 15:51:47 +0000397 if (false)
398 ;
Omar Ramirez Lunaff0fba02010-10-22 20:10:58 -0500399#if defined(CONFIG_ARCH_OMAP3)
400 else if (cpu_is_omap34xx()) {
Felipe Contreras898ee752010-06-11 15:51:45 +0000401 list = omap3_mboxes;
402
403 list[0]->irq = platform_get_irq_byname(pdev, "dsp");
404 }
Felipe Contreras14476bd2010-06-11 15:51:47 +0000405#endif
Omar Ramirez Lunaff0fba02010-10-22 20:10:58 -0500406#if defined(CONFIG_ARCH_OMAP2)
407 else if (cpu_is_omap2430()) {
408 list = omap2_mboxes;
409
410 list[0]->irq = platform_get_irq_byname(pdev, "dsp");
411 } else if (cpu_is_omap2420()) {
Felipe Contreras898ee752010-06-11 15:51:45 +0000412 list = omap2_mboxes;
413
414 list[0]->irq = platform_get_irq_byname(pdev, "dsp");
415 list[1]->irq = platform_get_irq_byname(pdev, "iva");
416 }
417#endif
Felipe Contreras14476bd2010-06-11 15:51:47 +0000418#if defined(CONFIG_ARCH_OMAP4)
Felipe Contreras898ee752010-06-11 15:51:45 +0000419 else if (cpu_is_omap44xx()) {
420 list = omap4_mboxes;
421
422 list[0]->irq = list[1]->irq =
423 platform_get_irq_byname(pdev, "mbox");
424 }
Felipe Contreras14476bd2010-06-11 15:51:47 +0000425#endif
Felipe Contreras898ee752010-06-11 15:51:45 +0000426 else {
427 pr_err("%s: platform not supported\n", __func__);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800428 return -ENODEV;
429 }
Felipe Contreras898ee752010-06-11 15:51:45 +0000430
431 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
432 mbox_base = ioremap(mem->start, resource_size(mem));
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700433 if (!mbox_base)
434 return -ENOMEM;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800435
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000436 ret = omap_mbox_register(&pdev->dev, list);
437 if (ret) {
438 iounmap(mbox_base);
439 return ret;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800440 }
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800441
Omar Ramirez Luna5d783732010-12-01 14:15:08 -0600442 return 0;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800443}
444
Hiroshi DOYUda8cfe02009-03-23 18:07:25 -0700445static int __devexit omap2_mbox_remove(struct platform_device *pdev)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800446{
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000447 omap_mbox_unregister();
Hiroshi DOYU6c20a682009-03-23 18:07:23 -0700448 iounmap(mbox_base);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800449 return 0;
450}
451
452static struct platform_driver omap2_mbox_driver = {
453 .probe = omap2_mbox_probe,
Hiroshi DOYUda8cfe02009-03-23 18:07:25 -0700454 .remove = __devexit_p(omap2_mbox_remove),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800455 .driver = {
Felipe Contrerasd7427092010-06-11 15:51:48 +0000456 .name = "omap-mailbox",
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800457 },
458};
459
460static int __init omap2_mbox_init(void)
461{
462 return platform_driver_register(&omap2_mbox_driver);
463}
464
465static void __exit omap2_mbox_exit(void)
466{
467 platform_driver_unregister(&omap2_mbox_driver);
468}
469
470module_init(omap2_mbox_init);
471module_exit(omap2_mbox_exit);
472
Hiroshi DOYU733ecc52009-03-23 18:07:23 -0700473MODULE_LICENSE("GPL v2");
C A Subramaniam5f00ec62009-11-22 10:11:22 -0800474MODULE_DESCRIPTION("omap mailbox: omap2/3/4 architecture specific functions");
Ohad Ben-Cohenf3753252010-05-05 15:33:07 +0000475MODULE_AUTHOR("Hiroshi DOYU <Hiroshi.DOYU@nokia.com>");
476MODULE_AUTHOR("Paul Mundt");
Felipe Contrerasd7427092010-06-11 15:51:48 +0000477MODULE_ALIAS("platform:omap2-mailbox");