Lines Matching refs:fdtv

230 static int avc_write(struct firedtv *fdtv)  in avc_write()  argument
234 fdtv->avc_reply_received = false; in avc_write()
238 debug_fcp(fdtv->avc_data, fdtv->avc_data_length); in avc_write()
240 err = fdtv_write(fdtv, FCP_COMMAND_REGISTER, in avc_write()
241 fdtv->avc_data, fdtv->avc_data_length); in avc_write()
243 dev_err(fdtv->device, "FCP command write failed\n"); in avc_write()
252 if (wait_event_timeout(fdtv->avc_wait, in avc_write()
253 fdtv->avc_reply_received, in avc_write()
257 dev_err(fdtv->device, "FCP response timed out\n"); in avc_write()
271 int avc_recv(struct firedtv *fdtv, void *data, size_t length) in avc_recv() argument
281 fdtv_handle_rc(fdtv, r->operand[4] << 8 | r->operand[5]); in avc_recv()
282 schedule_work(&fdtv->remote_ctrl_work); in avc_recv()
285 if (is_register_rc((void *)fdtv->avc_data)) in avc_recv()
289 dev_info(fdtv->device, in avc_recv()
295 if (fdtv->avc_reply_received) { in avc_recv()
296 dev_err(fdtv->device, "out-of-order AVC response, ignored\n"); in avc_recv()
300 memcpy(fdtv->avc_data, data, length); in avc_recv()
301 fdtv->avc_data_length = length; in avc_recv()
303 fdtv->avc_reply_received = true; in avc_recv()
304 wake_up(&fdtv->avc_wait); in avc_recv()
309 static int add_pid_filter(struct firedtv *fdtv, u8 *operand) in add_pid_filter() argument
314 if (test_bit(i, &fdtv->channel_active)) { in add_pid_filter()
317 operand[pos++] = (fdtv->channel_pid[i] >> 8) & 0x1f; in add_pid_filter()
318 operand[pos++] = fdtv->channel_pid[i] & 0xff; in add_pid_filter()
333 static int avc_tuner_tuneqpsk(struct firedtv *fdtv, in avc_tuner_tuneqpsk() argument
336 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_tuneqpsk()
343 if (fdtv->type == FIREDTV_DVB_S2) in avc_tuner_tuneqpsk()
368 if (fdtv->voltage == 0xff) in avc_tuner_tuneqpsk()
370 else if (fdtv->voltage == SEC_VOLTAGE_18) /* polarisation */ in avc_tuner_tuneqpsk()
375 if (fdtv->tone == 0xff) in avc_tuner_tuneqpsk()
377 else if (fdtv->tone == SEC_TONE_ON) /* band */ in avc_tuner_tuneqpsk()
382 if (fdtv->type == FIREDTV_DVB_S2) { in avc_tuner_tuneqpsk()
383 if (fdtv->fe.dtv_property_cache.delivery_system == SYS_DVBS2) { in avc_tuner_tuneqpsk()
384 switch (fdtv->fe.dtv_property_cache.modulation) { in avc_tuner_tuneqpsk()
390 switch (fdtv->fe.dtv_property_cache.rolloff) { in avc_tuner_tuneqpsk()
398 switch (fdtv->fe.dtv_property_cache.pilot) { in avc_tuner_tuneqpsk()
414 static int avc_tuner_dsd_dvb_c(struct firedtv *fdtv, in avc_tuner_dsd_dvb_c() argument
417 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd_dvb_c()
479 return 22 + add_pid_filter(fdtv, &c->operand[22]); in avc_tuner_dsd_dvb_c()
482 static int avc_tuner_dsd_dvb_t(struct firedtv *fdtv, in avc_tuner_dsd_dvb_t() argument
485 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd_dvb_t()
580 return 17 + add_pid_filter(fdtv, &c->operand[17]); in avc_tuner_dsd_dvb_t()
583 int avc_tuner_dsd(struct firedtv *fdtv, in avc_tuner_dsd() argument
586 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd()
589 mutex_lock(&fdtv->avc_mutex); in avc_tuner_dsd()
592 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_tuner_dsd()
594 switch (fdtv->type) { in avc_tuner_dsd()
596 case FIREDTV_DVB_S2: pos = avc_tuner_tuneqpsk(fdtv, p); break; in avc_tuner_dsd()
597 case FIREDTV_DVB_C: pos = avc_tuner_dsd_dvb_c(fdtv, p); break; in avc_tuner_dsd()
598 case FIREDTV_DVB_T: pos = avc_tuner_dsd_dvb_t(fdtv, p); break; in avc_tuner_dsd()
605 fdtv->avc_data_length = ALIGN(3 + pos, 4); in avc_tuner_dsd()
606 ret = avc_write(fdtv); in avc_tuner_dsd()
617 mutex_unlock(&fdtv->avc_mutex); in avc_tuner_dsd()
625 int avc_tuner_set_pids(struct firedtv *fdtv, unsigned char pidc, u16 pid[]) in avc_tuner_set_pids() argument
627 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_set_pids()
633 mutex_lock(&fdtv->avc_mutex); in avc_tuner_set_pids()
636 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_tuner_set_pids()
658 fdtv->avc_data_length = ALIGN(3 + pos, 4); in avc_tuner_set_pids()
659 ret = avc_write(fdtv); in avc_tuner_set_pids()
663 mutex_unlock(&fdtv->avc_mutex); in avc_tuner_set_pids()
671 int avc_tuner_get_ts(struct firedtv *fdtv) in avc_tuner_get_ts() argument
673 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_get_ts()
676 mutex_lock(&fdtv->avc_mutex); in avc_tuner_get_ts()
679 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_tuner_get_ts()
682 sl = fdtv->type == FIREDTV_DVB_T ? 0x0c : 0x11; in avc_tuner_get_ts()
698 fdtv->avc_data_length = fdtv->type == FIREDTV_DVB_T ? 24 : 28; in avc_tuner_get_ts()
699 ret = avc_write(fdtv); in avc_tuner_get_ts()
703 mutex_unlock(&fdtv->avc_mutex); in avc_tuner_get_ts()
711 int avc_identify_subunit(struct firedtv *fdtv) in avc_identify_subunit() argument
713 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_identify_subunit()
714 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_identify_subunit()
717 mutex_lock(&fdtv->avc_mutex); in avc_identify_subunit()
720 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_identify_subunit()
732 fdtv->avc_data_length = 12; in avc_identify_subunit()
733 ret = avc_write(fdtv); in avc_identify_subunit()
740 dev_err(fdtv->device, "cannot read subunit identifier\n"); in avc_identify_subunit()
744 mutex_unlock(&fdtv->avc_mutex); in avc_identify_subunit()
751 int avc_tuner_status(struct firedtv *fdtv, struct firedtv_tuner_status *stat) in avc_tuner_status() argument
753 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_status()
754 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_tuner_status()
757 mutex_lock(&fdtv->avc_mutex); in avc_tuner_status()
760 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_tuner_status()
772 fdtv->avc_data_length = 12; in avc_tuner_status()
773 ret = avc_write(fdtv); in avc_tuner_status()
779 dev_err(fdtv->device, "cannot read tuner status\n"); in avc_tuner_status()
786 dev_err(fdtv->device, "got invalid tuner status\n"); in avc_tuner_status()
825 mutex_unlock(&fdtv->avc_mutex); in avc_tuner_status()
830 int avc_lnb_control(struct firedtv *fdtv, char voltage, char burst, in avc_lnb_control() argument
834 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_lnb_control()
835 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_lnb_control()
838 mutex_lock(&fdtv->avc_mutex); in avc_lnb_control()
841 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_lnb_control()
862 fdtv->avc_data_length = ALIGN(3 + pos, 4); in avc_lnb_control()
863 ret = avc_write(fdtv); in avc_lnb_control()
868 dev_err(fdtv->device, "LNB control failed\n"); in avc_lnb_control()
872 mutex_unlock(&fdtv->avc_mutex); in avc_lnb_control()
877 int avc_register_remote_control(struct firedtv *fdtv) in avc_register_remote_control() argument
879 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_register_remote_control()
882 mutex_lock(&fdtv->avc_mutex); in avc_register_remote_control()
894 fdtv->avc_data_length = 8; in avc_register_remote_control()
895 ret = avc_write(fdtv); in avc_register_remote_control()
899 mutex_unlock(&fdtv->avc_mutex); in avc_register_remote_control()
906 struct firedtv *fdtv = in avc_remote_ctrl_work() local
910 avc_register_remote_control(fdtv); in avc_remote_ctrl_work()
914 int avc_tuner_host2ca(struct firedtv *fdtv)
916 struct avc_command_frame *c = (void *)fdtv->avc_data;
919 mutex_lock(&fdtv->avc_mutex);
922 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit;
933 fdtv->avc_data_length = 12;
934 ret = avc_write(fdtv);
938 mutex_unlock(&fdtv->avc_mutex);
969 int avc_ca_app_info(struct firedtv *fdtv, unsigned char *app_info, in avc_ca_app_info() argument
972 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_app_info()
973 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_ca_app_info()
976 mutex_lock(&fdtv->avc_mutex); in avc_ca_app_info()
979 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_app_info()
990 fdtv->avc_data_length = 12; in avc_ca_app_info()
991 ret = avc_write(fdtv); in avc_ca_app_info()
1006 mutex_unlock(&fdtv->avc_mutex); in avc_ca_app_info()
1011 int avc_ca_info(struct firedtv *fdtv, unsigned char *app_info, in avc_ca_info() argument
1014 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_info()
1015 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_ca_info()
1018 mutex_lock(&fdtv->avc_mutex); in avc_ca_info()
1021 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_info()
1032 fdtv->avc_data_length = 12; in avc_ca_info()
1033 ret = avc_write(fdtv); in avc_ca_info()
1057 mutex_unlock(&fdtv->avc_mutex); in avc_ca_info()
1062 int avc_ca_reset(struct firedtv *fdtv) in avc_ca_reset() argument
1064 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_reset()
1067 mutex_lock(&fdtv->avc_mutex); in avc_ca_reset()
1070 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_reset()
1083 fdtv->avc_data_length = 12; in avc_ca_reset()
1084 ret = avc_write(fdtv); in avc_ca_reset()
1088 mutex_unlock(&fdtv->avc_mutex); in avc_ca_reset()
1093 int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length) in avc_ca_pmt() argument
1095 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_pmt()
1096 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_ca_pmt()
1109 mutex_lock(&fdtv->avc_mutex); in avc_ca_pmt()
1112 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_pmt()
1116 dev_info(fdtv->device, "forcing list_management to ONLY\n"); in avc_ca_pmt()
1158 dev_err(fdtv->device, in avc_ca_pmt()
1192 dev_err(fdtv->device, "invalid pmt_cmd_id %d at stream level\n", in avc_ca_pmt()
1221 fdtv->avc_data_length = ALIGN(3 + write_pos, 4); in avc_ca_pmt()
1222 ret = avc_write(fdtv); in avc_ca_pmt()
1227 dev_err(fdtv->device, in avc_ca_pmt()
1232 mutex_unlock(&fdtv->avc_mutex); in avc_ca_pmt()
1237 int avc_ca_get_time_date(struct firedtv *fdtv, int *interval) in avc_ca_get_time_date() argument
1239 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_get_time_date()
1240 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_ca_get_time_date()
1243 mutex_lock(&fdtv->avc_mutex); in avc_ca_get_time_date()
1246 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_get_time_date()
1257 fdtv->avc_data_length = 12; in avc_ca_get_time_date()
1258 ret = avc_write(fdtv); in avc_ca_get_time_date()
1266 mutex_unlock(&fdtv->avc_mutex); in avc_ca_get_time_date()
1271 int avc_ca_enter_menu(struct firedtv *fdtv) in avc_ca_enter_menu() argument
1273 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_enter_menu()
1276 mutex_lock(&fdtv->avc_mutex); in avc_ca_enter_menu()
1279 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_enter_menu()
1290 fdtv->avc_data_length = 12; in avc_ca_enter_menu()
1291 ret = avc_write(fdtv); in avc_ca_enter_menu()
1295 mutex_unlock(&fdtv->avc_mutex); in avc_ca_enter_menu()
1300 int avc_ca_get_mmi(struct firedtv *fdtv, char *mmi_object, unsigned int *len) in avc_ca_get_mmi() argument
1302 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_ca_get_mmi()
1303 struct avc_response_frame *r = (void *)fdtv->avc_data; in avc_ca_get_mmi()
1306 mutex_lock(&fdtv->avc_mutex); in avc_ca_get_mmi()
1309 c->subunit = AVC_SUBUNIT_TYPE_TUNER | fdtv->subunit; in avc_ca_get_mmi()
1320 fdtv->avc_data_length = 12; in avc_ca_get_mmi()
1321 ret = avc_write(fdtv); in avc_ca_get_mmi()
1330 mutex_unlock(&fdtv->avc_mutex); in avc_ca_get_mmi()
1337 static int cmp_read(struct firedtv *fdtv, u64 addr, __be32 *data) in cmp_read() argument
1341 ret = fdtv_read(fdtv, addr, data); in cmp_read()
1343 dev_err(fdtv->device, "CMP: read I/O error\n"); in cmp_read()
1348 static int cmp_lock(struct firedtv *fdtv, u64 addr, __be32 data[]) in cmp_lock() argument
1352 ret = fdtv_lock(fdtv, addr, data); in cmp_lock()
1354 dev_err(fdtv->device, "CMP: lock I/O error\n"); in cmp_lock()
1379 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel) in cmp_establish_pp_connection() argument
1386 ret = cmp_read(fdtv, opcr_address, opcr); in cmp_establish_pp_connection()
1392 dev_err(fdtv->device, "CMP: output offline\n"); in cmp_establish_pp_connection()
1400 dev_err(fdtv->device, "CMP: cannot change channel\n"); in cmp_establish_pp_connection()
1403 dev_info(fdtv->device, "CMP: overlaying connection\n"); in cmp_establish_pp_connection()
1421 ret = cmp_lock(fdtv, opcr_address, opcr); in cmp_establish_pp_connection()
1439 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel) in cmp_break_pp_connection() argument
1445 if (cmp_read(fdtv, opcr_address, opcr) < 0) in cmp_break_pp_connection()
1451 dev_err(fdtv->device, "CMP: no connection to break\n"); in cmp_break_pp_connection()
1461 if (cmp_lock(fdtv, opcr_address, opcr) < 0) in cmp_break_pp_connection()