bf561: add ppi DLEN macro for 10bits to 16bits
authorScott Jiang <scott.jiang.linux@gmail.com>
Fri, 10 Feb 2012 20:38:49 +0000 (15:38 -0500)
committerBob Liu <lliubbo@gmail.com>
Wed, 21 Mar 2012 03:00:09 +0000 (11:00 +0800)
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
arch/blackfin/mach-bf561/include/mach/defBF561.h

index 7d712aeb52671fe46e7a0e9cab94031c8246d540..5f0ac5a77a3731395dd40bd4b466dc78a6e3458b 100644 (file)
 #define DLENGTH              0x00003800        /* PPI Data Length  */
 #define DLEN_8              0x0        /* PPI Data Length mask for DLEN=8 */
 #define DLEN(x)        (((x-9) & 0x07) << 11)  /* PPI Data Length (only works for x=10-->x=16) */
+#define DLEN_10              0x00000800 /* Data Length = 10 Bits */
+#define DLEN_11              0x00001000 /* Data Length = 11 Bits */
+#define DLEN_12              0x00001800 /* Data Length = 12 Bits */
+#define DLEN_13              0x00002000 /* Data Length = 13 Bits */
+#define DLEN_14              0x00002800 /* Data Length = 14 Bits */
+#define DLEN_15              0x00003000 /* Data Length = 15 Bits */
+#define DLEN_16              0x00003800 /* Data Length = 16 Bits */
 #define POL                  0x0000C000        /* PPI Signal Polarities       */
 #define        POLC            0x4000          /* PPI Clock Polarity */
 #define        POLS            0x8000          /* PPI Frame Sync Polarity */
This page took 0.0302 seconds and 5 git commands to generate.