2 * Remote processor machine-specific module for DA8XX
4 * Copyright (C) 2013 Texas Instruments, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
11 #include <linux/bitops.h>
12 #include <linux/clk.h>
13 #include <linux/err.h>
14 #include <linux/interrupt.h>
16 #include <linux/irq.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/remoteproc.h>
22 #include <mach/clock.h> /* for davinci_clk_reset_assert/deassert() */
24 #include "remoteproc_internal.h"
26 static char *da8xx_fw_name
;
27 module_param(da8xx_fw_name
, charp
, S_IRUGO
);
28 MODULE_PARM_DESC(da8xx_fw_name
,
29 "\n\t\tName of DSP firmware file in /lib/firmware"
30 " (if not specified defaults to 'rproc-dsp-fw')");
33 * OMAP-L138 Technical References:
34 * http://www.ti.com/product/omap-l138
36 #define SYSCFG_CHIPSIG0 BIT(0)
37 #define SYSCFG_CHIPSIG1 BIT(1)
38 #define SYSCFG_CHIPSIG2 BIT(2)
39 #define SYSCFG_CHIPSIG3 BIT(3)
40 #define SYSCFG_CHIPSIG4 BIT(4)
43 * struct da8xx_rproc - da8xx remote processor instance state
44 * @rproc: rproc handle
45 * @dsp_clk: placeholder for platform's DSP clk
46 * @ack_fxn: chip-specific ack function for ack'ing irq
47 * @irq_data: ack_fxn function parameter
48 * @chipsig: virt ptr to DSP interrupt registers (CHIPSIG & CHIPSIG_CLR)
49 * @bootreg: virt ptr to DSP boot address register (HOST1CFG)
50 * @irq: irq # used by this instance
55 void (*ack_fxn
)(struct irq_data
*data
);
56 struct irq_data
*irq_data
;
57 void __iomem
*chipsig
;
58 void __iomem
*bootreg
;
63 * handle_event() - inbound virtqueue message workqueue function
65 * This function is registered as a kernel thread and is scheduled by the
68 static irqreturn_t
handle_event(int irq
, void *p
)
70 struct rproc
*rproc
= (struct rproc
*)p
;
72 /* Process incoming buffers on all our vrings */
73 rproc_vq_interrupt(rproc
, 0);
74 rproc_vq_interrupt(rproc
, 1);
80 * da8xx_rproc_callback() - inbound virtqueue message handler
82 * This handler is invoked directly by the kernel whenever the remote
83 * core (DSP) has modified the state of a virtqueue. There is no
84 * "payload" message indicating the virtqueue index as is the case with
85 * mailbox-based implementations on OMAP4. As such, this handler "polls"
86 * each known virtqueue index for every invocation.
88 static irqreturn_t
da8xx_rproc_callback(int irq
, void *p
)
90 struct rproc
*rproc
= (struct rproc
*)p
;
91 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
94 chipsig
= readl(drproc
->chipsig
);
95 if (chipsig
& SYSCFG_CHIPSIG0
) {
96 /* Clear interrupt level source */
97 writel(SYSCFG_CHIPSIG0
, drproc
->chipsig
+ 4);
102 * It has already been ack'ed by the kernel before calling
103 * this function, but since the ARM<->DSP interrupts in the
104 * CHIPSIG register are "level" instead of "pulse" variety,
105 * we need to ack it after taking down the level else we'll
106 * be called again immediately after returning.
108 drproc
->ack_fxn(drproc
->irq_data
);
110 return IRQ_WAKE_THREAD
;
116 static int da8xx_rproc_start(struct rproc
*rproc
)
118 struct device
*dev
= rproc
->dev
.parent
;
119 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
120 struct clk
*dsp_clk
= drproc
->dsp_clk
;
122 /* hw requires the start (boot) address be on 1KB boundary */
123 if (rproc
->bootaddr
& 0x3ff) {
124 dev_err(dev
, "invalid boot address: must be aligned to 1KB\n");
129 writel(rproc
->bootaddr
, drproc
->bootreg
);
132 davinci_clk_reset_deassert(dsp_clk
);
137 static int da8xx_rproc_stop(struct rproc
*rproc
)
139 struct da8xx_rproc
*drproc
= rproc
->priv
;
141 clk_disable(drproc
->dsp_clk
);
146 /* kick a virtqueue */
147 static void da8xx_rproc_kick(struct rproc
*rproc
, int vqid
)
149 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
151 /* Interupt remote proc */
152 writel(SYSCFG_CHIPSIG2
, drproc
->chipsig
);
155 static struct rproc_ops da8xx_rproc_ops
= {
156 .start
= da8xx_rproc_start
,
157 .stop
= da8xx_rproc_stop
,
158 .kick
= da8xx_rproc_kick
,
161 static int reset_assert(struct device
*dev
)
165 dsp_clk
= clk_get(dev
, NULL
);
166 if (IS_ERR(dsp_clk
)) {
167 dev_err(dev
, "clk_get error: %ld\n", PTR_ERR(dsp_clk
));
168 return PTR_RET(dsp_clk
);
171 davinci_clk_reset_assert(dsp_clk
);
177 static int da8xx_rproc_probe(struct platform_device
*pdev
)
179 struct device
*dev
= &pdev
->dev
;
180 struct da8xx_rproc
*drproc
;
182 struct irq_data
*irq_data
;
183 struct resource
*bootreg_res
;
184 struct resource
*chipsig_res
;
186 void __iomem
*chipsig
;
187 void __iomem
*bootreg
;
191 irq
= platform_get_irq(pdev
, 0);
193 dev_err(dev
, "platform_get_irq(pdev, 0) error: %d\n", irq
);
197 irq_data
= irq_get_irq_data(irq
);
199 dev_err(dev
, "irq_get_irq_data(%d): NULL\n", irq
);
203 bootreg_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
206 "platform_get_resource(IORESOURCE_MEM, 0): NULL\n");
207 return -EADDRNOTAVAIL
;
210 chipsig_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
213 "platform_get_resource(IORESOURCE_MEM, 1): NULL\n");
214 return -EADDRNOTAVAIL
;
217 bootreg
= devm_ioremap_resource(dev
, bootreg_res
);
219 return PTR_ERR(bootreg
);
221 chipsig
= devm_ioremap_resource(dev
, chipsig_res
);
223 return PTR_ERR(chipsig
);
225 dsp_clk
= devm_clk_get(dev
, NULL
);
226 if (IS_ERR(dsp_clk
)) {
227 dev_err(dev
, "clk_get error: %ld\n", PTR_ERR(dsp_clk
));
229 return PTR_ERR(dsp_clk
);
232 rproc
= rproc_alloc(dev
, "dsp", &da8xx_rproc_ops
, da8xx_fw_name
,
237 drproc
= rproc
->priv
;
238 drproc
->rproc
= rproc
;
240 platform_set_drvdata(pdev
, rproc
);
242 /* everything the ISR needs is now setup, so hook it up */
243 ret
= devm_request_threaded_irq(dev
, irq
, da8xx_rproc_callback
,
244 handle_event
, 0, "da8xx-remoteproc",
247 dev_err(dev
, "devm_request_threaded_irq error: %d\n", ret
);
252 * rproc_add() can end up enabling the DSP's clk with the DSP
253 * *not* in reset, but da8xx_rproc_start() needs the DSP to be
254 * held in reset at the time it is called.
256 ret
= reset_assert(dev
);
260 drproc
->chipsig
= chipsig
;
261 drproc
->bootreg
= bootreg
;
262 drproc
->ack_fxn
= irq_data
->chip
->irq_ack
;
263 drproc
->irq_data
= irq_data
;
265 drproc
->dsp_clk
= dsp_clk
;
267 ret
= rproc_add(rproc
);
269 dev_err(dev
, "rproc_add failed: %d\n", ret
);
281 static int da8xx_rproc_remove(struct platform_device
*pdev
)
283 struct device
*dev
= &pdev
->dev
;
284 struct rproc
*rproc
= platform_get_drvdata(pdev
);
285 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
288 * It's important to place the DSP in reset before going away,
289 * since a subsequent insmod of this module may enable the DSP's
290 * clock before its program/boot-address has been loaded and
291 * before this module's probe has had a chance to reset the DSP.
292 * Without the reset, the DSP can lockup permanently when it
293 * begins executing garbage.
298 * The devm subsystem might end up releasing things before
299 * freeing the irq, thus allowing an interrupt to sneak in while
300 * the device is being removed. This should prevent that.
302 disable_irq(drproc
->irq
);
304 devm_clk_put(dev
, drproc
->dsp_clk
);
312 static struct platform_driver da8xx_rproc_driver
= {
313 .probe
= da8xx_rproc_probe
,
314 .remove
= da8xx_rproc_remove
,
316 .name
= "davinci-rproc",
317 .owner
= THIS_MODULE
,
321 module_platform_driver(da8xx_rproc_driver
);
323 MODULE_LICENSE("GPL v2");
324 MODULE_DESCRIPTION("DA8XX Remote Processor control driver");