2019-05-27 09:55:05 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-06-21 14:24:52 +04:00
|
|
|
/*
|
|
|
|
* linux/spear_dma.h
|
|
|
|
*
|
2015-04-28 09:00:08 +03:00
|
|
|
* Copyright (ST) 2012 Rajeev Kumar (rajeevkumar.linux@gmail.com)
|
2012-06-21 14:24:52 +04: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 */
|