2019-01-07 19:07:41 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-07-09 02:59:42 +08:00
|
|
|
/*
|
2014-02-12 17:16:17 +08:00
|
|
|
* Driver for the Synopsys DesignWare DMA Controller
|
2008-07-09 02:59:42 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Atmel Corporation
|
2011-05-24 16:34:09 +08:00
|
|
|
* Copyright (C) 2010-2011 ST Microelectronics
|
2008-07-09 02:59:42 +08:00
|
|
|
*/
|
2014-09-23 22:18:11 +08:00
|
|
|
#ifndef _PLATFORM_DATA_DMA_DW_H
|
|
|
|
#define _PLATFORM_DATA_DMA_DW_H
|
2008-07-09 02:59:42 +08:00
|
|
|
|
2014-09-23 22:18:11 +08:00
|
|
|
#include <linux/device.h>
|
2008-07-09 02:59:42 +08:00
|
|
|
|
2015-01-14 01:08:14 +08:00
|
|
|
#define DW_DMA_MAX_NR_MASTERS 4
|
2016-11-25 22:59:07 +08:00
|
|
|
#define DW_DMA_MAX_NR_CHANNELS 8
|
2015-01-14 01:08:14 +08:00
|
|
|
|
2012-10-16 12:19:17 +08:00
|
|
|
/**
|
|
|
|
* struct dw_dma_slave - Controller-specific information about a slave
|
|
|
|
*
|
2015-01-14 01:08:13 +08:00
|
|
|
* @dma_dev: required DMA master device
|
2014-08-20 01:29:14 +08:00
|
|
|
* @src_id: src request line
|
|
|
|
* @dst_id: dst request line
|
2016-03-18 22:24:41 +08:00
|
|
|
* @m_master: memory master for transfers on allocated channel
|
|
|
|
* @p_master: peripheral master for transfers on allocated channel
|
2016-08-18 00:20:21 +08:00
|
|
|
* @hs_polarity:set active low polarity of handshake interface
|
2012-10-16 12:19:17 +08:00
|
|
|
*/
|
|
|
|
struct dw_dma_slave {
|
|
|
|
struct device *dma_dev;
|
2014-08-20 01:29:14 +08:00
|
|
|
u8 src_id;
|
|
|
|
u8 dst_id;
|
2016-03-18 22:24:41 +08:00
|
|
|
u8 m_master;
|
|
|
|
u8 p_master;
|
2016-08-18 00:20:21 +08:00
|
|
|
bool hs_polarity;
|
2012-10-16 12:19:17 +08:00
|
|
|
};
|
|
|
|
|
2008-07-09 02:59:42 +08:00
|
|
|
/**
|
|
|
|
* struct dw_dma_platform_data - Controller configuration parameters
|
|
|
|
* @nr_channels: Number of channels supported by hardware (max 8)
|
2012-10-16 12:19:16 +08: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 20:05:47 +08:00
|
|
|
* @block_size: Maximum block size supported by the controller
|
2012-09-21 20:05:48 +08:00
|
|
|
* @nr_masters: Number of AHB masters supported by the controller
|
|
|
|
* @data_width: Maximum data width supported by hardware per AHB master
|
2016-04-27 19:15:38 +08:00
|
|
|
* (in bytes, power of 2)
|
2016-11-25 22:59:07 +08:00
|
|
|
* @multi_block: Multi block transfers supported by hardware per channel.
|
2018-11-18 00:17:21 +08:00
|
|
|
* @protctl: Protection control signals setting per channel.
|
2008-07-09 02:59:42 +08:00
|
|
|
*/
|
|
|
|
struct dw_dma_platform_data {
|
|
|
|
unsigned int nr_channels;
|
2011-03-03 18:17:21 +08:00
|
|
|
#define CHAN_ALLOCATION_ASCENDING 0 /* zero to seven */
|
|
|
|
#define CHAN_ALLOCATION_DESCENDING 1 /* seven to zero */
|
|
|
|
unsigned char chan_allocation_order;
|
2011-03-03 18:17:22 +08:00
|
|
|
#define CHAN_PRIORITY_ASCENDING 0 /* chan0 highest */
|
|
|
|
#define CHAN_PRIORITY_DESCENDING 1 /* chan7 highest */
|
|
|
|
unsigned char chan_priority;
|
2016-04-27 19:15:39 +08:00
|
|
|
unsigned int block_size;
|
2012-09-21 20:05:48 +08:00
|
|
|
unsigned char nr_masters;
|
2015-01-14 01:08:14 +08:00
|
|
|
unsigned char data_width[DW_DMA_MAX_NR_MASTERS];
|
2016-11-25 22:59:07 +08:00
|
|
|
unsigned char multi_block[DW_DMA_MAX_NR_CHANNELS];
|
2018-11-18 00:17:21 +08: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)
|
|
|
|
unsigned char protctl;
|
2008-07-09 02:59:42 +08:00
|
|
|
};
|
|
|
|
|
2014-09-23 22:18:11 +08:00
|
|
|
#endif /* _PLATFORM_DATA_DMA_DW_H */
|