| /linux/drivers/usb/typec/altmodes/ |
| H A D | thunderbolt.c | 31 struct typec_altmode *plug[2]; member 56 dev_dbg(&tbt->plug[TYPEC_PLUG_SOP_P]->dev, in tbt_altmode_work() 64 dev_dbg(&tbt->plug[TYPEC_PLUG_SOP_PP]->dev, in tbt_altmode_work() 95 if (tbt->plug[i]) in tbt_altmode_work() 96 typec_altmode_put_plug(tbt->plug[i]); in tbt_altmode_work() 98 tbt->plug[i] = NULL; in tbt_altmode_work() 122 if (tbt->plug[TYPEC_PLUG_SOP_P]) { in tbt_enter_modes_ordered() 126 if (tbt->plug[i]) in tbt_enter_modes_ordered() 127 typec_altmode_put_plug(tbt->plug[i]); in tbt_enter_modes_ordered() 129 tbt->plug[i] = NULL; in tbt_enter_modes_ordered() [all …]
|
| H A D | displayport.c | 285 * plug from the driver and attempt to run the driver without in dp_altmode_work() 289 dev_err(&dp->alt->dev, "plug failed to enter mode\n"); in dp_altmode_work() 483 /* Attempt to configure on SOP, drop plug */ in dp_cable_altmode_vdm() 764 struct typec_altmode *plug = typec_altmode_get_plug(alt, TYPEC_PLUG_SOP_P); in dp_altmode_probe() 777 typec_altmode_put_plug(plug); in dp_altmode_probe() 783 typec_altmode_put_plug(plug); in dp_altmode_probe() 795 if (plug) { in dp_altmode_probe() 796 plug->desc = "Displayport"; in dp_altmode_probe() 797 plug->cable_ops = &dp_cable_ops; in dp_altmode_probe() 800 dp->plug_prime = plug; in dp_altmode_probe() 762 struct typec_altmode *plug = typec_altmode_get_plug(alt, TYPEC_PLUG_SOP_P); dp_altmode_probe() local [all...] |
| /linux/sound/core/oss/ |
| H A D | io.c | 13 #define pcm_write(plug,buf,count) snd_pcm_oss_write3(plug,buf,count,1) argument 14 #define pcm_writev(plug,vec,count) snd_pcm_oss_writev3(plug,vec,count) argument 15 #define pcm_read(plug,buf,count) snd_pcm_oss_read3(plug,buf,count,1) argument 16 #define pcm_readv(plug,vec,count) snd_pcm_oss_readv3(plug,vec,count) argument 32 return pcm_write(plugin->plug, src_channels->area.addr, frames); in io_playback_transfer() 44 return pcm_writev(plugin->plug, bufs, frames); in io_playback_transfer() 58 return pcm_read(plugin->plug, dst_channels->area.addr, frames); in io_capture_transfer() 70 return pcm_readv(plugin->plug, bufs, frames); in io_capture_transfer() 93 int snd_pcm_plugin_build_io(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_io() argument 104 if (snd_BUG_ON(!plug || !params)) in snd_pcm_plugin_build_io() [all …]
|
| H A D | pcm_plugin.c | 20 #define snd_pcm_plug_first(plug) ((plug)->runtime->oss.plugin_first) argument 21 #define snd_pcm_plug_last(plug) ((plug)->runtime->oss.plugin_last) argument 93 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames) in snd_pcm_plug_alloc() argument 96 if (snd_BUG_ON(!snd_pcm_plug_first(plug))) in snd_pcm_plug_alloc() 98 if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) { in snd_pcm_plug_alloc() 99 struct snd_pcm_plugin *plugin = snd_pcm_plug_first(plug); in snd_pcm_plug_alloc() 111 struct snd_pcm_plugin *plugin = snd_pcm_plug_last(plug); in snd_pcm_plug_alloc() 135 int snd_pcm_plugin_build(struct snd_pcm_substream *plug, in snd_pcm_plugin_build() argument 145 if (snd_BUG_ON(!plug)) in snd_pcm_plugin_build() 153 plugin->plug = plug; in snd_pcm_plugin_build() [all …]
|
| H A D | pcm_plugin.h | 12 #define snd_pcm_plug_stream(plug) ((plug)->stream) argument 61 struct snd_pcm_substream *plug; member 77 int snd_pcm_plug_alloc(struct snd_pcm_substream *plug, snd_pcm_uframes_t frames);
|
| H A D | copy.c | 46 int snd_pcm_plugin_build_copy(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_copy() argument 70 err = snd_pcm_plugin_build(plug, "copy", src_format, dst_format, in snd_pcm_plugin_build_copy()
|
| H A D | route.c | 72 int snd_pcm_plugin_build_route(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_route() argument 88 err = snd_pcm_plugin_build(plug, "route conversion", in snd_pcm_plugin_build_route()
|
| H A D | linear.c | 134 int snd_pcm_plugin_build_linear(struct snd_pcm_substream *plug, in snd_pcm_plugin_build_linear() argument 155 err = snd_pcm_plugin_build(plug, "linear format conversion", in snd_pcm_plugin_build_linear()
|
| /linux/block/ |
| H A D | blk-core.c | 630 struct blk_plug plug; in __submit_bio() local 632 blk_start_plug(&plug); in __submit_bio() 649 blk_finish_plug(&plug); in __submit_bio() 957 blk_flush_plug(current->plug, false); in bio_poll() 1129 void blk_start_plug_nr_ios(struct blk_plug *plug, unsigned short nr_ios) in blk_start_plug_nr_ios() argument 1136 if (tsk->plug) in blk_start_plug_nr_ios() 1139 plug->cur_ktime = 0; in blk_start_plug_nr_ios() 1140 rq_list_init(&plug->mq_list); in blk_start_plug_nr_ios() 1141 rq_list_init(&plug->cached_rqs); in blk_start_plug_nr_ios() 1142 plug->nr_ios = min_t(unsigned short, nr_ios, BLK_MAX_REQUEST_COUNT); in blk_start_plug_nr_ios() [all …]
|
| H A D | blk-mq.c | 598 struct blk_plug *plug, in blk_mq_rq_cache_fill() argument 608 .nr_tags = plug->nr_ios, in blk_mq_rq_cache_fill() 609 .cached_rqs = &plug->cached_rqs, in blk_mq_rq_cache_fill() 618 plug->nr_ios = 1; in blk_mq_rq_cache_fill() 630 struct blk_plug *plug = current->plug; in blk_mq_alloc_cached_request() local 633 if (!plug) in blk_mq_alloc_cached_request() 636 if (rq_list_empty(&plug->cached_rqs)) { in blk_mq_alloc_cached_request() 637 if (plug->nr_ios == 1) in blk_mq_alloc_cached_request() 639 rq = blk_mq_rq_cache_fill(q, plug, opf, flags); in blk_mq_alloc_cached_request() 643 rq = rq_list_peek(&plug->cached_rqs); in blk_mq_alloc_cached_request() [all …]
|
| H A D | blk.h | 691 struct blk_plug *plug = current->plug; in blk_time_get_ns() local 693 if (!plug || !in_task()) in blk_time_get_ns() 701 if (!plug->cur_ktime) { in blk_time_get_ns() 702 plug->cur_ktime = ktime_get_ns(); in blk_time_get_ns() 705 return plug->cur_ktime; in blk_time_get_ns()
|
| H A D | fops.c | 178 struct blk_plug plug; in __blkdev_direct_IO() local 209 blk_start_plug(&plug); in __blkdev_direct_IO() 265 blk_finish_plug(&plug); in __blkdev_direct_IO() 289 blk_finish_plug(&plug); in __blkdev_direct_IO() 481 struct blk_plug plug; in blkdev_writepages() local 484 blk_start_plug(&plug); in blkdev_writepages() 487 blk_finish_plug(&plug); in blkdev_writepages()
|
| /linux/drivers/thermal/renesas/ |
| H A D | Kconfig | 9 Enable this to plug the R-Car thermal sensor driver into the Linux 18 Enable this to plug the R-Car Gen3/Gen4 or RZ/G2 thermal sensor 27 Enable this to plug the RZ/G2L thermal sensor driver into the Linux 34 Enable this to plug the RZ/G3E thermal sensor driver into the Linux 42 Enable this to plug the RZ/G3S thermal sensor driver into the Linux
|
| /linux/drivers/md/ |
| H A D | raid1-10.c | 131 struct raid1_plug_cb *plug = NULL; in raid1_add_bio_to_plug() local 143 cb = blk_check_plugged(unplug, mddev, sizeof(*plug)); in raid1_add_bio_to_plug() 147 plug = container_of(cb, struct raid1_plug_cb, cb); in raid1_add_bio_to_plug() 148 bio_list_add(&plug->pending, bio); in raid1_add_bio_to_plug() 149 if (++plug->count / MAX_PLUG_BIO >= copies) { in raid1_add_bio_to_plug()
|
| /linux/drivers/usb/typec/ |
| H A D | class.c | 262 struct typec_plug *plug = to_typec_plug(adev->dev.parent); in typec_altmode_set_partner() local 264 partner->plug[plug->index] = altmode; in typec_altmode_set_partner() 283 struct typec_plug *plug = to_typec_plug(adev->dev.parent); in typec_altmode_put_partner() local 285 partner->plug[plug->index] = NULL; in typec_altmode_put_partner() 813 struct typec_plug *plug; in number_of_alternate_modes_show() local 820 plug = to_typec_plug(dev); in number_of_alternate_modes_show() 821 num_altmodes = plug->num_altmodes; in number_of_alternate_modes_show() 1203 struct typec_plug *plug = to_typec_plug(dev); in typec_plug_release() local 1205 ida_destroy(&plug->mode_ids); in typec_plug_release() 1206 kfree(plug); in typec_plug_release() [all …]
|
| /linux/arch/powerpc/platforms/ps3/ |
| H A D | interrupt.c | 706 unsigned int plug; in ps3_get_irq() local 713 asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); in ps3_get_irq() 714 plug &= 0x3f; in ps3_get_irq() 716 if (unlikely(!plug)) { in ps3_get_irq() 725 if (unlikely(plug < NR_IRQS_LEGACY || plug > PS3_PLUG_MAX)) { in ps3_get_irq() 734 if (test_bit(63 - plug, &pd->ipi_mask)) in ps3_get_irq() 735 lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, plug); in ps3_get_irq() 737 return plug; in ps3_get_irq()
|
| /linux/drivers/block/drbd/ |
| H A D | drbd_req.c | 1275 struct drbd_plug_cb *plug = container_of(cb, struct drbd_plug_cb, cb); in drbd_unplug() local 1276 struct drbd_resource *resource = plug->cb.data; in drbd_unplug() 1277 struct drbd_request *req = plug->most_recent_req; in drbd_unplug() 1297 struct drbd_plug_cb *plug; in drbd_check_plugged() local 1298 struct blk_plug_cb *cb = blk_check_plugged(drbd_unplug, resource, sizeof(*plug)); in drbd_check_plugged() 1301 plug = container_of(cb, struct drbd_plug_cb, cb); in drbd_check_plugged() 1303 plug = NULL; in drbd_check_plugged() 1304 return plug; in drbd_check_plugged() 1307 static void drbd_update_plug(struct drbd_plug_cb *plug, struct drbd_request *req) in drbd_update_plug() argument 1309 struct drbd_request *tmp = plug->most_recent_req; in drbd_update_plug() [all …]
|
| /linux/sound/firewire/ |
| H A D | fcp.h | 20 unsigned short plug); 23 unsigned short plug);
|
| /linux/Documentation/usb/ |
| H A D | chipidea.rst | 38 2) Connect 2 boards with usb cable: one end is micro A plug, the other end 39 is micro B plug. 41 The A-device (with micro A plug inserted) should enumerate B-device. 66 5) Remove B-device (unplug micro B plug) and insert again in 10 seconds; 69 6) Remove B-device (unplug micro B plug) and insert again after 10 seconds;
|
| /linux/mm/ |
| H A D | swap_state.c | 595 struct swap_iocb **plug) in read_swap_cache_async() argument 613 swap_read_folio(folio, plug); in read_swap_cache_async() 707 struct blk_plug plug; in swap_cluster_readahead() local 723 blk_start_plug(&plug); in swap_cluster_readahead() 740 blk_finish_plug(&plug); in swap_cluster_readahead() 809 struct blk_plug plug; in swap_vma_readahead() local 824 blk_start_plug(&plug); in swap_vma_readahead() 867 blk_finish_plug(&plug); in swap_vma_readahead()
|
| /linux/fs/xfs/ |
| H A D | xfs_discard.c | 118 struct blk_plug plug; in xfs_discard_extents() local 120 blk_start_plug(&plug); in xfs_discard_extents() 141 blk_finish_plug(&plug); in xfs_discard_extents() 474 struct blk_plug plug; in xfs_discard_rtdev_extents() local 478 blk_start_plug(&plug); in xfs_discard_rtdev_extents() 505 blk_finish_plug(&plug); in xfs_discard_rtdev_extents()
|
| /linux/fs/hpfs/ |
| H A D | buffer.c | 41 struct blk_plug plug; in hpfs_prefetch_sectors() local 58 blk_start_plug(&plug); in hpfs_prefetch_sectors() 66 blk_finish_plug(&plug); in hpfs_prefetch_sectors()
|
| /linux/drivers/media/firewire/ |
| H A D | firedtv.h | 132 int cmp_establish_pp_connection(struct firedtv *fdtv, int plug, int channel); 133 void cmp_break_pp_connection(struct firedtv *fdtv, int plug, int channel);
|
| /linux/Documentation/driver-api/usb/ |
| H A D | typec.rst | 41 will be named port0-cable and the plug on the SOP Prime end (see USB Power 46 If the port, partner or cable plug supports Alternate Modes, every supported 106 Double Prime communication, should only have one plug registered. For more 113 typec_cable_desc and about a plug in struct typec_plug_desc. The class copies 157 If a partner or cable plug provides a list of SVIDs as response to USB Power 179 If a partner or cable plug enters or exits a mode, the port driver needs to
|
| /linux/Documentation/firmware-guide/acpi/ |
| H A D | intel-pmc-mux.rst | 20 configure the cable plug orientation and mode (with Alternate Modes). The driver 95 should not configure them according to the cable plug orientation. This can 96 happen for example if a retimer on the platform handles the cable plug
|