#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/dma-mapping.h>
#include <linux/dmaengine.h>
#include <linux/platform_device.h>
#include <linux/device.h>
#include <linux/platform_data/dma-mmp_tdma.h>
#include <linux/of_device.h>
#include <linux/of_dma.h>
#define TDCR_SSZ_8_BITS (0x0 << 22)
#define TDCR_SSZ_12_BITS (0x1 << 22)
#define TDCR_SSZ_16_BITS (0x2 << 22)
#define TDCR_SSZ_20_BITS (0x3 << 22)
#define TDCR_SSZ_24_BITS (0x4 << 22)
#define TDCR_SSZ_32_BITS (0x5 << 22)
#define TDCR_SSZ_SHIFT (0x1 << 22)
#define TDCR_SSZ_MASK (0x7 << 22)
#define TDCR_SSPMOD (0x1 << 21)
#define TDCR_ABR (0x1 << 20)
#define TDCR_CDE (0x1 << 17)
#define TDCR_PACKMOD (0x1 << 16)
#define TDCR_CHANACT (0x1 << 14)
#define TDCR_FETCHND (0x1 << 13)
#define TDCR_CHANEN (0x1 << 12)
#define TDCR_INTMODE (0x1 << 10)
#define TDCR_CHAINMOD (0x1 << 9)
#define TDCR_BURSTSZ_MSK (0x7 << 6)
#define TDCR_BURSTSZ_4B (0x0 << 6)
#define TDCR_BURSTSZ_8B (0x1 << 6)
#define TDCR_BURSTSZ_16B (0x3 << 6)
#define TDCR_BURSTSZ_32B (0x6 << 6)