2019-01-07 11:07:41 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-07-08 18:59:42 +00:00
|
|
|
/*
|
2014-02-12 09:16:17 +00:00
|
|
|
* Driver for the Synopsys DesignWare DMA Controller
|
2008-07-08 18:59:42 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Atmel Corporation
|
2011-05-24 08:34:09 +00:00
|
|
|
* Copyright (C) 2010-2011 ST Microelectronics
|
2008-07-08 18:59:42 +00:00
|
|
|
*/
|
2014-09-23 14:18:11 +00:00
|
|
|
#ifndef _PLATFORM_DATA_DMA_DW_H
|
|
|
|
#define _PLATFORM_DATA_DMA_DW_H
|
2008-07-08 18:59:42 +00:00
|
|
|
|
2020-07-21 13:08:44 +00:00
|
|
|
#include <linux/bits.h>
|
|
|
|
#include <linux/types.h>
|
2008-07-08 18:59:42 +00:00
|
|
|
|
2015-01-13 17:08:14 +00:00
|
|
|
#define DW_DMA_MAX_NR_MASTERS 4
|
2016-11-25 14:59:07 +00:00
|
|
|
#define DW_DMA_MAX_NR_CHANNELS 8
|
2020-07-23 00:58:46 +00:00
|
|
|
#define DW_DMA_MIN_BURST 1
|
|
|
|
#define DW_DMA_MAX_BURST 256
|
2015-01-13 17:08:14 +00:00
|
|
|
|
2020-07-21 13:08:44 +00:00
|
|
|
struct device;
|
|
|
|
|
2012-10-16 04:19:17 +00:00
|
|
|
/**
|
|
|
|
* struct dw_dma_slave - Controller-specific information about a slave
|
|
|
|
*
|
2015-01-13 17:08:13 +00:00
|
|
|
* @dma_dev: required DMA master device
|
2014-08-19 17:29:14 +00:00
|
|
|
* @src_id: src request line
|
|
|
|
* @dst_id: dst request line
|
2016-03-18 14:24:41 +00:00
|
|
|
* @m_master: memory master for transfers on allocated channel
|
|
|
|
* @p_master: peripheral master for transfers on allocated channel
|
2020-07-31 20:08:26 +00:00
|
|
|
* @channels: mask of the channels permitted for allocation (zero value means any)
|
2016-08-17 16:20:21 +00:00
|
|
|
* @hs_polarity:set active low polarity of handshake interface
|
2012-10-16 04:19:17 +00:00
|
|
|
*/
|
|
|
|
struct dw_dma_slave {
|
|
|
|
struct device *dma_dev;
|
2014-08-19 17:29:14 +00:00
|
|
|
u8 src_id;
|
|
|
|
u8 dst_id;
|
2016-03-18 14:24:41 +00:00
|
|
|
u8 m_master;
|
|
|
|
u8 p_master;
|
2020-07-31 20:08:26 +00:00
|
|
|
u8 channels;
|
2016-08-17 16:20:21 +00:00
|
|
|
bool hs_polarity;
|
2012-10-16 04:19:17 +00:00
|
|
|
};
|
|
|
|
|
2008-07-08 18:59:42 +00:00
|
|
|
/**
|
|
|
|
* struct dw_dma_platform_data - Controller configuration parameters
|
2021-08-02 18:43:54 +00:00
|
|
|
* @nr_masters: Number of AHB masters supported by the controller
|
2008-07-08 18:59:42 +00:00
|
|
|
* @nr_channels: Number of channels supported by hardware (max 8)
|
2012-10-16 04:19:16 +00:00
|
|
|
* @chan_allocation_order: Allocate channels starting from 0 or 7
|
|
|
|
* @chan_priority: Set channel priority increasing from 0 to 7 or 7 to 0.
|
2012-09-21 12:05:47 +00:00
|
|
|
* @block_size: Maximum block size supported by the controller
|
2012-09-21 12:05:48 +00:00
|
|
|
* @data_width: Maximum data width supported by hardware per AHB master
|
2016-04-27 11:15:38 +00:00
|
|
|
* (in bytes, power of 2)
|
2016-11-25 14:59:07 +00:00
|
|
|
* @multi_block: Multi block transfers supported by hardware per channel.
|
2020-07-23 00:58:47 +00:00
|
|
|
* @max_burst: Maximum value of burst transaction size supported by hardware
|
|
|
|
* per channel (in units of CTL.SRC_TR_WIDTH/CTL.DST_TR_WIDTH).
|
2018-11-17 16:17:21 +00:00
|
|
|
* @protctl: Protection control signals setting per channel.
|
2021-07-12 11:39:40 +00:00
|
|
|
* @quirks: Optional platform quirks.
|
2008-07-08 18:59:42 +00:00
|
|
|
*/
|
|
|
|
struct dw_dma_platform_data {
|
2021-08-02 18:43:54 +00:00
|
|
|
u32 nr_masters;
|
|
|
|
u32 nr_channels;
|
2011-03-03 10:17:21 +00:00
|
|
|
#define CHAN_ALLOCATION_ASCENDING 0 /* zero to seven */
|
|
|
|
#define CHAN_ALLOCATION_DESCENDING 1 /* seven to zero */
|
2021-08-02 18:43:54 +00:00
|
|
|
u32 chan_allocation_order;
|
2011-03-03 10:17:22 +00:00
|
|
|
#define CHAN_PRIORITY_ASCENDING 0 /* chan0 highest */
|
|
|
|
#define CHAN_PRIORITY_DESCENDING 1 /* chan7 highest */
|
2021-08-02 18:43:54 +00:00
|
|
|
u32 chan_priority;
|
|
|
|
u32 block_size;
|
|
|
|
u32 data_width[DW_DMA_MAX_NR_MASTERS];
|
|
|
|
u32 multi_block[DW_DMA_MAX_NR_CHANNELS];
|
2020-07-23 00:58:47 +00:00
|
|
|
u32 max_burst[DW_DMA_MAX_NR_CHANNELS];
|
2018-11-17 16:17:21 +00:00
|
|
|
#define CHAN_PROTCTL_PRIVILEGED BIT(0)
|
|
|
|
#define CHAN_PROTCTL_BUFFERABLE BIT(1)
|
|
|
|
#define CHAN_PROTCTL_CACHEABLE BIT(2)
|
|
|
|
#define CHAN_PROTCTL_MASK GENMASK(2, 0)
|
2021-08-02 18:43:54 +00:00
|
|
|
u32 protctl;
|
2021-07-12 11:39:40 +00:00
|
|
|
#define DW_DMA_QUIRK_XBAR_PRESENT BIT(0)
|
2021-08-02 18:43:54 +00:00
|
|
|
u32 quirks;
|
2008-07-08 18:59:42 +00:00
|
|
|
};
|
|
|
|
|
2014-09-23 14:18:11 +00:00
|
|
|
#endif /* _PLATFORM_DATA_DMA_DW_H */
|