Path: blob/master/drivers/media/dvb/dvb-usb/dibusb-common.c
15111 views
/* Common methods for dibusb-based-receivers.1*2* Copyright (C) 2004-5 Patrick Boettcher ([email protected])3*4* This program is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License as published by the Free6* Software Foundation, version 2.7*8* see Documentation/dvb/README.dvb-usb for more information9*/10#include "dibusb.h"1112static int debug;13module_param(debug, int, 0644);14MODULE_PARM_DESC(debug, "set debugging level (1=info (|-able))." DVB_USB_DEBUG_STATUS);15MODULE_LICENSE("GPL");1617#define deb_info(args...) dprintk(debug,0x01,args)1819/* common stuff used by the different dibusb modules */20int dibusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)21{22if (adap->priv != NULL) {23struct dibusb_state *st = adap->priv;24if (st->ops.fifo_ctrl != NULL)25if (st->ops.fifo_ctrl(adap->fe,onoff)) {26err("error while controlling the fifo of the demod.");27return -ENODEV;28}29}30return 0;31}32EXPORT_SYMBOL(dibusb_streaming_ctrl);3334int dibusb_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)35{36if (adap->priv != NULL) {37struct dibusb_state *st = adap->priv;38if (st->ops.pid_ctrl != NULL)39st->ops.pid_ctrl(adap->fe,index,pid,onoff);40}41return 0;42}43EXPORT_SYMBOL(dibusb_pid_filter);4445int dibusb_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)46{47if (adap->priv != NULL) {48struct dibusb_state *st = adap->priv;49if (st->ops.pid_parse != NULL)50if (st->ops.pid_parse(adap->fe,onoff) < 0)51err("could not handle pid_parser");52}53return 0;54}55EXPORT_SYMBOL(dibusb_pid_filter_ctrl);5657int dibusb_power_ctrl(struct dvb_usb_device *d, int onoff)58{59u8 b[3];60int ret;61b[0] = DIBUSB_REQ_SET_IOCTL;62b[1] = DIBUSB_IOCTL_CMD_POWER_MODE;63b[2] = onoff ? DIBUSB_IOCTL_POWER_WAKEUP : DIBUSB_IOCTL_POWER_SLEEP;64ret = dvb_usb_generic_write(d,b,3);65msleep(10);66return ret;67}68EXPORT_SYMBOL(dibusb_power_ctrl);6970int dibusb2_0_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)71{72u8 b[3] = { 0 };73int ret;7475if ((ret = dibusb_streaming_ctrl(adap,onoff)) < 0)76return ret;7778if (onoff) {79b[0] = DIBUSB_REQ_SET_STREAMING_MODE;80b[1] = 0x00;81if ((ret = dvb_usb_generic_write(adap->dev,b,2)) < 0)82return ret;83}8485b[0] = DIBUSB_REQ_SET_IOCTL;86b[1] = onoff ? DIBUSB_IOCTL_CMD_ENABLE_STREAM : DIBUSB_IOCTL_CMD_DISABLE_STREAM;87return dvb_usb_generic_write(adap->dev,b,3);88}89EXPORT_SYMBOL(dibusb2_0_streaming_ctrl);9091int dibusb2_0_power_ctrl(struct dvb_usb_device *d, int onoff)92{93if (onoff) {94u8 b[3] = { DIBUSB_REQ_SET_IOCTL, DIBUSB_IOCTL_CMD_POWER_MODE, DIBUSB_IOCTL_POWER_WAKEUP };95return dvb_usb_generic_write(d,b,3);96} else97return 0;98}99EXPORT_SYMBOL(dibusb2_0_power_ctrl);100101static int dibusb_i2c_msg(struct dvb_usb_device *d, u8 addr,102u8 *wbuf, u16 wlen, u8 *rbuf, u16 rlen)103{104u8 sndbuf[wlen+4]; /* lead(1) devaddr,direction(1) addr(2) data(wlen) (len(2) (when reading)) */105/* write only ? */106int wo = (rbuf == NULL || rlen == 0),107len = 2 + wlen + (wo ? 0 : 2);108109sndbuf[0] = wo ? DIBUSB_REQ_I2C_WRITE : DIBUSB_REQ_I2C_READ;110sndbuf[1] = (addr << 1) | (wo ? 0 : 1);111112memcpy(&sndbuf[2],wbuf,wlen);113114if (!wo) {115sndbuf[wlen+2] = (rlen >> 8) & 0xff;116sndbuf[wlen+3] = rlen & 0xff;117}118119return dvb_usb_generic_rw(d,sndbuf,len,rbuf,rlen,0);120}121122/*123* I2C master xfer function124*/125static int dibusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)126{127struct dvb_usb_device *d = i2c_get_adapdata(adap);128int i;129130if (mutex_lock_interruptible(&d->i2c_mutex) < 0)131return -EAGAIN;132133for (i = 0; i < num; i++) {134/* write/read request */135if (i+1 < num && (msg[i].flags & I2C_M_RD) == 0136&& (msg[i+1].flags & I2C_M_RD)) {137if (dibusb_i2c_msg(d, msg[i].addr, msg[i].buf,msg[i].len,138msg[i+1].buf,msg[i+1].len) < 0)139break;140i++;141} else if ((msg[i].flags & I2C_M_RD) == 0) {142if (dibusb_i2c_msg(d, msg[i].addr, msg[i].buf,msg[i].len,NULL,0) < 0)143break;144} else if (msg[i].addr != 0x50) {145/* 0x50 is the address of the eeprom - we need to protect it146* from dibusb's bad i2c implementation: reads without147* writing the offset before are forbidden */148if (dibusb_i2c_msg(d, msg[i].addr, NULL, 0, msg[i].buf, msg[i].len) < 0)149break;150}151}152153mutex_unlock(&d->i2c_mutex);154return i;155}156157static u32 dibusb_i2c_func(struct i2c_adapter *adapter)158{159return I2C_FUNC_I2C;160}161162struct i2c_algorithm dibusb_i2c_algo = {163.master_xfer = dibusb_i2c_xfer,164.functionality = dibusb_i2c_func,165};166EXPORT_SYMBOL(dibusb_i2c_algo);167168int dibusb_read_eeprom_byte(struct dvb_usb_device *d, u8 offs, u8 *val)169{170u8 wbuf[1] = { offs };171return dibusb_i2c_msg(d, 0x50, wbuf, 1, val, 1);172}173EXPORT_SYMBOL(dibusb_read_eeprom_byte);174175/* 3000MC/P stuff */176// Config Adjacent channels Perf -cal22177static struct dibx000_agc_config dib3000p_mt2060_agc_config = {178.band_caps = BAND_VHF | BAND_UHF,179.setup = (1 << 8) | (5 << 5) | (1 << 4) | (1 << 3) | (0 << 2) | (2 << 0),180181.agc1_max = 48497,182.agc1_min = 23593,183.agc2_max = 46531,184.agc2_min = 24904,185186.agc1_pt1 = 0x65,187.agc1_pt2 = 0x69,188189.agc1_slope1 = 0x51,190.agc1_slope2 = 0x27,191192.agc2_pt1 = 0,193.agc2_pt2 = 0x33,194195.agc2_slope1 = 0x35,196.agc2_slope2 = 0x37,197};198199static struct dib3000mc_config stk3000p_dib3000p_config = {200&dib3000p_mt2060_agc_config,201202.max_time = 0x196,203.ln_adc_level = 0x1cc7,204205.output_mpeg2_in_188_bytes = 1,206207.agc_command1 = 1,208.agc_command2 = 1,209};210211static struct dibx000_agc_config dib3000p_panasonic_agc_config = {212.band_caps = BAND_VHF | BAND_UHF,213.setup = (1 << 8) | (5 << 5) | (1 << 4) | (1 << 3) | (0 << 2) | (2 << 0),214215.agc1_max = 56361,216.agc1_min = 22282,217.agc2_max = 47841,218.agc2_min = 36045,219220.agc1_pt1 = 0x3b,221.agc1_pt2 = 0x6b,222223.agc1_slope1 = 0x55,224.agc1_slope2 = 0x1d,225226.agc2_pt1 = 0,227.agc2_pt2 = 0x0a,228229.agc2_slope1 = 0x95,230.agc2_slope2 = 0x1e,231};232233#if defined(CONFIG_DVB_DIB3000MC) || \234(defined(CONFIG_DVB_DIB3000MC_MODULE) && defined(MODULE))235236static struct dib3000mc_config mod3000p_dib3000p_config = {237&dib3000p_panasonic_agc_config,238239.max_time = 0x51,240.ln_adc_level = 0x1cc7,241242.output_mpeg2_in_188_bytes = 1,243244.agc_command1 = 1,245.agc_command2 = 1,246};247248int dibusb_dib3000mc_frontend_attach(struct dvb_usb_adapter *adap)249{250if (adap->dev->udev->descriptor.idVendor == USB_VID_LITEON &&251adap->dev->udev->descriptor.idProduct ==252USB_PID_LITEON_DVB_T_WARM) {253msleep(1000);254}255256if ((adap->fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap, DEFAULT_DIB3000P_I2C_ADDRESS, &mod3000p_dib3000p_config)) != NULL ||257(adap->fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap, DEFAULT_DIB3000MC_I2C_ADDRESS, &mod3000p_dib3000p_config)) != NULL) {258if (adap->priv != NULL) {259struct dibusb_state *st = adap->priv;260st->ops.pid_parse = dib3000mc_pid_parse;261st->ops.pid_ctrl = dib3000mc_pid_control;262}263return 0;264}265return -ENODEV;266}267EXPORT_SYMBOL(dibusb_dib3000mc_frontend_attach);268269static struct mt2060_config stk3000p_mt2060_config = {2700x60271};272273int dibusb_dib3000mc_tuner_attach(struct dvb_usb_adapter *adap)274{275struct dibusb_state *st = adap->priv;276u8 a,b;277u16 if1 = 1220;278struct i2c_adapter *tun_i2c;279280// First IF calibration for Liteon Sticks281if (adap->dev->udev->descriptor.idVendor == USB_VID_LITEON &&282adap->dev->udev->descriptor.idProduct == USB_PID_LITEON_DVB_T_WARM) {283284dibusb_read_eeprom_byte(adap->dev,0x7E,&a);285dibusb_read_eeprom_byte(adap->dev,0x7F,&b);286287if (a == 0x00)288if1 += b;289else if (a == 0x80)290if1 -= b;291else292warn("LITE-ON DVB-T: Strange IF1 calibration :%2X %2X\n", a, b);293294} else if (adap->dev->udev->descriptor.idVendor == USB_VID_DIBCOM &&295adap->dev->udev->descriptor.idProduct == USB_PID_DIBCOM_MOD3001_WARM) {296u8 desc;297dibusb_read_eeprom_byte(adap->dev, 7, &desc);298if (desc == 2) {299a = 127;300do {301dibusb_read_eeprom_byte(adap->dev, a, &desc);302a--;303} while (a > 7 && (desc == 0xff || desc == 0x00));304if (desc & 0x80)305if1 -= (0xff - desc);306else307if1 += desc;308}309}310311tun_i2c = dib3000mc_get_tuner_i2c_master(adap->fe, 1);312if (dvb_attach(mt2060_attach, adap->fe, tun_i2c, &stk3000p_mt2060_config, if1) == NULL) {313/* not found - use panasonic pll parameters */314if (dvb_attach(dvb_pll_attach, adap->fe, 0x60, tun_i2c, DVB_PLL_ENV57H1XD5) == NULL)315return -ENOMEM;316} else {317st->mt2060_present = 1;318/* set the correct parameters for the dib3000p */319dib3000mc_set_config(adap->fe, &stk3000p_dib3000p_config);320}321return 0;322}323EXPORT_SYMBOL(dibusb_dib3000mc_tuner_attach);324#endif325326/*327* common remote control stuff328*/329struct rc_map_table rc_map_dibusb_table[] = {330/* Key codes for the little Artec T1/Twinhan/HAMA/ remote. */331{ 0x0016, KEY_POWER },332{ 0x0010, KEY_MUTE },333{ 0x0003, KEY_1 },334{ 0x0001, KEY_2 },335{ 0x0006, KEY_3 },336{ 0x0009, KEY_4 },337{ 0x001d, KEY_5 },338{ 0x001f, KEY_6 },339{ 0x000d, KEY_7 },340{ 0x0019, KEY_8 },341{ 0x001b, KEY_9 },342{ 0x0015, KEY_0 },343{ 0x0005, KEY_CHANNELUP },344{ 0x0002, KEY_CHANNELDOWN },345{ 0x001e, KEY_VOLUMEUP },346{ 0x000a, KEY_VOLUMEDOWN },347{ 0x0011, KEY_RECORD },348{ 0x0017, KEY_FAVORITES }, /* Heart symbol - Channel list. */349{ 0x0014, KEY_PLAY },350{ 0x001a, KEY_STOP },351{ 0x0040, KEY_REWIND },352{ 0x0012, KEY_FASTFORWARD },353{ 0x000e, KEY_PREVIOUS }, /* Recall - Previous channel. */354{ 0x004c, KEY_PAUSE },355{ 0x004d, KEY_SCREEN }, /* Full screen mode. */356{ 0x0054, KEY_AUDIO }, /* MTS - Switch to secondary audio. */357/* additional keys TwinHan VisionPlus, the Artec seemingly not have */358{ 0x000c, KEY_CANCEL }, /* Cancel */359{ 0x001c, KEY_EPG }, /* EPG */360{ 0x0000, KEY_TAB }, /* Tab */361{ 0x0048, KEY_INFO }, /* Preview */362{ 0x0004, KEY_LIST }, /* RecordList */363{ 0x000f, KEY_TEXT }, /* Teletext */364/* Key codes for the KWorld/ADSTech/JetWay remote. */365{ 0x8612, KEY_POWER },366{ 0x860f, KEY_SELECT }, /* source */367{ 0x860c, KEY_UNKNOWN }, /* scan */368{ 0x860b, KEY_EPG },369{ 0x8610, KEY_MUTE },370{ 0x8601, KEY_1 },371{ 0x8602, KEY_2 },372{ 0x8603, KEY_3 },373{ 0x8604, KEY_4 },374{ 0x8605, KEY_5 },375{ 0x8606, KEY_6 },376{ 0x8607, KEY_7 },377{ 0x8608, KEY_8 },378{ 0x8609, KEY_9 },379{ 0x860a, KEY_0 },380{ 0x8618, KEY_ZOOM },381{ 0x861c, KEY_UNKNOWN }, /* preview */382{ 0x8613, KEY_UNKNOWN }, /* snap */383{ 0x8600, KEY_UNDO },384{ 0x861d, KEY_RECORD },385{ 0x860d, KEY_STOP },386{ 0x860e, KEY_PAUSE },387{ 0x8616, KEY_PLAY },388{ 0x8611, KEY_BACK },389{ 0x8619, KEY_FORWARD },390{ 0x8614, KEY_UNKNOWN }, /* pip */391{ 0x8615, KEY_ESC },392{ 0x861a, KEY_UP },393{ 0x861e, KEY_DOWN },394{ 0x861f, KEY_LEFT },395{ 0x861b, KEY_RIGHT },396397/* Key codes for the DiBcom MOD3000 remote. */398{ 0x8000, KEY_MUTE },399{ 0x8001, KEY_TEXT },400{ 0x8002, KEY_HOME },401{ 0x8003, KEY_POWER },402403{ 0x8004, KEY_RED },404{ 0x8005, KEY_GREEN },405{ 0x8006, KEY_YELLOW },406{ 0x8007, KEY_BLUE },407408{ 0x8008, KEY_DVD },409{ 0x8009, KEY_AUDIO },410{ 0x800a, KEY_IMAGES }, /* Pictures */411{ 0x800b, KEY_VIDEO },412413{ 0x800c, KEY_BACK },414{ 0x800d, KEY_UP },415{ 0x800e, KEY_RADIO },416{ 0x800f, KEY_EPG },417418{ 0x8010, KEY_LEFT },419{ 0x8011, KEY_OK },420{ 0x8012, KEY_RIGHT },421{ 0x8013, KEY_UNKNOWN }, /* SAP */422423{ 0x8014, KEY_TV },424{ 0x8015, KEY_DOWN },425{ 0x8016, KEY_MENU }, /* DVD Menu */426{ 0x8017, KEY_LAST },427428{ 0x8018, KEY_RECORD },429{ 0x8019, KEY_STOP },430{ 0x801a, KEY_PAUSE },431{ 0x801b, KEY_PLAY },432433{ 0x801c, KEY_PREVIOUS },434{ 0x801d, KEY_REWIND },435{ 0x801e, KEY_FASTFORWARD },436{ 0x801f, KEY_NEXT},437438{ 0x8040, KEY_1 },439{ 0x8041, KEY_2 },440{ 0x8042, KEY_3 },441{ 0x8043, KEY_CHANNELUP },442443{ 0x8044, KEY_4 },444{ 0x8045, KEY_5 },445{ 0x8046, KEY_6 },446{ 0x8047, KEY_CHANNELDOWN },447448{ 0x8048, KEY_7 },449{ 0x8049, KEY_8 },450{ 0x804a, KEY_9 },451{ 0x804b, KEY_VOLUMEUP },452453{ 0x804c, KEY_CLEAR },454{ 0x804d, KEY_0 },455{ 0x804e, KEY_ENTER },456{ 0x804f, KEY_VOLUMEDOWN },457};458EXPORT_SYMBOL(rc_map_dibusb_table);459460int dibusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)461{462u8 key[5],cmd = DIBUSB_REQ_POLL_REMOTE;463dvb_usb_generic_rw(d,&cmd,1,key,5,0);464dvb_usb_nec_rc_key_to_event(d,key,event,state);465if (key[0] != 0)466deb_info("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]);467return 0;468}469EXPORT_SYMBOL(dibusb_rc_query);470471472