blob: c0e1f48aa119b0c53eeb7d2ee7a4d95bae7cc0cc [file] [log] [blame]
Hiroshi DOYU340a6142006-12-07 15:43:59 -08001/*
Felipe Contrerasd7427092010-06-11 15:51:48 +00002 * Mailbox reservation modules for OMAP1
Hiroshi DOYU340a6142006-12-07 15:43:59 -08003 *
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -07004 * Copyright (C) 2006-2009 Nokia Corporation
Hiroshi DOYU340a6142006-12-07 15:43:59 -08005 * Written by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11
Hiroshi DOYU340a6142006-12-07 15:43:59 -080012#include <linux/interrupt.h>
13#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010014#include <linux/io.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070015#include <plat/mailbox.h>
Hiroshi DOYU340a6142006-12-07 15:43:59 -080016
17#define MAILBOX_ARM2DSP1 0x00
18#define MAILBOX_ARM2DSP1b 0x04
19#define MAILBOX_DSP2ARM1 0x08
20#define MAILBOX_DSP2ARM1b 0x0c
21#define MAILBOX_DSP2ARM2 0x10
22#define MAILBOX_DSP2ARM2b 0x14
23#define MAILBOX_ARM2DSP1_Flag 0x18
24#define MAILBOX_DSP2ARM1_Flag 0x1c
25#define MAILBOX_DSP2ARM2_Flag 0x20
26
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -070027static void __iomem *mbox_base;
Hiroshi DOYU340a6142006-12-07 15:43:59 -080028
29struct omap_mbox1_fifo {
30 unsigned long cmd;
31 unsigned long data;
32 unsigned long flag;
33};
34
35struct omap_mbox1_priv {
36 struct omap_mbox1_fifo tx_fifo;
37 struct omap_mbox1_fifo rx_fifo;
38};
39
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -070040static inline int mbox_read_reg(size_t ofs)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080041{
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -070042 return __raw_readw(mbox_base + ofs);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080043}
44
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -070045static inline void mbox_write_reg(u32 val, size_t ofs)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080046{
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -070047 __raw_writew(val, mbox_base + ofs);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080048}
49
50/* msg */
Tony Lindgrene27a93a2007-12-18 20:58:32 -080051static mbox_msg_t omap1_mbox_fifo_read(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080052{
53 struct omap_mbox1_fifo *fifo =
54 &((struct omap_mbox1_priv *)mbox->priv)->rx_fifo;
55 mbox_msg_t msg;
56
57 msg = mbox_read_reg(fifo->data);
58 msg |= ((mbox_msg_t) mbox_read_reg(fifo->cmd)) << 16;
59
60 return msg;
61}
62
Tony Lindgrene27a93a2007-12-18 20:58:32 -080063static void
Hiroshi DOYU340a6142006-12-07 15:43:59 -080064omap1_mbox_fifo_write(struct omap_mbox *mbox, mbox_msg_t msg)
65{
66 struct omap_mbox1_fifo *fifo =
67 &((struct omap_mbox1_priv *)mbox->priv)->tx_fifo;
68
69 mbox_write_reg(msg & 0xffff, fifo->data);
70 mbox_write_reg(msg >> 16, fifo->cmd);
71}
72
Tony Lindgrene27a93a2007-12-18 20:58:32 -080073static int omap1_mbox_fifo_empty(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080074{
75 return 0;
76}
77
Tony Lindgrene27a93a2007-12-18 20:58:32 -080078static int omap1_mbox_fifo_full(struct omap_mbox *mbox)
Hiroshi DOYU340a6142006-12-07 15:43:59 -080079{
80 struct omap_mbox1_fifo *fifo =
81 &((struct omap_mbox1_priv *)mbox->priv)->rx_fifo;
82
Felipe Contreras909f9dc2010-06-11 15:51:37 +000083 return mbox_read_reg(fifo->flag);
Hiroshi DOYU340a6142006-12-07 15:43:59 -080084}
85
86/* irq */
Tony Lindgrene27a93a2007-12-18 20:58:32 -080087static void
Hiroshi DOYU340a6142006-12-07 15:43:59 -080088omap1_mbox_enable_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
89{
90 if (irq == IRQ_RX)
91 enable_irq(mbox->irq);
92}
93
Tony Lindgrene27a93a2007-12-18 20:58:32 -080094static void
Hiroshi DOYU340a6142006-12-07 15:43:59 -080095omap1_mbox_disable_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
96{
97 if (irq == IRQ_RX)
98 disable_irq(mbox->irq);
99}
100
Tony Lindgrene27a93a2007-12-18 20:58:32 -0800101static int
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800102omap1_mbox_is_irq(struct omap_mbox *mbox, omap_mbox_type_t irq)
103{
104 if (irq == IRQ_TX)
105 return 0;
106 return 1;
107}
108
109static struct omap_mbox_ops omap1_mbox_ops = {
110 .type = OMAP_MBOX_TYPE1,
111 .fifo_read = omap1_mbox_fifo_read,
112 .fifo_write = omap1_mbox_fifo_write,
113 .fifo_empty = omap1_mbox_fifo_empty,
114 .fifo_full = omap1_mbox_fifo_full,
115 .enable_irq = omap1_mbox_enable_irq,
116 .disable_irq = omap1_mbox_disable_irq,
117 .is_irq = omap1_mbox_is_irq,
118};
119
120/* FIXME: the following struct should be created automatically by the user id */
121
122/* DSP */
123static struct omap_mbox1_priv omap1_mbox_dsp_priv = {
124 .tx_fifo = {
125 .cmd = MAILBOX_ARM2DSP1b,
126 .data = MAILBOX_ARM2DSP1,
127 .flag = MAILBOX_ARM2DSP1_Flag,
128 },
129 .rx_fifo = {
130 .cmd = MAILBOX_DSP2ARM1b,
131 .data = MAILBOX_DSP2ARM1,
132 .flag = MAILBOX_DSP2ARM1_Flag,
133 },
134};
135
Aaro Koskinendba5e192010-11-18 19:59:48 +0200136static struct omap_mbox mbox_dsp_info = {
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800137 .name = "dsp",
138 .ops = &omap1_mbox_ops,
139 .priv = &omap1_mbox_dsp_priv,
140};
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800141
Aaro Koskinendba5e192010-11-18 19:59:48 +0200142static struct omap_mbox *omap1_mboxes[] = { &mbox_dsp_info, NULL };
Felipe Contreras898ee752010-06-11 15:51:45 +0000143
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -0700144static int __devinit omap1_mbox_probe(struct platform_device *pdev)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800145{
Felipe Contreras898ee752010-06-11 15:51:45 +0000146 struct resource *mem;
Felipe Contreras5f1af5c2010-06-11 15:51:41 +0000147 int ret;
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000148 struct omap_mbox **list;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800149
Felipe Contreras898ee752010-06-11 15:51:45 +0000150 list = omap1_mboxes;
Felipe Contreras898ee752010-06-11 15:51:45 +0000151 list[0]->irq = platform_get_irq_byname(pdev, "dsp");
152
153 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
154 mbox_base = ioremap(mem->start, resource_size(mem));
Felipe Contreras5f1af5c2010-06-11 15:51:41 +0000155 if (!mbox_base)
156 return -ENOMEM;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800157
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000158 ret = omap_mbox_register(&pdev->dev, list);
159 if (ret) {
160 iounmap(mbox_base);
161 return ret;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800162 }
Felipe Contreras5f1af5c2010-06-11 15:51:41 +0000163
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000164 return 0;
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800165}
166
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -0700167static int __devexit omap1_mbox_remove(struct platform_device *pdev)
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800168{
Felipe Contreras9c80c8c2010-06-11 15:51:46 +0000169 omap_mbox_unregister();
Felipe Contreras5f1af5c2010-06-11 15:51:41 +0000170 iounmap(mbox_base);
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800171 return 0;
172}
173
174static struct platform_driver omap1_mbox_driver = {
175 .probe = omap1_mbox_probe,
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -0700176 .remove = __devexit_p(omap1_mbox_remove),
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800177 .driver = {
Felipe Contrerasd7427092010-06-11 15:51:48 +0000178 .name = "omap-mailbox",
Hiroshi DOYU340a6142006-12-07 15:43:59 -0800179 },
180};
181
182static int __init omap1_mbox_init(void)
183{
184 return platform_driver_register(&omap1_mbox_driver);
185}
186
187static void __exit omap1_mbox_exit(void)
188{
189 platform_driver_unregister(&omap1_mbox_driver);
190}
191
192module_init(omap1_mbox_init);
193module_exit(omap1_mbox_exit);
194
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -0700195MODULE_LICENSE("GPL v2");
196MODULE_DESCRIPTION("omap mailbox: omap1 architecture specific functions");
Jonathan McDowell0c405b32009-06-23 13:30:21 +0300197MODULE_AUTHOR("Hiroshi DOYU <Hiroshi.DOYU@nokia.com>");
Hiroshi DOYUf98d67a2009-03-23 18:07:25 -0700198MODULE_ALIAS("platform:omap1-mailbox");