Home | History | Annotate | Line # | Download | only in bktr
bktr_audio.c revision 1.11
      1  1.11    wiz /* $SourceForge: bktr_audio.c,v 1.6 2003/03/11 23:11:20 thomasklausner Exp $ */
      2   1.1    wiz 
      3  1.11    wiz /*	$NetBSD: bktr_audio.c,v 1.11 2003/03/12 00:14:40 wiz Exp $	*/
      4  1.11    wiz /* $FreeBSD: src/sys/dev/bktr/bktr_audio.c,v 1.8 2000/10/31 13:09:56 roger Exp$ */
      5   1.1    wiz /*
      6   1.1    wiz  * This is part of the Driver for Video Capture Cards (Frame grabbers)
      7   1.1    wiz  * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879
      8   1.1    wiz  * chipset.
      9   1.1    wiz  * Copyright Roger Hardiman and Amancio Hasty.
     10   1.1    wiz  *
     11   1.1    wiz  * bktr_audio : This deals with controlling the audio on TV cards,
     12   1.1    wiz  *                controlling the Audio Multiplexer (audio source selector).
     13   1.1    wiz  *                controlling any MSP34xx stereo audio decoders.
     14  1.11    wiz  *                controlling any DPL35xx dolby surroud sound audio decoders.
     15   1.1    wiz  *                initialising TDA98xx audio devices.
     16   1.1    wiz  *
     17   1.1    wiz  */
     18   1.1    wiz 
     19   1.1    wiz /*
     20   1.1    wiz  * 1. Redistributions of source code must retain the
     21   1.1    wiz  * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman
     22   1.1    wiz  * All rights reserved.
     23   1.1    wiz  *
     24   1.1    wiz  * Redistribution and use in source and binary forms, with or without
     25   1.1    wiz  * modification, are permitted provided that the following conditions
     26   1.1    wiz  * are met:
     27   1.1    wiz  * 1. Redistributions of source code must retain the above copyright
     28   1.1    wiz  *    notice, this list of conditions and the following disclaimer.
     29   1.1    wiz  * 2. Redistributions in binary form must reproduce the above copyright
     30   1.1    wiz  *    notice, this list of conditions and the following disclaimer in the
     31   1.1    wiz  *    documentation and/or other materials provided with the distribution.
     32   1.1    wiz  * 3. All advertising materials mentioning features or use of this software
     33   1.1    wiz  *    must display the following acknowledgement:
     34   1.1    wiz  *      This product includes software developed by Amancio Hasty and
     35   1.1    wiz  *      Roger Hardiman
     36   1.1    wiz  * 4. The name of the author may not be used to endorse or promote products
     37   1.1    wiz  *    derived from this software without specific prior written permission.
     38   1.1    wiz  *
     39   1.1    wiz  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     40   1.1    wiz  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     41   1.1    wiz  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     42   1.1    wiz  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     43   1.1    wiz  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     44   1.1    wiz  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     45   1.1    wiz  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     46   1.1    wiz  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     47   1.1    wiz  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     48   1.1    wiz  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     49   1.1    wiz  * POSSIBILITY OF SUCH DAMAGE.
     50   1.1    wiz  */
     51   1.9  lukem 
     52   1.9  lukem #include <sys/cdefs.h>
     53  1.11    wiz __KERNEL_RCSID(0, "$NetBSD: bktr_audio.c,v 1.11 2003/03/12 00:14:40 wiz Exp $");
     54   1.1    wiz 
     55   1.1    wiz #include <sys/param.h>
     56   1.1    wiz #include <sys/systm.h>
     57   1.1    wiz #include <sys/kernel.h>
     58   1.1    wiz #include <sys/vnode.h>
     59   1.1    wiz 
     60   1.1    wiz #ifdef __FreeBSD__
     61   1.7    wiz 
     62   1.7    wiz #if (__FreeBSD_version < 500000)
     63   1.7    wiz #include <machine/clock.h>              /* for DELAY */
     64   1.7    wiz #endif
     65   1.7    wiz 
     66   1.1    wiz #include <pci/pcivar.h>
     67   1.1    wiz 
     68   1.1    wiz #if (__FreeBSD_version >=300000)
     69   1.1    wiz #include <machine/bus_memio.h>		/* for bus space */
     70   1.1    wiz #include <machine/bus.h>
     71   1.1    wiz #include <sys/bus.h>
     72   1.1    wiz #endif
     73   1.2    wiz #endif
     74   1.1    wiz 
     75   1.1    wiz #ifdef __NetBSD__
     76  1.11    wiz #include <sys/cdefs.h>
     77  1.11    wiz __KERNEL_RCSID(0, "$NetBSD: bktr_audio.c,v 1.11 2003/03/12 00:14:40 wiz Exp $");
     78  1.11    wiz 
     79   1.4  veego #include <sys/proc.h>
     80   1.2    wiz #include <dev/ic/bt8xx.h>	/* NetBSD location of .h files */
     81   1.2    wiz #include <dev/pci/bktr/bktr_reg.h>
     82   1.2    wiz #include <dev/pci/bktr/bktr_core.h>
     83   1.2    wiz #include <dev/pci/bktr/bktr_tuner.h>
     84   1.2    wiz #include <dev/pci/bktr/bktr_card.h>
     85   1.2    wiz #include <dev/pci/bktr/bktr_audio.h>
     86   1.1    wiz #else
     87   1.1    wiz #include <machine/ioctl_meteor.h>	/* Traditional location of .h files */
     88   1.1    wiz #include <machine/ioctl_bt848.h>        /* extensions to ioctl_meteor.h */
     89   1.1    wiz #include <dev/bktr/bktr_reg.h>
     90   1.1    wiz #include <dev/bktr/bktr_core.h>
     91   1.1    wiz #include <dev/bktr/bktr_tuner.h>
     92   1.1    wiz #include <dev/bktr/bktr_card.h>
     93   1.1    wiz #include <dev/bktr/bktr_audio.h>
     94   1.2    wiz #endif
     95   1.1    wiz 
     96   1.1    wiz /*
     97   1.1    wiz  * Prototypes for the GV_BCTV specific functions.
     98   1.1    wiz  */
     99  1.11    wiz void    set_bctv_audio(bktr_ptr_t bktr);
    100  1.11    wiz void    bctv_gpio_write(bktr_ptr_t bktr, int port, int val);
    101  1.11    wiz /*int   bctv_gpio_read(bktr_ptr_t bktr, int port);*/ /* Not used */
    102   1.1    wiz 
    103   1.1    wiz 
    104   1.1    wiz 
    105   1.1    wiz /*
    106   1.1    wiz  * init_audio_devices
    107   1.1    wiz  * Reset any MSP34xx or TDA98xx audio devices.
    108   1.1    wiz  */
    109  1.11    wiz void init_audio_devices(bktr_ptr_t bktr) {
    110   1.1    wiz 
    111   1.1    wiz         /* enable stereo if appropriate on TDA audio chip */
    112  1.11    wiz         if (bktr->card.dbx)
    113  1.11    wiz                 init_BTSC(bktr);
    114  1.11    wiz 
    115   1.1    wiz         /* reset the MSP34xx stereo audio chip */
    116  1.11    wiz         if (bktr->card.msp3400c)
    117  1.11    wiz                 msp_dpl_reset(bktr, bktr->msp_addr);
    118   1.1    wiz 
    119   1.1    wiz         /* reset the DPL35xx dolby audio chip */
    120  1.11    wiz         if (bktr->card.dpl3518a)
    121  1.11    wiz                 msp_dpl_reset(bktr, bktr->dpl_addr);
    122   1.1    wiz 
    123   1.1    wiz }
    124   1.1    wiz 
    125   1.1    wiz 
    126   1.1    wiz /*
    127  1.11    wiz  *
    128   1.1    wiz  */
    129   1.1    wiz #define AUDIOMUX_DISCOVER_NOT
    130   1.1    wiz int
    131  1.11    wiz set_audio(bktr_ptr_t bktr, int cmd)
    132   1.1    wiz {
    133   1.1    wiz 	u_long		temp;
    134   1.1    wiz 	volatile u_char	idx;
    135   1.1    wiz 
    136  1.11    wiz #if defined(AUDIOMUX_DISCOVER)
    137  1.11    wiz 	if (cmd >= 200)
    138   1.1    wiz 		cmd -= 200;
    139   1.1    wiz 	else
    140   1.1    wiz #endif /* AUDIOMUX_DISCOVER */
    141   1.1    wiz 
    142   1.1    wiz 	/* check for existance of audio MUXes */
    143  1.11    wiz 	if (!bktr->card.audiomuxs[4])
    144  1.11    wiz 		return(-1);
    145   1.1    wiz 
    146   1.1    wiz 	switch (cmd) {
    147   1.1    wiz 	case AUDIO_TUNER:
    148   1.1    wiz #ifdef BKTR_REVERSEMUTE
    149   1.1    wiz 		bktr->audio_mux_select = 3;
    150   1.1    wiz #else
    151   1.1    wiz 		bktr->audio_mux_select = 0;
    152   1.1    wiz #endif
    153   1.1    wiz 
    154  1.11    wiz 		if (bktr->reverse_mute)
    155   1.1    wiz 		      bktr->audio_mux_select = 0;
    156  1.11    wiz 		else
    157   1.1    wiz 		    bktr->audio_mux_select = 3;
    158   1.1    wiz 
    159   1.1    wiz 		break;
    160   1.1    wiz 	case AUDIO_EXTERN:
    161   1.1    wiz 		bktr->audio_mux_select = 1;
    162   1.1    wiz 		break;
    163   1.1    wiz 	case AUDIO_INTERN:
    164   1.1    wiz 		bktr->audio_mux_select = 2;
    165   1.1    wiz 		break;
    166   1.1    wiz 	case AUDIO_MUTE:
    167   1.1    wiz 		bktr->audio_mute_state = TRUE;	/* set mute */
    168   1.1    wiz 		break;
    169   1.1    wiz 	case AUDIO_UNMUTE:
    170   1.1    wiz 		bktr->audio_mute_state = FALSE;	/* clear mute */
    171   1.1    wiz 		break;
    172   1.1    wiz 	default:
    173   1.5    wiz 		printf("%s: audio cmd error %02x\n", bktr_name(bktr),
    174   1.5    wiz 		       cmd);
    175  1.11    wiz 		return(-1);
    176   1.1    wiz 	}
    177   1.1    wiz 
    178   1.1    wiz 
    179   1.1    wiz 	/* Most cards have a simple audio multiplexer to select the
    180   1.1    wiz 	 * audio source. The I/O_GV card has a more advanced multiplexer
    181   1.1    wiz 	 * and requires special handling.
    182   1.1    wiz 	 */
    183  1.11    wiz         if (bktr->bt848_card == CARD_IO_GV) {
    184  1.11    wiz                 set_bctv_audio(bktr);
    185  1.11    wiz                 return(0);
    186   1.1    wiz 	}
    187   1.1    wiz 
    188   1.1    wiz 	/* Proceed with the simpler audio multiplexer code for the majority
    189   1.1    wiz 	 * of Bt848 cards.
    190   1.1    wiz 	 */
    191   1.1    wiz 
    192   1.1    wiz 	/*
    193   1.1    wiz 	 * Leave the upper bits of the GPIO port alone in case they control
    194   1.1    wiz 	 * something like the dbx or teletext chips.  This doesn't guarantee
    195   1.1    wiz 	 * success, but follows the rule of least astonishment.
    196   1.1    wiz 	 */
    197   1.1    wiz 
    198  1.11    wiz 	if (bktr->audio_mute_state == TRUE) {
    199   1.1    wiz #ifdef BKTR_REVERSEMUTE
    200   1.1    wiz 		idx = 0;
    201   1.1    wiz #else
    202   1.1    wiz 		idx = 3;
    203   1.1    wiz #endif
    204   1.1    wiz 
    205  1.11    wiz 		if (bktr->reverse_mute)
    206   1.1    wiz 		  idx  = 3;
    207  1.11    wiz 		else
    208   1.1    wiz 		  idx  = 0;
    209   1.1    wiz 
    210   1.1    wiz 	}
    211   1.1    wiz 	else
    212   1.1    wiz 		idx = bktr->audio_mux_select;
    213   1.1    wiz 
    214   1.8    wiz 
    215   1.1    wiz 	temp = INL(bktr, BKTR_GPIO_DATA) & ~bktr->card.gpio_mux_bits;
    216  1.11    wiz #if defined(AUDIOMUX_DISCOVER)
    217   1.1    wiz 	OUTL(bktr, BKTR_GPIO_DATA, temp | (cmd & 0xff));
    218   1.5    wiz 	printf("%s: cmd: %d audio mux %x temp %x \n", bktr_name(bktr),
    219  1.11    wiz 	  	cmd, bktr->card.audiomuxs[idx], temp);
    220   1.1    wiz #else
    221  1.11    wiz 	OUTL(bktr, BKTR_GPIO_DATA, temp | bktr->card.audiomuxs[idx]);
    222   1.1    wiz #endif /* AUDIOMUX_DISCOVER */
    223   1.1    wiz 
    224   1.8    wiz 
    225   1.8    wiz 
    226   1.8    wiz 	/* Some new Hauppauge cards do not have an audio mux */
    227   1.8    wiz 	/* Instead we use the MSP34xx chip to select TV audio, Line-In */
    228   1.8    wiz 	/* FM Radio and Mute */
    229   1.8    wiz 	/* Examples of this are the Hauppauge 44xxx MSP34xx models */
    230   1.8    wiz 	/* It is ok to drive both the mux and the MSP34xx chip. */
    231   1.8    wiz 	/* If there is no mux, the MSP does the switching of the audio source */
    232   1.8    wiz 	/* If there is a mux, it does the switching of the audio source */
    233   1.8    wiz 
    234   1.8    wiz 	if ((bktr->card.msp3400c) && (bktr->audio_mux_present == 0)) {
    235   1.8    wiz 
    236  1.11    wiz 	  if (bktr->audio_mute_state == TRUE) {
    237   1.8    wiz 		 msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000, 0x0000); /* volume to MUTE */
    238   1.8    wiz 	  } else {
    239   1.8    wiz 		 if(bktr->audio_mux_select == 0) { /* TV Tuner */
    240   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000, 0x7300); /* 0 db volume */
    241   1.8    wiz 		    if (bktr->msp_source_selected != 0) msp_autodetect(bktr);  /* setup TV audio mode */
    242   1.8    wiz 		    bktr->msp_source_selected = 0;
    243   1.8    wiz 		 }
    244   1.8    wiz 		 if(bktr->audio_mux_select == 1) { /* Line In */
    245   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000, 0x7300); /* 0 db volume */
    246   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000d, 0x1900); /* scart prescale */
    247   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008, 0x0220); /* SCART | STEREO */
    248   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0013, 0x0000); /* DSP In = SC1_IN_L/R */
    249   1.8    wiz 		    bktr->msp_source_selected = 1;
    250   1.8    wiz 		 }
    251   1.8    wiz 
    252   1.8    wiz 		 if(bktr->audio_mux_select == 2) { /* FM Radio */
    253   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000, 0x7300); /* 0 db volume */
    254   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000d, 0x1900); /* scart prescale */
    255   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008, 0x0220); /* SCART | STEREO */
    256   1.8    wiz 		    msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0013, 0x0200); /* DSP In = SC2_IN_L/R */
    257   1.8    wiz 		    bktr->msp_source_selected = 2;
    258   1.8    wiz 		 }
    259   1.8    wiz 	  }
    260   1.8    wiz 	}
    261   1.8    wiz 
    262   1.8    wiz 
    263  1.11    wiz 	return(0);
    264   1.1    wiz }
    265   1.1    wiz 
    266   1.1    wiz 
    267   1.1    wiz /*
    268  1.11    wiz  *
    269   1.1    wiz  */
    270   1.1    wiz void
    271  1.11    wiz temp_mute(bktr_ptr_t bktr, int flag)
    272   1.1    wiz {
    273   1.1    wiz 	static int	muteState = FALSE;
    274   1.1    wiz 
    275  1.11    wiz 	if (flag == TRUE) {
    276   1.1    wiz 		muteState = bktr->audio_mute_state;
    277  1.11    wiz 		set_audio(bktr, AUDIO_MUTE);		/* prevent 'click' */
    278   1.1    wiz 	}
    279   1.1    wiz 	else {
    280  1.11    wiz 		tsleep(BKTR_SLEEP, PZERO, "tuning", hz/8);
    281  1.11    wiz 		if (muteState == FALSE)
    282  1.11    wiz 			set_audio(bktr, AUDIO_UNMUTE);
    283   1.1    wiz 	}
    284   1.1    wiz }
    285   1.1    wiz 
    286   1.1    wiz /* address of BTSC/SAP decoder chip */
    287   1.1    wiz #define TDA9850_WADDR           0xb6
    288   1.1    wiz #define TDA9850_RADDR           0xb7
    289   1.1    wiz 
    290   1.1    wiz 
    291   1.1    wiz /* registers in the TDA9850 BTSC/dbx chip */
    292   1.1    wiz #define CON1ADDR                0x04
    293   1.1    wiz #define CON2ADDR                0x05
    294  1.11    wiz #define CON3ADDR                0x06
    295   1.1    wiz #define CON4ADDR                0x07
    296  1.11    wiz #define ALI1ADDR                0x08
    297   1.1    wiz #define ALI2ADDR                0x09
    298   1.1    wiz #define ALI3ADDR                0x0a
    299   1.1    wiz 
    300   1.1    wiz /*
    301   1.1    wiz  * initialise the dbx chip
    302   1.1    wiz  * taken from the Linux bttv driver TDA9850 initialisation code
    303   1.1    wiz  */
    304  1.11    wiz void
    305  1.11    wiz init_BTSC(bktr_ptr_t bktr)
    306   1.1    wiz {
    307   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, CON1ADDR, 0x08); /* noise threshold st */
    308   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, CON2ADDR, 0x08); /* noise threshold sap */
    309   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, CON3ADDR, 0x40); /* stereo mode */
    310   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, CON4ADDR, 0x07); /* 0 dB input gain? */
    311   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, ALI1ADDR, 0x10); /* wideband alignment? */
    312   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, ALI2ADDR, 0x10); /* spectral alignment? */
    313   1.1    wiz     i2cWrite(bktr, TDA9850_WADDR, ALI3ADDR, 0x03);
    314   1.1    wiz }
    315   1.1    wiz 
    316   1.1    wiz /*
    317   1.1    wiz  * setup the dbx chip
    318   1.1    wiz  * XXX FIXME: alot of work to be done here, this merely unmutes it.
    319   1.1    wiz  */
    320   1.1    wiz int
    321  1.11    wiz set_BTSC(bktr_ptr_t bktr, int control)
    322   1.1    wiz {
    323  1.11    wiz 	return(i2cWrite(bktr, TDA9850_WADDR, CON3ADDR, control));
    324   1.1    wiz }
    325   1.1    wiz 
    326   1.1    wiz /*
    327   1.1    wiz  * CARD_GV_BCTV specific functions.
    328   1.1    wiz  */
    329   1.1    wiz 
    330   1.1    wiz #define BCTV_AUDIO_MAIN              0x10    /* main audio program */
    331   1.1    wiz #define BCTV_AUDIO_SUB               0x20    /* sub audio program */
    332   1.1    wiz #define BCTV_AUDIO_BOTH              0x30    /* main(L) + sub(R) program */
    333   1.1    wiz 
    334   1.1    wiz #define BCTV_GPIO_REG0          1
    335   1.1    wiz #define BCTV_GPIO_REG1          3
    336   1.1    wiz 
    337   1.1    wiz #define BCTV_GR0_AUDIO_MODE     3
    338   1.1    wiz #define BCTV_GR0_AUDIO_MAIN     0       /* main program */
    339   1.1    wiz #define BCTV_GR0_AUDIO_SUB      3       /* sub program */
    340   1.1    wiz #define BCTV_GR0_AUDIO_BOTH     1       /* main(L) + sub(R) */
    341   1.1    wiz #define BCTV_GR0_AUDIO_MUTE     4       /* audio mute */
    342   1.1    wiz #define BCTV_GR0_AUDIO_MONO     8       /* force mono */
    343   1.1    wiz 
    344   1.1    wiz void
    345  1.11    wiz set_bctv_audio(bktr_ptr_t bktr)
    346   1.1    wiz {
    347   1.1    wiz         int data;
    348   1.1    wiz 
    349   1.1    wiz         switch (bktr->audio_mux_select) {
    350   1.1    wiz         case 1:         /* external */
    351   1.1    wiz         case 2:         /* internal */
    352   1.1    wiz                 bctv_gpio_write(bktr, BCTV_GPIO_REG1, 0);
    353   1.1    wiz                 break;
    354   1.1    wiz         default:        /* tuner */
    355   1.1    wiz                 bctv_gpio_write(bktr, BCTV_GPIO_REG1, 1);
    356   1.1    wiz                 break;
    357   1.1    wiz         }
    358   1.1    wiz /*      switch (bktr->audio_sap_select) { */
    359   1.1    wiz         switch (BCTV_AUDIO_BOTH) {
    360   1.1    wiz         case BCTV_AUDIO_SUB:
    361   1.1    wiz                 data = BCTV_GR0_AUDIO_SUB;
    362   1.1    wiz                 break;
    363   1.1    wiz         case BCTV_AUDIO_BOTH:
    364   1.1    wiz                 data = BCTV_GR0_AUDIO_BOTH;
    365   1.1    wiz                 break;
    366   1.1    wiz         case BCTV_AUDIO_MAIN:
    367   1.1    wiz         default:
    368   1.1    wiz                 data = BCTV_GR0_AUDIO_MAIN;
    369   1.1    wiz                 break;
    370   1.1    wiz         }
    371   1.1    wiz         if (bktr->audio_mute_state == TRUE)
    372   1.1    wiz                 data |= BCTV_GR0_AUDIO_MUTE;
    373   1.1    wiz 
    374   1.1    wiz         bctv_gpio_write(bktr, BCTV_GPIO_REG0, data);
    375   1.1    wiz 
    376   1.1    wiz         return;
    377   1.1    wiz }
    378   1.1    wiz 
    379   1.1    wiz /* gpio_data bit assignment */
    380   1.1    wiz #define BCTV_GPIO_ADDR_MASK     0x000300
    381   1.1    wiz #define BCTV_GPIO_WE            0x000400
    382   1.1    wiz #define BCTV_GPIO_OE            0x000800
    383   1.1    wiz #define BCTV_GPIO_VAL_MASK      0x00f000
    384   1.1    wiz 
    385   1.1    wiz #define BCTV_GPIO_PORT_MASK     3
    386   1.1    wiz #define BCTV_GPIO_ADDR_SHIFT    8
    387   1.1    wiz #define BCTV_GPIO_VAL_SHIFT     12
    388   1.1    wiz 
    389   1.1    wiz /* gpio_out_en value for read/write */
    390   1.1    wiz #define BCTV_GPIO_OUT_RMASK     0x000f00
    391   1.1    wiz #define BCTV_GPIO_OUT_WMASK     0x00ff00
    392   1.1    wiz 
    393   1.1    wiz #define BCTV_BITS       100
    394   1.1    wiz 
    395   1.1    wiz void
    396  1.11    wiz bctv_gpio_write(bktr_ptr_t bktr, int port, int val)
    397   1.1    wiz {
    398   1.1    wiz         u_long data, outbits;
    399   1.1    wiz 
    400   1.1    wiz         port &= BCTV_GPIO_PORT_MASK;
    401   1.1    wiz         switch (port) {
    402   1.1    wiz         case 1:
    403   1.1    wiz         case 3:
    404   1.1    wiz                 data = ((val << BCTV_GPIO_VAL_SHIFT) & BCTV_GPIO_VAL_MASK) |
    405   1.1    wiz                        ((port << BCTV_GPIO_ADDR_SHIFT) & BCTV_GPIO_ADDR_MASK) |
    406   1.1    wiz                        BCTV_GPIO_WE | BCTV_GPIO_OE;
    407   1.1    wiz                 outbits = BCTV_GPIO_OUT_WMASK;
    408   1.1    wiz                 break;
    409   1.1    wiz         default:
    410   1.1    wiz                 return;
    411   1.1    wiz         }
    412   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, 0);
    413   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data);
    414   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, outbits);
    415   1.1    wiz         DELAY(BCTV_BITS);
    416   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data & ~BCTV_GPIO_WE);
    417   1.1    wiz         DELAY(BCTV_BITS);
    418   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data);
    419   1.1    wiz         DELAY(BCTV_BITS);
    420   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, ~0);
    421   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, 0);
    422   1.1    wiz }
    423   1.1    wiz 
    424   1.1    wiz /* Not yet used
    425   1.1    wiz int
    426  1.11    wiz bctv_gpio_read(bktr_ptr_t bktr, int port)
    427   1.1    wiz {
    428   1.1    wiz         u_long data, outbits, ret;
    429   1.1    wiz 
    430   1.1    wiz         port &= BCTV_GPIO_PORT_MASK;
    431   1.1    wiz         switch (port) {
    432   1.1    wiz         case 1:
    433   1.1    wiz         case 3:
    434   1.1    wiz                 data = ((port << BCTV_GPIO_ADDR_SHIFT) & BCTV_GPIO_ADDR_MASK) |
    435   1.1    wiz                        BCTV_GPIO_WE | BCTV_GPIO_OE;
    436   1.1    wiz                 outbits = BCTV_GPIO_OUT_RMASK;
    437   1.1    wiz                 break;
    438   1.1    wiz         default:
    439  1.11    wiz                 return(-1);
    440   1.1    wiz         }
    441   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, 0);
    442   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data);
    443   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, outbits);
    444   1.1    wiz         DELAY(BCTV_BITS);
    445   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data & ~BCTV_GPIO_OE);
    446   1.1    wiz         DELAY(BCTV_BITS);
    447   1.1    wiz         ret = INL(bktr, BKTR_GPIO_DATA);
    448   1.1    wiz         DELAY(BCTV_BITS);
    449   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, data);
    450   1.1    wiz         DELAY(BCTV_BITS);
    451   1.1    wiz         OUTL(bktr, BKTR_GPIO_DATA, ~0);
    452   1.1    wiz         OUTL(bktr, BKTR_GPIO_OUT_EN, 0);
    453  1.11    wiz         return((ret & BCTV_GPIO_VAL_MASK) >> BCTV_GPIO_VAL_SHIFT);
    454   1.1    wiz }
    455   1.1    wiz */
    456   1.1    wiz 
    457   1.1    wiz /*
    458   1.1    wiz  * setup the MSP34xx Stereo Audio Chip
    459   1.1    wiz  * This uses the Auto Configuration Option on MSP3410D and MSP3415D chips
    460   1.1    wiz  * and DBX mode selection for MSP3430G chips.
    461   1.1    wiz  * For MSP3400C support, the full programming sequence is required and is
    462   1.1    wiz  * not yet supported.
    463   1.1    wiz  */
    464   1.1    wiz 
    465   1.1    wiz /* Read the MSP version string */
    466  1.11    wiz void msp_read_id(bktr_ptr_t bktr) {
    467   1.1    wiz     int rev1=0, rev2=0;
    468   1.1    wiz     rev1 = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x001e);
    469   1.1    wiz     rev2 = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x001f);
    470   1.1    wiz 
    471   1.1    wiz     sprintf(bktr->msp_version_string, "34%02d%c-%c%d",
    472   1.1    wiz       (rev2>>8)&0xff, (rev1&0xff)+'@', ((rev1>>8)&0xff)+'@', rev2&0x1f);
    473   1.1    wiz 
    474   1.1    wiz }
    475   1.1    wiz 
    476   1.1    wiz 
    477   1.1    wiz /* Configure the MSP chip to Auto-detect the audio format.
    478   1.1    wiz  * For the MSP3430G, we use fast autodetect mode
    479   1.1    wiz  * For the MSP3410/3415 there are two schemes for this
    480   1.1    wiz  *  a) Fast autodetection - the chip is put into autodetect mode, and the function
    481   1.1    wiz  *     returns immediatly. This works in most cases and is the Default Mode.
    482  1.11    wiz  *  b) Slow mode. The function sets the MSP3410/3415 chip, then waits for feedback from
    483   1.1    wiz  *     the chip and re-programs it if needed.
    484   1.1    wiz  */
    485  1.11    wiz void msp_autodetect(bktr_ptr_t bktr) {
    486   1.1    wiz   int auto_detect, loops;
    487   1.1    wiz   int stereo;
    488   1.1    wiz 
    489   1.1    wiz   /* MSP3430G - countries with mono and DBX stereo */
    490  1.11    wiz   if (strncmp("3430G", bktr->msp_version_string, 5) == 0) {
    491   1.1    wiz 
    492   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0030,0x2003);/* Enable Auto format detection */
    493   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0020,0x0020);/* Standard Select Reg. = BTSC-Stereo*/
    494   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000E,0x2403);/* darned if I know */
    495   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0320);/* Source select = (St or A) */
    496   1.1    wiz 					                     /* & Ch. Matrix = St */
    497   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000,0x7300);/* Set volume to 0db gain */
    498   1.1    wiz   }
    499   1.1    wiz 
    500   1.1    wiz 
    501  1.10    wiz   /* MSP3415D SPECIAL CASE Use the Tuner's Mono audio output for the MSP */
    502   1.8    wiz   /* (for Hauppauge 44xxx card with Tuner Type 0x2a) */
    503  1.11    wiz   else if (((strncmp("3415D", bktr->msp_version_string, 5) == 0)
    504   1.8    wiz                &&(bktr->msp_use_mono_source == 1)
    505  1.11    wiz )
    506  1.11    wiz            || (bktr->slow_msp_audio == 2)) {
    507   1.8    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000, 0x7300); /* 0 db volume */
    508   1.8    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000d, 0x1900); /* scart prescale */
    509   1.8    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008, 0x0220); /* SCART | STEREO */
    510   1.8    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0013, 0x0100); /* DSP In = MONO IN */
    511   1.8    wiz   }
    512   1.8    wiz 
    513   1.8    wiz 
    514   1.1    wiz   /* MSP3410/MSP3415 - countries with mono, stereo using 2 FM channels and NICAM */
    515   1.1    wiz   /* FAST sound scheme */
    516   1.8    wiz   else if (bktr->slow_msp_audio == 0) {
    517   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000,0x7300);/* Set volume to 0db gain */
    518   1.8    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0000);/* Spkr Source = default(FM/AM) */
    519   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0020,0x0001);/* Enable Auto format detection */
    520   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0021,0x0001);/* Auto selection of NICAM/MONO mode */
    521   1.1    wiz   }
    522   1.1    wiz 
    523   1.1    wiz 
    524   1.1    wiz   /* MSP3410/MSP3415 - European Countries where the fast MSP3410/3415 programming fails */
    525   1.1    wiz   /* SLOW sound scheme */
    526  1.11    wiz   else if (bktr->slow_msp_audio == 1) {
    527   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0000,0x7300);/* Set volume to 0db gain */
    528   1.1    wiz     msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0020,0x0001);/* Enable Auto format detection */
    529  1.11    wiz 
    530   1.1    wiz     /* wait for 0.5s max for terrestrial sound autodetection */
    531   1.1    wiz     loops = 10;
    532   1.1    wiz     do {
    533   1.1    wiz       DELAY(100000);
    534   1.1    wiz       auto_detect = msp_dpl_read(bktr, bktr->msp_addr, 0x10, 0x007e);
    535   1.1    wiz       loops++;
    536   1.1    wiz     } while (auto_detect > 0xff && loops < 50);
    537   1.5    wiz     if (bootverbose)printf ("%s: Result of autodetect after %dms: %d\n",
    538   1.5    wiz 			    bktr_name(bktr), loops*10, auto_detect);
    539   1.1    wiz 
    540   1.1    wiz     /* Now set the audio baseband processing */
    541   1.1    wiz     switch (auto_detect) {
    542   1.1    wiz     case 0:                    /* no TV sound standard detected */
    543   1.1    wiz       break;
    544   1.1    wiz     case 2:                    /* M Dual FM */
    545   1.1    wiz       break;
    546   1.1    wiz     case 3:                    /* B/G Dual FM; German stereo */
    547   1.1    wiz       /* Read the stereo detection value from DSP reg 0x0018 */
    548   1.1    wiz       DELAY(20000);
    549   1.1    wiz       stereo = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x0018);
    550   1.5    wiz       if (bootverbose)printf ("%s: Stereo reg 0x18 a: %d\n",
    551   1.5    wiz 			      bktr_name(bktr), stereo);
    552   1.1    wiz       DELAY(20000);
    553   1.1    wiz       stereo = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x0018);
    554   1.5    wiz       if (bootverbose)printf ("%s: Stereo reg 0x18 b: %d\n",
    555  1.11    wiz 			      bktr_name(bktr), stereo);
    556  1.11    wiz       DELAY(20000);
    557   1.1    wiz       stereo = msp_dpl_read(bktr, bktr->msp_addr, 0x12, 0x0018);
    558   1.5    wiz       if (bootverbose)printf ("%s: Stereo reg 0x18 c: %d\n",
    559   1.5    wiz 			      bktr_name(bktr), stereo);
    560   1.1    wiz       if (stereo > 0x0100 && stereo < 0x8000) { /* Seems to be stereo */
    561   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0020);/* Loudspeaker set stereo*/
    562   1.1    wiz         /*
    563   1.1    wiz           set spatial effect strength to 50% enlargement
    564   1.1    wiz           set spatial effect mode b, stereo basewidth enlargment only
    565   1.1    wiz         */
    566   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0005,0x3f28);
    567   1.1    wiz       } else if (stereo > 0x8000) {    /* bilingual mode */
    568   1.5    wiz         if (bootverbose) printf ("%s: Bilingual mode detected\n",
    569   1.5    wiz 				 bktr_name(bktr));
    570   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0000);/* Loudspeaker */
    571   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0005,0x0000);/* all spatial effects off */
    572   1.1    wiz        } else {                 /* must be mono */
    573   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0030);/* Loudspeaker */
    574   1.1    wiz         /*
    575   1.1    wiz           set spatial effect strength to 50% enlargement
    576   1.1    wiz           set spatial effect mode a, stereo basewidth enlargment
    577   1.1    wiz           and pseudo stereo effect with automatic high-pass filter
    578   1.1    wiz         */
    579   1.1    wiz         msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0005,0x3f08);
    580   1.1    wiz       }
    581   1.1    wiz #if 0
    582   1.1    wiz        /* The reset value for Channel matrix mode is FM/AM and SOUNDA/LEFT */
    583   1.1    wiz        /* We would like STEREO instead val: 0x0020 */
    584   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0008,0x0020);/* Loudspeaker */
    585   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0009,0x0020);/* Headphone */
    586   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000a,0x0020);/* SCART1 */
    587   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0041,0x0020);/* SCART2 */
    588   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000b,0x0020);/* I2S */
    589   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000c,0x0020);/* Quasi-Peak Detector Source */
    590   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x000e,0x0001);
    591   1.1    wiz #endif
    592   1.1    wiz       break;
    593   1.1    wiz     case 8:                    /* B/G FM NICAM */
    594   1.1    wiz        msp_dpl_write(bktr, bktr->msp_addr, 0x10, 0x0021,0x0001);/* Auto selection of NICAM/MONO mode */
    595   1.1    wiz        break;
    596   1.1    wiz      case 9:                    /* L_AM NICAM or D/K*/
    597   1.1    wiz      case 10:                   /* i-FM NICAM */
    598   1.1    wiz        break;
    599   1.1    wiz      default:
    600   1.5    wiz        if (bootverbose) printf ("%s: Unknown autodetection result value: %d\n",
    601  1.11    wiz 				bktr_name(bktr), auto_detect);
    602   1.1    wiz      }
    603   1.1    wiz 
    604   1.1    wiz   }
    605   1.1    wiz 
    606   1.1    wiz 
    607  1.11    wiz   /* uncomment the following line to enable the MSP34xx 1KHz Tone Generator */
    608   1.1    wiz   /* turn your speaker volume down low before trying this */
    609   1.1    wiz   /* msp_dpl_write(bktr, bktr->msp_addr, 0x12, 0x0014, 0x7f40); */
    610   1.1    wiz }
    611   1.1    wiz 
    612   1.1    wiz /* Read the DPL version string */
    613  1.11    wiz void dpl_read_id(bktr_ptr_t bktr) {
    614   1.1    wiz     int rev1=0, rev2=0;
    615   1.1    wiz     rev1 = msp_dpl_read(bktr, bktr->dpl_addr, 0x12, 0x001e);
    616   1.1    wiz     rev2 = msp_dpl_read(bktr, bktr->dpl_addr, 0x12, 0x001f);
    617   1.1    wiz 
    618   1.1    wiz     sprintf(bktr->dpl_version_string, "34%02d%c-%c%d",
    619   1.1    wiz       ((rev2>>8)&0xff)-1, (rev1&0xff)+'@', ((rev1>>8)&0xff)+'@', rev2&0x1f);
    620   1.1    wiz }
    621   1.1    wiz 
    622   1.1    wiz /* Configure the DPL chip to Auto-detect the audio format */
    623  1.11    wiz void dpl_autodetect(bktr_ptr_t bktr) {
    624   1.1    wiz 
    625   1.1    wiz     /* The following are empiric values tried from the DPL35xx data sheet */
    626   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x000c,0x0320);	/* quasi peak detector source dolby
    627   1.1    wiz 								lr 0x03xx; quasi peak detector matrix
    628   1.1    wiz 								stereo 0xXX20 */
    629   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0040,0x0060);	/* Surround decoder mode;
    630   1.1    wiz 								ADAPTIVE/3D-PANORAMA, that means two
    631   1.1    wiz 								speakers and no center speaker, all
    632   1.1    wiz 								channels L/R/C/S mixed to L and R */
    633   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0041,0x0620);	/* surround source matrix;I2S2/STEREO*/
    634   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0042,0x1F00);	/* surround delay 31ms max */
    635   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0043,0x0000);	/* automatic surround input balance */
    636   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0044,0x4000);	/* surround spatial effect 50%
    637   1.1    wiz 								recommended*/
    638   1.1    wiz     msp_dpl_write(bktr, bktr->dpl_addr, 0x12, 0x0045,0x5400);	/* surround panorama effect 66%
    639   1.1    wiz 								recommended with PANORAMA mode
    640   1.1    wiz 								in 0x0040 set to panorama */
    641   1.1    wiz }
    642   1.1    wiz 
    643