]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] ARM: OMAP: sound support on omap24xx
authorKyungmin Park <kyungmin.park@samsung.com>
Sat, 14 Jan 2006 01:01:44 +0000 (17:01 -0800)
committerTony Lindgren <tony@atomide.com>
Sat, 14 Jan 2006 01:01:44 +0000 (17:01 -0800)
This patch enable OMAP sound on omap24xx
To test omap sound, you first have to patch the first spi patch from komal
shah not the latest spi patch.

It also adds 'OSS L/R Channel Interchange fix' on tsc2101

Any comments are welcome.

sound/oss/Kconfig
sound/oss/omap-audio-dma-intfc.c
sound/oss/omap-audio-tsc2101.c

index 9b034b231687296aee16460e256cbfb08d7da314..33f602a878f155ded4840f0f6a8a4365e23c9900 100644 (file)
@@ -13,14 +13,18 @@ config SOUND_OMAP
 
 config SOUND_OMAP_TSC2101
        tristate "TSC2101 Stereo Codec"
-       depends on SOUND_OMAP && ( MACH_OMAP_H2 || MACH_OMAP_H3 )
-       select OMAP_TSC2101
-       select OMAP_UWIRE if ARCH_OMAP
+       depends on SOUND_OMAP && ( MACH_OMAP_H2 || MACH_OMAP_H3 || MACH_OMAP_H4)
+       select OMAP_TSC2101 if ( MACH_OMAP_H2 || MACH_OMAP_H3 )
+       select OMAP_UWIRE if ARCH_OMAP1
        ---help---
          Tsc2101 Audio Codec Driver for OMAP will be enabled.
          Will also Enable the following:
+         case OMAP1:
          1. uWire Driver based on Platform
          2. TSC2101 Glue driver
+         case OMAP2:
+         1. McSPI Driver based on Platform
+         2. TSC2101 Glue driver
 
 config SOUND_OMAP_AIC23
        tristate "AIC23 Stereo Codec"
index a9392dd5e95b3d2322e7b0d798386e6835591e72..876d773be09dcc9cc3bed0574c11206455fdfe10 100644 (file)
@@ -701,12 +701,25 @@ static int audio_set_dma_params_play(int channel, dma_addr_t dma_ptr,
        int dt = 0x1;           /* data type 16 */
        int cen = 32;           /* Stereo */
        int cfn = dma_size / (2 * cen);
+       unsigned long dest_start;
+       int dest_port = 0;
+       int sync_dev = 0;
+
        FN_IN;
-       omap_set_dma_dest_params(channel, 0x05, 0x00,
-                                (OMAP1610_MCBSP1_BASE + 0x806),
-                                0, 0);
-       omap_set_dma_src_params(channel, 0x00, 0x01, dma_ptr, 0, 0);
-       omap_set_dma_transfer_params(channel, dt, cen, cfn, 0x00, 0, 0);
+
+       if (cpu_is_omap16xx()) {
+               dest_start = (OMAP1610_MCBSP1_BASE + 0x806);
+               dest_port = OMAP_DMA_PORT_MPUI;
+       }
+       if (cpu_is_omap24xx()) {
+               dest_start = AUDIO_MCBSP_DATAWRITE;
+               sync_dev = AUDIO_DMA_TX;
+       }
+
+       omap_set_dma_dest_params(channel, dest_port, OMAP_DMA_AMODE_CONSTANT, dest_start, 0, 0);
+       omap_set_dma_src_params(channel, 0, OMAP_DMA_AMODE_POST_INC, dma_ptr, 0, 0);
+       omap_set_dma_transfer_params(channel, dt, cen, cfn, OMAP_DMA_SYNC_ELEMENT, sync_dev, 0);
+
        FN_OUT(0);
        return 0;
 }
@@ -717,12 +730,27 @@ static int audio_set_dma_params_capture(int channel, dma_addr_t dma_ptr,
        int dt = 0x1;           /* data type 16 */
        int cen = 16;           /* mono */
        int cfn = dma_size / (2 * cen);
+       unsigned long src_start;
+       int src_port = 0;
+       int sync_dev = 0;
+       int src_sync = 0;
+
        FN_IN;
-       omap_set_dma_src_params(channel, 0x05, 0x00,
-                               (OMAP1610_MCBSP1_BASE + 0x802),
-                               0, 0);
-       omap_set_dma_dest_params(channel, 0x00, 0x01, dma_ptr, 0, 0);
-       omap_set_dma_transfer_params(channel, dt, cen, cfn, 0x00, 0, 0);
+
+       if (cpu_is_omap16xx()) {
+               src_start = (OMAP1610_MCBSP1_BASE + 0x802);
+               src_port = OMAP_DMA_PORT_MPUI;
+       }
+       if (cpu_is_omap24xx()) {
+               src_start = AUDIO_MCBSP_DATAREAD;
+               sync_dev = AUDIO_DMA_RX;
+               src_sync = 1;
+       }
+
+       omap_set_dma_src_params(channel, src_port, OMAP_DMA_AMODE_CONSTANT, src_start, 0, 0);
+       omap_set_dma_dest_params(channel, 0, OMAP_DMA_AMODE_POST_INC, dma_ptr, 0, 0);
+       omap_set_dma_transfer_params(channel, dt, cen, cfn, OMAP_DMA_SYNC_ELEMENT, sync_dev, src_sync);
+
        FN_OUT(0);
        return 0;
 }
@@ -732,10 +760,10 @@ static int audio_start_dma_chain(audio_stream_t * s)
        int channel = s->lch[s->dma_q_head];
        FN_IN;
        if (!s->started) {
-        s->hw_stop();      /* stops McBSP Interface */
+               s->hw_stop();           /* stops McBSP Interface */
                omap_start_dma(channel);
                s->started = 1;
-               s->hw_start();     /* start McBSP interface */
+               s->hw_start();          /* start McBSP interface */
        }
        /* else the dma itself will progress forward with out our help */
        FN_OUT(0);
@@ -850,8 +878,9 @@ static void sound_dma_irq_handler(int sound_curr_lch, u16 ch_status, void *data)
        DPRINTK("lch=%d,status=0x%x, dma_status=%d, data=%p\n", sound_curr_lch,
                ch_status, dma_status, data);
 
-       if (dma_status & (DCSR_ERROR)) {
-               OMAP_DMA_CCR_REG(sound_curr_lch) &= ~DCCR_EN;
+       if (dma_status) {
+               if (cpu_is_omap16xx() && (dma_status & (DCSR_ERROR)))
+                       OMAP_DMA_CCR_REG(sound_curr_lch) &= ~DCCR_EN;
                ERR("DCSR_ERROR!\n");
                FN_OUT(-1);
                return;
index c5fdc6c94e4e5ba467d4372a956ee1c980087927..63dda67448f02fd07ba21558f71db7effedcbf36 100644 (file)
 #include "omap-audio.h"
 #include "omap-audio-dma-intfc.h"
 #include <asm/arch/mcbsp.h>
-#if CONFIG_ARCH_OMAP16XX
+#ifdef CONFIG_ARCH_OMAP16XX
 #include <../drivers/ssi/omap-uwire.h>
 #include <asm/arch/dsp_common.h>
+#elif defined(CONFIG_ARCH_OMAP24XX)
 #else
 #error "Unsupported configuration"
 #endif
 
 #define CODEC_NAME              "TSC2101"
 
-#if CONFIG_ARCH_OMAP16XX
+#ifdef CONFIG_ARCH_OMAP16XX
 #define PLATFORM_NAME "OMAP16XX"
-#endif
-
-#if CONFIG_ARCH_OMAP16XX
-#define OMAP_DSP_BASE        0xE0000000
+#elif defined(CONFIG_ARCH_OMAP24XX)
+#define PLATFORM_NAME "OMAP2"
 #endif
 
 /* Define to set the tsc as the master w.r.t McBSP */
@@ -90,9 +89,9 @@
 #define LEAVE_CS                                 0x80
 
 /* Select the McBSP For Audio */
-#if CONFIG_ARCH_OMAP16XX
-#define AUDIO_MCBSP                   OMAP_MCBSP1
-#else
+/* 16XX is MCBSP1 and 24XX is MCBSP2*/
+/* see include/asm-arm/arch-omap/mcbsp.h */
+#ifndef AUDIO_MCBSP
 #error "UnSupported Configuration"
 #endif
 
 
 /***************************** Data Structures **********************************/
 
+static int audio_ifc_start(void)
+{
+       omap_mcbsp_start(AUDIO_MCBSP);
+       return 0;
+}
+
+static int audio_ifc_stop(void)
+{
+       omap_mcbsp_stop(AUDIO_MCBSP);
+       return 0;
+}
+
 static audio_stream_t output_stream = {
-       .id              = "TSC2101 out",
-       .dma_dev         = OMAP_DMA_MCBSP1_TX,
-       .input_or_output = FMODE_WRITE
+       .id                     = "TSC2101 out",
+       .dma_dev                = AUDIO_DMA_TX,
+       .input_or_output        = FMODE_WRITE,
+       .hw_start               = audio_ifc_start,
+       .hw_stop                = audio_ifc_stop,
 };
 
 static audio_stream_t input_stream = {
-       .id              = "TSC2101 in",
-       .dma_dev         = OMAP_DMA_MCBSP1_RX,
-       .input_or_output = FMODE_READ
+       .id                     = "TSC2101 in",
+       .dma_dev                = AUDIO_DMA_RX,
+       .input_or_output        = FMODE_READ,
+       .hw_start               = audio_ifc_start,
+       .hw_stop                = audio_ifc_stop,
 };
 
 static int audio_dev_id, mixer_dev_id;
@@ -227,9 +242,9 @@ static struct omap_mcbsp_reg_cfg initial_config = {
        .srgr2 = GSYNC | CLKSP | FSGM | FPER(31),
 
        /* platform specific initialization */
-#if CONFIG_MACH_OMAP_H2
+#ifdef CONFIG_MACH_OMAP_H2
        .pcr0  = CLKXM | CLKRM | FSXP | FSRP | CLKXP | CLKRP,
-#elif CONFIG_MACH_OMAP_H3
+#elif defined(CONFIG_MACH_OMAP_H3) || defined(CONFIG_MACH_OMAP_H4)
 
 #ifndef TSC_MASTER
        .pcr0  = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP,