|
@@ -28,7 +28,6 @@
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/kernel.h>
|
|
|
#include <linux/bitmap.h>
|
|
|
-#include <linux/usb.h>
|
|
|
#include <linux/i2c.h>
|
|
|
#include <linux/mm.h>
|
|
|
#include <linux/mutex.h>
|
|
@@ -83,10 +82,10 @@ void initGPIO(struct cx231xx *dev)
|
|
|
cx231xx_send_gpio_cmd(dev, _gpio_direction, (u8 *)&value, 4, 0, 0);
|
|
|
|
|
|
verve_read_byte(dev, 0x07, &val);
|
|
|
- pr_debug("verve_read_byte address0x07=0x%x\n", val);
|
|
|
+ dev_dbg(&dev->udev->dev, "verve_read_byte address0x07=0x%x\n", val);
|
|
|
verve_write_byte(dev, 0x07, 0xF4);
|
|
|
verve_read_byte(dev, 0x07, &val);
|
|
|
- pr_debug("verve_read_byte address0x07=0x%x\n", val);
|
|
|
+ dev_dbg(&dev->udev->dev, "verve_read_byte address0x07=0x%x\n", val);
|
|
|
|
|
|
cx231xx_capture_start(dev, 1, Vbi);
|
|
|
|
|
@@ -156,7 +155,8 @@ int cx231xx_afe_init_super_block(struct cx231xx *dev, u32 ref_count)
|
|
|
while (afe_power_status != 0x18) {
|
|
|
status = afe_write_byte(dev, SUP_BLK_PWRDN, 0x18);
|
|
|
if (status < 0) {
|
|
|
- pr_debug("%s: Init Super Block failed in send cmd\n",
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: Init Super Block failed in send cmd\n",
|
|
|
__func__);
|
|
|
break;
|
|
|
}
|
|
@@ -164,13 +164,15 @@ int cx231xx_afe_init_super_block(struct cx231xx *dev, u32 ref_count)
|
|
|
status = afe_read_byte(dev, SUP_BLK_PWRDN, &afe_power_status);
|
|
|
afe_power_status &= 0xff;
|
|
|
if (status < 0) {
|
|
|
- pr_debug("%s: Init Super Block failed in receive cmd\n",
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: Init Super Block failed in receive cmd\n",
|
|
|
__func__);
|
|
|
break;
|
|
|
}
|
|
|
i++;
|
|
|
if (i == 10) {
|
|
|
- pr_debug("%s: Init Super Block force break in loop !!!!\n",
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: Init Super Block force break in loop !!!!\n",
|
|
|
__func__);
|
|
|
status = -1;
|
|
|
break;
|
|
@@ -410,7 +412,7 @@ int cx231xx_afe_update_power_control(struct cx231xx *dev,
|
|
|
status |= afe_write_byte(dev, ADC_PWRDN_CLAMP_CH3,
|
|
|
0x00);
|
|
|
} else {
|
|
|
- pr_debug("Invalid AV mode input\n");
|
|
|
+ dev_dbg(&dev->udev->dev, "Invalid AV mode input\n");
|
|
|
status = -1;
|
|
|
}
|
|
|
break;
|
|
@@ -467,7 +469,7 @@ int cx231xx_afe_update_power_control(struct cx231xx *dev,
|
|
|
status |= afe_write_byte(dev, ADC_PWRDN_CLAMP_CH3,
|
|
|
0x40);
|
|
|
} else {
|
|
|
- pr_debug("Invalid AV mode input\n");
|
|
|
+ dev_dbg(&dev->udev->dev, "Invalid AV mode input\n");
|
|
|
status = -1;
|
|
|
}
|
|
|
} /* switch */
|
|
@@ -573,9 +575,9 @@ int cx231xx_set_video_input_mux(struct cx231xx *dev, u8 input)
|
|
|
status = cx231xx_set_power_mode(dev,
|
|
|
POLARIS_AVMODE_ENXTERNAL_AV);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: set_power_mode : Failed to"
|
|
|
- " set Power - errCode [%d]!\n",
|
|
|
- __func__, status);
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: Failed to set Power - errCode [%d]!\n",
|
|
|
+ __func__, status);
|
|
|
return status;
|
|
|
}
|
|
|
}
|
|
@@ -591,8 +593,8 @@ int cx231xx_set_video_input_mux(struct cx231xx *dev, u8 input)
|
|
|
status = cx231xx_set_power_mode(dev,
|
|
|
POLARIS_AVMODE_ANALOGT_TV);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: set_power_mode:Failed"
|
|
|
- " to set Power - errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: Failed to set Power - errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -608,8 +610,8 @@ int cx231xx_set_video_input_mux(struct cx231xx *dev, u8 input)
|
|
|
|
|
|
break;
|
|
|
default:
|
|
|
- pr_err("%s: set_power_mode : Unknown Input %d !\n",
|
|
|
- __func__, INPUT(input)->type);
|
|
|
+ dev_err(&dev->udev->dev, "%s: Unknown Input %d !\n",
|
|
|
+ __func__, INPUT(input)->type);
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -628,7 +630,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
if (pin_type != dev->video_input) {
|
|
|
status = cx231xx_afe_adjust_ref_count(dev, pin_type);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: adjust_ref_count :Failed to set AFE input mux - errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: adjust_ref_count :Failed to set AFE input mux - errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -637,7 +640,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
/* call afe block to set video inputs */
|
|
|
status = cx231xx_afe_set_input_mux(dev, input);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: set_input_mux :Failed to set AFE input mux - errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: set_input_mux :Failed to set AFE input mux - errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -668,7 +672,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
/* Tell DIF object to go to baseband mode */
|
|
|
status = cx231xx_dif_set_standard(dev, DIF_USE_BASEBAND);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -712,7 +717,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
/* Tell DIF object to go to baseband mode */
|
|
|
status = cx231xx_dif_set_standard(dev, DIF_USE_BASEBAND);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -786,7 +792,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
status = cx231xx_dif_set_standard(dev,
|
|
|
DIF_USE_BASEBAND);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -821,7 +828,8 @@ int cx231xx_set_decoder_video_input(struct cx231xx *dev,
|
|
|
/* Reinitialize the DIF */
|
|
|
status = cx231xx_dif_set_standard(dev, dev->norm);
|
|
|
if (status < 0) {
|
|
|
- pr_err("%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
+ dev_err(&dev->udev->dev,
|
|
|
+ "%s: cx231xx_dif set to By pass mode- errCode [%d]!\n",
|
|
|
__func__, status);
|
|
|
return status;
|
|
|
}
|
|
@@ -964,14 +972,14 @@ int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev)
|
|
|
{
|
|
|
int status = 0;
|
|
|
|
|
|
- pr_debug("%s: 0x%x\n",
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: 0x%x\n",
|
|
|
__func__, (unsigned int)dev->norm);
|
|
|
|
|
|
/* Change the DFE_CTRL3 bp_percent to fix flagging */
|
|
|
status = vid_blk_write_word(dev, DFE_CTRL3, 0xCD3F0280);
|
|
|
|
|
|
if (dev->norm & (V4L2_STD_NTSC | V4L2_STD_PAL_M)) {
|
|
|
- pr_debug("%s: NTSC\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: NTSC\n", __func__);
|
|
|
|
|
|
/* Move the close caption lines out of active video,
|
|
|
adjust the active video start point */
|
|
@@ -998,7 +1006,7 @@ int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev)
|
|
|
(FLD_HBLANK_CNT, 0x79));
|
|
|
|
|
|
} else if (dev->norm & V4L2_STD_SECAM) {
|
|
|
- pr_debug("%s: SECAM\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: SECAM\n", __func__);
|
|
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
|
|
VID_BLK_I2C_ADDRESS,
|
|
|
VERT_TIM_CTRL,
|
|
@@ -1025,7 +1033,7 @@ int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev)
|
|
|
cx231xx_set_field
|
|
|
(FLD_HBLANK_CNT, 0x85));
|
|
|
} else {
|
|
|
- pr_debug("%s: PAL\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: PAL\n", __func__);
|
|
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
|
|
VID_BLK_I2C_ADDRESS,
|
|
|
VERT_TIM_CTRL,
|
|
@@ -1325,111 +1333,129 @@ void cx231xx_dump_HH_reg(struct cx231xx *dev)
|
|
|
|
|
|
for (i = 0x100; i < 0x140; i++) {
|
|
|
vid_blk_read_word(dev, i, &value);
|
|
|
- pr_debug("reg0x%x=0x%x\n", i, value);
|
|
|
+ dev_dbg(&dev->udev->dev, "reg0x%x=0x%x\n", i, value);
|
|
|
i = i+3;
|
|
|
}
|
|
|
|
|
|
for (i = 0x300; i < 0x400; i++) {
|
|
|
vid_blk_read_word(dev, i, &value);
|
|
|
- pr_debug("reg0x%x=0x%x\n", i, value);
|
|
|
+ dev_dbg(&dev->udev->dev, "reg0x%x=0x%x\n", i, value);
|
|
|
i = i+3;
|
|
|
}
|
|
|
|
|
|
for (i = 0x400; i < 0x440; i++) {
|
|
|
vid_blk_read_word(dev, i, &value);
|
|
|
- pr_debug("reg0x%x=0x%x\n", i, value);
|
|
|
+ dev_dbg(&dev->udev->dev, "reg0x%x=0x%x\n", i, value);
|
|
|
i = i+3;
|
|
|
}
|
|
|
|
|
|
vid_blk_read_word(dev, AFE_CTRL_C2HH_SRC_CTRL, &value);
|
|
|
- pr_debug("AFE_CTRL_C2HH_SRC_CTRL=0x%x\n", value);
|
|
|
+ dev_dbg(&dev->udev->dev, "AFE_CTRL_C2HH_SRC_CTRL=0x%x\n", value);
|
|
|
vid_blk_write_word(dev, AFE_CTRL_C2HH_SRC_CTRL, 0x4485D390);
|
|
|
vid_blk_read_word(dev, AFE_CTRL_C2HH_SRC_CTRL, &value);
|
|
|
- pr_debug("AFE_CTRL_C2HH_SRC_CTRL=0x%x\n", value);
|
|
|
+ dev_dbg(&dev->udev->dev, "AFE_CTRL_C2HH_SRC_CTRL=0x%x\n", value);
|
|
|
}
|
|
|
|
|
|
#if 0
|
|
|
static void cx231xx_dump_SC_reg(struct cx231xx *dev)
|
|
|
{
|
|
|
u8 value[4] = { 0, 0, 0, 0 };
|
|
|
- pr_debug("%s!\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s!\n", __func__);
|
|
|
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, BOARD_CFG_STAT,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", BOARD_CFG_STAT, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", BOARD_CFG_STAT, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, TS_MODE_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS_MODE_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS_MODE_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, TS1_CFG_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS1_CFG_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS1_CFG_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, TS1_LENGTH_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS1_LENGTH_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS1_LENGTH_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, TS2_CFG_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS2_CFG_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS2_CFG_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, TS2_LENGTH_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS2_LENGTH_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", TS2_LENGTH_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, EP_MODE_SET,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", EP_MODE_SET, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", EP_MODE_SET, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_PTN1,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN1, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN1, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_PTN2,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN2, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN2, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_PTN3,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN3, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_PTN3, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_MASK0,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK0, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK0, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_MASK1,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK1, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK1, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_PWR_MASK2,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK2, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_PWR_MASK2, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_GAIN,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_GAIN, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_GAIN, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_CAR_REG,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_CAR_REG, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_CAR_REG, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_OT_CFG1,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_OT_CFG1, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_OT_CFG1, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, CIR_OT_CFG2,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_OT_CFG2, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", CIR_OT_CFG2, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, PWR_CTL_EN,
|
|
|
value, 4);
|
|
|
- pr_debug("reg0x%x=0x%x 0x%x 0x%x 0x%x\n", PWR_CTL_EN, value[0],
|
|
|
- value[1], value[2], value[3]);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "reg0x%x=0x%x 0x%x 0x%x 0x%x\n", PWR_CTL_EN, value[0],
|
|
|
+ value[1], value[2], value[3]);
|
|
|
}
|
|
|
#endif
|
|
|
|
|
@@ -1497,7 +1523,7 @@ void cx231xx_set_Colibri_For_LowIF(struct cx231xx *dev, u32 if_freq,
|
|
|
u32 standard = 0;
|
|
|
u8 value[4] = { 0, 0, 0, 0 };
|
|
|
|
|
|
- pr_debug("Enter cx231xx_set_Colibri_For_LowIF()\n");
|
|
|
+ dev_dbg(&dev->udev->dev, "Enter cx231xx_set_Colibri_For_LowIF()\n");
|
|
|
value[0] = (u8) 0x6F;
|
|
|
value[1] = (u8) 0x6F;
|
|
|
value[2] = (u8) 0x6F;
|
|
@@ -1517,7 +1543,7 @@ void cx231xx_set_Colibri_For_LowIF(struct cx231xx *dev, u32 if_freq,
|
|
|
colibri_carrier_offset = cx231xx_Get_Colibri_CarrierOffset(mode,
|
|
|
standard);
|
|
|
|
|
|
- pr_debug("colibri_carrier_offset=%d, standard=0x%x\n",
|
|
|
+ dev_dbg(&dev->udev->dev, "colibri_carrier_offset=%d, standard=0x%x\n",
|
|
|
colibri_carrier_offset, standard);
|
|
|
|
|
|
/* Set the band Pass filter for DIF*/
|
|
@@ -1551,8 +1577,8 @@ void cx231xx_set_DIF_bandpass(struct cx231xx *dev, u32 if_freq,
|
|
|
u64 pll_freq_u64 = 0;
|
|
|
u32 i = 0;
|
|
|
|
|
|
- pr_debug("if_freq=%d;spectral_invert=0x%x;mode=0x%x\n",
|
|
|
- if_freq, spectral_invert, mode);
|
|
|
+ dev_dbg(&dev->udev->dev, "if_freq=%d;spectral_invert=0x%x;mode=0x%x\n",
|
|
|
+ if_freq, spectral_invert, mode);
|
|
|
|
|
|
|
|
|
if (mode == TUNER_MODE_FM_RADIO) {
|
|
@@ -1595,8 +1621,7 @@ void cx231xx_set_DIF_bandpass(struct cx231xx *dev, u32 if_freq,
|
|
|
if_freq = 16000000;
|
|
|
}
|
|
|
|
|
|
- pr_debug("Enter IF=%zu\n",
|
|
|
- ARRAY_SIZE(Dif_set_array));
|
|
|
+ dev_dbg(&dev->udev->dev, "Enter IF=%zu\n", ARRAY_SIZE(Dif_set_array));
|
|
|
for (i = 0; i < ARRAY_SIZE(Dif_set_array); i++) {
|
|
|
if (Dif_set_array[i].if_freq == if_freq) {
|
|
|
vid_blk_write_word(dev,
|
|
@@ -1708,7 +1733,7 @@ int cx231xx_dif_set_standard(struct cx231xx *dev, u32 standard)
|
|
|
u32 dif_misc_ctrl_value = 0;
|
|
|
u32 func_mode = 0;
|
|
|
|
|
|
- pr_debug("%s: setStandard to %x\n", __func__, standard);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: setStandard to %x\n", __func__, standard);
|
|
|
|
|
|
status = vid_blk_read_word(dev, DIF_MISC_CTRL, &dif_misc_ctrl_value);
|
|
|
if (standard != DIF_USE_BASEBAND)
|
|
@@ -2111,8 +2136,8 @@ int cx231xx_tuner_post_channel_change(struct cx231xx *dev)
|
|
|
{
|
|
|
int status = 0;
|
|
|
u32 dwval;
|
|
|
- pr_debug("%s: dev->tuner_type =0%d\n",
|
|
|
- __func__, dev->tuner_type);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: dev->tuner_type =0%d\n",
|
|
|
+ __func__, dev->tuner_type);
|
|
|
/* Set the RF and IF k_agc values to 4 for PAL/NTSC and 8 for
|
|
|
* SECAM L/B/D standards */
|
|
|
status = vid_blk_read_word(dev, DIF_AGC_IF_REF, &dwval);
|
|
@@ -2213,7 +2238,7 @@ int cx231xx_set_power_mode(struct cx231xx *dev, enum AV_MODE mode)
|
|
|
if (dev->power_mode != mode)
|
|
|
dev->power_mode = mode;
|
|
|
else {
|
|
|
- pr_debug("%s: mode = %d, No Change req.\n",
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: mode = %d, No Change req.\n",
|
|
|
__func__, mode);
|
|
|
return 0;
|
|
|
}
|
|
@@ -2453,7 +2478,7 @@ int cx231xx_start_stream(struct cx231xx *dev, u32 ep_mask)
|
|
|
u32 tmp = 0;
|
|
|
int status = 0;
|
|
|
|
|
|
- pr_debug("%s: ep_mask = %x\n", __func__, ep_mask);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: ep_mask = %x\n", __func__, ep_mask);
|
|
|
status = cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, EP_MODE_SET,
|
|
|
value, 4);
|
|
|
if (status < 0)
|
|
@@ -2478,7 +2503,7 @@ int cx231xx_stop_stream(struct cx231xx *dev, u32 ep_mask)
|
|
|
u32 tmp = 0;
|
|
|
int status = 0;
|
|
|
|
|
|
- pr_debug("%s: ep_mask = %x\n", __func__, ep_mask);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: ep_mask = %x\n", __func__, ep_mask);
|
|
|
status =
|
|
|
cx231xx_read_ctrl_reg(dev, VRT_GET_REGISTER, EP_MODE_SET, value, 4);
|
|
|
if (status < 0)
|
|
@@ -2506,32 +2531,38 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type)
|
|
|
if (dev->udev->speed == USB_SPEED_HIGH) {
|
|
|
switch (media_type) {
|
|
|
case Audio:
|
|
|
- pr_debug("%s: Audio enter HANC\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: Audio enter HANC\n", __func__);
|
|
|
status =
|
|
|
cx231xx_mode_register(dev, TS_MODE_REG, 0x9300);
|
|
|
break;
|
|
|
|
|
|
case Vbi:
|
|
|
- pr_debug("%s: set vanc registers\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: set vanc registers\n", __func__);
|
|
|
status = cx231xx_mode_register(dev, TS_MODE_REG, 0x300);
|
|
|
break;
|
|
|
|
|
|
case Sliced_cc:
|
|
|
- pr_debug("%s: set hanc registers\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: set hanc registers\n", __func__);
|
|
|
status =
|
|
|
cx231xx_mode_register(dev, TS_MODE_REG, 0x1300);
|
|
|
break;
|
|
|
|
|
|
case Raw_Video:
|
|
|
- pr_debug("%s: set video registers\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: set video registers\n", __func__);
|
|
|
status = cx231xx_mode_register(dev, TS_MODE_REG, 0x100);
|
|
|
break;
|
|
|
|
|
|
case TS1_serial_mode:
|
|
|
- pr_debug("%s: set ts1 registers", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: set ts1 registers", __func__);
|
|
|
|
|
|
if (dev->board.has_417) {
|
|
|
- pr_debug("%s: MPEG\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: MPEG\n", __func__);
|
|
|
value &= 0xFFFFFFFC;
|
|
|
value |= 0x3;
|
|
|
|
|
@@ -2554,7 +2585,7 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type)
|
|
|
VRT_SET_REGISTER,
|
|
|
TS1_LENGTH_REG, val, 4);
|
|
|
} else {
|
|
|
- pr_debug("%s: BDA\n", __func__);
|
|
|
+ dev_dbg(&dev->udev->dev, "%s: BDA\n", __func__);
|
|
|
status = cx231xx_mode_register(dev,
|
|
|
TS_MODE_REG, 0x101);
|
|
|
status = cx231xx_mode_register(dev,
|
|
@@ -2563,8 +2594,9 @@ int cx231xx_initialize_stream_xfer(struct cx231xx *dev, u32 media_type)
|
|
|
break;
|
|
|
|
|
|
case TS1_parallel_mode:
|
|
|
- pr_debug("%s: set ts1 parallel mode registers\n",
|
|
|
- __func__);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "%s: set ts1 parallel mode registers\n",
|
|
|
+ __func__);
|
|
|
status = cx231xx_mode_register(dev, TS_MODE_REG, 0x100);
|
|
|
status = cx231xx_mode_register(dev, TS1_CFG_REG, 0x400);
|
|
|
break;
|
|
@@ -2917,8 +2949,9 @@ int cx231xx_gpio_i2c_read_ack(struct cx231xx *dev)
|
|
|
(nCnt > 0));
|
|
|
|
|
|
if (nCnt == 0)
|
|
|
- pr_debug("No ACK after %d msec -GPIO I2C failed!",
|
|
|
- nInit * 10);
|
|
|
+ dev_dbg(&dev->udev->dev,
|
|
|
+ "No ACK after %d msec -GPIO I2C failed!",
|
|
|
+ nInit * 10);
|
|
|
|
|
|
/*
|
|
|
* readAck
|