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/reset.h>
14 #include <linux/err.h>
15 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/of_reserved_mem.h>
21 #include <linux/platform_device.h>
22 #include <linux/remoteproc.h>
24 #include "remoteproc_internal.h"
26 static char *da8xx_fw_name
;
27 module_param(da8xx_fw_name
, charp
, 0444);
28 MODULE_PARM_DESC(da8xx_fw_name
,
29 "Name of DSP firmware file in /lib/firmware (if not specified defaults to 'rproc-dsp-fw')");
32 * OMAP-L138 Technical References:
33 * http://www.ti.com/product/omap-l138
35 #define SYSCFG_CHIPSIG0 BIT(0)
36 #define SYSCFG_CHIPSIG1 BIT(1)
37 #define SYSCFG_CHIPSIG2 BIT(2)
38 #define SYSCFG_CHIPSIG3 BIT(3)
39 #define SYSCFG_CHIPSIG4 BIT(4)
41 #define DA8XX_RPROC_LOCAL_ADDRESS_MASK (SZ_16M - 1)
44 * struct da8xx_rproc_mem - internal memory structure
45 * @cpu_addr: MPU virtual address of the memory region
46 * @bus_addr: Bus address used to access the memory region
47 * @dev_addr: Device address of the memory region from DSP view
48 * @size: Size of the memory region
50 struct da8xx_rproc_mem
{
51 void __iomem
*cpu_addr
;
58 * struct da8xx_rproc - da8xx remote processor instance state
59 * @rproc: rproc handle
60 * @mem: internal memory regions data
61 * @num_mems: number of internal memory regions
62 * @dsp_clk: placeholder for platform's DSP clk
63 * @ack_fxn: chip-specific ack function for ack'ing irq
64 * @irq_data: ack_fxn function parameter
65 * @chipsig: virt ptr to DSP interrupt registers (CHIPSIG & CHIPSIG_CLR)
66 * @bootreg: virt ptr to DSP boot address register (HOST1CFG)
67 * @irq: irq # used by this instance
71 struct da8xx_rproc_mem
*mem
;
74 struct reset_control
*dsp_reset
;
75 void (*ack_fxn
)(struct irq_data
*data
);
76 struct irq_data
*irq_data
;
77 void __iomem
*chipsig
;
78 void __iomem
*bootreg
;
83 * handle_event() - inbound virtqueue message workqueue function
85 * This function is registered as a kernel thread and is scheduled by the
88 static irqreturn_t
handle_event(int irq
, void *p
)
90 struct rproc
*rproc
= (struct rproc
*)p
;
92 /* Process incoming buffers on all our vrings */
93 rproc_vq_interrupt(rproc
, 0);
94 rproc_vq_interrupt(rproc
, 1);
100 * da8xx_rproc_callback() - inbound virtqueue message handler
102 * This handler is invoked directly by the kernel whenever the remote
103 * core (DSP) has modified the state of a virtqueue. There is no
104 * "payload" message indicating the virtqueue index as is the case with
105 * mailbox-based implementations on OMAP4. As such, this handler "polls"
106 * each known virtqueue index for every invocation.
108 static irqreturn_t
da8xx_rproc_callback(int irq
, void *p
)
110 struct rproc
*rproc
= (struct rproc
*)p
;
111 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
114 chipsig
= readl(drproc
->chipsig
);
115 if (chipsig
& SYSCFG_CHIPSIG0
) {
116 /* Clear interrupt level source */
117 writel(SYSCFG_CHIPSIG0
, drproc
->chipsig
+ 4);
122 * It has already been ack'ed by the kernel before calling
123 * this function, but since the ARM<->DSP interrupts in the
124 * CHIPSIG register are "level" instead of "pulse" variety,
125 * we need to ack it after taking down the level else we'll
126 * be called again immediately after returning.
128 drproc
->ack_fxn(drproc
->irq_data
);
130 return IRQ_WAKE_THREAD
;
136 static int da8xx_rproc_start(struct rproc
*rproc
)
138 struct device
*dev
= rproc
->dev
.parent
;
139 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
140 struct clk
*dsp_clk
= drproc
->dsp_clk
;
141 struct reset_control
*dsp_reset
= drproc
->dsp_reset
;
144 /* hw requires the start (boot) address be on 1KB boundary */
145 if (rproc
->bootaddr
& 0x3ff) {
146 dev_err(dev
, "invalid boot address: must be aligned to 1KB\n");
151 writel(rproc
->bootaddr
, drproc
->bootreg
);
153 ret
= clk_prepare_enable(dsp_clk
);
155 dev_err(dev
, "clk_prepare_enable() failed: %d\n", ret
);
159 ret
= reset_control_deassert(dsp_reset
);
161 dev_err(dev
, "reset_control_deassert() failed: %d\n", ret
);
162 clk_disable_unprepare(dsp_clk
);
169 static int da8xx_rproc_stop(struct rproc
*rproc
)
171 struct da8xx_rproc
*drproc
= rproc
->priv
;
172 struct device
*dev
= rproc
->dev
.parent
;
175 ret
= reset_control_assert(drproc
->dsp_reset
);
177 dev_err(dev
, "reset_control_assert() failed: %d\n", ret
);
181 clk_disable_unprepare(drproc
->dsp_clk
);
186 /* kick a virtqueue */
187 static void da8xx_rproc_kick(struct rproc
*rproc
, int vqid
)
189 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
191 /* Interrupt remote proc */
192 writel(SYSCFG_CHIPSIG2
, drproc
->chipsig
);
195 static const struct rproc_ops da8xx_rproc_ops
= {
196 .start
= da8xx_rproc_start
,
197 .stop
= da8xx_rproc_stop
,
198 .kick
= da8xx_rproc_kick
,
201 static int da8xx_rproc_get_internal_memories(struct platform_device
*pdev
,
202 struct da8xx_rproc
*drproc
)
204 static const char * const mem_names
[] = {"l2sram", "l1pram", "l1dram"};
205 int num_mems
= ARRAY_SIZE(mem_names
);
206 struct device
*dev
= &pdev
->dev
;
207 struct resource
*res
;
210 drproc
->mem
= devm_kcalloc(dev
, num_mems
, sizeof(*drproc
->mem
),
215 for (i
= 0; i
< num_mems
; i
++) {
216 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
218 drproc
->mem
[i
].cpu_addr
= devm_ioremap_resource(dev
, res
);
219 if (IS_ERR(drproc
->mem
[i
].cpu_addr
)) {
220 dev_err(dev
, "failed to parse and map %s memory\n",
222 return PTR_ERR(drproc
->mem
[i
].cpu_addr
);
224 drproc
->mem
[i
].bus_addr
= res
->start
;
225 drproc
->mem
[i
].dev_addr
=
226 res
->start
& DA8XX_RPROC_LOCAL_ADDRESS_MASK
;
227 drproc
->mem
[i
].size
= resource_size(res
);
229 dev_dbg(dev
, "memory %8s: bus addr %pa size 0x%zx va %p da 0x%x\n",
230 mem_names
[i
], &drproc
->mem
[i
].bus_addr
,
231 drproc
->mem
[i
].size
, drproc
->mem
[i
].cpu_addr
,
232 drproc
->mem
[i
].dev_addr
);
234 drproc
->num_mems
= num_mems
;
239 static int da8xx_rproc_probe(struct platform_device
*pdev
)
241 struct device
*dev
= &pdev
->dev
;
242 struct da8xx_rproc
*drproc
;
244 struct irq_data
*irq_data
;
245 struct resource
*bootreg_res
;
246 struct resource
*chipsig_res
;
248 struct reset_control
*dsp_reset
;
249 void __iomem
*chipsig
;
250 void __iomem
*bootreg
;
254 irq
= platform_get_irq(pdev
, 0);
256 dev_err(dev
, "platform_get_irq(pdev, 0) error: %d\n", irq
);
260 irq_data
= irq_get_irq_data(irq
);
262 dev_err(dev
, "irq_get_irq_data(%d): NULL\n", irq
);
266 bootreg_res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
268 bootreg
= devm_ioremap_resource(dev
, bootreg_res
);
270 return PTR_ERR(bootreg
);
272 chipsig_res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
274 chipsig
= devm_ioremap_resource(dev
, chipsig_res
);
276 return PTR_ERR(chipsig
);
278 dsp_clk
= devm_clk_get(dev
, NULL
);
279 if (IS_ERR(dsp_clk
)) {
280 dev_err(dev
, "clk_get error: %ld\n", PTR_ERR(dsp_clk
));
282 return PTR_ERR(dsp_clk
);
285 dsp_reset
= devm_reset_control_get_exclusive(dev
, NULL
);
286 if (IS_ERR(dsp_reset
)) {
287 if (PTR_ERR(dsp_reset
) != -EPROBE_DEFER
)
288 dev_err(dev
, "unable to get reset control: %ld\n",
291 return PTR_ERR(dsp_reset
);
295 ret
= of_reserved_mem_device_init(dev
);
297 dev_err(dev
, "device does not have specific CMA pool: %d\n",
303 rproc
= rproc_alloc(dev
, "dsp", &da8xx_rproc_ops
, da8xx_fw_name
,
310 /* error recovery is not supported at present */
311 rproc
->recovery_disabled
= true;
313 drproc
= rproc
->priv
;
314 drproc
->rproc
= rproc
;
315 drproc
->dsp_clk
= dsp_clk
;
316 drproc
->dsp_reset
= dsp_reset
;
317 rproc
->has_iommu
= false;
319 ret
= da8xx_rproc_get_internal_memories(pdev
, drproc
);
323 platform_set_drvdata(pdev
, rproc
);
325 /* everything the ISR needs is now setup, so hook it up */
326 ret
= devm_request_threaded_irq(dev
, irq
, da8xx_rproc_callback
,
327 handle_event
, 0, "da8xx-remoteproc",
330 dev_err(dev
, "devm_request_threaded_irq error: %d\n", ret
);
335 * rproc_add() can end up enabling the DSP's clk with the DSP
336 * *not* in reset, but da8xx_rproc_start() needs the DSP to be
337 * held in reset at the time it is called.
339 ret
= reset_control_assert(dsp_reset
);
343 drproc
->chipsig
= chipsig
;
344 drproc
->bootreg
= bootreg
;
345 drproc
->ack_fxn
= irq_data
->chip
->irq_ack
;
346 drproc
->irq_data
= irq_data
;
349 ret
= rproc_add(rproc
);
351 dev_err(dev
, "rproc_add failed: %d\n", ret
);
361 of_reserved_mem_device_release(dev
);
365 static int da8xx_rproc_remove(struct platform_device
*pdev
)
367 struct rproc
*rproc
= platform_get_drvdata(pdev
);
368 struct da8xx_rproc
*drproc
= (struct da8xx_rproc
*)rproc
->priv
;
369 struct device
*dev
= &pdev
->dev
;
372 * The devm subsystem might end up releasing things before
373 * freeing the irq, thus allowing an interrupt to sneak in while
374 * the device is being removed. This should prevent that.
376 disable_irq(drproc
->irq
);
381 of_reserved_mem_device_release(dev
);
386 static const struct of_device_id davinci_rproc_of_match
[] __maybe_unused
= {
387 { .compatible
= "ti,da850-dsp", },
390 MODULE_DEVICE_TABLE(of
, davinci_rproc_of_match
);
392 static struct platform_driver da8xx_rproc_driver
= {
393 .probe
= da8xx_rproc_probe
,
394 .remove
= da8xx_rproc_remove
,
396 .name
= "davinci-rproc",
397 .of_match_table
= of_match_ptr(davinci_rproc_of_match
),
401 module_platform_driver(da8xx_rproc_driver
);
403 MODULE_LICENSE("GPL v2");
404 MODULE_DESCRIPTION("DA8XX Remote Processor control driver");