Home
last modified time | relevance | path

Searched refs:go (Results 1 – 200 of 370) sorted by relevance

12

/linux-4.1.27/drivers/media/usb/go7007/
Dgo7007-driver.c41 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data) in go7007_read_interrupt() argument
43 go->interrupt_available = 0; in go7007_read_interrupt()
44 go->hpi_ops->read_interrupt(go); in go7007_read_interrupt()
45 if (wait_event_timeout(go->interrupt_waitq, in go7007_read_interrupt()
46 go->interrupt_available, 5*HZ) < 0) { in go7007_read_interrupt()
47 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n"); in go7007_read_interrupt()
50 if (!go->interrupt_available) in go7007_read_interrupt()
52 go->interrupt_available = 0; in go7007_read_interrupt()
53 *value = go->interrupt_value & 0xfffe; in go7007_read_interrupt()
54 *data = go->interrupt_data; in go7007_read_interrupt()
[all …]
Dgo7007-v4l2.c88 static void get_resolution(struct go7007 *go, int *width, int *height) in get_resolution() argument
90 switch (go->standard) { in get_resolution()
101 *width = go->board_info->sensor_width; in get_resolution()
102 *height = go->board_info->sensor_height; in get_resolution()
107 static void set_formatting(struct go7007 *go) in set_formatting() argument
109 if (go->format == V4L2_PIX_FMT_MJPEG) { in set_formatting()
110 go->pali = 0; in set_formatting()
111 go->aspect_ratio = GO7007_RATIO_1_1; in set_formatting()
112 go->gop_size = 0; in set_formatting()
113 go->ipb = 0; in set_formatting()
[all …]
Dgo7007-fw.c298 static int mjpeg_frame_header(struct go7007 *go, unsigned char *buf, int q) in mjpeg_frame_header() argument
318 buf[p++] = go->height >> 8; in mjpeg_frame_header()
319 buf[p++] = go->height & 0xff; in mjpeg_frame_header()
320 buf[p++] = go->width >> 8; in mjpeg_frame_header()
321 buf[p++] = go->width & 0xff; in mjpeg_frame_header()
373 static int gen_mjpeghdr_to_package(struct go7007 *go, __le16 *code, int space) in gen_mjpeghdr_to_package() argument
385 mjpeg_frame_header(go, buf + size, i); in gen_mjpeghdr_to_package()
388 chunk = mjpeg_frame_header(go, buf + size, 1); in gen_mjpeghdr_to_package()
424 static int mpeg1_frame_header(struct go7007 *go, unsigned char *buf, in mpeg1_frame_header() argument
428 int rows = go->interlace_coding ? go->height / 32 : go->height / 16; in mpeg1_frame_header()
[all …]
Dgo7007-usb.c628 static int go7007_usb_vendor_request(struct go7007 *go, int request, in go7007_usb_vendor_request() argument
631 struct go7007_usb *usb = go->hpi_context; in go7007_usb_vendor_request()
647 static int go7007_usb_interface_reset(struct go7007 *go) in go7007_usb_interface_reset() argument
649 struct go7007_usb *usb = go->hpi_context; in go7007_usb_interface_reset()
652 if (go->status == STATUS_SHUTDOWN) in go7007_usb_interface_reset()
655 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0) in go7007_usb_interface_reset()
662 if (go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0 || in go7007_usb_interface_reset()
663 go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0) in go7007_usb_interface_reset()
667 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0) in go7007_usb_interface_reset()
673 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 || in go7007_usb_interface_reset()
[all …]
Dgo7007-i2c.c46 static int go7007_i2c_xfer(struct go7007 *go, u16 addr, int read, in go7007_i2c_xfer() argument
52 if (go->status == STATUS_SHUTDOWN) in go7007_i2c_xfer()
57 dev_dbg(go->dev, "go7007-i2c: reading 0x%02x on 0x%02x\n", in go7007_i2c_xfer()
60 dev_dbg(go->dev, in go7007_i2c_xfer()
65 mutex_lock(&go->hw_lock); in go7007_i2c_xfer()
67 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) { in go7007_i2c_xfer()
70 go7007_write_addr(go, 0x3c82, 0x0020); in go7007_i2c_xfer()
75 if (go7007_read_addr(go, STATUS_REG_ADDR, &val) < 0) in go7007_i2c_xfer()
82 dev_err(go->dev, "go7007-i2c: I2C adapter is hung\n"); in go7007_i2c_xfer()
87 go7007_write_addr(go, I2C_CTRL_REG_ADDR, flags); in go7007_i2c_xfer()
[all …]
Dgo7007-priv.h124 int (*interface_reset)(struct go7007 *go);
125 int (*write_interrupt)(struct go7007 *go, int addr, int data);
126 int (*read_interrupt)(struct go7007 *go);
127 int (*stream_start)(struct go7007 *go);
128 int (*stream_stop)(struct go7007 *go);
129 int (*send_firmware)(struct go7007 *go, u8 *data, int len);
130 int (*send_command)(struct go7007 *go, unsigned int cmd, void *arg);
131 void (*release)(struct go7007 *go);
245 void (*audio_deliver)(struct go7007 *go, u8 *buf, int length);
267 #define go7007_interface_reset(go) \ argument
[all …]
Dsnd-go7007.c73 static void parse_audio_stream_data(struct go7007 *go, u8 *buf, int length) in parse_audio_stream_data() argument
75 struct go7007_snd *gosnd = go->snd_context; in parse_audio_stream_data()
109 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_hw_params() local
120 go->audio_deliver = parse_audio_stream_data; in go7007_snd_hw_params()
126 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_hw_free() local
128 go->audio_deliver = NULL; in go7007_snd_hw_free()
137 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_capture_open() local
138 struct go7007_snd *gosnd = go->snd_context; in go7007_snd_capture_open()
155 struct go7007 *go = snd_pcm_substream_chip(substream); in go7007_snd_capture_close() local
156 struct go7007_snd *gosnd = go->snd_context; in go7007_snd_capture_close()
[all …]
Ds2250-board.c139 static int go7007_usb_vendor_request(struct go7007 *go, u16 request, in go7007_usb_vendor_request() argument
142 struct go7007_usb *usb = go->hpi_context; in go7007_usb_vendor_request()
161 struct go7007 *go = i2c_get_adapdata(client->adapter); in write_reg() local
167 if (go == NULL) in write_reg()
170 if (go->status == STATUS_SHUTDOWN) in write_reg()
177 usb = go->hpi_context; in write_reg()
183 rc = go7007_usb_vendor_request(go, 0x55, dev_addr, in write_reg()
195 struct go7007 *go = i2c_get_adapdata(client->adapter); in write_reg_fp() local
201 if (go == NULL) in write_reg_fp()
204 if (go->status == STATUS_SHUTDOWN) in write_reg_fp()
[all …]
/linux-4.1.27/drivers/media/pci/saa7134/
Dsaa7134-go7007.c143 static int saa7134_go7007_interface_reset(struct go7007 *go) in saa7134_go7007_interface_reset() argument
145 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_interface_reset()
179 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 || in saa7134_go7007_interface_reset()
187 static int saa7134_go7007_write_interrupt(struct go7007 *go, int addr, int data) in saa7134_go7007_write_interrupt() argument
189 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_write_interrupt()
215 static int saa7134_go7007_read_interrupt(struct go7007 *go) in saa7134_go7007_read_interrupt() argument
217 struct saa7134_go7007 *saa = go->hpi_context; in saa7134_go7007_read_interrupt()
221 go->interrupt_available = 1; in saa7134_go7007_read_interrupt()
222 gpio_read(dev, HPI_ADDR_INTR_RET_VALUE, &go->interrupt_value); in saa7134_go7007_read_interrupt()
223 gpio_read(dev, HPI_ADDR_INTR_RET_DATA, &go->interrupt_data); in saa7134_go7007_read_interrupt()
[all …]
/linux-4.1.27/drivers/video/console/
Dnewport_con.c58 (regs)->go.zpattern = BMASK((cp)[0x0]); (regs)->go.zpattern = BMASK((cp)[0x1]); \
59 (regs)->go.zpattern = BMASK((cp)[0x2]); (regs)->go.zpattern = BMASK((cp)[0x3]); \
60 (regs)->go.zpattern = BMASK((cp)[0x4]); (regs)->go.zpattern = BMASK((cp)[0x5]); \
61 (regs)->go.zpattern = BMASK((cp)[0x6]); (regs)->go.zpattern = BMASK((cp)[0x7]); \
62 (regs)->go.zpattern = BMASK((cp)[0x8]); (regs)->go.zpattern = BMASK((cp)[0x9]); \
63 (regs)->go.zpattern = BMASK((cp)[0xa]); (regs)->go.zpattern = BMASK((cp)[0xb]); \
64 (regs)->go.zpattern = BMASK((cp)[0xc]); (regs)->go.zpattern = BMASK((cp)[0xd]); \
65 (regs)->go.zpattern = BMASK((cp)[0xe]); (regs)->go.zpattern = BMASK((cp)[0xf]); \
82 npregs->go.xyendi = in newport_render_background()
128 npregs->go.hostrw0 = *data++ << 24; in newport_show_logo()
[all …]
/linux-4.1.27/drivers/clk/rockchip/
Dclk.h217 df, go, gs, gf) \ argument
232 .gate_offset = go, \
238 go, gs, gf) \ argument
250 .gate_offset = go, \
256 df, dt, go, gs, gf) \ argument
269 .gate_offset = go, \
275 go, gs, gf) \ argument
287 .gate_offset = go, \
311 #define COMPOSITE_FRAC(_id, cname, pname, f, mo, df, go, gs, gf)\ argument
323 .gate_offset = go, \
/linux-4.1.27/drivers/net/ethernet/intel/
DKconfig51 adapters. For more information on how to identify your adapter, go
56 For general information and support, go to the Intel support
76 identify your adapter, go to the Adapter & Driver ID Guide at:
80 For general information and support, go to the Intel support
96 adapters. For more information on how to identify your adapter, go
101 For general information and support, go to the Intel support
137 information on how to identify your adapter, go to the Adapter &
142 For general information and support, go to the Intel support
159 instead. For more information on how to identify your adapter, go
164 For general information and support, go to the Intel support
[all …]
/linux-4.1.27/arch/ia64/kernel/
Dsmpboot.c105 static volatile unsigned long go[SLAVE + 1]; variable
197 go[MASTER] = 0; in sync_master()
202 while (!go[MASTER]) in sync_master()
204 go[MASTER] = 0; in sync_master()
205 go[SLAVE] = ia64_get_itc(); in sync_master()
225 go[MASTER] = 1; in get_delta()
226 while (!(tm = go[SLAVE])) in get_delta()
228 go[SLAVE] = 0; in get_delta()
299 go[MASTER] = 1; in ia64_sync_itc()
306 while (go[MASTER]) in ia64_sync_itc()
/linux-4.1.27/drivers/s390/char/
Dsclp_rw.h23 struct go { struct
47 struct go go; argument
Dsclp_rw.c76 sccb->msg_buf.mdb.go.length = sizeof(struct go); in sclp_make_buffer()
77 sccb->msg_buf.mdb.go.type = 1; in sclp_make_buffer()
221 buffer->sccb->msg_buf.mdb.go.general_msg_flags |= in sclp_write()
/linux-4.1.27/tools/perf/tests/
Dmmap-thread-lookup.c52 int go; in thread_fn() local
58 ret = write(td->ready[1], &go, sizeof(int)); in thread_fn()
76 int err, go; in thread_create() local
84 ssize_t ret = read(td->ready[0], &go, sizeof(int)); in thread_create()
/linux-4.1.27/Documentation/power/
Dtricks.txt7 * go with minimal config, turn off drivers like USB, AGP you don't
12 * use ext2. At least it has working fsck. [If something seems to go
20 * try running as few processes as possible, preferably go to single
/linux-4.1.27/kernel/power/
Dswap.c490 wait_queue_head_t go; /* start crc update */ member
506 wait_event(d->go, atomic_read(&d->ready) || in crc32_threadfn()
532 wait_queue_head_t go; /* start compression */ member
549 wait_event(d->go, atomic_read(&d->ready) || in lzo_compress_threadfn()
613 memset(&data[thr], 0, offsetof(struct cmp_data, go)); in save_image_lzo()
621 memset(crc, 0, offsetof(struct crc_data, go)); in save_image_lzo()
627 init_waitqueue_head(&data[thr].go); in save_image_lzo()
645 init_waitqueue_head(&crc->go); in save_image_lzo()
705 wake_up(&data[thr].go); in save_image_lzo()
713 wake_up(&crc->go); in save_image_lzo()
[all …]
/linux-4.1.27/Documentation/networking/
Di40evf.txt25 For more information on how to identify your adapter, go to the Adapter &
28 http://support.intel.com/support/go/network/adapter/idguide.htm
37 For general information, go to the Intel support website at:
Dixgbevf.txt30 For more information on how to identify your adapter, go to the Adapter &
33 http://support.intel.com/support/go/network/adapter/idguide.htm
42 For general information, go to the Intel support website at:
Digbvf.txt44 For more information on how to identify your adapter, go to the Adapter &
47 http://support.intel.com/support/go/network/adapter/idguide.htm
70 For general information, go to the Intel support website at:
Digb.txt20 For specific information on how to identify your adapter, go to the Adapter &
23 http://support.intel.com/support/go/network/adapter/idguide.htm
119 For general information, go to the Intel support website at:
Di40e.txt23 For more information on how to identify your adapter, go to the Adapter &
107 For general information, go to the Intel support website at:
Doperstates.txt130 via RTM_SETLINK instructs the kernel that an interface should go to
145 -do 802.1X, eventually abort if flags go down again
157 waiting for operstate to go IF_OPER_UP/IF_OPER_UNKNOWN before
DREADME.sb100044 isapnp, pnpdump, or /etc/isapnp.conf, go to:
122 12.) If you still have problems, go to the support web sites mentioned above
129 1.) Packets go out on the ppp0 interface but don't come back on the cm0
156 rerun isapnp and go from there.
De1000e.txt25 For more information on how to identify your adapter, go to the Adapter &
28 http://support.intel.com/support/go/network/adapter/idguide.htm
34 http://support.intel.com/support/go/network/adapter/home.htm
302 For general information, go to the Intel support website at:
Dfore200e.txt40 http://en.wikipedia.org/wiki/FORE_Systems. Register TACTics Online and go to
De100.txt39 For more information on how to identify your adapter, go to the Adapter &
173 For general information, go to the Intel support website at:
De1000.txt19 For more information on how to identify your adapter, go to the Adapter &
22 http://support.intel.com/support/go/network/adapter/idguide.htm
28 http://support.intel.com/support/go/network/adapter/home.htm
451 For general information, go to the Intel support website at:
Dnetdev-FAQ.txt145 Before you jump to go do the above, do note that the normal stable rules
223 Finally, go back and read Documentation/SubmittingPatches to be
Dopenvswitch.txt59 that the kernel considers part of the flow must go to userspace,
65 the following sections go into detail.
Dixgbe.txt23 For more information on how to identify your adapter, go to the Adapter &
339 For general information, go to the Intel support website at:
/linux-4.1.27/arch/sparc/kernel/
Dsmp_64.c160 static unsigned long go[SLAVE + 1]; variable
172 go[MASTER] = 1; in get_delta()
174 while (!(tm = go[SLAVE])) in get_delta()
176 go[SLAVE] = 0; in get_delta()
207 go[MASTER] = 1; in smp_synchronize_tick_client()
209 while (go[MASTER]) in smp_synchronize_tick_client()
255 go[MASTER] = 0; in smp_synchronize_one_tick()
260 while (!go[MASTER]) in smp_synchronize_one_tick()
264 go[MASTER] = 0; in smp_synchronize_one_tick()
270 while (!go[MASTER]) in smp_synchronize_one_tick()
[all …]
Dwof.S116 restore %g0, %g0, %g0 ! go back into trap window
/linux-4.1.27/arch/arm/mach-mvebu/
Dpmsu_ll.S32 ARM_BE8(setend be ) @ go BE8 if entered LE
48 ARM_BE8(setend be ) @ go BE8 if entered LE
Dheadsmp.S32 ARM_BE8(setend be ) @ go BE8 if entered LE
/linux-4.1.27/sound/oss/
Ddmabuf.c316 adev->go = 1; in DMAbuf_open()
403 if (!((adev->enable_bits * adev->go) & PCM_ENABLE_OUTPUT)) in DMAbuf_launch_output()
422 adev->d->trigger(dev,adev->enable_bits * adev->go); in DMAbuf_launch_output()
434 if (!adev->go && !(adev->enable_bits & PCM_ENABLE_OUTPUT)) in DMAbuf_sync()
549 adev->d->trigger(dev, adev->enable_bits * adev->go); in DMAbuf_activate_recording()
572 if (!(adev->enable_bits & PCM_ENABLE_INPUT) || !adev->go) { in DMAbuf_getrdbuffer()
586 if (adev->go) in DMAbuf_getrdbuffer()
701 if (adev->go) in DMAbuf_start_devices()
704 adev->go = 1; in DMAbuf_start_devices()
706 adev->d->trigger(dev,adev->enable_bits * adev->go); in DMAbuf_start_devices()
[all …]
Daudio.c835 if (changed && audio_devs[dev]->go) in dma_ioctl()
856 audio_devs[dev]->go) in dma_ioctl()
870 audio_devs[dev]->d->trigger(dev, bits * audio_devs[dev]->go); in dma_ioctl()
882 audio_devs[dev]->go = 0; in dma_ioctl()
Ddev_table.h217 int go; member
/linux-4.1.27/arch/m68k/fpsp040/
Dsacos.S23 | 1. If |X| >= 1, go to 3.
30 | 3. If |X| > 1, go to 5.
Dstwotox.S25 | 1. If |X| > 16480, go to ExpBig.
27 | 2. If |X| < 2**(-70), go to ExpSm.
38 | 1. If |X| > 16480*log_10(2) (base 10 log of 2), go to ExpBig.
40 | 2. If |X| < 2**(-70), go to ExpSm.
Dgen_except.S59 beq do_check |go handle idle frame
61 beqs unimp_x |go handle unimp frame
63 beqs unimp_x |go handle unimp frame
176 bra commonE |go clean and exit
207 bra do_clean |go clean and exit
218 bras ovfl_unfl |go to unfl_ovfl to determine if
274 bra do_clean |go clean and exit
376 | If trace mode enabled, then go to trace handler. This handler
Dutil.S187 jmp (%a1) |go to the correct routine
194 bra set_sign |now go set the sign
197 bra set_sign |now go set the sign
228 bra set_sign |now go set the sign
424 beqs opc_1b |if set, go to cmdreg1b
517 jmp (%a1) |go to the correct routine
524 bra uset_sign |now go set the sign
528 bra uset_sign |now go set the sign
560 bra uset_sign |now go set the sign
Dsasin.S23 | 1. If |X| >= 1, go to 3.
30 | 3. If |X| > 1, go to 5.
Dsatanh.S24 | 1. If |X| >= 1, go to 3.
33 | 3. If |X| > 1, go to 5.
Dstanh.S23 | 1. If |X| >= (5/2) log2 or |X| <= 2**(-40), go to 3.
31 | go to 7.
33 | 4. (|X| >= (5/2) log2) If |X| >= 50 log2, go to 6.
Dx_store.S140 beqs get_mant |if positive, go process mantissa
143 bras get_mant |go process mantissa
148 beqs dbl_inf |if positive, go ahead and write it
Dscosh.S23 | 1. If |X| > 16380 log2, go to 3.
30 | 3. (|X| > 16380 log2). If |X| > 16480 log2, go to 5.
Dssin.S32 | 2. If |X| >= 15Pi or |X| < 2**(-40), go to 7.
38 | 4. If k is even, go to 6.
50 | 7. If |X| > 1, go to 9.
54 | 9. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 3.
57 | 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6.
62 | 3. If k is even, go to 5.
76 | 6. If |X| > 1, go to 8.
80 | 8. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 2.
Dssinh.S23 | 1. If |X| > 16380 log2, go to 3.
30 | 3. If |X| > 16480 log2, go to 5.
Dstan.S24 | 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6.
29 | 3. If k is odd, go to 5.
43 | 6. If |X| > 1, go to 8.
47 | 8. Overwrite X by X := X rem 2Pi. Now that |X| <= Pi, go back to 2.
Dbugfix.S186 | cu src equal to xu dest or equal to nu dest. If so, go to
188 | xu dest or equal to nu dest. If so, go to tst_opcl. Else,
191 | Check for opclass 0. If not, go and check for opclass 2 and sgl.
205 | Check for cu dest equal to nu dest. If so, go and fix the
358 | go and fix the bug condition. Otherwise, exit.
Dsrem_mod.S30 | R := X, go to Step 4.
36 | 3.1 If R = Y, go to Step 9.
38 | 3.3 If j = 0, go to Step 4.
44 | MOD is requested, go to Step 6.
Dsetox.S60 | 1.1 If |X| >= 2^(-65), go to Step 1.3.
62 | 1.3 If |X| < 16380 log(2), go to Step 2.
154 | 6.1 If AdjFlag = 0, go to 6.3
186 | 8.1 If |X| > 16480 log2, go to Step 9.
197 | 9.1 If X < 0, go to 9.3
198 | 9.2 ans := Huge, go to 9.4
607 bra EXPCONT1 | ...go back to Step 3
Ddecbin.S445 bras calc_p |go to init section
450 bras calc_p |go to init section
483 beqs mul |if clear, go to multiply
Dx_unimp.S66 bsrl get_op |go get operand(s)
Dsatan.S23 | Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5.
35 | Step 5. If |X| >= 16, go to Step 7.
Dx_fline.S66 | ;and go to FPSP_UNIMP
Dsgetem.S58 bsr nrm_set |normalize (exp will go negative)
Dbindec.S256 bras A4_str |go move out ILOG
640 bne not_zr |if non-zero, go to second test
679 fblt A14_st |if less, all is ok, go to A14
Dround.S52 tstl %d0 |if grs are zero, go force
280 | would go less than 0. In that case the number becomes a denorm - the
321 bsr nrm_set |else exp won't go past 0
Dbinstr.S29 | extracts and shifts. The three msbs from d2 will go into
Dslog2.S82 | go to Step 3.
Dres_func.S71 bsr nrm_set |normalize number (exp will go negative)
1958 jmp (%a0) |go to the routine
2000 bra p_write |go write results
2005 bra p_write |go write the result
2009 bra p_write |go write the result
/linux-4.1.27/arch/alpha/lib/
Dev6-memcpy.S79 cmple $18, 127, $1 # E : Can we go through the unrolled loop?
107 subq $18, 192, $2 # E : At least two more trips to go?
195 bne $1, $aligndest # U : go until we are aligned.
234 bgt $18, $misalign_byte # U : more to go?
Dev6-clear_user.S184 # $1 is the number of quadwords left to go.
189 beq $1, $trailbytes # U .. .. .. : U L U L : Only 0..7 bytes to go
202 # We have an unknown number of bytes left to go.
/linux-4.1.27/Documentation/watchdog/
Dconvert_drivers_to_kernel_api.txt18 go. Only very few driver-specific details have to be moved to other functions.
22 close preparations) can simply go. Device specific stuff needs to go to the
29 - write: Can simply go, all defined behaviour is taken care of by the framework,
84 refactoring. The rest can go.
186 can go, though. This will likely be some code in open(), close() or write().
Dwatchdog-api.txt109 Some watchdog timers can be set to have a trigger go off before the
119 when the timeout will go off. It is not the number of seconds until
121 and the pretimeout to 10 seconds, the pretimeout will go off in 50
/linux-4.1.27/arch/m32r/kernel/
Dhead.S88 beqz r4, .Lendloop1 ; any more to go?
92 bnez r4, .Lloop1 ; go do some more
96 beqz r4, .Lendloop2 ; any more to go?
101 bnez r4, .Lloop2 ; go do some more
/linux-4.1.27/Documentation/hwmon/
Damc682164 pwm1 = pwm1_auto_point2_pwm. It can go from
69 speed. It can go from temp1_auto_point2_temp.
81 pwm1 = pwm1_auto_point2_pwm. It can go from
Dasb10017 supply a datasheet for these chips. Thanks go to many people who helped
Dlm6323 Thanks go to Tyan and especially Alex Buckingham for setting up a remote
Df71882fg95 vica versa. So the temperature zone trip points 1-4 (or 1-2) go from high temp
/linux-4.1.27/arch/arm/mach-vexpress/
Ddcscb_setup.S33 2: @ Implementation-specific local CPU setup operations should go here,
/linux-4.1.27/fs/jffs2/
DTODO23 - Split writes so they go to two separate blocks rather than just c->nextblock.
29 the full dirent, we only need to go to the flash in lookup() when we think we've
/linux-4.1.27/drivers/video/logo/
Dlogo_m32r_clut224.ppm9 # http://www.is.aist.go.jp/etlcdb/util/p2a.htm#English
/linux-4.1.27/arch/x86/realmode/rm/
Dtrampoline_32.S41 movl tr_start, %eax # where we need to go
/linux-4.1.27/arch/arm/mach-omap2/
Dsram243x.S53 str r3, [r2] @ go to L1-freq operation
57 bl voltage_shift @ go drop voltage
77 bl voltage_shift @ go raise voltage
81 str r3, [r2] @ go to L0-freq operation
257 str r7, [r8] @ go to fast relock
Dsram242x.S53 str r3, [r2] @ go to L1-freq operation
57 bl voltage_shift @ go drop voltage
77 bl voltage_shift @ go raise voltage
81 str r3, [r2] @ go to L0-freq operation
257 str r7, [r8] @ go to fast relock
/linux-4.1.27/drivers/net/wireless/ath/ath5k/
Dphy.c487 const struct ath5k_gain_opt *go; in ath5k_hw_rf_gainf_corr() local
496 go = &rfgain_opt_5112; in ath5k_hw_rf_gainf_corr()
500 g_step = &go->go_step[ah->ah_gain.g_step_idx]; in ath5k_hw_rf_gainf_corr()
610 const struct ath5k_gain_opt *go; in ath5k_hw_rf_gainf_adjust() local
616 go = &rfgain_opt_5111; in ath5k_hw_rf_gainf_adjust()
619 go = &rfgain_opt_5112; in ath5k_hw_rf_gainf_adjust()
625 g_step = &go->go_step[ah->ah_gain.g_step_idx]; in ath5k_hw_rf_gainf_adjust()
636 g_step = &go->go_step[ah->ah_gain.g_step_idx]) in ath5k_hw_rf_gainf_adjust()
638 (go->go_step[--(ah->ah_gain.g_step_idx)].gos_gain - in ath5k_hw_rf_gainf_adjust()
648 if (ah->ah_gain.g_step_idx == (go->go_steps_count - 1)) in ath5k_hw_rf_gainf_adjust()
[all …]
/linux-4.1.27/arch/x86/vdso/
Dvdso2c.c168 static void go(void *raw_addr, size_t raw_len, in go() function
246 go(raw_addr, raw_len, stripped_addr, stripped_len, outfile, name); in main()
Dvdso2c.h7 static void BITSFUNC(go)(void *raw_addr, size_t raw_len, in BITSFUNC() argument
/linux-4.1.27/drivers/net/ethernet/brocade/bna/
DKconfig14 For general information and support, go to the QLogic support
/linux-4.1.27/lib/
DKconfig.kgdb116 will happen until you type 'go'.
118 you type 'go', you will be warned by kdb. The secend time you type
119 'go', KDB tries to continue. No guarantees that the
/linux-4.1.27/arch/blackfin/mach-bf561/boards/
DKconfig27 please go to http://www.niistt.ru/
/linux-4.1.27/arch/m32r/boot/compressed/
Dhead.S107 beqz r4, .Lendloop1 ; any more to go?
111 bnez r4, .Lloop1 ; go do some more
/linux-4.1.27/arch/arm/include/debug/
Dtegra.S84 bne 100f @ no; go load the addresses
151 bne 92f @ Yes, go process it
/linux-4.1.27/arch/arm/mach-lpc32xx/
Dsuspend.S53 @ Wait for SDRAM busy status to go busy and then idle
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-event_source-devices-format6 Attribute group to describe the magic bits that go into
/linux-4.1.27/Documentation/
Dmono.txt15 http://go-mono.com/download.html
19 http://www.go-mono.com/compiling.html
Dbraille-console.txt22 page up/down keys go at the top/bottom of the screen, and the home key goes back
Dbasic_profiling.txt2 go read the real docs ;-) Please don't add more stuff, but feel free to
Ddell_rbu.txt14 Please go to http://support.dell.com register and you can find info on
16 Libsmbios can also be used to update BIOS on Dell systems go to
DSM501.txt28 need to create a new bus-type and the associated code to go with it.
Dkref.txt5 you want refcounts, krefs are the way to go.
40 refcount cannot go to zero) you may do this without a lock.
Diostats.txt50 go to zero as I/Os complete; all others only increase (unless they
82 The only field that should go to zero. Incremented as requests are
DHOWTO21 know to achieve this by describing the process you need to go through,
189 go to the Linux Kernel Janitor's project:
195 and possibly be pointed in the direction of what to go work on next, if
329 expected to go into the mainline kernel at the next merge period.
357 To work in the already reported bug reports, go to http://bugzilla.kernel.org.
DCodingStyle313 "unsigned long", then by all means go ahead and use a typedef.
454 you should probably go back to chapter 6 for a while. You can make
536 This will make emacs go better with the kernel coding style for C
757 that can go into these 5 milliseconds.
864 Large, non-trivial assembly functions should go in .S files, with corresponding
897 If you have a function or variable which may potentially go unused in a
Dvfio.txt23 go through the full development cycle to become proper upstream
237 /* Gratuitous device reset and go... */
363 /* Gratuitous device reset and go... */
Dpreempt-locking.txt58 means you can't do oddball things like acquire a lock and go off to
/linux-4.1.27/Documentation/devicetree/bindings/
Dsubmitting-patches.txt48 which ones to review and which ones are ok to let go.
52 maintainers after a few weeks, go ahead and take it.
/linux-4.1.27/arch/mn10300/mm/
Dcache-dbg-flush-by-tag.S109 # now go and do the icache
Dcache-inv-by-tag.S268 # go around again if the counter hasn't yet reached zero
/linux-4.1.27/Documentation/devicetree/bindings/mtd/
Dgpmc-onenand.txt44 /* partitions go here */
Dgpmc-nand.txt91 /* partitions go here */
/linux-4.1.27/drivers/powercap/
DKconfig17 # Client driver configurations go here.
/linux-4.1.27/Documentation/blockdev/
Dnbd.txt16 tools, go to http://nbd.sf.net/.
/linux-4.1.27/scripts/rt-tester/
Dt2-l2-2rt-deadlock.tst73 # Make deadlock go away
/linux-4.1.27/Documentation/devicetree/bindings/pwm/
Dpwm-tipwmss.txt30 /* child nodes go here */
/linux-4.1.27/fs/reiserfs/
DKconfig36 operation. It will also go substantially slower. More than once we
38 latest benchmarks.:-) Use of this option allows our team to go all
/linux-4.1.27/Documentation/powerpc/
Dmpc52xx.txt4 For the latest info, go to http://www.246tNt.com/mpc52xx/
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dfpsp.S1318 # INEX1 : none (packed doesn't go through here)
1367 bra.w fu_in_exc_ovfl # go insert overflow frame
2983 # call fmovm_calc_ea which will go through the ea calc process and,
6160 # Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5. #
6173 # Step 5. If |X| >= 16, go to Step 7. #
6713 # 1. If |X| >= 1, go to 3. #
6720 # 3. If |X| > 1, go to 5. #
6988 # 1.1 If |X| >= 1/4, go to Step 1.3. #
6990 # 1.3 If |X| < 70 log(2), go to Step 2. #
7048 # 6.1 If M <= 63, go to Step 6.3. #
[all …]
Dfplsp.S4923 # 2. If |X| >= 15Pi or |X| < 2**(-40), go to 7. #
4929 # 4. If k is even, go to 6. #
4942 # 7. If |X| > 1, go to 9. #
4948 # go back to 3. #
4951 # 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. #
4956 # 3. If k is even, go to 5. #
4970 # 6. If |X| > 1, go to 8. #
4975 # go back to 2. #
5625 # 1. If |X| >= 15Pi or |X| < 2**(-40), go to 6. #
5630 # 3. If k is odd, go to 5. #
[all …]
/linux-4.1.27/arch/s390/kernel/
Dsclp.S121 brc 8,.LnotbusyS2 # go on if not busy
152 jz .LdoinitS3 # go ahead
322 # go
Dhead64.S96 brasl %r14,start_kernel # go to C code
Dhead.S254 # everything loaded, go for it
/linux-4.1.27/arch/avr32/boards/hammerhead/
DKconfig27 also go through the ALSA settings to get it working.
/linux-4.1.27/Documentation/misc-devices/
Dspear-pcie-gadget.txt94 go for link up now.
116 go for link up now
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/
Dfw-api-mac.h362 struct iwl_mac_data_go go; member
Dmac-ctxt.c1172 iwl_mvm_mac_ctxt_cmd_fill_ap(mvm, vif, &cmd.go.ap, in iwl_mvm_mac_ctxt_cmd_go()
1175 cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow & in iwl_mvm_mac_ctxt_cmd_go()
1177 cmd.go.opp_ps_enabled = in iwl_mvm_mac_ctxt_cmd_go()
/linux-4.1.27/Documentation/cpu-freq/
Dindex.txt38 send an email to linux-pm@vger.kernel.org, to subscribe go to
/linux-4.1.27/kernel/trace/
Dtrace_selftest.c1035 int go; member
1056 while (!x->go) { in trace_wakeup_test_thread()
1119 data.go = 1; in trace_selftest_startup_wakeup()
/linux-4.1.27/arch/arm/lib/
Dmemset.S51 ldmeqfd sp!, {r8, pc} @ Now <64 bytes to go.
/linux-4.1.27/Documentation/devicetree/bindings/arm/hisilicon/
Dhisilicon.txt28 If reg value is not zero, cpun exit wfi and go
/linux-4.1.27/Documentation/scsi/
Dbfa.txt80 For general product and support info, go to the Brocade website at:
Dcxgb3i.txt81 4. To direct open-iscsi traffic to go through cxgb3i's accelerated path,
Dlibsas.txt53 Then as you go along and initialize your phys you also
93 sas_prim -- this is where primitives go when they're
311 go out on the transport *immediately*. There is *no*
Daacraid.txt132 where fibs that go to the hardware are consistently called hw_fibs and
/linux-4.1.27/fs/pstore/
DKconfig11 provide the data, so you probably should just go say "Y"
/linux-4.1.27/Documentation/arm/
Dtcm.txt80 Functions to go into itcm can be tagged like this:
88 Variables to go into dtcm can be tagged like this:
/linux-4.1.27/Documentation/devicetree/bindings/soc/qcom/
Dqcom,gsbi.txt57 /* child nodes go under here */
/linux-4.1.27/Documentation/w1/slaves/
Dw1_therm32 time and then go back to read individual sensors. That isn't
/linux-4.1.27/Documentation/fb/
Dmetronomefb.txt25 which would typically go into /lib/firmware/metronome.wbf depending on your
Ddeferred_io.txt26 have gone quiet, we go and really update the framebuffer which would be
/linux-4.1.27/arch/cris/boot/rescue/
Dhead_v10.S160 ;; we now should go through the checksum-table and check the listed
225 beq ploop ; checksums matched, go to next entry
/linux-4.1.27/Documentation/filesystems/
Dubifs.txt82 bulk_read read more in one go to take advantage of flash
89 of a file can go unnoticed.
/linux-4.1.27/Documentation/block/
Dcfq-iosched.txt240 All cfq queues doing synchronous sequential IO go on to sync-idle tree.
243 All synchronous non-sequential queues go on sync-noidle tree. Also any
244 request which are marked with REQ_NOIDLE go on this service tree. On this
250 All async writes go on async service tree. There is no idling on async
/linux-4.1.27/fs/quota/
DKconfig36 Note that this behavior is currently deprecated and may go away in
/linux-4.1.27/drivers/staging/speakup/
DDefaultKeyAssignments38 InsKeyPad-star n<x|y> go to line (y) or column (x). Where 'n' is any
/linux-4.1.27/drivers/gpu/ipu-v3/
Dipu-cpmem.c295 int bpp = 0, npb = 0, ro, go, bo, to; in ipu_cpmem_set_format_rgb() local
298 go = rgb->bits_per_pixel - rgb->green.length - rgb->green.offset; in ipu_cpmem_set_format_rgb()
305 ipu_ch_param_write_field(ch, IPU_FIELD_OFS1, go); in ipu_cpmem_set_format_rgb()
/linux-4.1.27/Documentation/locking/
Dlglock.txt38 that the reference to the local CPUs lock does not go out of scope.
119 CPUs rather than the actually present CPUs or a CPU could go off-line
Drt-mutex-design.txt186 Before I go further and talk about how the PI chain is stored through lists
509 the entire time, and it is not let go when we grab the pi_lock of the
567 we go about the slow path (rt_mutex_slowlock).
644 If the mutex has a timeout, we set up a timer to go off to break us out
680 (or deadlock checking is on), we unlock the wait_lock of the mutex and go ahead
684 mutex (waiter "task" field is not NULL), then we go to sleep (call schedule).
697 we just simply add ourselves back on the lists and go back to sleep.
/linux-4.1.27/drivers/block/paride/
Dpg.c287 static int pg_wait(struct pg *dev, int go, int stop, unsigned long tmo, char *msg) in pg_wait() argument
294 while ((((r = status_reg(dev)) & go) || (stop && (!(r & stop)))) in pg_wait()
Dpcd.c353 static int pcd_wait(struct pcd_unit *cd, int go, int stop, char *fun, char *msg) in pcd_wait() argument
358 while ((((r = status_reg(cd)) & go) || (stop && (!(r & stop)))) in pcd_wait()
Dpf.c402 static int pf_wait(struct pf_unit *pf, int go, int stop, char *fun, char *msg) in pf_wait() argument
407 while ((((r = status_reg(pf)) & go) || (stop && (!(r & stop)))) in pf_wait()
Dpt.c271 static int pt_wait(struct pt_unit *tape, int go, int stop, char *fun, char *msg) in pt_wait() argument
277 while ((((r = status_reg(pi)) & go) || (stop && (!(r & stop)))) in pt_wait()
/linux-4.1.27/Documentation/usb/
Dmtouchusb.txt65 this driver! If you want touch drivers only supported within X, please go to:
Drio.txt49 URL: <http://rio500.sourceforge.net>. You can also go to the project's
Dehci.txt162 and some devices now go faster, while others go slower.
Derror-codes.txt145 -EINVAL ISO madness, if this happens: Log off and go home
/linux-4.1.27/Documentation/development-process/
D7.AdvancedTopics62 from development branches when they are in complete form and ready to go -
112 slip in ill-advised changes which go into the mainline below the review
119 to trust things *without* then having to go and check every
D2.Process96 kernels go out with a handful of known regressions though, hopefully, none
132 Patches do not go directly from the developer's keyboard into the mainline
137 and controversial changes, go on for years. Much developer frustration
242 normally the right way to go.
366 Some major subsystem maintainers use quilt to manage patches intended to go
431 beginning developers to go wrong. Somebody who asks a networking-related
D6.Followthrough75 go away. They will not go away. If you repost code without having
77 that your patches go nowhere.
D4.Coding10 number of ways in which kernel developers can go wrong. Then the focus
52 can never be transgressed. If there is a good reason to go against the
221 and try to avoid "fixes" which make the warning go away without addressing
280 code responds when things go badly. See
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt39 NETFS_READ_PAGES, /* Read multiple contiguous pages in one go */
180 Used to read multiple contiguous pages in one go.
/linux-4.1.27/Documentation/input/
Dappletouch.txt14 Credits go to Johannes Berg for reverse-engineering the touchpad protocol,
/linux-4.1.27/Documentation/leds/
Dledtrig-transient.txt103 go back to LED_OFF.
105 go back to LED_FULL.
/linux-4.1.27/arch/powerpc/boot/dts/
Dep8248e.dts102 // Temporary -- will go away once kernel uses ranges for get_immrbase().
Dep88xc.dts77 // Temporary -- will go away once kernel uses ranges for get_immrbase().
Dmpc885ads.dts78 // Temporary -- will go away once kernel uses ranges for get_immrbase().
Dpq2fads.dts124 // Temporary -- will go away once kernel uses ranges for get_immrbase().
Dmpc8272ads.dts126 // Temporary -- will go away once kernel uses ranges for get_immrbase().
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-arb-gpio-challenge.txt51 - slew-delay-us: microseconds to wait for a GPIO to go high. Default is 10 us.
/linux-4.1.27/Documentation/devicetree/bindings/c6x/
Dinterrupt.txt84 This is a minimal example where all individual interrupts go through a
/linux-4.1.27/Documentation/dvb/
Dcontributors.txt1 Thanks go to the following people for patches and contributions:
/linux-4.1.27/Documentation/devicetree/
Doverlay-notes.txt99 Finally, if you need to remove all overlays in one-go, just call
/linux-4.1.27/Documentation/arm/OMAP/
DDSS131 - Overlay defines where the pixels are read from and where they go on the
168 overlays List of overlay numbers to which framebuffer pixels go
232 Here's the default setup on OMAP3 SDP board. All planes go to LCD. DVI
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dregulator.txt12 - regulator-allow-bypass: allow the regulator to go into bypass mode
/linux-4.1.27/sound/pci/trident/
Dtrident_main.c1551 unsigned int val, go; in snd_trident_trigger() local
1557 go = 1; in snd_trident_trigger()
1562 go = 0; in snd_trident_trigger()
1580 if (go) in snd_trident_trigger()
1583 if (go) { in snd_trident_trigger()
1600 if (!go) in snd_trident_trigger()
1609 if (!go) in snd_trident_trigger()
1612 if (go) { in snd_trident_trigger()
1618 if (go) { in snd_trident_trigger()
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dl2cc.txt46 addresses will go to the M0 port.
/linux-4.1.27/Documentation/mips/
DAU1xxx_IDE.README9 the white or black list, go to the 'ADD NEW HARD DISC TO WHITE OR BLACK LIST'
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dnvidia,tegra20-usb-phy.txt67 otg means it can operate as either ("on the go")
/linux-4.1.27/arch/arm/boot/dts/
Domap5-uevm.dts466 /* VCC_2V8_DISP: Does not go anywhere */
519 /* VDD_3v0: Does not go anywhere */
/linux-4.1.27/Documentation/vm/
Dcleancache.txt131 are the first to go, and cleancache allows those pages to be
223 file removal or truncation operations either go through VFS or
231 go through the do_mpag_readpage routine or the FS should add
/linux-4.1.27/arch/sparc/lib/
Dchecksum_32.S358 bne 5b ! we did not go negative, continue looping
361 ccmerge:be ccte ! nope, go and check for end cruft
394 bne ccdbl ! we did not go negative, continue looping
/linux-4.1.27/arch/sh/kernel/cpu/sh5/
Dswitchto.S135 ! go to save_pc for a reschedule, or the initial thread.pc for a new process
/linux-4.1.27/Documentation/driver-model/
Dbinding.txt91 go to 0. When it does, the remove callback of the driver is called. It
/linux-4.1.27/Documentation/isdn/
DHiSax.cert76 If you wish to change the sources, go ahead; but note that then the
/linux-4.1.27/arch/arm/kvm/
Dinterrupts.S151 @ We're all done, just restore the GPRs and go to the guest
/linux-4.1.27/drivers/misc/
Dhpilo.c188 int active = 0, go = 1; in ctrl_set() local
193 go << CTRL_BITPOS_G; in ctrl_set()
/linux-4.1.27/tools/usb/usbip/
DINSTALL94 directory where you want the object files and executables to go and run
120 you can set and what kinds of files go in them.
/linux-4.1.27/Documentation/dmaengine/
Dprovider.txt58 transfer, and whenever the transfer is started, the controller will go
64 and whenever a DRQ will be asserted, it will go through the collection
293 - Should report the bytes left to go over on the given channel
/linux-4.1.27/include/video/
Dnewport.h288 struct newport_rexregs go; member
/linux-4.1.27/arch/arm/mach-omap1/
Dams-delta-fiq-handler.S154 bne data @ no - go to data processing
/linux-4.1.27/Documentation/frv/
Datomic-ops.txt49 (5) If ICC3.Z is still true, go back to step (1).
/linux-4.1.27/drivers/dma/
Dpl330.c1030 struct _arg_GO go; in _trigger() local
1067 go.chan = thrd->id; in _trigger()
1068 go.addr = req->mc_bus; in _trigger()
1069 go.ns = ns; in _trigger()
1070 _emit_GO(0, insn, &go); in _trigger()
/linux-4.1.27/Documentation/filesystems/caching/
Dobject.txt183 At the completion of lookup, FS-Cache will let the netfs go ahead with
248 can destroy themselves. This object waits for all its children to go away
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
Dsym_fw2.h1001 offsetof(struct sym_ccb, phys.head.go.restart),
1032 offsetof(struct sym_ccb, phys.head.go.restart),
/linux-4.1.27/Documentation/video4linux/
Dv4l2-framework.txt223 data of v4l2_subdev using v4l2_set_subdevdata(). That makes it easy to go
226 You also need a way to go from the low-level struct to v4l2_subdev. For the
404 v4l2_device_call_all(). That ensures that it will only go to the subdev
524 You should also add a helper inline function to go from a v4l2_subdev pointer
532 Use this to go from the v4l2_subdev struct to the i2c_client struct:
536 And this to go from an i2c_client to a v4l2_subdev struct:
681 Do not use .ioctl! This is deprecated and will go away in the future.
894 You can go from a video_device struct to the v4l2_device struct using:
/linux-4.1.27/Documentation/devicetree/bindings/bus/
Dti-gpmc.txt129 /* child nodes go here */
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S497 jmp @r9 ! Off to do_IRQ() we go.
/linux-4.1.27/Documentation/s390/
DCommonIO76 known devices go away, you need the "purge" command (see below).
/linux-4.1.27/Documentation/i2c/busses/
Di2c-parport40 a sample electronics schema (credits go to Sylvain Munaut):
/linux-4.1.27/scripts/package/
Dbuilddeb26 chmod -R go-w "$pdir"
/linux-4.1.27/arch/arm/kernel/
Dentry-common.S63 b local_restart @ ... and off we go
/linux-4.1.27/arch/sh/lib/
Dchecksum.S143 bt 9f ! if it's =0 go to 9f
/linux-4.1.27/Documentation/sound/oss/
Dmwave121 ro # Other kernel arguments go here.
/linux-4.1.27/Documentation/device-mapper/
Dlog-writes.txt60 dev_path : Device that all of the IO will go to normally.
Dcache.txt78 cached will go only to the cache and the block will be marked dirty in
205 underlying storage). Reads and writes always go to
/linux-4.1.27/arch/arc/mm/
Dtlbex.S230 sr r3, [ARC_REG_TLBPD1] ; these go in PD1

12