Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc0fa814 authored by Dan Williams's avatar Dan Williams
Browse files

Merge branches 'amba' and 'dma40' into dmaengine

Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -13,6 +13,14 @@
#include <linux/workqueue.h>
#include <linux/workqueue.h>
#include <linux/interrupt.h>
#include <linux/interrupt.h>


/*
 * Maxium size for a single dma descriptor
 * Size is limited to 16 bits.
 * Size is in the units of addr-widths (1,2,4,8 bytes)
 * Larger transfers will be split up to multiple linked desc
 */
#define STEDMA40_MAX_SEG_SIZE 0xFFFF

/* dev types for memcpy */
/* dev types for memcpy */
#define STEDMA40_DEV_DST_MEMORY (-1)
#define STEDMA40_DEV_DST_MEMORY (-1)
#define	STEDMA40_DEV_SRC_MEMORY (-1)
#define	STEDMA40_DEV_SRC_MEMORY (-1)
Loading