You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
608 B
25 lines
608 B
/*
|
|
* <mach/asp.h> - DaVinci Audio Serial Port support
|
|
*/
|
|
#ifndef __ASM_ARCH_DAVINCI_ASP_H
|
|
#define __ASM_ARCH_DAVINCI_ASP_H
|
|
|
|
#include <mach/irqs.h>
|
|
|
|
/* Bases of register banks */
|
|
#define DAVINCI_ASP0_BASE 0x01E02000
|
|
#define DAVINCI_ASP1_BASE 0x01E04000
|
|
|
|
/* EDMA channels */
|
|
#define DAVINCI_DMA_ASP0_TX 2
|
|
#define DAVINCI_DMA_ASP0_RX 3
|
|
#define DAVINCI_DMA_ASP1_TX 8
|
|
#define DAVINCI_DMA_ASP1_RX 9
|
|
|
|
/* Interrupts */
|
|
#define DAVINCI_ASP0_RX_INT IRQ_MBRINT
|
|
#define DAVINCI_ASP0_TX_INT IRQ_MBXINT
|
|
#define DAVINCI_ASP1_RX_INT IRQ_MBRINT
|
|
#define DAVINCI_ASP1_TX_INT IRQ_MBXINT
|
|
|
|
#endif /* __ASM_ARCH_DAVINCI_ASP_H */
|
|
|