2019-05-27 06:55:05 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-06-21 10:24:52 +00:00
|
|
|
/*
|
|
|
|
* linux/spear_dma.h
|
|
|
|
*
|
2015-04-28 06:00:08 +00:00
|
|
|
* Copyright (ST) 2012 Rajeev Kumar (rajeevkumar.linux@gmail.com)
|
2012-06-21 10:24:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SPEAR_DMA_H
|
|
|
|
#define SPEAR_DMA_H
|
|
|
|
|
|
|
|
#include <linux/dmaengine.h>
|
|
|
|
|
|
|
|
struct spear_dma_data {
|
|
|
|
void *data;
|
|
|
|
dma_addr_t addr;
|
|
|
|
u32 max_burst;
|
|
|
|
enum dma_slave_buswidth addr_width;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* SPEAR_DMA_H */
|