Home
last modified time | relevance | path

Searched refs:hdw (Results 1 – 22 of 22) sorted by relevance

/linux-6.1.9/drivers/media/usb/pvrusb2/
Dpvrusb2-hdw.c314 static int pvr2_hdw_set_input(struct pvr2_hdw *hdw,int v);
322 static int pvr2_hdw_cmd_usbstream(struct pvr2_hdw *hdw,int runFl);
323 static int pvr2_hdw_commit_setup(struct pvr2_hdw *hdw);
324 static int pvr2_hdw_get_eeprom_addr(struct pvr2_hdw *hdw);
330 static int pvr2_send_request_ex(struct pvr2_hdw *hdw,
334 static int pvr2_hdw_check_cropcap(struct pvr2_hdw *hdw);
335 static v4l2_std_id pvr2_hdw_get_detected_std(struct pvr2_hdw *hdw);
346 struct pvr2_hdw *hdw = cptr->hdw; in ctrl_channelfreq_get() local
347 if ((hdw->freqProgSlot > 0) && (hdw->freqProgSlot <= FREQTABLE_SIZE)) { in ctrl_channelfreq_get()
348 *vp = hdw->freqTable[hdw->freqProgSlot-1]; in ctrl_channelfreq_get()
[all …]
Dpvrusb2-encoder.c26 static int pvr2_encoder_write_words(struct pvr2_hdw *hdw, in pvr2_encoder_write_words() argument
48 memset(hdw->cmd_buffer,0,sizeof(hdw->cmd_buffer)); in pvr2_encoder_write_words()
50 hdw->cmd_buffer[bAddr++] = FX2CMD_MEM_WRITE_DWORD; in pvr2_encoder_write_words()
53 hdw->cmd_buffer[bAddr+6] = (addr & 0xffu); in pvr2_encoder_write_words()
54 hdw->cmd_buffer[bAddr+5] = ((addr>>8) & 0xffu); in pvr2_encoder_write_words()
55 hdw->cmd_buffer[bAddr+4] = ((addr>>16) & 0xffu); in pvr2_encoder_write_words()
56 PVR2_DECOMPOSE_LE(hdw->cmd_buffer, bAddr,data[idx]); in pvr2_encoder_write_words()
59 ret = pvr2_send_request(hdw, in pvr2_encoder_write_words()
60 hdw->cmd_buffer,1+(chunkCnt*7), in pvr2_encoder_write_words()
72 static int pvr2_encoder_read_words(struct pvr2_hdw *hdw, in pvr2_encoder_read_words() argument
[all …]
Dpvrusb2-i2c-core.c39 static int pvr2_i2c_write(struct pvr2_hdw *hdw, /* Context */ in pvr2_i2c_write() argument
49 if (length > (sizeof(hdw->cmd_buffer) - 3)) { in pvr2_i2c_write()
53 length,(unsigned int)(sizeof(hdw->cmd_buffer) - 3)); in pvr2_i2c_write()
57 LOCK_TAKE(hdw->ctl_lock); in pvr2_i2c_write()
60 memset(hdw->cmd_buffer, 0, sizeof(hdw->cmd_buffer)); in pvr2_i2c_write()
63 hdw->cmd_buffer[0] = FX2CMD_I2C_WRITE; /* write prefix */ in pvr2_i2c_write()
64 hdw->cmd_buffer[1] = i2c_addr; /* i2c addr of chip */ in pvr2_i2c_write()
65 hdw->cmd_buffer[2] = length; /* length of what follows */ in pvr2_i2c_write()
66 if (length) memcpy(hdw->cmd_buffer + 3, data, length); in pvr2_i2c_write()
69 ret = pvr2_send_request(hdw, in pvr2_i2c_write()
[all …]
Dpvrusb2-v4l2.c112 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw; in pvr2_querycap() local
115 strscpy(cap->bus_info, pvr2_hdw_get_bus_info(hdw), in pvr2_querycap()
117 strscpy(cap->card, pvr2_hdw_get_desc(hdw), sizeof(cap->card)); in pvr2_querycap()
127 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw; in pvr2_g_std() local
132 pvr2_hdw_get_ctrl_by_id(hdw, PVR2_CID_STDCUR), &val); in pvr2_g_std()
140 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw; in pvr2_s_std() local
144 pvr2_hdw_get_ctrl_by_id(hdw, PVR2_CID_STDCUR), std); in pvr2_s_std()
145 pvr2_hdw_commit_ctl(hdw); in pvr2_s_std()
152 struct pvr2_hdw *hdw = fh->channel.mc_head->hdw; in pvr2_querystd() local
157 pvr2_hdw_get_ctrl_by_id(hdw, PVR2_CID_STDDETECT), &val); in pvr2_querystd()
[all …]
Dpvrusb2-debugifc.c116 int pvr2_debugifc_print_info(struct pvr2_hdw *hdw,char *buf,unsigned int acnt) in pvr2_debugifc_print_info() argument
121 pvr2_hdw_get_desc(hdw)); in pvr2_debugifc_print_info()
125 ccnt = pvr2_hdw_state_report(hdw,buf,acnt); in pvr2_debugifc_print_info()
132 int pvr2_debugifc_print_status(struct pvr2_hdw *hdw, in pvr2_debugifc_print_status() argument
142 ret = pvr2_hdw_is_hsm(hdw); in pvr2_debugifc_print_status()
148 pvr2_hdw_gpio_get_dir(hdw,&gpio_dir); in pvr2_debugifc_print_status()
149 pvr2_hdw_gpio_get_out(hdw,&gpio_out); in pvr2_debugifc_print_status()
150 pvr2_hdw_gpio_get_in(hdw,&gpio_in); in pvr2_debugifc_print_status()
156 pvr2_hdw_get_streaming(hdw) ? "on" : "off"); in pvr2_debugifc_print_status()
160 sp = pvr2_hdw_get_video_stream(hdw); in pvr2_debugifc_print_status()
[all …]
Dpvrusb2-cs53l32a.c47 void pvr2_cs53l32a_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) in pvr2_cs53l32a_subdev_update() argument
49 if (hdw->input_dirty || hdw->force_dirty) { in pvr2_cs53l32a_subdev_update()
51 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; in pvr2_cs53l32a_subdev_update()
54 hdw->input_val); in pvr2_cs53l32a_subdev_update()
58 (hdw->input_val < 0) || in pvr2_cs53l32a_subdev_update()
59 (hdw->input_val >= sp->cnt)) { in pvr2_cs53l32a_subdev_update()
62 sid, hdw->input_val); in pvr2_cs53l32a_subdev_update()
65 input = sp->def[hdw->input_val]; in pvr2_cs53l32a_subdev_update()
Dpvrusb2-video-v4l.c64 void pvr2_saa7115_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) in pvr2_saa7115_subdev_update() argument
66 if (hdw->input_dirty || hdw->force_dirty) { in pvr2_saa7115_subdev_update()
68 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; in pvr2_saa7115_subdev_update()
72 hdw->input_val); in pvr2_saa7115_subdev_update()
77 (hdw->input_val < 0) || in pvr2_saa7115_subdev_update()
78 (hdw->input_val >= sp->cnt)) { in pvr2_saa7115_subdev_update()
81 sid, hdw->input_val); in pvr2_saa7115_subdev_update()
84 input = sp->def[hdw->input_val]; in pvr2_saa7115_subdev_update()
Dpvrusb2-audio.c46 void pvr2_msp3400_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) in pvr2_msp3400_subdev_update() argument
48 if (hdw->input_dirty || hdw->force_dirty) { in pvr2_msp3400_subdev_update()
50 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; in pvr2_msp3400_subdev_update()
58 (hdw->input_val >= 0) && in pvr2_msp3400_subdev_update()
59 (hdw->input_val < sp->cnt)) { in pvr2_msp3400_subdev_update()
60 input = sp->def[hdw->input_val]; in pvr2_msp3400_subdev_update()
64 sid, hdw->input_val); in pvr2_msp3400_subdev_update()
Dpvrusb2-eeprom.c31 static u8 *pvr2_eeprom_fetch(struct pvr2_hdw *hdw) in pvr2_eeprom_fetch() argument
50 hdw->eeprom_addr); in pvr2_eeprom_fetch()
51 addr = hdw->eeprom_addr; in pvr2_eeprom_fetch()
89 if ((ret = i2c_transfer(&hdw->i2c_adap, in pvr2_eeprom_fetch()
102 int pvr2_eeprom_analyze(struct pvr2_hdw *hdw) in pvr2_eeprom_analyze() argument
109 eeprom = pvr2_eeprom_fetch(hdw); in pvr2_eeprom_analyze()
125 hdw->tuner_type = tvdata.tuner_type; in pvr2_eeprom_analyze()
126 hdw->tuner_updated = !0; in pvr2_eeprom_analyze()
127 hdw->serial_number = tvdata.serial_number; in pvr2_eeprom_analyze()
128 hdw->std_mask_eeprom = tvdata.tuner_formats; in pvr2_eeprom_analyze()
Dpvrusb2-context.c70 pvr2_hdw_destroy(mp->hdw); in pvr2_context_destroy()
109 if (pvr2_hdw_initialize(mp->hdw, in pvr2_context_check()
113 pvr2_hdw_get_video_stream(mp->hdw); in pvr2_context_check()
222 mp->hdw = pvr2_hdw_create(intf,devid); in pvr2_context_create()
223 if (!mp->hdw) { in pvr2_context_create()
238 struct pvr2_hdw *hdw = mp->hdw; in pvr2_context_reset_input_limits() local
239 mmsk = pvr2_hdw_get_input_available(hdw); in pvr2_context_reset_input_limits()
245 pvr2_hdw_set_input_allowed(hdw,mmsk,tmsk); in pvr2_context_reset_input_limits()
246 pvr2_hdw_commit_ctl(hdw); in pvr2_context_reset_input_limits()
269 pvr2_hdw_disconnect(mp->hdw); in pvr2_context_disconnect()
[all …]
Dpvrusb2-cx2584x-v4l.c135 void pvr2_cx25840_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) in pvr2_cx25840_subdev_update() argument
138 if (hdw->input_dirty || hdw->force_dirty) { in pvr2_cx25840_subdev_update()
142 unsigned int sid = hdw->hdw_desc->signal_routing_scheme; in pvr2_cx25840_subdev_update()
147 (hdw->input_val < 0) || in pvr2_cx25840_subdev_update()
148 (hdw->input_val >= sp->cnt)) { in pvr2_cx25840_subdev_update()
151 sid, hdw->input_val); in pvr2_cx25840_subdev_update()
154 vid_input = sp->def[hdw->input_val].vid; in pvr2_cx25840_subdev_update()
155 aud_input = sp->def[hdw->input_val].aud; in pvr2_cx25840_subdev_update()
Dpvrusb2-hdw.h265 int pvr2_hdw_gpio_get_dir(struct pvr2_hdw *hdw,u32 *);
266 int pvr2_hdw_gpio_get_out(struct pvr2_hdw *hdw,u32 *);
267 int pvr2_hdw_gpio_get_in(struct pvr2_hdw *hdw,u32 *);
268 int pvr2_hdw_gpio_chg_dir(struct pvr2_hdw *hdw,u32 msk,u32 val);
269 int pvr2_hdw_gpio_chg_out(struct pvr2_hdw *hdw,u32 msk,u32 val);
306 void pvr2_hdw_get_debug_info_unlocked(const struct pvr2_hdw *hdw,
313 void pvr2_hdw_get_debug_info_locked(struct pvr2_hdw *hdw,
318 unsigned int pvr2_hdw_state_report(struct pvr2_hdw *hdw,
322 void pvr2_hdw_trigger_module_log(struct pvr2_hdw *hdw);
327 int pvr2_upload_firmware2(struct pvr2_hdw *hdw);
Dpvrusb2-wm8775.c24 void pvr2_wm8775_subdev_update(struct pvr2_hdw *hdw, struct v4l2_subdev *sd) in pvr2_wm8775_subdev_update() argument
26 if (hdw->input_dirty || hdw->force_dirty) { in pvr2_wm8775_subdev_update()
29 switch (hdw->input_val) { in pvr2_wm8775_subdev_update()
39 hdw->input_val, input); in pvr2_wm8775_subdev_update()
Dpvrusb2-ctrl.c50 LOCK_TAKE(cptr->hdw->big_lock); do { in pvr2_ctrl_set_mask_value()
65 } while(0); LOCK_GIVE(cptr->hdw->big_lock); in pvr2_ctrl_set_mask_value()
75 LOCK_TAKE(cptr->hdw->big_lock); do { in pvr2_ctrl_get_value()
77 } while(0); LOCK_GIVE(cptr->hdw->big_lock); in pvr2_ctrl_get_value()
95 LOCK_TAKE(cptr->hdw->big_lock); do { in pvr2_ctrl_get_max()
101 } while(0); LOCK_GIVE(cptr->hdw->big_lock); in pvr2_ctrl_get_max()
111 LOCK_TAKE(cptr->hdw->big_lock); do { in pvr2_ctrl_get_min()
117 } while(0); LOCK_GIVE(cptr->hdw->big_lock); in pvr2_ctrl_get_min()
127 LOCK_TAKE(cptr->hdw->big_lock); do { in pvr2_ctrl_get_def()
133 } while(0); LOCK_GIVE(cptr->hdw->big_lock); in pvr2_ctrl_get_def()
[all …]
Dpvrusb2-devattr.c186 &adap->channel.hdw->i2c_adap); in pvr2_lgdt3303_attach()
196 &adap->channel.hdw->i2c_adap, 0x61, in pvr2_lgh06xf_attach()
246 &adap->channel.hdw->i2c_adap); in pvr2_lgdt3302_attach()
256 &adap->channel.hdw->i2c_adap, 0x61, in pvr2_fcv1236d_attach()
332 &adap->channel.hdw->i2c_adap); in pvr2_tda10048_attach()
342 &adap->channel.hdw->i2c_adap, 0x42, in pvr2_73xxx_tda18271_8295_attach()
345 &adap->channel.hdw->i2c_adap, in pvr2_73xxx_tda18271_8295_attach()
430 &adap->channel.hdw->i2c_adap); in pvr2_s5h1409_attach()
440 &adap->channel.hdw->i2c_adap); in pvr2_s5h1411_attach()
450 &adap->channel.hdw->i2c_adap, 0x42, in pvr2_tda18271_8295_attach()
[all …]
Dpvrusb2-sysfs.c254 pvr2_hdw_commit_ctl(cip->chptr->channel.hdw); in store_val_any()
293 cptr = pvr2_hdw_get_ctrl_by_index(sfp->channel.hdw,ctl_id); in pvr2_sysfs_add_control()
469 cnt = pvr2_hdw_get_ctrl_count(sfp->channel.hdw); in pvr2_sysfs_add_controls()
555 pvr2_hdw_v4l_get_minor_number(sfp->channel.hdw, in v4l_minor_number_show()
567 pvr2_hdw_get_bus_info(sfp->channel.hdw)); in bus_info_show()
578 pvr2_hdw_get_type(sfp->channel.hdw)); in hdw_name_show()
589 pvr2_hdw_get_desc(sfp->channel.hdw)); in hdw_desc_show()
601 pvr2_hdw_v4l_get_minor_number(sfp->channel.hdw, in v4l_radio_minor_number_show()
613 pvr2_hdw_get_unit_number(sfp->channel.hdw)); in unit_number_show()
624 usb_dev = pvr2_hdw_get_dev(sfp->channel.hdw); in class_dev_create()
[all …]
Dpvrusb2-dvb.c112 pvr2_hdw_set_streaming(adap->channel.hdw, 0); in pvr2_dvb_stream_end()
164 ret = pvr2_hdw_set_streaming(adap->channel.hdw, 1); in pvr2_dvb_stream_do_start()
249 &adap->channel.hdw->usb_dev->dev, in pvr2_dvb_adapter_init()
311 struct pvr2_hdw *hdw = adap->channel.hdw; in pvr2_dvb_frontend_init() local
312 const struct pvr2_dvb_props *dvb_props = hdw->hdw_desc->dvb_props; in pvr2_dvb_frontend_init()
449 if (!pvr->hdw->hdw_desc->dvb_props) { in pvr2_dvb_create()
Dpvrusb2-context.h33 struct pvr2_hdw *hdw; member
50 struct pvr2_hdw *hdw; member
DMakefile10 pvrusb2-main.o pvrusb2-hdw.o pvrusb2-v4l2.o \
Dpvrusb2-hdw-internal.h124 struct pvr2_hdw *hdw; member
/linux-6.1.9/Documentation/driver-api/media/drivers/
Dpvrusb2.rst112 pvrusb2-hdw-internal.h - This header defines the core data structure
119 pvrusb2-hdw.h and NOT this header.
121 pvrusb2-hdw.h - This header defines the full internal API for
125 pvrusb2-hdw.c - This module implements all the various bits of logic
156 glue logic which is coordinated by pvrusb2-hdw, doled out by
/linux-6.1.9/drivers/scsi/lpfc/
Dlpfc_attr.c102 lpfc_jedec_to_ascii(int incr, char hdw[]) in lpfc_jedec_to_ascii() argument
108 hdw[7 - i] = 0x30 + j; in lpfc_jedec_to_ascii()
110 hdw[7 - i] = 0x61 + j - 10; in lpfc_jedec_to_ascii()
113 hdw[8] = 0; in lpfc_jedec_to_ascii()
988 char hdw[9]; in lpfc_hdw_show() local
994 lpfc_jedec_to_ascii(vp->rev.biuRev, hdw); in lpfc_hdw_show()
995 return scnprintf(buf, PAGE_SIZE, "%s %08x %08x\n", hdw, in lpfc_hdw_show()
2801 static DEVICE_ATTR(hdw, S_IRUGO, lpfc_hdw_show, NULL);