From e3a39f0d8b3174ea4d266069f13c40485ea7e16c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 26 Feb 2012 22:00:35 +0100 Subject: [PATCH] SAM3U: Use correct DMAC peripheral ID for SSC receive It seems like the SSC Rx channel has a different DMAC peripheral ID (4) than the transmit side. The official Atmel sam3u documentation (doc6403e) doesn't document that fact, and it also doesn't even state any DMAC peripheral identifiers. The at91lib code release by Atmel claims it is 3, when in reality it is 4! I found this by brute-forcing all possible peripheral identifiers. --- boards/at91sam3u-ek/board.h | 2 +- boards/osmo-sdr/board.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/at91sam3u-ek/board.h b/boards/at91sam3u-ek/board.h index 7ce478c..fa5c37f 100644 --- a/boards/at91sam3u-ek/board.h +++ b/boards/at91sam3u-ek/board.h @@ -578,7 +578,7 @@ #define BOARD_SD_DMA_HW_SRC_REQ_ID DMA_HW_SRC_REQ_ID_MCI0 #define BOARD_SD_DMA_HW_DEST_REQ_ID DMA_HW_DEST_REQ_ID_MCI0 /// SSC DMA hardware handshaking ID -#define BOARD_SSC_DMA_HW_SRC_REQ_ID AT91C_HDMA_SRC_PER_3 +#define BOARD_SSC_DMA_HW_SRC_REQ_ID AT91C_HDMA_SRC_PER_4 #define BOARD_SSC_DMA_HW_DEST_REQ_ID AT91C_HDMA_DST_PER_3 /// Rtc diff --git a/boards/osmo-sdr/board.h b/boards/osmo-sdr/board.h index 7d7f629..6fe103d 100644 --- a/boards/osmo-sdr/board.h +++ b/boards/osmo-sdr/board.h @@ -294,7 +294,7 @@ /// Dma channel number #define BOARD_SSC_DMA_CHANNEL 2 /// SSC DMA hardware handshaking ID -#define BOARD_SSC_DMA_HW_SRC_REQ_ID AT91C_HDMA_SRC_PER_3 +#define BOARD_SSC_DMA_HW_SRC_REQ_ID AT91C_HDMA_SRC_PER_4 #define BOARD_SSC_DMA_HW_DEST_REQ_ID AT91C_HDMA_DST_PER_3 /// USART