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 struct sdma_buffer_descriptor
*bd
;
260 unsigned int pc_from_device
, pc_to_device
;
262 dma_addr_t per_address
;
263 unsigned long event_mask
[2];
264 unsigned long watermark_level
;
265 u32 shp_addr
, per_addr
;
266 struct dma_chan chan
;
268 struct dma_async_tx_descriptor desc
;
269 enum dma_status status
;
270 unsigned int chn_count
;
271 unsigned int chn_real_count
;
272 struct tasklet_struct tasklet
;
275 #define IMX_DMA_SG_LOOP BIT(0)
277 #define MAX_DMA_CHANNELS 32
278 #define MXC_SDMA_DEFAULT_PRIORITY 1
279 #define MXC_SDMA_MIN_PRIORITY 1
280 #define MXC_SDMA_MAX_PRIORITY 7
282 #define SDMA_FIRMWARE_MAGIC 0x414d4453
285 * struct sdma_firmware_header - Layout of the firmware image
288 * @version_major increased whenever layout of struct sdma_script_start_addrs
290 * @version_minor firmware minor version (for binary compatible changes)
291 * @script_addrs_start offset of struct sdma_script_start_addrs in this image
292 * @num_script_addrs Number of script addresses in this image
293 * @ram_code_start offset of SDMA ram image in this firmware image
294 * @ram_code_size size of SDMA ram image
295 * @script_addrs Stores the start address of the SDMA scripts
296 * (in SDMA memory space)
298 struct sdma_firmware_header
{
302 u32 script_addrs_start
;
303 u32 num_script_addrs
;
308 struct sdma_driver_data
{
311 struct sdma_script_start_addrs
*script_addrs
;
316 struct device_dma_parameters dma_parms
;
317 struct sdma_channel channel
[MAX_DMA_CHANNELS
];
318 struct sdma_channel_control
*channel_control
;
320 struct sdma_context_data
*context
;
321 dma_addr_t context_phys
;
322 struct dma_device dma_device
;
325 spinlock_t channel_0_lock
;
327 struct sdma_script_start_addrs
*script_addrs
;
328 const struct sdma_driver_data
*drvdata
;
331 static struct sdma_driver_data sdma_imx31
= {
332 .chnenbl0
= SDMA_CHNENBL0_IMX31
,
336 static struct sdma_script_start_addrs sdma_script_imx25
= {
338 .uart_2_mcu_addr
= 904,
339 .per_2_app_addr
= 1255,
340 .mcu_2_app_addr
= 834,
341 .uartsh_2_mcu_addr
= 1120,
342 .per_2_shp_addr
= 1329,
343 .mcu_2_shp_addr
= 1048,
344 .ata_2_mcu_addr
= 1560,
345 .mcu_2_ata_addr
= 1479,
346 .app_2_per_addr
= 1189,
347 .app_2_mcu_addr
= 770,
348 .shp_2_per_addr
= 1407,
349 .shp_2_mcu_addr
= 979,
352 static struct sdma_driver_data sdma_imx25
= {
353 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
355 .script_addrs
= &sdma_script_imx25
,
358 static struct sdma_driver_data sdma_imx35
= {
359 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
363 static struct sdma_script_start_addrs sdma_script_imx51
= {
365 .uart_2_mcu_addr
= 817,
366 .mcu_2_app_addr
= 747,
367 .mcu_2_shp_addr
= 961,
368 .ata_2_mcu_addr
= 1473,
369 .mcu_2_ata_addr
= 1392,
370 .app_2_per_addr
= 1033,
371 .app_2_mcu_addr
= 683,
372 .shp_2_per_addr
= 1251,
373 .shp_2_mcu_addr
= 892,
376 static struct sdma_driver_data sdma_imx51
= {
377 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
379 .script_addrs
= &sdma_script_imx51
,
382 static struct sdma_script_start_addrs sdma_script_imx53
= {
384 .app_2_mcu_addr
= 683,
385 .mcu_2_app_addr
= 747,
386 .uart_2_mcu_addr
= 817,
387 .shp_2_mcu_addr
= 891,
388 .mcu_2_shp_addr
= 960,
389 .uartsh_2_mcu_addr
= 1032,
390 .spdif_2_mcu_addr
= 1100,
391 .mcu_2_spdif_addr
= 1134,
392 .firi_2_mcu_addr
= 1193,
393 .mcu_2_firi_addr
= 1290,
396 static struct sdma_driver_data sdma_imx53
= {
397 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
399 .script_addrs
= &sdma_script_imx53
,
402 static struct sdma_script_start_addrs sdma_script_imx6q
= {
404 .uart_2_mcu_addr
= 817,
405 .mcu_2_app_addr
= 747,
406 .per_2_per_addr
= 6331,
407 .uartsh_2_mcu_addr
= 1032,
408 .mcu_2_shp_addr
= 960,
409 .app_2_mcu_addr
= 683,
410 .shp_2_mcu_addr
= 891,
411 .spdif_2_mcu_addr
= 1100,
412 .mcu_2_spdif_addr
= 1134,
415 static struct sdma_driver_data sdma_imx6q
= {
416 .chnenbl0
= SDMA_CHNENBL0_IMX35
,
418 .script_addrs
= &sdma_script_imx6q
,
421 static struct platform_device_id sdma_devtypes
[] = {
423 .name
= "imx25-sdma",
424 .driver_data
= (unsigned long)&sdma_imx25
,
426 .name
= "imx31-sdma",
427 .driver_data
= (unsigned long)&sdma_imx31
,
429 .name
= "imx35-sdma",
430 .driver_data
= (unsigned long)&sdma_imx35
,
432 .name
= "imx51-sdma",
433 .driver_data
= (unsigned long)&sdma_imx51
,
435 .name
= "imx53-sdma",
436 .driver_data
= (unsigned long)&sdma_imx53
,
438 .name
= "imx6q-sdma",
439 .driver_data
= (unsigned long)&sdma_imx6q
,
444 MODULE_DEVICE_TABLE(platform
, sdma_devtypes
);
446 static const struct of_device_id sdma_dt_ids
[] = {
447 { .compatible
= "fsl,imx6q-sdma", .data
= &sdma_imx6q
, },
448 { .compatible
= "fsl,imx53-sdma", .data
= &sdma_imx53
, },
449 { .compatible
= "fsl,imx51-sdma", .data
= &sdma_imx51
, },
450 { .compatible
= "fsl,imx35-sdma", .data
= &sdma_imx35
, },
451 { .compatible
= "fsl,imx31-sdma", .data
= &sdma_imx31
, },
454 MODULE_DEVICE_TABLE(of
, sdma_dt_ids
);
456 #define SDMA_H_CONFIG_DSPDMA BIT(12) /* indicates if the DSPDMA is used */
457 #define SDMA_H_CONFIG_RTD_PINS BIT(11) /* indicates if Real-Time Debug pins are enabled */
458 #define SDMA_H_CONFIG_ACR BIT(4) /* indicates if AHB freq /core freq = 2 or 1 */
459 #define SDMA_H_CONFIG_CSM (3) /* indicates which context switch mode is selected*/
461 static inline u32
chnenbl_ofs(struct sdma_engine
*sdma
, unsigned int event
)
463 u32 chnenbl0
= sdma
->drvdata
->chnenbl0
;
464 return chnenbl0
+ event
* 4;
467 static int sdma_config_ownership(struct sdma_channel
*sdmac
,
468 bool event_override
, bool mcu_override
, bool dsp_override
)
470 struct sdma_engine
*sdma
= sdmac
->sdma
;
471 int channel
= sdmac
->channel
;
472 unsigned long evt
, mcu
, dsp
;
474 if (event_override
&& mcu_override
&& dsp_override
)
477 evt
= readl_relaxed(sdma
->regs
+ SDMA_H_EVTOVR
);
478 mcu
= readl_relaxed(sdma
->regs
+ SDMA_H_HOSTOVR
);
479 dsp
= readl_relaxed(sdma
->regs
+ SDMA_H_DSPOVR
);
482 __clear_bit(channel
, &dsp
);
484 __set_bit(channel
, &dsp
);
487 __clear_bit(channel
, &evt
);
489 __set_bit(channel
, &evt
);
492 __clear_bit(channel
, &mcu
);
494 __set_bit(channel
, &mcu
);
496 writel_relaxed(evt
, sdma
->regs
+ SDMA_H_EVTOVR
);
497 writel_relaxed(mcu
, sdma
->regs
+ SDMA_H_HOSTOVR
);
498 writel_relaxed(dsp
, sdma
->regs
+ SDMA_H_DSPOVR
);
503 static void sdma_enable_channel(struct sdma_engine
*sdma
, int channel
)
505 writel(BIT(channel
), sdma
->regs
+ SDMA_H_START
);
509 * sdma_run_channel0 - run a channel and wait till it's done
511 static int sdma_run_channel0(struct sdma_engine
*sdma
)
514 unsigned long timeout
= 500;
516 sdma_enable_channel(sdma
, 0);
518 while (!(ret
= readl_relaxed(sdma
->regs
+ SDMA_H_INTR
) & 1)) {
525 /* Clear the interrupt status */
526 writel_relaxed(ret
, sdma
->regs
+ SDMA_H_INTR
);
528 dev_err(sdma
->dev
, "Timeout waiting for CH0 ready\n");
531 return ret
? 0 : -ETIMEDOUT
;
534 static int sdma_load_script(struct sdma_engine
*sdma
, void *buf
, int size
,
537 struct sdma_buffer_descriptor
*bd0
= sdma
->channel
[0].bd
;
543 buf_virt
= dma_alloc_coherent(NULL
,
545 &buf_phys
, GFP_KERNEL
);
550 spin_lock_irqsave(&sdma
->channel_0_lock
, flags
);
552 bd0
->mode
.command
= C0_SETPM
;
553 bd0
->mode
.status
= BD_DONE
| BD_INTR
| BD_WRAP
| BD_EXTD
;
554 bd0
->mode
.count
= size
/ 2;
555 bd0
->buffer_addr
= buf_phys
;
556 bd0
->ext_buffer_addr
= address
;
558 memcpy(buf_virt
, buf
, size
);
560 ret
= sdma_run_channel0(sdma
);
562 spin_unlock_irqrestore(&sdma
->channel_0_lock
, flags
);
564 dma_free_coherent(NULL
, size
, buf_virt
, buf_phys
);
569 static void sdma_event_enable(struct sdma_channel
*sdmac
, unsigned int event
)
571 struct sdma_engine
*sdma
= sdmac
->sdma
;
572 int channel
= sdmac
->channel
;
574 u32 chnenbl
= chnenbl_ofs(sdma
, event
);
576 val
= readl_relaxed(sdma
->regs
+ chnenbl
);
577 __set_bit(channel
, &val
);
578 writel_relaxed(val
, sdma
->regs
+ chnenbl
);
581 static void sdma_event_disable(struct sdma_channel
*sdmac
, unsigned int event
)
583 struct sdma_engine
*sdma
= sdmac
->sdma
;
584 int channel
= sdmac
->channel
;
585 u32 chnenbl
= chnenbl_ofs(sdma
, event
);
588 val
= readl_relaxed(sdma
->regs
+ chnenbl
);
589 __clear_bit(channel
, &val
);
590 writel_relaxed(val
, sdma
->regs
+ chnenbl
);
593 static void sdma_handle_channel_loop(struct sdma_channel
*sdmac
)
595 struct sdma_buffer_descriptor
*bd
;
598 * loop mode. Iterate over descriptors, re-setup them and
599 * call callback function.
602 bd
= &sdmac
->bd
[sdmac
->buf_tail
];
604 if (bd
->mode
.status
& BD_DONE
)
607 if (bd
->mode
.status
& BD_RROR
)
608 sdmac
->status
= DMA_ERROR
;
610 sdmac
->status
= DMA_IN_PROGRESS
;
612 bd
->mode
.status
|= BD_DONE
;
614 sdmac
->buf_tail
%= sdmac
->num_bd
;
616 if (sdmac
->desc
.callback
)
617 sdmac
->desc
.callback(sdmac
->desc
.callback_param
);
621 static void mxc_sdma_handle_channel_normal(struct sdma_channel
*sdmac
)
623 struct sdma_buffer_descriptor
*bd
;
626 sdmac
->chn_real_count
= 0;
628 * non loop mode. Iterate over all descriptors, collect
629 * errors and call callback function
631 for (i
= 0; i
< sdmac
->num_bd
; i
++) {
634 if (bd
->mode
.status
& (BD_DONE
| BD_RROR
))
636 sdmac
->chn_real_count
+= bd
->mode
.count
;
640 sdmac
->status
= DMA_ERROR
;
642 sdmac
->status
= DMA_COMPLETE
;
644 dma_cookie_complete(&sdmac
->desc
);
645 if (sdmac
->desc
.callback
)
646 sdmac
->desc
.callback(sdmac
->desc
.callback_param
);
649 static void sdma_tasklet(unsigned long data
)
651 struct sdma_channel
*sdmac
= (struct sdma_channel
*) data
;
653 if (sdmac
->flags
& IMX_DMA_SG_LOOP
)
654 sdma_handle_channel_loop(sdmac
);
656 mxc_sdma_handle_channel_normal(sdmac
);
659 static irqreturn_t
sdma_int_handler(int irq
, void *dev_id
)
661 struct sdma_engine
*sdma
= dev_id
;
664 stat
= readl_relaxed(sdma
->regs
+ SDMA_H_INTR
);
665 /* not interested in channel 0 interrupts */
667 writel_relaxed(stat
, sdma
->regs
+ SDMA_H_INTR
);
670 int channel
= fls(stat
) - 1;
671 struct sdma_channel
*sdmac
= &sdma
->channel
[channel
];
673 tasklet_schedule(&sdmac
->tasklet
);
675 __clear_bit(channel
, &stat
);
682 * sets the pc of SDMA script according to the peripheral type
684 static void sdma_get_pc(struct sdma_channel
*sdmac
,
685 enum sdma_peripheral_type peripheral_type
)
687 struct sdma_engine
*sdma
= sdmac
->sdma
;
688 int per_2_emi
= 0, emi_2_per
= 0;
690 * These are needed once we start to support transfers between
691 * two peripherals or memory-to-memory transfers
693 int per_2_per
= 0, emi_2_emi
= 0;
695 sdmac
->pc_from_device
= 0;
696 sdmac
->pc_to_device
= 0;
698 switch (peripheral_type
) {
699 case IMX_DMATYPE_MEMORY
:
700 emi_2_emi
= sdma
->script_addrs
->ap_2_ap_addr
;
702 case IMX_DMATYPE_DSP
:
703 emi_2_per
= sdma
->script_addrs
->bp_2_ap_addr
;
704 per_2_emi
= sdma
->script_addrs
->ap_2_bp_addr
;
706 case IMX_DMATYPE_FIRI
:
707 per_2_emi
= sdma
->script_addrs
->firi_2_mcu_addr
;
708 emi_2_per
= sdma
->script_addrs
->mcu_2_firi_addr
;
710 case IMX_DMATYPE_UART
:
711 per_2_emi
= sdma
->script_addrs
->uart_2_mcu_addr
;
712 emi_2_per
= sdma
->script_addrs
->mcu_2_app_addr
;
714 case IMX_DMATYPE_UART_SP
:
715 per_2_emi
= sdma
->script_addrs
->uartsh_2_mcu_addr
;
716 emi_2_per
= sdma
->script_addrs
->mcu_2_shp_addr
;
718 case IMX_DMATYPE_ATA
:
719 per_2_emi
= sdma
->script_addrs
->ata_2_mcu_addr
;
720 emi_2_per
= sdma
->script_addrs
->mcu_2_ata_addr
;
722 case IMX_DMATYPE_CSPI
:
723 case IMX_DMATYPE_EXT
:
724 case IMX_DMATYPE_SSI
:
725 per_2_emi
= sdma
->script_addrs
->app_2_mcu_addr
;
726 emi_2_per
= sdma
->script_addrs
->mcu_2_app_addr
;
728 case IMX_DMATYPE_SSI_DUAL
:
729 per_2_emi
= sdma
->script_addrs
->ssish_2_mcu_addr
;
730 emi_2_per
= sdma
->script_addrs
->mcu_2_ssish_addr
;
732 case IMX_DMATYPE_SSI_SP
:
733 case IMX_DMATYPE_MMC
:
734 case IMX_DMATYPE_SDHC
:
735 case IMX_DMATYPE_CSPI_SP
:
736 case IMX_DMATYPE_ESAI
:
737 case IMX_DMATYPE_MSHC_SP
:
738 per_2_emi
= sdma
->script_addrs
->shp_2_mcu_addr
;
739 emi_2_per
= sdma
->script_addrs
->mcu_2_shp_addr
;
741 case IMX_DMATYPE_ASRC
:
742 per_2_emi
= sdma
->script_addrs
->asrc_2_mcu_addr
;
743 emi_2_per
= sdma
->script_addrs
->asrc_2_mcu_addr
;
744 per_2_per
= sdma
->script_addrs
->per_2_per_addr
;
746 case IMX_DMATYPE_MSHC
:
747 per_2_emi
= sdma
->script_addrs
->mshc_2_mcu_addr
;
748 emi_2_per
= sdma
->script_addrs
->mcu_2_mshc_addr
;
750 case IMX_DMATYPE_CCM
:
751 per_2_emi
= sdma
->script_addrs
->dptc_dvfs_addr
;
753 case IMX_DMATYPE_SPDIF
:
754 per_2_emi
= sdma
->script_addrs
->spdif_2_mcu_addr
;
755 emi_2_per
= sdma
->script_addrs
->mcu_2_spdif_addr
;
757 case IMX_DMATYPE_IPU_MEMORY
:
758 emi_2_per
= sdma
->script_addrs
->ext_mem_2_ipu_addr
;
764 sdmac
->pc_from_device
= per_2_emi
;
765 sdmac
->pc_to_device
= emi_2_per
;
768 static int sdma_load_context(struct sdma_channel
*sdmac
)
770 struct sdma_engine
*sdma
= sdmac
->sdma
;
771 int channel
= sdmac
->channel
;
773 struct sdma_context_data
*context
= sdma
->context
;
774 struct sdma_buffer_descriptor
*bd0
= sdma
->channel
[0].bd
;
778 if (sdmac
->direction
== DMA_DEV_TO_MEM
) {
779 load_address
= sdmac
->pc_from_device
;
781 load_address
= sdmac
->pc_to_device
;
784 if (load_address
< 0)
787 dev_dbg(sdma
->dev
, "load_address = %d\n", load_address
);
788 dev_dbg(sdma
->dev
, "wml = 0x%08x\n", (u32
)sdmac
->watermark_level
);
789 dev_dbg(sdma
->dev
, "shp_addr = 0x%08x\n", sdmac
->shp_addr
);
790 dev_dbg(sdma
->dev
, "per_addr = 0x%08x\n", sdmac
->per_addr
);
791 dev_dbg(sdma
->dev
, "event_mask0 = 0x%08x\n", (u32
)sdmac
->event_mask
[0]);
792 dev_dbg(sdma
->dev
, "event_mask1 = 0x%08x\n", (u32
)sdmac
->event_mask
[1]);
794 spin_lock_irqsave(&sdma
->channel_0_lock
, flags
);
796 memset(context
, 0, sizeof(*context
));
797 context
->channel_state
.pc
= load_address
;
799 /* Send by context the event mask,base address for peripheral
800 * and watermark level
802 context
->gReg
[0] = sdmac
->event_mask
[1];
803 context
->gReg
[1] = sdmac
->event_mask
[0];
804 context
->gReg
[2] = sdmac
->per_addr
;
805 context
->gReg
[6] = sdmac
->shp_addr
;
806 context
->gReg
[7] = sdmac
->watermark_level
;
808 bd0
->mode
.command
= C0_SETDM
;
809 bd0
->mode
.status
= BD_DONE
| BD_INTR
| BD_WRAP
| BD_EXTD
;
810 bd0
->mode
.count
= sizeof(*context
) / 4;
811 bd0
->buffer_addr
= sdma
->context_phys
;
812 bd0
->ext_buffer_addr
= 2048 + (sizeof(*context
) / 4) * channel
;
813 ret
= sdma_run_channel0(sdma
);
815 spin_unlock_irqrestore(&sdma
->channel_0_lock
, flags
);
820 static void sdma_disable_channel(struct sdma_channel
*sdmac
)
822 struct sdma_engine
*sdma
= sdmac
->sdma
;
823 int channel
= sdmac
->channel
;
825 writel_relaxed(BIT(channel
), sdma
->regs
+ SDMA_H_STATSTOP
);
826 sdmac
->status
= DMA_ERROR
;
829 static int sdma_config_channel(struct sdma_channel
*sdmac
)
833 sdma_disable_channel(sdmac
);
835 sdmac
->event_mask
[0] = 0;
836 sdmac
->event_mask
[1] = 0;
840 if (sdmac
->event_id0
) {
841 if (sdmac
->event_id0
>= sdmac
->sdma
->drvdata
->num_events
)
843 sdma_event_enable(sdmac
, sdmac
->event_id0
);
846 switch (sdmac
->peripheral_type
) {
847 case IMX_DMATYPE_DSP
:
848 sdma_config_ownership(sdmac
, false, true, true);
850 case IMX_DMATYPE_MEMORY
:
851 sdma_config_ownership(sdmac
, false, true, false);
854 sdma_config_ownership(sdmac
, true, true, false);
858 sdma_get_pc(sdmac
, sdmac
->peripheral_type
);
860 if ((sdmac
->peripheral_type
!= IMX_DMATYPE_MEMORY
) &&
861 (sdmac
->peripheral_type
!= IMX_DMATYPE_DSP
)) {
862 /* Handle multiple event channels differently */
863 if (sdmac
->event_id1
) {
864 sdmac
->event_mask
[1] = BIT(sdmac
->event_id1
% 32);
865 if (sdmac
->event_id1
> 31)
866 __set_bit(31, &sdmac
->watermark_level
);
867 sdmac
->event_mask
[0] = BIT(sdmac
->event_id0
% 32);
868 if (sdmac
->event_id0
> 31)
869 __set_bit(30, &sdmac
->watermark_level
);
871 __set_bit(sdmac
->event_id0
, sdmac
->event_mask
);
873 /* Watermark Level */
874 sdmac
->watermark_level
|= sdmac
->watermark_level
;
876 sdmac
->shp_addr
= sdmac
->per_address
;
878 sdmac
->watermark_level
= 0; /* FIXME: M3_BASE_ADDRESS */
881 ret
= sdma_load_context(sdmac
);
886 static int sdma_set_channel_priority(struct sdma_channel
*sdmac
,
887 unsigned int priority
)
889 struct sdma_engine
*sdma
= sdmac
->sdma
;
890 int channel
= sdmac
->channel
;
892 if (priority
< MXC_SDMA_MIN_PRIORITY
893 || priority
> MXC_SDMA_MAX_PRIORITY
) {
897 writel_relaxed(priority
, sdma
->regs
+ SDMA_CHNPRI_0
+ 4 * channel
);
902 static int sdma_request_channel(struct sdma_channel
*sdmac
)
904 struct sdma_engine
*sdma
= sdmac
->sdma
;
905 int channel
= sdmac
->channel
;
908 sdmac
->bd
= dma_alloc_coherent(NULL
, PAGE_SIZE
, &sdmac
->bd_phys
, GFP_KERNEL
);
914 memset(sdmac
->bd
, 0, PAGE_SIZE
);
916 sdma
->channel_control
[channel
].base_bd_ptr
= sdmac
->bd_phys
;
917 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
919 sdma_set_channel_priority(sdmac
, MXC_SDMA_DEFAULT_PRIORITY
);
926 static struct sdma_channel
*to_sdma_chan(struct dma_chan
*chan
)
928 return container_of(chan
, struct sdma_channel
, chan
);
931 static dma_cookie_t
sdma_tx_submit(struct dma_async_tx_descriptor
*tx
)
934 struct sdma_channel
*sdmac
= to_sdma_chan(tx
->chan
);
937 spin_lock_irqsave(&sdmac
->lock
, flags
);
939 cookie
= dma_cookie_assign(tx
);
941 spin_unlock_irqrestore(&sdmac
->lock
, flags
);
946 static int sdma_alloc_chan_resources(struct dma_chan
*chan
)
948 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
949 struct imx_dma_data
*data
= chan
->private;
955 switch (data
->priority
) {
959 case DMA_PRIO_MEDIUM
:
968 sdmac
->peripheral_type
= data
->peripheral_type
;
969 sdmac
->event_id0
= data
->dma_request
;
971 clk_enable(sdmac
->sdma
->clk_ipg
);
972 clk_enable(sdmac
->sdma
->clk_ahb
);
974 ret
= sdma_request_channel(sdmac
);
978 ret
= sdma_set_channel_priority(sdmac
, prio
);
982 dma_async_tx_descriptor_init(&sdmac
->desc
, chan
);
983 sdmac
->desc
.tx_submit
= sdma_tx_submit
;
984 /* txd.flags will be overwritten in prep funcs */
985 sdmac
->desc
.flags
= DMA_CTRL_ACK
;
990 static void sdma_free_chan_resources(struct dma_chan
*chan
)
992 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
993 struct sdma_engine
*sdma
= sdmac
->sdma
;
995 sdma_disable_channel(sdmac
);
997 if (sdmac
->event_id0
)
998 sdma_event_disable(sdmac
, sdmac
->event_id0
);
999 if (sdmac
->event_id1
)
1000 sdma_event_disable(sdmac
, sdmac
->event_id1
);
1002 sdmac
->event_id0
= 0;
1003 sdmac
->event_id1
= 0;
1005 sdma_set_channel_priority(sdmac
, 0);
1007 dma_free_coherent(NULL
, PAGE_SIZE
, sdmac
->bd
, sdmac
->bd_phys
);
1009 clk_disable(sdma
->clk_ipg
);
1010 clk_disable(sdma
->clk_ahb
);
1013 static struct dma_async_tx_descriptor
*sdma_prep_slave_sg(
1014 struct dma_chan
*chan
, struct scatterlist
*sgl
,
1015 unsigned int sg_len
, enum dma_transfer_direction direction
,
1016 unsigned long flags
, void *context
)
1018 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1019 struct sdma_engine
*sdma
= sdmac
->sdma
;
1021 int channel
= sdmac
->channel
;
1022 struct scatterlist
*sg
;
1024 if (sdmac
->status
== DMA_IN_PROGRESS
)
1026 sdmac
->status
= DMA_IN_PROGRESS
;
1030 sdmac
->buf_tail
= 0;
1032 dev_dbg(sdma
->dev
, "setting up %d entries for channel %d.\n",
1035 sdmac
->direction
= direction
;
1036 ret
= sdma_load_context(sdmac
);
1040 if (sg_len
> NUM_BD
) {
1041 dev_err(sdma
->dev
, "SDMA channel %d: maximum number of sg exceeded: %d > %d\n",
1042 channel
, sg_len
, NUM_BD
);
1047 sdmac
->chn_count
= 0;
1048 for_each_sg(sgl
, sg
, sg_len
, i
) {
1049 struct sdma_buffer_descriptor
*bd
= &sdmac
->bd
[i
];
1052 bd
->buffer_addr
= sg
->dma_address
;
1054 count
= sg_dma_len(sg
);
1056 if (count
> 0xffff) {
1057 dev_err(sdma
->dev
, "SDMA channel %d: maximum bytes for sg entry exceeded: %d > %d\n",
1058 channel
, count
, 0xffff);
1063 bd
->mode
.count
= count
;
1064 sdmac
->chn_count
+= count
;
1066 if (sdmac
->word_size
> DMA_SLAVE_BUSWIDTH_4_BYTES
) {
1071 switch (sdmac
->word_size
) {
1072 case DMA_SLAVE_BUSWIDTH_4_BYTES
:
1073 bd
->mode
.command
= 0;
1074 if (count
& 3 || sg
->dma_address
& 3)
1077 case DMA_SLAVE_BUSWIDTH_2_BYTES
:
1078 bd
->mode
.command
= 2;
1079 if (count
& 1 || sg
->dma_address
& 1)
1082 case DMA_SLAVE_BUSWIDTH_1_BYTE
:
1083 bd
->mode
.command
= 1;
1089 param
= BD_DONE
| BD_EXTD
| BD_CONT
;
1091 if (i
+ 1 == sg_len
) {
1097 dev_dbg(sdma
->dev
, "entry %d: count: %d dma: %#llx %s%s\n",
1098 i
, count
, (u64
)sg
->dma_address
,
1099 param
& BD_WRAP
? "wrap" : "",
1100 param
& BD_INTR
? " intr" : "");
1102 bd
->mode
.status
= param
;
1105 sdmac
->num_bd
= sg_len
;
1106 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
1108 return &sdmac
->desc
;
1110 sdmac
->status
= DMA_ERROR
;
1114 static struct dma_async_tx_descriptor
*sdma_prep_dma_cyclic(
1115 struct dma_chan
*chan
, dma_addr_t dma_addr
, size_t buf_len
,
1116 size_t period_len
, enum dma_transfer_direction direction
,
1117 unsigned long flags
, void *context
)
1119 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1120 struct sdma_engine
*sdma
= sdmac
->sdma
;
1121 int num_periods
= buf_len
/ period_len
;
1122 int channel
= sdmac
->channel
;
1123 int ret
, i
= 0, buf
= 0;
1125 dev_dbg(sdma
->dev
, "%s channel: %d\n", __func__
, channel
);
1127 if (sdmac
->status
== DMA_IN_PROGRESS
)
1130 sdmac
->status
= DMA_IN_PROGRESS
;
1132 sdmac
->buf_tail
= 0;
1134 sdmac
->flags
|= IMX_DMA_SG_LOOP
;
1135 sdmac
->direction
= direction
;
1136 ret
= sdma_load_context(sdmac
);
1140 if (num_periods
> NUM_BD
) {
1141 dev_err(sdma
->dev
, "SDMA channel %d: maximum number of sg exceeded: %d > %d\n",
1142 channel
, num_periods
, NUM_BD
);
1146 if (period_len
> 0xffff) {
1147 dev_err(sdma
->dev
, "SDMA channel %d: maximum period size exceeded: %d > %d\n",
1148 channel
, period_len
, 0xffff);
1152 while (buf
< buf_len
) {
1153 struct sdma_buffer_descriptor
*bd
= &sdmac
->bd
[i
];
1156 bd
->buffer_addr
= dma_addr
;
1158 bd
->mode
.count
= period_len
;
1160 if (sdmac
->word_size
> DMA_SLAVE_BUSWIDTH_4_BYTES
)
1162 if (sdmac
->word_size
== DMA_SLAVE_BUSWIDTH_4_BYTES
)
1163 bd
->mode
.command
= 0;
1165 bd
->mode
.command
= sdmac
->word_size
;
1167 param
= BD_DONE
| BD_EXTD
| BD_CONT
| BD_INTR
;
1168 if (i
+ 1 == num_periods
)
1171 dev_dbg(sdma
->dev
, "entry %d: count: %d dma: %#llx %s%s\n",
1172 i
, period_len
, (u64
)dma_addr
,
1173 param
& BD_WRAP
? "wrap" : "",
1174 param
& BD_INTR
? " intr" : "");
1176 bd
->mode
.status
= param
;
1178 dma_addr
+= period_len
;
1184 sdmac
->num_bd
= num_periods
;
1185 sdma
->channel_control
[channel
].current_bd_ptr
= sdmac
->bd_phys
;
1187 return &sdmac
->desc
;
1189 sdmac
->status
= DMA_ERROR
;
1193 static int sdma_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
,
1196 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1197 struct dma_slave_config
*dmaengine_cfg
= (void *)arg
;
1200 case DMA_TERMINATE_ALL
:
1201 sdma_disable_channel(sdmac
);
1203 case DMA_SLAVE_CONFIG
:
1204 if (dmaengine_cfg
->direction
== DMA_DEV_TO_MEM
) {
1205 sdmac
->per_address
= dmaengine_cfg
->src_addr
;
1206 sdmac
->watermark_level
= dmaengine_cfg
->src_maxburst
*
1207 dmaengine_cfg
->src_addr_width
;
1208 sdmac
->word_size
= dmaengine_cfg
->src_addr_width
;
1210 sdmac
->per_address
= dmaengine_cfg
->dst_addr
;
1211 sdmac
->watermark_level
= dmaengine_cfg
->dst_maxburst
*
1212 dmaengine_cfg
->dst_addr_width
;
1213 sdmac
->word_size
= dmaengine_cfg
->dst_addr_width
;
1215 sdmac
->direction
= dmaengine_cfg
->direction
;
1216 return sdma_config_channel(sdmac
);
1224 static enum dma_status
sdma_tx_status(struct dma_chan
*chan
,
1225 dma_cookie_t cookie
,
1226 struct dma_tx_state
*txstate
)
1228 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1230 dma_set_tx_state(txstate
, chan
->completed_cookie
, chan
->cookie
,
1231 sdmac
->chn_count
- sdmac
->chn_real_count
);
1233 return sdmac
->status
;
1236 static void sdma_issue_pending(struct dma_chan
*chan
)
1238 struct sdma_channel
*sdmac
= to_sdma_chan(chan
);
1239 struct sdma_engine
*sdma
= sdmac
->sdma
;
1241 if (sdmac
->status
== DMA_IN_PROGRESS
)
1242 sdma_enable_channel(sdma
, sdmac
->channel
);
1245 #define SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1 34
1246 #define SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V2 38
1248 static void sdma_add_scripts(struct sdma_engine
*sdma
,
1249 const struct sdma_script_start_addrs
*addr
)
1251 s32
*addr_arr
= (u32
*)addr
;
1252 s32
*saddr_arr
= (u32
*)sdma
->script_addrs
;
1255 /* use the default firmware in ROM if missing external firmware */
1256 if (!sdma
->script_number
)
1257 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
;
1259 for (i
= 0; i
< sdma
->script_number
; i
++)
1260 if (addr_arr
[i
] > 0)
1261 saddr_arr
[i
] = addr_arr
[i
];
1264 static void sdma_load_firmware(const struct firmware
*fw
, void *context
)
1266 struct sdma_engine
*sdma
= context
;
1267 const struct sdma_firmware_header
*header
;
1268 const struct sdma_script_start_addrs
*addr
;
1269 unsigned short *ram_code
;
1272 dev_err(sdma
->dev
, "firmware not found\n");
1276 if (fw
->size
< sizeof(*header
))
1279 header
= (struct sdma_firmware_header
*)fw
->data
;
1281 if (header
->magic
!= SDMA_FIRMWARE_MAGIC
)
1283 if (header
->ram_code_start
+ header
->ram_code_size
> fw
->size
)
1285 switch (header
->version_major
) {
1287 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
;
1290 sdma
->script_number
= SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V2
;
1293 dev_err(sdma
->dev
, "unknown firmware version\n");
1297 addr
= (void *)header
+ header
->script_addrs_start
;
1298 ram_code
= (void *)header
+ header
->ram_code_start
;
1300 clk_enable(sdma
->clk_ipg
);
1301 clk_enable(sdma
->clk_ahb
);
1302 /* download the RAM image for SDMA */
1303 sdma_load_script(sdma
, ram_code
,
1304 header
->ram_code_size
,
1305 addr
->ram_code_start_addr
);
1306 clk_disable(sdma
->clk_ipg
);
1307 clk_disable(sdma
->clk_ahb
);
1309 sdma_add_scripts(sdma
, addr
);
1311 dev_info(sdma
->dev
, "loaded firmware %d.%d\n",
1312 header
->version_major
,
1313 header
->version_minor
);
1316 release_firmware(fw
);
1319 static int __init
sdma_get_firmware(struct sdma_engine
*sdma
,
1320 const char *fw_name
)
1324 ret
= request_firmware_nowait(THIS_MODULE
,
1325 FW_ACTION_HOTPLUG
, fw_name
, sdma
->dev
,
1326 GFP_KERNEL
, sdma
, sdma_load_firmware
);
1331 static int __init
sdma_init(struct sdma_engine
*sdma
)
1334 dma_addr_t ccb_phys
;
1336 clk_enable(sdma
->clk_ipg
);
1337 clk_enable(sdma
->clk_ahb
);
1339 /* Be sure SDMA has not started yet */
1340 writel_relaxed(0, sdma
->regs
+ SDMA_H_C0PTR
);
1342 sdma
->channel_control
= dma_alloc_coherent(NULL
,
1343 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
) +
1344 sizeof(struct sdma_context_data
),
1345 &ccb_phys
, GFP_KERNEL
);
1347 if (!sdma
->channel_control
) {
1352 sdma
->context
= (void *)sdma
->channel_control
+
1353 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
);
1354 sdma
->context_phys
= ccb_phys
+
1355 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
);
1357 /* Zero-out the CCB structures array just allocated */
1358 memset(sdma
->channel_control
, 0,
1359 MAX_DMA_CHANNELS
* sizeof (struct sdma_channel_control
));
1361 /* disable all channels */
1362 for (i
= 0; i
< sdma
->drvdata
->num_events
; i
++)
1363 writel_relaxed(0, sdma
->regs
+ chnenbl_ofs(sdma
, i
));
1365 /* All channels have priority 0 */
1366 for (i
= 0; i
< MAX_DMA_CHANNELS
; i
++)
1367 writel_relaxed(0, sdma
->regs
+ SDMA_CHNPRI_0
+ i
* 4);
1369 ret
= sdma_request_channel(&sdma
->channel
[0]);
1373 sdma_config_ownership(&sdma
->channel
[0], false, true, false);
1375 /* Set Command Channel (Channel Zero) */
1376 writel_relaxed(0x4050, sdma
->regs
+ SDMA_CHN0ADDR
);
1378 /* Set bits of CONFIG register but with static context switching */
1379 /* FIXME: Check whether to set ACR bit depending on clock ratios */
1380 writel_relaxed(0, sdma
->regs
+ SDMA_H_CONFIG
);
1382 writel_relaxed(ccb_phys
, sdma
->regs
+ SDMA_H_C0PTR
);
1384 /* Set bits of CONFIG register with given context switching mode */
1385 writel_relaxed(SDMA_H_CONFIG_CSM
, sdma
->regs
+ SDMA_H_CONFIG
);
1387 /* Initializes channel's priorities */
1388 sdma_set_channel_priority(&sdma
->channel
[0], 7);
1390 clk_disable(sdma
->clk_ipg
);
1391 clk_disable(sdma
->clk_ahb
);
1396 clk_disable(sdma
->clk_ipg
);
1397 clk_disable(sdma
->clk_ahb
);
1398 dev_err(sdma
->dev
, "initialisation failed with %d\n", ret
);
1402 static bool sdma_filter_fn(struct dma_chan
*chan
, void *fn_param
)
1404 struct imx_dma_data
*data
= fn_param
;
1406 if (!imx_dma_is_general_purpose(chan
))
1409 chan
->private = data
;
1414 static struct dma_chan
*sdma_xlate(struct of_phandle_args
*dma_spec
,
1415 struct of_dma
*ofdma
)
1417 struct sdma_engine
*sdma
= ofdma
->of_dma_data
;
1418 dma_cap_mask_t mask
= sdma
->dma_device
.cap_mask
;
1419 struct imx_dma_data data
;
1421 if (dma_spec
->args_count
!= 3)
1424 data
.dma_request
= dma_spec
->args
[0];
1425 data
.peripheral_type
= dma_spec
->args
[1];
1426 data
.priority
= dma_spec
->args
[2];
1428 return dma_request_channel(mask
, sdma_filter_fn
, &data
);
1431 static int __init
sdma_probe(struct platform_device
*pdev
)
1433 const struct of_device_id
*of_id
=
1434 of_match_device(sdma_dt_ids
, &pdev
->dev
);
1435 struct device_node
*np
= pdev
->dev
.of_node
;
1436 const char *fw_name
;
1439 struct resource
*iores
;
1440 struct sdma_platform_data
*pdata
= dev_get_platdata(&pdev
->dev
);
1442 struct sdma_engine
*sdma
;
1444 const struct sdma_driver_data
*drvdata
= NULL
;
1447 drvdata
= of_id
->data
;
1448 else if (pdev
->id_entry
)
1449 drvdata
= (void *)pdev
->id_entry
->driver_data
;
1452 dev_err(&pdev
->dev
, "unable to find driver data\n");
1456 ret
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
1460 sdma
= kzalloc(sizeof(*sdma
), GFP_KERNEL
);
1464 spin_lock_init(&sdma
->channel_0_lock
);
1466 sdma
->dev
= &pdev
->dev
;
1467 sdma
->drvdata
= drvdata
;
1469 iores
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1470 irq
= platform_get_irq(pdev
, 0);
1471 if (!iores
|| irq
< 0) {
1476 if (!request_mem_region(iores
->start
, resource_size(iores
), pdev
->name
)) {
1478 goto err_request_region
;
1481 sdma
->clk_ipg
= devm_clk_get(&pdev
->dev
, "ipg");
1482 if (IS_ERR(sdma
->clk_ipg
)) {
1483 ret
= PTR_ERR(sdma
->clk_ipg
);
1487 sdma
->clk_ahb
= devm_clk_get(&pdev
->dev
, "ahb");
1488 if (IS_ERR(sdma
->clk_ahb
)) {
1489 ret
= PTR_ERR(sdma
->clk_ahb
);
1493 clk_prepare(sdma
->clk_ipg
);
1494 clk_prepare(sdma
->clk_ahb
);
1496 sdma
->regs
= ioremap(iores
->start
, resource_size(iores
));
1502 ret
= request_irq(irq
, sdma_int_handler
, 0, "sdma", sdma
);
1504 goto err_request_irq
;
1506 sdma
->script_addrs
= kzalloc(sizeof(*sdma
->script_addrs
), GFP_KERNEL
);
1507 if (!sdma
->script_addrs
) {
1512 /* initially no scripts available */
1513 saddr_arr
= (s32
*)sdma
->script_addrs
;
1514 for (i
= 0; i
< SDMA_SCRIPT_ADDRS_ARRAY_SIZE_V1
; i
++)
1515 saddr_arr
[i
] = -EINVAL
;
1517 dma_cap_set(DMA_SLAVE
, sdma
->dma_device
.cap_mask
);
1518 dma_cap_set(DMA_CYCLIC
, sdma
->dma_device
.cap_mask
);
1520 INIT_LIST_HEAD(&sdma
->dma_device
.channels
);
1521 /* Initialize channel parameters */
1522 for (i
= 0; i
< MAX_DMA_CHANNELS
; i
++) {
1523 struct sdma_channel
*sdmac
= &sdma
->channel
[i
];
1526 spin_lock_init(&sdmac
->lock
);
1528 sdmac
->chan
.device
= &sdma
->dma_device
;
1529 dma_cookie_init(&sdmac
->chan
);
1532 tasklet_init(&sdmac
->tasklet
, sdma_tasklet
,
1533 (unsigned long) sdmac
);
1535 * Add the channel to the DMAC list. Do not add channel 0 though
1536 * because we need it internally in the SDMA driver. This also means
1537 * that channel 0 in dmaengine counting matches sdma channel 1.
1540 list_add_tail(&sdmac
->chan
.device_node
,
1541 &sdma
->dma_device
.channels
);
1544 ret
= sdma_init(sdma
);
1548 if (sdma
->drvdata
->script_addrs
)
1549 sdma_add_scripts(sdma
, sdma
->drvdata
->script_addrs
);
1550 if (pdata
&& pdata
->script_addrs
)
1551 sdma_add_scripts(sdma
, pdata
->script_addrs
);
1554 ret
= sdma_get_firmware(sdma
, pdata
->fw_name
);
1556 dev_warn(&pdev
->dev
, "failed to get firmware from platform data\n");
1559 * Because that device tree does not encode ROM script address,
1560 * the RAM script in firmware is mandatory for device tree
1561 * probe, otherwise it fails.
1563 ret
= of_property_read_string(np
, "fsl,sdma-ram-script-name",
1566 dev_warn(&pdev
->dev
, "failed to get firmware name\n");
1568 ret
= sdma_get_firmware(sdma
, fw_name
);
1570 dev_warn(&pdev
->dev
, "failed to get firmware from device tree\n");
1574 sdma
->dma_device
.dev
= &pdev
->dev
;
1576 sdma
->dma_device
.device_alloc_chan_resources
= sdma_alloc_chan_resources
;
1577 sdma
->dma_device
.device_free_chan_resources
= sdma_free_chan_resources
;
1578 sdma
->dma_device
.device_tx_status
= sdma_tx_status
;
1579 sdma
->dma_device
.device_prep_slave_sg
= sdma_prep_slave_sg
;
1580 sdma
->dma_device
.device_prep_dma_cyclic
= sdma_prep_dma_cyclic
;
1581 sdma
->dma_device
.device_control
= sdma_control
;
1582 sdma
->dma_device
.device_issue_pending
= sdma_issue_pending
;
1583 sdma
->dma_device
.dev
->dma_parms
= &sdma
->dma_parms
;
1584 dma_set_max_seg_size(sdma
->dma_device
.dev
, 65535);
1586 ret
= dma_async_device_register(&sdma
->dma_device
);
1588 dev_err(&pdev
->dev
, "unable to register\n");
1593 ret
= of_dma_controller_register(np
, sdma_xlate
, sdma
);
1595 dev_err(&pdev
->dev
, "failed to register controller\n");
1600 dev_info(sdma
->dev
, "initialized\n");
1605 dma_async_device_unregister(&sdma
->dma_device
);
1607 kfree(sdma
->script_addrs
);
1609 free_irq(irq
, sdma
);
1611 iounmap(sdma
->regs
);
1614 release_mem_region(iores
->start
, resource_size(iores
));
1621 static int sdma_remove(struct platform_device
*pdev
)
1626 static struct platform_driver sdma_driver
= {
1629 .of_match_table
= sdma_dt_ids
,
1631 .id_table
= sdma_devtypes
,
1632 .remove
= sdma_remove
,
1635 static int __init
sdma_module_init(void)
1637 return platform_driver_probe(&sdma_driver
, sdma_probe
);
1639 module_init(sdma_module_init
);
1641 MODULE_AUTHOR("Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>");
1642 MODULE_DESCRIPTION("i.MX SDMA driver");
1643 MODULE_LICENSE("GPL");