blob: 0269a07b8051554d9af48a5b5e022db3ed3a524e [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Rajeev Kumar241b4462012-06-21 15:54:52 +05302/*
3* linux/spear_dma.h
4*
Rajeev Kumar9d7dd6c2015-04-28 11:30:08 +05305* Copyright (ST) 2012 Rajeev Kumar (rajeevkumar.linux@gmail.com)
Rajeev Kumar241b4462012-06-21 15:54:52 +05306*/
7
8#ifndef SPEAR_DMA_H
9#define SPEAR_DMA_H
10
11#include <linux/dmaengine.h>
12
13struct spear_dma_data {
14 void *data;
15 dma_addr_t addr;
16 u32 max_burst;
17 enum dma_slave_buswidth addr_width;
Rajeev Kumar241b4462012-06-21 15:54:52 +053018};
19
20#endif /* SPEAR_DMA_H */