Searched refs:go (Results 1 - 25 of 109) sorted by relevance

12345

/linux-master/drivers/media/usb/go7007/
H A Dgo7007-driver.c33 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data) argument
35 go->interrupt_available = 0;
36 go->hpi_ops->read_interrupt(go);
37 if (wait_event_timeout(go->interrupt_waitq,
38 go->interrupt_available, 5*HZ) < 0) {
39 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n");
42 if (!go->interrupt_available)
44 go->interrupt_available = 0;
45 *value = go
56 go7007_read_addr(struct go7007 *go, u16 addr, u16 *data) argument
78 go7007_load_encoder(struct go7007 *go) argument
128 go7007_boot_encoder(struct go7007 *go, int init_i2c) argument
153 go7007_init_encoder(struct go7007 *go) argument
187 go7007_reset_encoder(struct go7007 *go) argument
199 struct go7007 *go = i2c_get_adapdata(adapter); local
229 struct go7007 *go = container_of(v4l2_dev, struct go7007, v4l2_dev); local
252 go7007_register_encoder(struct go7007 *go, unsigned num_i2c_devs) argument
323 go7007_start_encoder(struct go7007 *go) argument
390 go7007_set_motion_regions(struct go7007 *go, struct go7007_buffer *vb, u32 motion_regions) argument
412 go7007_motion_regions(struct go7007 *go, struct go7007_buffer *vb) argument
441 frame_boundary(struct go7007 *go, struct go7007_buffer *vb) argument
479 write_bitmap_word(struct go7007 *go) argument
498 go7007_parse_video_stream(struct go7007 *go, u8 *buf, int length) argument
695 struct go7007 *go; local
718 go7007_update_board(struct go7007 *go) argument
[all...]
H A Dgo7007-v4l2.c80 static void get_resolution(struct go7007 *go, int *width, int *height) argument
82 switch (go->standard) {
93 *width = go->board_info->sensor_width;
94 *height = go->board_info->sensor_height;
99 static void set_formatting(struct go7007 *go) argument
101 if (go->format == V4L2_PIX_FMT_MJPEG) {
102 go->pali = 0;
103 go->aspect_ratio = GO7007_RATIO_1_1;
104 go->gop_size = 0;
105 go
176 set_capture_size(struct go7007 *go, struct v4l2_format *fmt, int try) argument
277 struct go7007 *go = video_drvdata(file); local
310 struct go7007 *go = video_drvdata(file); local
327 struct go7007 *go = video_drvdata(file); local
335 struct go7007 *go = video_drvdata(file); local
359 struct go7007 *go = vb2_get_drv_priv(vq); local
385 struct go7007 *go = vb2_get_drv_priv(vq); local
399 struct go7007 *go = vb2_get_drv_priv(q); local
427 struct go7007 *go = vb2_get_drv_priv(q); local
462 struct go7007 *go = video_drvdata(filp); local
481 struct go7007 *go = video_drvdata(filp); local
511 struct go7007 *go = video_drvdata(filp); local
530 struct go7007 *go = video_drvdata(filp); local
557 struct go7007 *go = video_drvdata(file); local
563 go7007_s_std(struct go7007 *go) argument
580 struct go7007 *go = video_drvdata(file); local
592 struct go7007 *go = video_drvdata(file); local
600 struct go7007 *go = video_drvdata(file); local
631 struct go7007 *go = video_drvdata(file); local
640 struct go7007 *go = video_drvdata(file); local
652 struct go7007 *go = video_drvdata(file); local
664 struct go7007 *go = video_drvdata(file); local
674 go7007_s_input(struct go7007 *go) argument
692 struct go7007 *go = video_drvdata(file); local
708 struct go7007 *go = video_drvdata(file); local
720 struct go7007 *go = video_drvdata(file); local
731 struct go7007 *go = video_drvdata(file); local
742 struct go7007 *go = video_drvdata(file); local
752 struct go7007 *go = video_drvdata(file); local
775 struct go7007 *go = local
1012 go7007_v4l2_ctrl_init(struct go7007 *go) argument
1070 go7007_v4l2_init(struct go7007 *go) argument
1146 go7007_v4l2_remove(struct go7007 *go) argument
[all...]
H A Dgo7007-priv.h116 int (*interface_reset)(struct go7007 *go);
117 int (*write_interrupt)(struct go7007 *go, int addr, int data);
118 int (*read_interrupt)(struct go7007 *go);
119 int (*stream_start)(struct go7007 *go);
120 int (*stream_stop)(struct go7007 *go);
121 int (*send_firmware)(struct go7007 *go, u8 *data, int len);
122 int (*send_command)(struct go7007 *go, unsigned int cmd, void *arg);
123 void (*release)(struct go7007 *go);
237 void (*audio_deliver)(struct go7007 *go, u8 *buf, int length);
259 #define go7007_interface_reset(go) \
[all...]
H A Dgo7007-usb.c622 static int go7007_usb_vendor_request(struct go7007 *go, int request, argument
625 struct go7007_usb *usb = go->hpi_context;
641 static int go7007_usb_interface_reset(struct go7007 *go) argument
643 struct go7007_usb *usb = go->hpi_context;
646 if (go->status == STATUS_SHUTDOWN)
649 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
656 if (go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0 ||
657 go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0)
661 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
667 if (go7007_read_interrupt(go,
675 go7007_usb_ezusb_write_interrupt(struct go7007 *go, int addr, int data) argument
721 go7007_usb_onboard_write_interrupt(struct go7007 *go, int addr, int data) argument
747 struct go7007 *go = (struct go7007 *)urb->context; local
772 go7007_usb_read_interrupt(struct go7007 *go) argument
787 struct go7007 *go = (struct go7007 *)urb->context; local
810 struct go7007 *go = (struct go7007 *)urb->context; local
831 go7007_usb_stream_start(struct go7007 *go) argument
864 go7007_usb_stream_stop(struct go7007 *go) argument
879 go7007_usb_send_firmware(struct go7007 *go, u8 *data, int len) argument
896 go7007_usb_release(struct go7007 *go) argument
952 struct go7007 *go = i2c_get_adapdata(adapter); local
1043 struct go7007 *go; local
1330 struct go7007 *go = to_go7007(usb_get_intfdata(intf)); local
[all...]
H A Dgo7007-fw.c290 static int mjpeg_frame_header(struct go7007 *go, unsigned char *buf, int q) argument
310 buf[p++] = go->height >> 8;
311 buf[p++] = go->height & 0xff;
312 buf[p++] = go->width >> 8;
313 buf[p++] = go->width & 0xff;
365 static int gen_mjpeghdr_to_package(struct go7007 *go, __le16 *code, int space) argument
377 mjpeg_frame_header(go, buf + size, i);
380 chunk = mjpeg_frame_header(go, buf + size, 1);
416 static int mpeg1_frame_header(struct go7007 *go, unsigned char *buf, argument
420 int rows = go
524 mpeg1_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
631 gen_mpeg1hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
708 vti_bitlen(struct go7007 *go) argument
717 mpeg4_frame_header(struct go7007 *go, unsigned char *buf, int modulo, enum mpeg_frame_type frame) argument
771 mpeg4_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
817 gen_mpeg4hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
919 brctrl_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
1076 config_package(struct go7007 *go, __le16 *code, int space) argument
1198 seqhead_to_package(struct go7007 *go, __le16 *code, int space, int (*sequence_header_func)(struct go7007 *go, unsigned char *buf, int ext)) argument
1277 avsync_to_package(struct go7007 *go, __le16 *code, int space) argument
1308 final_package(struct go7007 *go, __le16 *code, int space) argument
1371 audio_to_package(struct go7007 *go, __le16 *code, int space) argument
1421 modet_to_package(struct go7007 *go, __le16 *code, int space) argument
1494 do_special(struct go7007 *go, u16 type, __le16 *code, int space, int *framelen) argument
1543 go7007_construct_fw_image(struct go7007 *go, u8 **fw, int *fwlen) argument
[all...]
H A Dgo7007-i2c.c38 static int go7007_i2c_xfer(struct go7007 *go, u16 addr, int read, argument
44 if (go->status == STATUS_SHUTDOWN)
49 dev_dbg(go->dev, "go7007-i2c: reading 0x%02x on 0x%02x\n",
52 dev_dbg(go->dev,
57 mutex_lock(&go->hw_lock);
59 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) {
62 go7007_write_addr(go, 0x3c82, 0x0020);
67 if (go7007_read_addr(go, STATUS_REG_ADDR, &val) < 0)
74 dev_err(go->dev, "go7007-i2c: I2C adapter is hung\n");
79 go7007_write_addr(go, I2C_CTRL_REG_ADD
132 struct go7007 *go = i2c_get_adapdata(adapter); local
148 struct go7007 *go = i2c_get_adapdata(adapter); local
196 go7007_i2c_init(struct go7007 *go) argument
[all...]
H A Dsnd-go7007.c64 static void parse_audio_stream_data(struct go7007 *go, u8 *buf, int length) argument
66 struct go7007_snd *gosnd = go->snd_context;
101 struct go7007 *go = snd_pcm_substream_chip(substream); local
103 go->audio_deliver = parse_audio_stream_data;
109 struct go7007 *go = snd_pcm_substream_chip(substream); local
111 go->audio_deliver = NULL;
117 struct go7007 *go = snd_pcm_substream_chip(substream); local
118 struct go7007_snd *gosnd = go->snd_context;
135 struct go7007 *go = snd_pcm_substream_chip(substream); local
136 struct go7007_snd *gosnd = go
149 struct go7007 *go = snd_pcm_substream_chip(substream); local
169 struct go7007 *go = snd_pcm_substream_chip(substream); local
187 struct go7007 *go = device->device_data; local
198 go7007_snd_init(struct go7007 *go) argument
260 go7007_snd_remove(struct go7007 *go) argument
[all...]
H A Ds2250-board.c131 static int go7007_usb_vendor_request(struct go7007 *go, u16 request, argument
134 struct go7007_usb *usb = go->hpi_context;
153 struct go7007 *go = i2c_get_adapdata(client->adapter); local
159 if (go == NULL)
162 if (go->status == STATUS_SHUTDOWN)
169 usb = go->hpi_context;
175 rc = go7007_usb_vendor_request(go, 0x55, dev_addr,
187 struct go7007 *go = i2c_get_adapdata(client->adapter); local
193 if (go == NULL)
196 if (go
251 struct go7007 *go = i2c_get_adapdata(client->adapter); local
504 struct go7007 *go = i2c_get_adapdata(adapter); local
[all...]
/linux-master/drivers/media/pci/saa7134/
H A Dsaa7134-go7007.c131 static int saa7134_go7007_interface_reset(struct go7007 *go) argument
133 struct saa7134_go7007 *saa = go->hpi_context;
167 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
175 static int saa7134_go7007_write_interrupt(struct go7007 *go, int addr, int data) argument
177 struct saa7134_go7007 *saa = go->hpi_context;
203 static int saa7134_go7007_read_interrupt(struct go7007 *go) argument
205 struct saa7134_go7007 *saa = go->hpi_context;
209 go->interrupt_available = 1;
210 gpio_read(dev, HPI_ADDR_INTR_RET_VALUE, &go->interrupt_value);
211 gpio_read(dev, HPI_ADDR_INTR_RET_DATA, &go
222 struct go7007 *go = video_get_drvdata(dev->empress_dev); local
243 saa7134_go7007_stream_start(struct go7007 *go) argument
301 saa7134_go7007_stream_stop(struct go7007 *go) argument
330 saa7134_go7007_send_firmware(struct go7007 *go, u8 *data, int len) argument
407 struct go7007 *go; local
475 struct go7007 *go; local
[all...]
/linux-master/arch/arm/mach-mvebu/
H A Dheadsmp.S29 ARM_BE8(setend be ) @ go BE8 if entered LE
H A Dpmsu_ll.S29 ARM_BE8(setend be ) @ go BE8 if entered LE
45 ARM_BE8(setend be ) @ go BE8 if entered LE
/linux-master/arch/arm/mach-versatile/
H A Ddcscb_setup.S28 2: @ Implementation-specific local CPU setup operations should go here,
/linux-master/drivers/s390/char/
H A Dsclp_rw.h24 struct go { struct
48 struct go go; member in struct:mdb
H A Dsclp_rw.c88 struct go *go; local
111 go = &mdb->go;
112 go->length = sizeof(struct go);
113 go->type = 1;
217 buffer->current_msg->mdb.go.general_msg_flags |=
228 /* "go to (next htab-boundary + 1, same line)" */
239 /* "go t
[all...]
H A Dsclp_early_core.c94 struct go *go; local
125 go = &mdb->go;
126 go->length = sizeof(*go);
127 go->type = 1;
/linux-master/scripts/
H A Dcheckversion.pl29 m+/\*+o && (s+/\*.*?\*/+ +go, (s+/\*.*$+ +o && ($fInComment = 1)));
38 m+"+o && (s+".*?"+ +go, (s+".*$+ +o && ($fInString = 1)));
/linux-master/arch/arm/mach-imx/
H A Dheadsmp.S25 ARM_BE8(setend be) @ go BE8 if entered LE
/linux-master/tools/perf/tests/
H A Dmmap-thread-lookup.c58 int go = 0; local
64 ret = write(td->ready[1], &go, sizeof(int));
82 int err, go; local
90 ssize_t ret = read(td->ready[0], &go, sizeof(int));
/linux-master/drivers/clk/rockchip/
H A Dclk.h551 df, go, gs, gf) \
566 .gate_offset = go, \
572 mf, do, ds, dw, df, go, gs, gf) \
588 .gate_offset = go, \
594 go, gs, gf) \
606 .gate_offset = go, \
612 df, dt, go, gs, gf) \
625 .gate_offset = go, \
631 go, gs, gf) \
643 .gate_offset = go, \
[all...]
/linux-master/drivers/video/console/
H A Dnewport_con.c55 (regs)->go.zpattern = BMASK((cp)[0x0]); (regs)->go.zpattern = BMASK((cp)[0x1]); \
56 (regs)->go.zpattern = BMASK((cp)[0x2]); (regs)->go.zpattern = BMASK((cp)[0x3]); \
57 (regs)->go.zpattern = BMASK((cp)[0x4]); (regs)->go.zpattern = BMASK((cp)[0x5]); \
58 (regs)->go.zpattern = BMASK((cp)[0x6]); (regs)->go.zpattern = BMASK((cp)[0x7]); \
59 (regs)->go.zpattern = BMASK((cp)[0x8]); (regs)->go
[all...]
/linux-master/arch/m68k/fpsp040/
H A Dsacos.S23 | 1. If |X| >= 1, go to 3.
30 | 3. If |X| > 1, go to 5.
H A Dsasin.S23 | 1. If |X| >= 1, go to 3.
30 | 3. If |X| > 1, go to 5.
/linux-master/arch/x86/realmode/rm/
H A Dtrampoline_32.S42 movl tr_start, %eax # where we need to go
/linux-master/arch/arm/mach-lpc32xx/
H A Dsuspend.S50 @ Wait for SDRAM busy status to go busy and then idle
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_submit_types.h50 /** @go: Go Semaphore */
51 struct sync_semaphore go; member in struct:guc_submit_parallel_scratch

Completed in 221 milliseconds

12345