diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-02-14 03:36:51 -0800 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-02-14 03:36:51 -0800 |
commit | 0670e7157f75ec6d2231fbc6f67b075d6b6d486f (patch) | |
tree | 64591858de42da54afc979338ee083d1e6d672a0 /arch/avr32/mach-at32ap | |
parent | 80cc07af0f6692a7d8fdc5087594d1988a701266 (diff) | |
parent | 4aa5f366431fef0afca0df348ca9782c63ac9911 (diff) | |
download | linux-3.10-0670e7157f75ec6d2231fbc6f67b075d6b6d486f.tar.gz linux-3.10-0670e7157f75ec6d2231fbc6f67b075d6b6d486f.tar.bz2 linux-3.10-0670e7157f75ec6d2231fbc6f67b075d6b6d486f.zip |
Merge branch 'dw_dmac' into dmaengine
Diffstat (limited to 'arch/avr32/mach-at32ap')
-rw-r--r-- | arch/avr32/mach-at32ap/at32ap700x.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c index e67c9994542..2747cde8c9a 100644 --- a/arch/avr32/mach-at32ap/at32ap700x.c +++ b/arch/avr32/mach-at32ap/at32ap700x.c @@ -2048,6 +2048,8 @@ at32_add_device_ac97c(unsigned int id, struct ac97c_platform_data *data, rx_dws->reg_width = DW_DMA_SLAVE_WIDTH_16BIT; rx_dws->cfg_hi = DWC_CFGH_SRC_PER(3); rx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL); + rx_dws->src_master = 0; + rx_dws->dst_master = 1; } /* Check if DMA slave interface for playback should be configured. */ @@ -2056,6 +2058,8 @@ at32_add_device_ac97c(unsigned int id, struct ac97c_platform_data *data, tx_dws->reg_width = DW_DMA_SLAVE_WIDTH_16BIT; tx_dws->cfg_hi = DWC_CFGH_DST_PER(4); tx_dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL); + rx_dws->src_master = 0; + rx_dws->dst_master = 1; } if (platform_device_add_data(pdev, data, @@ -2128,6 +2132,8 @@ at32_add_device_abdac(unsigned int id, struct atmel_abdac_pdata *data) dws->reg_width = DW_DMA_SLAVE_WIDTH_32BIT; dws->cfg_hi = DWC_CFGH_DST_PER(2); dws->cfg_lo &= ~(DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL); + dws->src_master = 0; + dws->dst_master = 1; if (platform_device_add_data(pdev, data, sizeof(struct atmel_abdac_pdata))) |