2 * drivers/dma/imx-sdma.c
4 * This file contains a driver for the Freescale Smart DMA engine
6 * Copyright 2010 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
8 * Based on code from Freescale:
10 * Copyright 2004-2009 Freescale Semiconductor, Inc. All Rights Reserved.
12 * The code contained herein is licensed under the GNU General Public
13 * License. You may obtain a copy of the GNU General Public License
14 * Version 2 or later at the following locations:
16 * http://www.opensource.org/licenses/gpl-license.html
17 * http://www.gnu.org/copyleft/gpl.html
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/types.h>
23 #include <linux/bitops.h>
25 #include <linux/interrupt.h>
26 #include <linux/clk.h>
27 #include <linux/delay.h>
28 #include <linux/sched.h>
29 #include <linux/semaphore.h>
30 #include <linux/spinlock.h>
31 #include <linux/device.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/firmware.h>
34 #include <linux/slab.h>
35 #include <linux/platform_device.h>
36 #include <linux/dmaengine.h>
38 #include <linux/of_device.h>
39 #include <linux/of_dma.h>
42 #include <linux/platform_data/dma-imx-sdma.h>
43 #include <linux/platform_data/dma-imx.h>
45 #include "dmaengine.h"
48 #define SDMA_H_C0PTR 0x000
49 #define SDMA_H_INTR 0x004
50 #define SDMA_H_STATSTOP 0x008
51 #define SDMA_H_START 0x00c
52 #define SDMA_H_EVTOVR 0x010
53 #define SDMA_H_DSPOVR 0x014
54 #define SDMA_H_HOSTOVR 0x018
55 #define SDMA_H_EVTPEND 0x01c
56 #define SDMA_H_DSPENBL 0x020
57 #define SDMA_H_RESET 0x024
58 #define SDMA_H_EVTERR 0x028
59 #define SDMA_H_INTRMSK 0x02c
60 #define SDMA_H_PSW 0x030
61 #define SDMA_H_EVTERRDBG 0x034
62 #define SDMA_H_CONFIG 0x038
63 #define SDMA_ONCE_ENB 0x040
64 #define SDMA_ONCE_DATA 0x044
65 #define SDMA_ONCE_INSTR 0x048
66 #define SDMA_ONCE_STAT 0x04c
67 #define SDMA_ONCE_CMD 0x050
68 #define SDMA_EVT_MIRROR 0x054
69 #define SDMA_ILLINSTADDR 0x058
70 #define SDMA_CHN0ADDR 0x05c
71 #define SDMA_ONCE_RTB 0x060
72 #define SDMA_XTRIG_CONF1 0x070
73 #define SDMA_XTRIG_CONF2 0x074
74 #define SDMA_CHNENBL0_IMX35 0x200
75 #define SDMA_CHNENBL0_IMX31 0x080
76 #define SDMA_CHNPRI_0 0x100
79 * Buffer descriptor status values.
90 * Data Node descriptor status values.
92 #define DND_END_OF_FRAME 0x80
93 #define DND_END_OF_XFER 0x40
95 #define DND_UNUSED 0x01
98 * IPCV2 descriptor status values.
100 #define BD_IPCV2_END_OF_FRAME 0x40
102 #define IPCV2_MAX_NODES 50
104 * Error bit set in the CCB status field by the SDMA,
105 * in setbd routine, in case of a transfer error
107 #define DATA_ERROR 0x10000000
110 * Buffer descriptor commands.
115 #define C0_SETCTX 0x07
116 #define C0_GETCTX 0x03
117 #define C0_SETDM 0x01
118 #define C0_SETPM 0x04
119 #define C0_GETDM 0x02
120 #define C0_GETPM 0x08
122 * Change endianness indicator in the BD command field
124 #define CHANGE_ENDIANNESS 0x80
127 * Mode/Count of data node descriptors - IPCv2
129 struct sdma_mode_count
{
130 u32 count
: 16; /* size of the buffer pointed by this BD */
131 u32 status
: 8; /* E,R,I,C,W,D status bits stored here */
132 u32 command
: 8; /* command mostlky used for channel 0 */
138 struct sdma_buffer_descriptor
{
139 struct sdma_mode_count mode
;
140 u32 buffer_addr
; /* address of the buffer described */
141 u32 ext_buffer_addr
; /* extended buffer address */
142 } __attribute__ ((packed
));
145 * struct sdma_channel_control - Channel control Block
147 * @current_bd_ptr current buffer descriptor processed
148 * @base_bd_ptr first element of buffer descriptor array
149 * @unused padding. The SDMA engine expects an array of 128 byte
152 struct sdma_channel_control
{
156 } __attribute__ ((packed
));
159 * struct sdma_state_registers - SDMA context for a channel
161 * @pc: program counter
162 * @t: test bit: status of arithmetic & test instruction
163 * @rpc: return program counter
164 * @sf: source fault while loading data
165 * @spc: loop start program counter
166 * @df: destination fault while storing data
167 * @epc: loop end program counter
170 struct sdma_state_registers
{
182 } __attribute__ ((packed
));
185 * struct sdma_context_data - sdma context specific to a channel
187 * @channel_state: channel state bits
188 * @gReg: general registers
189 * @mda: burst dma destination address register
190 * @msa: burst dma source address register
191 * @ms: burst dma status register
192 * @md: burst dma data register
193 * @pda: peripheral dma destination address register
194 * @psa: peripheral dma source address register
195 * @ps: peripheral dma status register
196 * @pd: peripheral dma data register
197 * @ca: CRC polynomial register
198 * @cs: CRC accumulator register
199 * @dda: dedicated core destination address register
200 * @dsa: dedicated core source address register
201 * @ds: dedicated core status register
202 * @dd: dedicated core data register
204 struct sdma_context_data
{
205 struct sdma_state_registers channel_state
;
229 } __attribute__ ((packed
));
231 #define NUM_BD (int)(PAGE_SIZE / sizeof(struct sdma_buffer_descriptor))
236 * struct sdma_channel - housekeeping for a SDMA channel
238 * @sdma pointer to the SDMA engine for this channel
239 * @channel the channel number, matches dmaengine chan_id + 1
240 * @direction transfer type. Needed for setting SDMA script
241 * @peripheral_type Peripheral type. Needed for setting SDMA script
242 * @event_id0 aka dma request line
243 * @event_id1 for channels that use 2 events
244 * @word_size peripheral access size
245 * @buf_tail ID of the buffer that was processed
246 * @num_bd max NUM_BD. number of descriptors currently handling
248 struct sdma_channel
{
249 struct sdma_engine
*sdma
;
250 unsigned int channel
;
251 enum dma_transfer_direction direction
;
252 enum sdma_peripheral_type peripheral_type
;
253 unsigned int event_id0
;
254 unsigned int event_id1
;
255 enum dma_slave_buswidth word_size
;
256 unsigned int buf_tail
;
258 unsigned int period_len
;
259 struct sdma_buffer_descriptor
*bd
;
261 unsigned int pc_from_device
, pc_to_device
;
263 dma_addr_t per_address
;
264 unsigned long event_mask
[2];
265 unsigned long watermark_level
;
266 u32 shp_addr
, per_addr
;
267 struct dma_chan chan
;
269 struct dma_async_tx_descriptor desc
;
270 enum dma_status status
;
271 unsigned int chn_count
;
272 unsigned int chn_real_count
;
273 struct tasklet_struct tasklet
;
274 struct imx_dma_data data
;
277 #define IMX_DMA_SG_LOOP BIT(0)
279 #define MAX_DMA_CHANNELS 32
280 #define MXC_SDMA_DEFAULT_PRIORITY 1
281 #define MXC_SDMA_MIN_PRIORITY 1
282 #define MXC_SDMA_MAX_PRIORITY 7
284 #define SDMA_FIRMWARE_MAGIC 0x414d4453
287 * struct sdma_firmware_header - Layout of the firmware image
290 * @version_major increased whenever layout of struct sdma_script_start_addrs
292 * @version_minor firmware minor version (for binary compatible changes)
293 * @script_addrs_start offset of struct sdma_script_start_addrs in this image
294 * @num_script_addrs Number of script addresses in this image
295 * @ram_code_start offset of SDMA ram image in this firmware image
296 * @ram_code_size size of SDMA ram image
297 * @script_addrs Stores the start address of the SDMA scripts
298 * (in SDMA memory space)
300 struct sdma_firmware_header
{
304 u32 script_addrs_start
;
305 u32 num_script_addrs
;
310 struct sdma_driver_data
{
313 struct sdma_script_start_addrs
*script_addrs
;
318 struct device_dma_parameters dma_parms
;
319 struct sdma_channel channel
[MAX_DMA_CHANNELS
];
320 struct sdma_channel_control
*channel_control
;
322 struct sdma_context_data
*context
;
323 dma_addr_t context_phys
;
324 struct dma_device dma_device
;
327 spinlock_t channel_0_lock
;
329 struct sdma_script_start_addrs
*script_addrs
;
330 const struct sdma_driver_data
*drvdata
;
333 static struct sdma_driver_data sdma_imx31
= {
334 .chnenbl0
= SDMA_CHNENBL0_IMX31
,
338 static struct sdma_script_start_addrs sdma_script_imx25
= {
340 .uart_2_mcu_addr
= 904,
341 .per_2_app_addr
= 1255,
342 .mcu_2_app_addr
= 834,
343 .uartsh_2_mcu_addr
= 1120,
344 .per_2_shp_addr
= 1329,
345 .mcu_2_shp_addr
= 1048,
346 .ata_2_mcu_addr
= 1560,
347 .mcu_2_ata_addr
= 1479,
348 .app_2_per_addr
= 1189,
349 .app_2_mcu_addr
= 770,
350 .shp_2_per_addr
= 1407,
351 .shp_2_mcu_addr
= 979,
354 static struct sdma_driver_data sdma_imx25
= {
355 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
357 .script_addrs
= &sdma_script_imx25
,
360 static struct sdma_driver_data sdma_imx35
= {
361 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
365 static struct sdma_script_start_addrs sdma_script_imx51
= {
367 .uart_2_mcu_addr
= 817,
368 .mcu_2_app_addr
= 747,
369 .mcu_2_shp_addr
= 961,
370 .ata_2_mcu_addr
= 1473,
371 .mcu_2_ata_addr
= 1392,
372 .app_2_per_addr
= 1033,
373 .app_2_mcu_addr
= 683,
374 .shp_2_per_addr
= 1251,
375 .shp_2_mcu_addr
= 892,
378 static struct sdma_driver_data sdma_imx51
= {
379 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
381 .script_addrs
= &sdma_script_imx51
,
384 static struct sdma_script_start_addrs sdma_script_imx53
= {
386 .app_2_mcu_addr
= 683,
387 .mcu_2_app_addr
= 747,
388 .uart_2_mcu_addr
= 817,
389 .shp_2_mcu_addr
= 891,
390 .mcu_2_shp_addr
= 960,
391 .uartsh_2_mcu_addr
= 1032,
392 .spdif_2_mcu_addr
= 1100,
393 .mcu_2_spdif_addr
= 1134,
394 .firi_2_mcu_addr
= 1193,
395 .mcu_2_firi_addr
= 1290,
398 static struct sdma_driver_data sdma_imx53
= {
399 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
401 .script_addrs
= &sdma_script_imx53
,
404 static struct sdma_script_start_addrs sdma_script_imx6q
= {
406 .uart_2_mcu_addr
= 817,
407 .mcu_2_app_addr
= 747,
408 .per_2_per_addr
= 6331,
409 .uartsh_2_mcu_addr
= 1032,
410 .mcu_2_shp_addr
= 960,
411 .app_2_mcu_addr
= 683,
412 .shp_2_mcu_addr
= 891,
413 .spdif_2_mcu_addr
= 1100,
414 .mcu_2_spdif_addr
= 1134,
417 static struct sdma_driver_data sdma_imx6q
= {
418 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
420 .script_addrs
= &sdma_script_imx6q
,
423 static const struct platform_device_id sdma_devtypes
[] = {
425 .name
= "imx25-sdma",
426 .driver_data
= (unsigned long)&sdma_imx25
,
428 .name
= "imx31-sdma",
429 .driver_data
= (unsigned long)&sdma_imx31
,
431 .name
= "imx35-sdma",
432 .driver_data
= (unsigned long)&sdma_imx35
,
434 .name
= "imx51-sdma",
435 .driver_data
= (unsigned long)&sdma_imx51
,
437 .name
= "imx53-sdma",
438 .driver_data
= (unsigned long)&sdma_imx53
,
440 .name
= "imx6q-sdma",
441 .driver_data
= (unsigned long)&sdma_imx6q
,
446 MODULE_DEVICE_TABLE(platform
, sdma_devtypes
);
448 static const struct of_device_id sdma_dt_ids
[] = {
449 { .compatible
= "fsl,imx6q-sdma", .data
= &sdma_imx6q
, },
450 { .compatible
= "fsl,imx53-sdma", .data
= &sdma_imx53
, },
451 { .compatible
= "fsl,imx51-sdma", .data
= &sdma_imx51
, },
452 { .compatible
= "fsl,imx35-sdma", .data
= &sdma_imx35
, },
453 { .compatible
= "fsl,imx31-sdma", .data
= &sdma_imx31
, },
454 { .compatible
= "fsl,imx25-sdma", .data
= &sdma_imx25
, },
457 MODULE_DEVICE_TABLE(of
, sdma_dt_ids
);
459 #define SDMA_H_CONFIG_DSPDMA BIT(12) /* indicates if the DSPDMA is used */
460 #define SDMA_H_CONFIG_RTD_PINS BIT(11) /* indicates if Real-Time Debug pins are enabled */
461 #define SDMA_H_CONFIG_ACR BIT(4) /* indicates if AHB freq /core freq = 2 or 1 */
462 #define SDMA_H_CONFIG_CSM (3) /* indicates which context switch mode is selected*/
464 static inline u32
chnenbl_ofs(struct sdma_engine
*sdma
, unsigned int event
)
466 u32 chnenbl0
= sdma
->drvdata
->chnenbl0
;
467 return chnenbl0
+ event
* 4;
470 static int sdma_config_ownership(struct sdma_channel
*sdmac
,
471 bool event_override
, bool mcu_override
, bool dsp_override
)
473 struct sdma_engine
*sdma
= sdmac
->sdma
;
474 int channel
= sdmac
->channel
;
475 unsigned long evt
, mcu
, dsp
;
477 if (event_override
&& mcu_override
&& dsp_override
)
480 evt
= readl_relaxed(sdma
->regs
+ SDMA_H_EVTOVR
);
481 mcu
= readl_relaxed(sdma
->regs
+ SDMA_H_HOSTOVR
);
482 dsp
= readl_relaxed(sdma
->regs
+ SDMA_H_DSPOVR
);
485 __clear_bit(channel
, &dsp
);
487 __set_bit(channel
, &dsp
);
490 __clear_bit(channel
, &evt
);
492 __set_bit(channel
, &evt
);
495 __clear_bit(channel
, &mcu
);
497 __set_bit(channel
, &mcu
);
499 writel_relaxed(evt
, sdma
->regs
+ SDMA_H_EVTOVR
);
500 writel_relaxed(mcu
, sdma
->regs
+ SDMA_H_HOSTOVR
);
501 writel_relaxed(dsp
, sdma
->regs
+ SDMA_H_DSPOVR
);
506 static void sdma_enable_channel(struct sdma_engine
*sdma
, int channel
)
508 writel(BIT(channel
), sdma
->regs
+ SDMA_H_START
);
512 * sdma_run_channel0 - run a channel and wait till it's done
514 static int sdma_run_channel0(struct sdma_engine
*sdma
)
517 unsigned long timeout
= 500;
519 sdma_enable_channel(sdma
, 0);
521 while (!(ret
= readl_relaxed(sdma
->regs
+ SDMA_H_INTR
) & 1)) {
528 /* Clear the interrupt status */
529 writel_relaxed(ret
, sdma
->regs
+ SDMA_H_INTR
);
531 dev_err(sdma
->dev
, "Timeout waiting for CH0 ready\n");
534 /* Set bits of CONFIG register with dynamic context switching */
535 if (readl(sdma
->regs
+ SDMA_H_CONFIG
) == 0)
536 writel_relaxed(SDMA_H_CONFIG_CSM
, sdma
->regs
+ SDMA_H_CONFIG
);
538 return ret
? 0 : -ETIMEDOUT
;
541 static int sdma_load_script(struct sdma_engine
*sdma
, void *buf
, int size
,
544 struct sdma_buffer_descriptor
*bd0
= sdma
->channel
[0].bd
;
550 buf_virt
= dma_alloc_coherent(NULL
,
552 &buf_phys
, GFP_KERNEL
);
557 spin_lock_irqsave(&sdma
->channel_0_lock
, flags
);
559 bd0
->mode
.command
= C0_SETPM
;
560 bd0
->mode
.status
= BD_DONE
| BD_INTR
| BD_WRAP
| BD_EXTD
;
561 bd0
->mode
.count
= size
/ 2;
562 bd0
->buffer_addr
= buf_phys
;
563 bd0
->ext_buffer_addr
= address
;
565 memcpy(buf_virt
, buf
, size
);
567 ret
= sdma_run_channel0(sdma
);
569 spin_unlock_irqrestore(&sdma
->channel_0_lock
, flags
);
571 dma_free_coherent(NULL
, size
, buf_virt
, buf_phys
);
576 static void sdma_event_enable(struct sdma_channel
*sdmac
, unsigned int event
)
578 struct sdma_engine
*sdma
= sdmac
->sdma
;
579 int channel
= sdmac
->channel
;
581 u32 chnenbl
= chnenbl_ofs(sdma
, event
);
583 val
= readl_relaxed(sdma
->regs
+ chnenbl
);
584 __set_bit(channel
, &val
);
585 writel_relaxed(val
, sdma
->regs
+ chnenbl
);
588 static void sdma_event_disable(struct sdma_channel
*sdmac
, unsigned int event
)
590 struct sdma_engine
*sdma
= sdmac
->sdma
;
591 int channel
= sdmac
->channel
;
592 u32 chnenbl
= chnenbl_ofs(sdma
, event
);
595 val
= readl_relaxed(sdma
->regs
+ chnenbl
);
596 __clear_bit(channel
, &val
);
597 writel_relaxed(val
, sdma
->regs
+ chnenbl
);
600 static void sdma_handle_channel_loop(struct sdma_channel
*sdmac
)
602 if (sdmac
->desc
.callback
)
603 sdmac
->desc
.callback(sdmac
->desc
.callback_param
);
606 static void sdma_update_channel_loop(struct sdma_channel
*sdmac
)
608 struct sdma_buffer_descriptor
*bd
;
611 * loop mode. Iterate over descriptors, re-setup them and
612 * call callback function.
615 bd
= &sdmac
->bd
[sdmac
->buf_tail
];
617 if (bd
->mode
.status
& BD_DONE
)
620 if (bd
->mode
.status
& BD_RROR
)
621 sdmac
->status
= DMA_ERROR
;
623 bd
->mode
.status
|= BD_DONE
;
625 sdmac
->buf_tail
%= sdmac
->num_bd
;
629 static void mxc_sdma_handle_channel_normal(struct sdma_channel
*sdmac
)
631 struct sdma_buffer_descriptor
*bd
;
634 sdmac
->chn_real_count
= 0;
636 * non loop mode. Iterate over all descriptors, collect
637 * errors and call callback function
639 for (i
= 0; i
< sdmac
->num_bd
; i
++) {
642 if (bd
->mode
.status
& (BD_DONE
| BD_RROR
))
644 sdmac
->chn_real_count
+= bd
->mode
.count
;
648 sdmac
->status
= DMA_ERROR
;
650 sdmac
->status
= DMA_COMPLETE
;
652 dma_cookie_complete(&sdmac
->desc
);
653 if (sdmac
->desc
.callback
)
654 sdmac
->desc
.callback(sdmac
->desc
.callback_param
);
657 static void sdma_tasklet(unsigned long data
)
659 struct sdma_channel
*sdmac
= (struct sdma_channel
*) data
;
661 if (sdmac
->flags
& IMX_DMA_SG_LOOP
)
662 sdma_handle_channel_loop(sdmac
);
664 mxc_sdma_handle_channel_normal(sdmac
);
667 static irqreturn_t
sdma_int_handler(int irq
, void *dev_id
)
669 struct sdma_engine
*sdma
= dev_id
;
672 stat
= readl_relaxed(sdma
->regs
+ SDMA_H_INTR
);
673 /* not interested in channel 0 interrupts */
675 writel_relaxed(stat
, sdma
->regs
+ SDMA_H_INTR
);
678 int channel
= fls(stat
) - 1;
679 struct sdma_channel
*sdmac
= &sdma
->channel
[channel
];
681 if (sdmac
->flags
& IMX_DMA_SG_LOOP
)
682 sdma_update_channel_loop(sdmac
);
684 tasklet_schedule(&sdmac
->tasklet
);
686 __clear_bit(channel
, &stat
);
693 * sets the pc of SDMA script according to the peripheral type
695 static void sdma_get_pc(struct sdma_channel
*sdmac
,
696 enum sdma_peripheral_type peripheral_type
)
698 struct sdma_engine
*sdma
= sdmac
->sdma
;
699 int per_2_emi
= 0, emi_2_per
= 0;
701 * These are needed once we start to support transfers between
702 * two peripherals or memory-to-memory transfers
704 int per_2_per
= 0, emi_2_emi
= 0;
706 sdmac
->pc_from_device
= 0;
707 sdmac
->pc_to_device
= 0;
709 switch (peripheral_type
) {
710 case IMX_DMATYPE_MEMORY
:
711 emi_2_emi
= sdma
->script_addrs
->ap_2_ap_addr
;
713 case IMX_DMATYPE_DSP
:
714 emi_2_per
= sdma
->script_addrs
->bp_2_ap_addr
;
715 per_2_emi
= sdma
->script_addrs
->ap_2_bp_addr
;
717 case IMX_DMATYPE_FIRI
:
718 per_2_emi
= sdma
->script_addrs
->firi_2_mcu_addr
;
719 emi_2_per
= sdma
->script_addrs
->mcu_2_firi_addr
;
721 case IMX_DMATYPE_UART
:
722 per_2_emi
= sdma
->script_addrs
->uart_2_mcu_addr
;
723 emi_2_per
= sdma
->script_addrs
->mcu_2_app_addr
;
725 case IMX_DMATYPE_UART_SP
:
726 per_2_emi
= sdma
->script_addrs
->uartsh_2_mcu_addr
;
727 emi_2_per
= sdma
->script_addrs
->mcu_2_shp_addr
;
729 case IMX_DMATYPE_ATA
:
730 per_2_emi
= sdma
->script_addrs
->ata_2_mcu_addr
;
731 emi_2_per
= sdma
->script_addrs
->mcu_2_ata_addr
;
733 case IMX_DMATYPE_CSPI
:
734 case IMX_DMATYPE_EXT
:
735 case IMX_DMATYPE_SSI
:
736 case IMX_DMATYPE_SAI
:
737 per_2_emi
= sdma
->script_addrs
->app_2_mcu_addr
;
738 emi_2_per
= sdma
->script_addrs
->mcu_2_app_addr
;
740 case IMX_DMATYPE_SSI_DUAL
:
741 per_2_emi
= sdma
->script_addrs
->ssish_2_mcu_addr
;
742 emi_2_per
= sdma
->script_addrs
->mcu_2_ssish_addr
;
744 case IMX_DMATYPE_SSI_SP
:
745 case IMX_DMATYPE_MMC
:
746 case IMX_DMATYPE_SDHC
:
747 case IMX_DMATYPE_CSPI_SP
:
748 case IMX_DMATYPE_ESAI
:
749 case IMX_DMATYPE_MSHC_SP
:
750 per_2_emi
= sdma
->script_addrs
->shp_2_mcu_addr
;
751 emi_2_per
= sdma
->script_addrs
->mcu_2_shp_addr
;
753 case IMX_DMATYPE_ASRC
:
754 per_2_emi
= sdma
->script_addrs
->asrc_2_mcu_addr
;
755 emi_2_per
= sdma
->script_addrs
->asrc_2_mcu_addr
;
756 per_2_per
= sdma
->script_addrs
->per_2_per_addr
;
758 case IMX_DMATYPE_ASRC_SP
:
759 per_2_emi
= sdma
->script_addrs
->shp_2_mcu_addr
;
760 emi_2_per
= sdma
->script_addrs
->mcu_2_shp_addr
;
761 per_2_per
= sdma
->script_addrs
->per_2_per_addr
;
763 case IMX_DMATYPE_MSHC
:
764 per_2_emi
= sdma
->script_addrs
->mshc_2_mcu_addr
;
765 emi_2_per
= sdma
->script_addrs
->mcu_2_mshc_addr
;
767 case IMX_DMATYPE_CCM
:
768 per_2_emi
= sdma
->script_addrs
->dptc_dvfs_addr
;
770 case IMX_DMATYPE_SPDIF
:
771 per_2_emi
= sdma
->script_addrs
->spdif_2_mcu_addr
;
772 emi_2_per
= sdma
->script_addrs
->mcu_2_spdif_addr
;
774 case IMX_DMATYPE_IPU_MEMORY
:
775 emi_2_per
= sdma
->script_addrs
->ext_mem_2_ipu_addr
;
781 sdmac
->pc_from_device
= per_2_emi
;
782 sdmac
->pc_to_device
= emi_2_per
;
785 static int sdma_load_context(struct sdma_channel
*sdmac
)
787 struct sdma_engine
*sdma
= sdmac
->sdma
;
788 int channel
= sdmac
->channel
;
790 struct sdma_context_data
*context
= sdma
->context
;
791 struct sdma_buffer_descriptor
*bd0
= sdma
->channel
[0].bd
;
795 if (sdmac
->direction
== DMA_DEV_TO_MEM
) {
796 load_address
= sdmac
->pc_from_device
;
798 load_address
= sdmac
->pc_to_device
;
801 if (load_address
< 0)
804 dev_dbg(sdma
->dev
, "load_address = %d\n", load_address
);
805 dev_dbg(sdma
->dev
, "wml = 0x%08x\n", (u32
)sdmac
->watermark_level
);
806 dev_dbg(sdma
->dev
, "shp_addr = 0x%08x\n", sdmac
->shp_addr
);
807 dev_dbg(sdma
->dev
, "per_addr = 0x%08x\n", sdmac
->per_addr
);
808 dev_dbg(sdma
->dev
, "event_mask0 = 0x%08x\n", (u32
)sdmac
->event_mask
[0]);
809 dev_dbg(sdma
->dev
, "event_mask1 = 0x%08x\n", (u32
)sdmac
->event_mask
[1]);
811 spin_lock_irqsave(&sdma
->channel_0_lock
, flags
);
813 memset(context
, 0, sizeof(*context
));
814 context
->channel_state
.pc
= load_address
;
816 /* Send by context the event mask,base address for peripheral
817 * and watermark level
819 context
->gReg
[0] = sdmac
->event_mask
[1];
820 context
->gReg
[1] = sdmac
->event_mask
[0];
821 context
->gReg
[2] = sdmac
->per_addr
;
822 context
->gReg
[6] = sdmac
->shp_addr
;
823 context
->gReg
[7] = sdmac
->watermark_level
;
825 bd0
->mode
.command
= C0_SETDM
;
826 bd0
->mode
.status
= BD_DONE
| BD_INTR
| BD_WRAP
| BD_EXTD
;
827 bd0
->mode
.count
= sizeof(*context
) / 4;
828 bd0
->buffer_addr
= sdma
->context_phys
;
829 bd0
->ext_buffer_addr
= 2048 + (sizeof(*context
) / 4) * channel
;
830 ret
= sdma_run_channel0(sdma
);
832 spin_unlock_irqrestore(&sdma
->channel_0_lock
, flags
);
837 static struct sdma_channel
*to_sdma_chan(struct dma_chan
*chan
)
839 return container_of(chan
, struct sdma_channel
, chan
);
842 static int sdma_disable_channel(struct dma_chan
*chan
)
844 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
845 struct sdma_engine
*sdma
= sdmac
->sdma
;
846 int channel
= sdmac
->channel
;
848 writel_relaxed(BIT(channel
), sdma
->regs
+ SDMA_H_STATSTOP
);
849 sdmac
->status
= DMA_ERROR
;
854 static int sdma_config_channel(struct dma_chan
*chan
)
856 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
859 sdma_disable_channel(chan
);
861 sdmac
->event_mask
[0] = 0;
862 sdmac
->event_mask
[1] = 0;
866 if (sdmac
->event_id0
) {
867 if (sdmac
->event_id0
>= sdmac
->sdma
->drvdata
->num_events
)
869 sdma_event_enable(sdmac
, sdmac
->event_id0
);
872 switch (sdmac
->peripheral_type
) {
873 case IMX_DMATYPE_DSP
:
874 sdma_config_ownership(sdmac
, false, true, true);
876 case IMX_DMATYPE_MEMORY
:
877 sdma_config_ownership(sdmac
, false, true, false);
880 sdma_config_ownership(sdmac
, true, true, false);
884 sdma_get_pc(sdmac
, sdmac
->peripheral_type
);
886 if ((sdmac
->peripheral_type
!= IMX_DMATYPE_MEMORY
) &&
887 (sdmac
->peripheral_type
!= IMX_DMATYPE_DSP
)) {
888 /* Handle multiple event channels differently */
889 if (sdmac
->event_id1
) {
890 sdmac
->event_mask
[1] = BIT(sdmac
->event_id1
% 32);
891 if (sdmac
->event_id1
> 31)
892 __set_bit(31, &sdmac
->watermark_level
);
893 sdmac
->event_mask
[0] = BIT(sdmac
->event_id0
% 32);
894 if (sdmac
->event_id0
> 31)
895 __set_bit(30, &sdmac
->watermark_level
);
897 __set_bit(sdmac
->event_id0
, sdmac
->event_mask
);
899 /* Watermark Level */
900 sdmac
->watermark_level
|= sdmac
->watermark_level
;
902 sdmac
->shp_addr
= sdmac
->per_address
;
904 sdmac
->watermark_level
= 0; /* FIXME: M3_BASE_ADDRESS */
907 ret
= sdma_load_context(sdmac
);
912 static int sdma_set_channel_priority(struct sdma_channel
*sdmac
,
913 unsigned int priority
)
915 struct sdma_engine
*sdma
= sdmac
->sdma
;
916 int channel
= sdmac
->channel
;
918 if (priority
< MXC_SDMA_MIN_PRIORITY
919 || priority
> MXC_SDMA_MAX_PRIORITY
) {
923 writel_relaxed(priority
, sdma
->regs
+ SDMA_CHNPRI_0
+ 4 * channel
);
928 static int sdma_request_channel(struct sdma_channel
*sdmac
)
930 struct sdma_engine
*sdma
= sdmac
->sdma
;
931 int channel
= sdmac
->channel
;
934 sdmac
->bd
= dma_zalloc_coherent(NULL
, PAGE_SIZE
, &sdmac
->bd_phys
,
941 sdma
->channel_control
[channel
].base_bd_ptr
= sdmac
->bd_phys
;
942 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
944 sdma_set_channel_priority(sdmac
, MXC_SDMA_DEFAULT_PRIORITY
);
951 static dma_cookie_t
sdma_tx_submit(struct dma_async_tx_descriptor
*tx
)
954 struct sdma_channel
*sdmac
= to_sdma_chan(tx
->chan
);
957 spin_lock_irqsave(&sdmac
->lock
, flags
);
959 cookie
= dma_cookie_assign(tx
);
961 spin_unlock_irqrestore(&sdmac
->lock
, flags
);
966 static int sdma_alloc_chan_resources(struct dma_chan
*chan
)
968 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
969 struct imx_dma_data
*data
= chan
->private;
975 switch (data
->priority
) {
979 case DMA_PRIO_MEDIUM
:
988 sdmac
->peripheral_type
= data
->peripheral_type
;
989 sdmac
->event_id0
= data
->dma_request
;
991 clk_enable(sdmac
->sdma
->clk_ipg
);
992 clk_enable(sdmac
->sdma
->clk_ahb
);
994 ret
= sdma_request_channel(sdmac
);
998 ret
= sdma_set_channel_priority(sdmac
, prio
);
1002 dma_async_tx_descriptor_init(&sdmac
->desc
, chan
);
1003 sdmac
->desc
.tx_submit
= sdma_tx_submit
;
1004 /* txd.flags will be overwritten in prep funcs */
1005 sdmac
->desc
.flags
= DMA_CTRL_ACK
;
1010 static void sdma_free_chan_resources(struct dma_chan
*chan
)
1012 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1013 struct sdma_engine
*sdma
= sdmac
->sdma
;
1015 sdma_disable_channel(chan
);
1017 if (sdmac
->event_id0
)
1018 sdma_event_disable(sdmac
, sdmac
->event_id0
);
1019 if (sdmac
->event_id1
)
1020 sdma_event_disable(sdmac
, sdmac
->event_id1
);
1022 sdmac
->event_id0
= 0;
1023 sdmac
->event_id1
= 0;
1025 sdma_set_channel_priority(sdmac
, 0);
1027 dma_free_coherent(NULL
, PAGE_SIZE
, sdmac
->bd
, sdmac
->bd_phys
);
1029 clk_disable(sdma
->clk_ipg
);
1030 clk_disable(sdma
->clk_ahb
);
1033 static struct dma_async_tx_descriptor
*sdma_prep_slave_sg(
1034 struct dma_chan
*chan
, struct scatterlist
*sgl
,
1035 unsigned int sg_len
, enum dma_transfer_direction direction
,
1036 unsigned long flags
, void *context
)
1038 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1039 struct sdma_engine
*sdma
= sdmac
->sdma
;
1041 int channel
= sdmac
->channel
;
1042 struct scatterlist
*sg
;
1044 if (sdmac
->status
== DMA_IN_PROGRESS
)
1046 sdmac
->status
= DMA_IN_PROGRESS
;
1050 sdmac
->buf_tail
= 0;
1052 dev_dbg(sdma
->dev
, "setting up %d entries for channel %d.\n",
1055 sdmac
->direction
= direction
;
1056 ret
= sdma_load_context(sdmac
);
1060 if (sg_len
> NUM_BD
) {
1061 dev_err(sdma
->dev
, "SDMA channel %d: maximum number of sg exceeded: %d > %d\n",
1062 channel
, sg_len
, NUM_BD
);
1067 sdmac
->chn_count
= 0;
1068 for_each_sg(sgl
, sg
, sg_len
, i
) {
1069 struct sdma_buffer_descriptor
*bd
= &sdmac
->bd
[i
];
1072 bd
->buffer_addr
= sg
->dma_address
;
1074 count
= sg_dma_len(sg
);
1076 if (count
> 0xffff) {
1077 dev_err(sdma
->dev
, "SDMA channel %d: maximum bytes for sg entry exceeded: %d > %d\n",
1078 channel
, count
, 0xffff);
1083 bd
->mode
.count
= count
;
1084 sdmac
->chn_count
+= count
;
1086 if (sdmac
->word_size
> DMA_SLAVE_BUSWIDTH_4_BYTES
) {
1091 switch (sdmac
->word_size
) {
1092 case DMA_SLAVE_BUSWIDTH_4_BYTES
:
1093 bd
->mode
.command
= 0;
1094 if (count
& 3 || sg
->dma_address
& 3)
1097 case DMA_SLAVE_BUSWIDTH_2_BYTES
:
1098 bd
->mode
.command
= 2;
1099 if (count
& 1 || sg
->dma_address
& 1)
1102 case DMA_SLAVE_BUSWIDTH_1_BYTE
:
1103 bd
->mode
.command
= 1;
1109 param
= BD_DONE
| BD_EXTD
| BD_CONT
;
1111 if (i
+ 1 == sg_len
) {
1117 dev_dbg(sdma
->dev
, "entry %d: count: %d dma: %#llx %s%s\n",
1118 i
, count
, (u64
)sg
->dma_address
,
1119 param
& BD_WRAP
? "wrap" : "",
1120 param
& BD_INTR
? " intr" : "");
1122 bd
->mode
.status
= param
;
1125 sdmac
->num_bd
= sg_len
;
1126 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
1128 return &sdmac
->desc
;
1130 sdmac
->status
= DMA_ERROR
;
1134 static struct dma_async_tx_descriptor
*sdma_prep_dma_cyclic(
1135 struct dma_chan
*chan
, dma_addr_t dma_addr
, size_t buf_len
,
1136 size_t period_len
, enum dma_transfer_direction direction
,
1137 unsigned long flags
)
1139 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1140 struct sdma_engine
*sdma
= sdmac
->sdma
;
1141 int num_periods
= buf_len
/ period_len
;
1142 int channel
= sdmac
->channel
;
1143 int ret
, i
= 0, buf
= 0;
1145 dev_dbg(sdma
->dev
, "%s channel: %d\n", __func__
, channel
);
1147 if (sdmac
->status
== DMA_IN_PROGRESS
)
1150 sdmac
->status
= DMA_IN_PROGRESS
;
1152 sdmac
->buf_tail
= 0;
1153 sdmac
->period_len
= period_len
;
1155 sdmac
->flags
|= IMX_DMA_SG_LOOP
;
1156 sdmac
->direction
= direction
;
1157 ret
= sdma_load_context(sdmac
);
1161 if (num_periods
> NUM_BD
) {
1162 dev_err(sdma
->dev
, "SDMA channel %d: maximum number of sg exceeded: %d > %d\n",
1163 channel
, num_periods
, NUM_BD
);
1167 if (period_len
> 0xffff) {
1168 dev_err(sdma
->dev
, "SDMA channel %d: maximum period size exceeded: %d > %d\n",
1169 channel
, period_len
, 0xffff);
1173 while (buf
< buf_len
) {
1174 struct sdma_buffer_descriptor
*bd
= &sdmac
->bd
[i
];
1177 bd
->buffer_addr
= dma_addr
;
1179 bd
->mode
.count
= period_len
;
1181 if (sdmac
->word_size
> DMA_SLAVE_BUSWIDTH_4_BYTES
)
1183 if (sdmac
->word_size
== DMA_SLAVE_BUSWIDTH_4_BYTES
)
1184 bd
->mode
.command
= 0;
1186 bd
->mode
.command
= sdmac
->word_size
;
1188 param
= BD_DONE
| BD_EXTD
| BD_CONT
| BD_INTR
;
1189 if (i
+ 1 == num_periods
)
1192 dev_dbg(sdma
->dev
, "entry %d: count: %d dma: %#llx %s%s\n",
1193 i
, period_len
, (u64
)dma_addr
,
1194 param
& BD_WRAP
? "wrap" : "",
1195 param
& BD_INTR
? " intr" : "");
1197 bd
->mode
.status
= param
;
1199 dma_addr
+= period_len
;
1205 sdmac
->num_bd
= num_periods
;
1206 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
1208 return &sdmac
->desc
;
1210 sdmac
->status
= DMA_ERROR
;
1214 static int sdma_config(struct dma_chan
*chan
,
1215 struct dma_slave_config
*dmaengine_cfg
)
1217 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1219 if (dmaengine_cfg
->direction
== DMA_DEV_TO_MEM
) {
1220 sdmac
->per_address
= dmaengine_cfg
->src_addr
;
1221 sdmac
->watermark_level
= dmaengine_cfg
->src_maxburst
*
1222 dmaengine_cfg
->src_addr_width
;
1223 sdmac
->word_size
= dmaengine_cfg
->src_addr_width
;
1225 sdmac
->per_address
= dmaengine_cfg
->dst_addr
;
1226 sdmac
->watermark_level
= dmaengine_cfg
->dst_maxburst
*
1227 dmaengine_cfg
->dst_addr_width
;
1228 sdmac
->word_size
= dmaengine_cfg
->dst_addr_width
;
1230 sdmac
->direction
= dmaengine_cfg
->direction
;
1231 return sdma_config_channel(chan
);
1234 static enum dma_status
sdma_tx_status(struct dma_chan
*chan
,
1235 dma_cookie_t cookie
,
1236 struct dma_tx_state
*txstate
)
1238 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1241 if (sdmac
->flags
& IMX_DMA_SG_LOOP
)
1242 residue
= (sdmac
->num_bd
- sdmac
->buf_tail
) * sdmac
->period_len
;
1244 residue
= sdmac
->chn_count
- sdmac
->chn_real_count
;
1246 dma_set_tx_state(txstate
, chan
->completed_cookie
, chan
->cookie
,
1249 return sdmac
->status
;
1252 static void sdma_issue_pending(struct dma_chan
*chan
)
1254 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1255 struct sdma_engine
*sdma
= sdmac
->sdma
;
1257 if (sdmac
->status
== DMA_IN_PROGRESS
)
1258 sdma_enable_channel(sdma
, sdmac
->channel
);
1261 #define SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1 34
1262 #define SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V2 38
1263 #define SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V3 41
1265 static void sdma_add_scripts(struct sdma_engine
*sdma
,
1266 const struct sdma_script_start_addrs
*addr
)
1268 s32
*addr_arr
= (u32
*)addr
;
1269 s32
*saddr_arr
= (u32
*)sdma
->script_addrs
;
1272 /* use the default firmware in ROM if missing external firmware */
1273 if (!sdma
->script_number
)
1274 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
;
1276 for (i
= 0; i
< sdma
->script_number
; i
++)
1277 if (addr_arr
[i
] > 0)
1278 saddr_arr
[i
] = addr_arr
[i
];
1281 static void sdma_load_firmware(const struct firmware
*fw
, void *context
)
1283 struct sdma_engine
*sdma
= context
;
1284 const struct sdma_firmware_header
*header
;
1285 const struct sdma_script_start_addrs
*addr
;
1286 unsigned short *ram_code
;
1289 dev_info(sdma
->dev
, "external firmware not found, using ROM firmware\n");
1290 /* In this case we just use the ROM firmware. */
1294 if (fw
->size
< sizeof(*header
))
1297 header
= (struct sdma_firmware_header
*)fw
->data
;
1299 if (header
->magic
!= SDMA_FIRMWARE_MAGIC
)
1301 if (header
->ram_code_start
+ header
->ram_code_size
> fw
->size
)
1303 switch (header
->version_major
) {
1305 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
;
1308 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V2
;
1311 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V3
;
1314 dev_err(sdma
->dev
, "unknown firmware version\n");
1318 addr
= (void *)header
+ header
->script_addrs_start
;
1319 ram_code
= (void *)header
+ header
->ram_code_start
;
1321 clk_enable(sdma
->clk_ipg
);
1322 clk_enable(sdma
->clk_ahb
);
1323 /* download the RAM image for SDMA */
1324 sdma_load_script(sdma
, ram_code
,
1325 header
->ram_code_size
,
1326 addr
->ram_code_start_addr
);
1327 clk_disable(sdma
->clk_ipg
);
1328 clk_disable(sdma
->clk_ahb
);
1330 sdma_add_scripts(sdma
, addr
);
1332 dev_info(sdma
->dev
, "loaded firmware %d.%d\n",
1333 header
->version_major
,
1334 header
->version_minor
);
1337 release_firmware(fw
);
1340 static int sdma_get_firmware(struct sdma_engine
*sdma
,
1341 const char *fw_name
)
1345 ret
= request_firmware_nowait(THIS_MODULE
,
1346 FW_ACTION_HOTPLUG
, fw_name
, sdma
->dev
,
1347 GFP_KERNEL
, sdma
, sdma_load_firmware
);
1352 static int sdma_init(struct sdma_engine
*sdma
)
1355 dma_addr_t ccb_phys
;
1357 clk_enable(sdma
->clk_ipg
);
1358 clk_enable(sdma
->clk_ahb
);
1360 /* Be sure SDMA has not started yet */
1361 writel_relaxed(0, sdma
->regs
+ SDMA_H_C0PTR
);
1363 sdma
->channel_control
= dma_alloc_coherent(NULL
,
1364 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
) +
1365 sizeof(struct sdma_context_data
),
1366 &ccb_phys
, GFP_KERNEL
);
1368 if (!sdma
->channel_control
) {
1373 sdma
->context
= (void *)sdma
->channel_control
+
1374 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
);
1375 sdma
->context_phys
= ccb_phys
+
1376 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
);
1378 /* Zero-out the CCB structures array just allocated */
1379 memset(sdma
->channel_control
, 0,
1380 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
));
1382 /* disable all channels */
1383 for (i
= 0; i
< sdma
->drvdata
->num_events
; i
++)
1384 writel_relaxed(0, sdma
->regs
+ chnenbl_ofs(sdma
, i
));
1386 /* All channels have priority 0 */
1387 for (i
= 0; i
< MAX_DMA_CHANNELS
; i
++)
1388 writel_relaxed(0, sdma
->regs
+ SDMA_CHNPRI_0
+ i
* 4);
1390 ret
= sdma_request_channel(&sdma
->channel
[0]);
1394 sdma_config_ownership(&sdma
->channel
[0], false, true, false);
1396 /* Set Command Channel (Channel Zero) */
1397 writel_relaxed(0x4050, sdma
->regs
+ SDMA_CHN0ADDR
);
1399 /* Set bits of CONFIG register but with static context switching */
1400 /* FIXME: Check whether to set ACR bit depending on clock ratios */
1401 writel_relaxed(0, sdma
->regs
+ SDMA_H_CONFIG
);
1403 writel_relaxed(ccb_phys
, sdma
->regs
+ SDMA_H_C0PTR
);
1405 /* Initializes channel's priorities */
1406 sdma_set_channel_priority(&sdma
->channel
[0], 7);
1408 clk_disable(sdma
->clk_ipg
);
1409 clk_disable(sdma
->clk_ahb
);
1414 clk_disable(sdma
->clk_ipg
);
1415 clk_disable(sdma
->clk_ahb
);
1416 dev_err(sdma
->dev
, "initialisation failed with %d\n", ret
);
1420 static bool sdma_filter_fn(struct dma_chan
*chan
, void *fn_param
)
1422 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1423 struct imx_dma_data
*data
= fn_param
;
1425 if (!imx_dma_is_general_purpose(chan
))
1428 sdmac
->data
= *data
;
1429 chan
->private = &sdmac
->data
;
1434 static struct dma_chan
*sdma_xlate(struct of_phandle_args
*dma_spec
,
1435 struct of_dma
*ofdma
)
1437 struct sdma_engine
*sdma
= ofdma
->of_dma_data
;
1438 dma_cap_mask_t mask
= sdma
->dma_device
.cap_mask
;
1439 struct imx_dma_data data
;
1441 if (dma_spec
->args_count
!= 3)
1444 data
.dma_request
= dma_spec
->args
[0];
1445 data
.peripheral_type
= dma_spec
->args
[1];
1446 data
.priority
= dma_spec
->args
[2];
1448 return dma_request_channel(mask
, sdma_filter_fn
, &data
);
1451 static int sdma_probe(struct platform_device
*pdev
)
1453 const struct of_device_id
*of_id
=
1454 of_match_device(sdma_dt_ids
, &pdev
->dev
);
1455 struct device_node
*np
= pdev
->dev
.of_node
;
1456 const char *fw_name
;
1459 struct resource
*iores
;
1460 struct sdma_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
1462 struct sdma_engine
*sdma
;
1464 const struct sdma_driver_data
*drvdata
= NULL
;
1467 drvdata
= of_id
->data
;
1468 else if (pdev
->id_entry
)
1469 drvdata
= (void *)pdev
->id_entry
->driver_data
;
1472 dev_err(&pdev
->dev
, "unable to find driver data\n");
1476 ret
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
1480 sdma
= devm_kzalloc(&pdev
->dev
, sizeof(*sdma
), GFP_KERNEL
);
1484 spin_lock_init(&sdma
->channel_0_lock
);
1486 sdma
->dev
= &pdev
->dev
;
1487 sdma
->drvdata
= drvdata
;
1489 irq
= platform_get_irq(pdev
, 0);
1493 iores
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1494 sdma
->regs
= devm_ioremap_resource(&pdev
->dev
, iores
);
1495 if (IS_ERR(sdma
->regs
))
1496 return PTR_ERR(sdma
->regs
);
1498 sdma
->clk_ipg
= devm_clk_get(&pdev
->dev
, "ipg");
1499 if (IS_ERR(sdma
->clk_ipg
))
1500 return PTR_ERR(sdma
->clk_ipg
);
1502 sdma
->clk_ahb
= devm_clk_get(&pdev
->dev
, "ahb");
1503 if (IS_ERR(sdma
->clk_ahb
))
1504 return PTR_ERR(sdma
->clk_ahb
);
1506 clk_prepare(sdma
->clk_ipg
);
1507 clk_prepare(sdma
->clk_ahb
);
1509 ret
= devm_request_irq(&pdev
->dev
, irq
, sdma_int_handler
, 0, "sdma",
1514 sdma
->script_addrs
= kzalloc(sizeof(*sdma
->script_addrs
), GFP_KERNEL
);
1515 if (!sdma
->script_addrs
)
1518 /* initially no scripts available */
1519 saddr_arr
= (s32
*)sdma
->script_addrs
;
1520 for (i
= 0; i
< SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
; i
++)
1521 saddr_arr
[i
] = -EINVAL
;
1523 dma_cap_set(DMA_SLAVE
, sdma
->dma_device
.cap_mask
);
1524 dma_cap_set(DMA_CYCLIC
, sdma
->dma_device
.cap_mask
);
1526 INIT_LIST_HEAD(&sdma
->dma_device
.channels
);
1527 /* Initialize channel parameters */
1528 for (i
= 0; i
< MAX_DMA_CHANNELS
; i
++) {
1529 struct sdma_channel
*sdmac
= &sdma
->channel
[i
];
1532 spin_lock_init(&sdmac
->lock
);
1534 sdmac
->chan
.device
= &sdma
->dma_device
;
1535 dma_cookie_init(&sdmac
->chan
);
1538 tasklet_init(&sdmac
->tasklet
, sdma_tasklet
,
1539 (unsigned long) sdmac
);
1541 * Add the channel to the DMAC list. Do not add channel 0 though
1542 * because we need it internally in the SDMA driver. This also means
1543 * that channel 0 in dmaengine counting matches sdma channel 1.
1546 list_add_tail(&sdmac
->chan
.device_node
,
1547 &sdma
->dma_device
.channels
);
1550 ret
= sdma_init(sdma
);
1554 if (sdma
->drvdata
->script_addrs
)
1555 sdma_add_scripts(sdma
, sdma
->drvdata
->script_addrs
);
1556 if (pdata
&& pdata
->script_addrs
)
1557 sdma_add_scripts(sdma
, pdata
->script_addrs
);
1560 ret
= sdma_get_firmware(sdma
, pdata
->fw_name
);
1562 dev_warn(&pdev
->dev
, "failed to get firmware from platform data\n");
1565 * Because that device tree does not encode ROM script address,
1566 * the RAM script in firmware is mandatory for device tree
1567 * probe, otherwise it fails.
1569 ret
= of_property_read_string(np
, "fsl,sdma-ram-script-name",
1572 dev_warn(&pdev
->dev
, "failed to get firmware name\n");
1574 ret
= sdma_get_firmware(sdma
, fw_name
);
1576 dev_warn(&pdev
->dev
, "failed to get firmware from device tree\n");
1580 sdma
->dma_device
.dev
= &pdev
->dev
;
1582 sdma
->dma_device
.device_alloc_chan_resources
= sdma_alloc_chan_resources
;
1583 sdma
->dma_device
.device_free_chan_resources
= sdma_free_chan_resources
;
1584 sdma
->dma_device
.device_tx_status
= sdma_tx_status
;
1585 sdma
->dma_device
.device_prep_slave_sg
= sdma_prep_slave_sg
;
1586 sdma
->dma_device
.device_prep_dma_cyclic
= sdma_prep_dma_cyclic
;
1587 sdma
->dma_device
.device_config
= sdma_config
;
1588 sdma
->dma_device
.device_terminate_all
= sdma_disable_channel
;
1589 sdma
->dma_device
.src_addr_widths
= BIT(DMA_SLAVE_BUSWIDTH_4_BYTES
);
1590 sdma
->dma_device
.dst_addr_widths
= BIT(DMA_SLAVE_BUSWIDTH_4_BYTES
);
1591 sdma
->dma_device
.directions
= BIT(DMA_DEV_TO_MEM
) | BIT(DMA_MEM_TO_DEV
);
1592 sdma
->dma_device
.residue_granularity
= DMA_RESIDUE_GRANULARITY_BURST
;
1593 sdma
->dma_device
.device_issue_pending
= sdma_issue_pending
;
1594 sdma
->dma_device
.dev
->dma_parms
= &sdma
->dma_parms
;
1595 dma_set_max_seg_size(sdma
->dma_device
.dev
, 65535);
1597 platform_set_drvdata(pdev
, sdma
);
1599 ret
= dma_async_device_register(&sdma
->dma_device
);
1601 dev_err(&pdev
->dev
, "unable to register\n");
1606 ret
= of_dma_controller_register(np
, sdma_xlate
, sdma
);
1608 dev_err(&pdev
->dev
, "failed to register controller\n");
1613 dev_info(sdma
->dev
, "initialized\n");
1618 dma_async_device_unregister(&sdma
->dma_device
);
1620 kfree(sdma
->script_addrs
);
1624 static int sdma_remove(struct platform_device
*pdev
)
1626 struct sdma_engine
*sdma
= platform_get_drvdata(pdev
);
1629 dma_async_device_unregister(&sdma
->dma_device
);
1630 kfree(sdma
->script_addrs
);
1631 /* Kill the tasklet */
1632 for (i
= 0; i
< MAX_DMA_CHANNELS
; i
++) {
1633 struct sdma_channel
*sdmac
= &sdma
->channel
[i
];
1635 tasklet_kill(&sdmac
->tasklet
);
1638 platform_set_drvdata(pdev
, NULL
);
1639 dev_info(&pdev
->dev
, "Removed...\n");
1643 static struct platform_driver sdma_driver
= {
1646 .of_match_table
= sdma_dt_ids
,
1648 .id_table
= sdma_devtypes
,
1649 .remove
= sdma_remove
,
1650 .probe
= sdma_probe
,
1653 module_platform_driver(sdma_driver
);
1655 MODULE_AUTHOR("Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>");
1656 MODULE_DESCRIPTION("i.MX SDMA driver");
1657 MODULE_LICENSE("GPL");