| /netbsd-src/sys/sys/ |
| H A D | pipe.h | 90 struct pipe { struct 91 kmutex_t *pipe_lock; /* pipe mutex */ argument 92 kcondvar_t pipe_rcv; /* cv for readers */ argument 93 kcondvar_t pipe_wcv; /* cv for writers */ argument 94 kcondvar_t pipe_draincv; /* cv for close */ argument 95 kcondvar_t pipe_lkcv; /* locking */ argument 96 struct pipebuf pipe_buffer; /* data storage */ argument 97 struct selinfo pipe_sel; /* for compat with select */ argument 98 struct timespec pipe_atime; /* time of last access */ argument 99 struct timespec pipe_mtime; /* time of last modify */ argument [all …]
|
| /openbsd-src/sys/sys/ |
| H A D | pipe.h | 80 struct pipe { struct 81 struct rwlock *pipe_lock; argument 82 struct pipebuf pipe_buffer; /* [p] data storage */ argument 83 struct klist pipe_klist; /* [p] list of knotes */ argument 84 struct timespec pipe_atime; /* [p] time of last access */ argument 85 struct timespec pipe_mtime; /* [p] time of last modify */ argument 86 struct timespec pipe_ctime; /* [I] time of status change */ argument 87 struct sigio_ref pipe_sigio; /* [S] async I/O registration */ argument 88 struct pipe *pipe_peer; /* [p] link with other direction */ argument 89 struct pipe_pair *pipe_pair; /* [I] pipe storage */ argument [all …]
|
| /openbsd-src/sys/dev/pci/drm/i915/display/ |
| H A D | intel_vdsc_regs.h | 31 #define ICL_PIPE_DSS_CTL1(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 45 #define ICL_PIPE_DSS_CTL2(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 54 #define MTL_DSC0_PICTURE_PARAMETER_SET_17(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 57 #define MTL_DSC1_PICTURE_PARAMETER_SET_17(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 66 #define MTL_DSC0_PICTURE_PARAMETER_SET_18(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 69 #define MTL_DSC1_PICTURE_PARAMETER_SET_18(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 82 #define ICL_DSC0_PICTURE_PARAMETER_SET_0(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 85 #define ICL_DSC1_PICTURE_PARAMETER_SET_0(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 106 #define ICL_DSC0_PICTURE_PARAMETER_SET_1(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument 109 #define ICL_DSC1_PICTURE_PARAMETER_SET_1(pipe) _MMIO_PIPE((pipe) - PIPE_B, \ argument [all …]
|
| H A D | skl_watermark_regs.h | 13 #define PIPE_MBUS_DBOX_CTL(pipe) _MMIO_PIPE(pipe, _PIPEA_MBUS_DBOX_CTL, \ argument 41 #define MBUS_JOIN_PIPE_SELECT(pipe) REG_FIELD_PREP(MBUS_JOIN_PIPE_SELECT_MASK, pipe) argument 74 #define _CUR_WM_0(pipe) _PIPE(pipe, _CUR_WM_A_0, _CUR_WM_B_0) argument 75 #define CUR_WM(pipe, level) _MMIO(_CUR_WM_0(pipe) + ((4) * (level))) argument 76 #define CUR_WM_SAGV(pipe) _MMIO_PIPE(pipe, _CUR_WM_SAGV_A, _CUR_WM_SAGV_B) argument 77 #define CUR_WM_SAGV_TRANS(pipe) _MMIO_PIPE(pipe, _CUR_WM_SAGV_TRANS_A, _CUR_WM_SAGV_TRANS_B) argument 78 #define CUR_WM_TRANS(pipe) _MMIO_PIPE(pipe, _CUR_WM_TRANS_A, _CUR_WM_TRANS_B) argument 79 #define _PLANE_WM_1(pipe) _PIPE(pipe, _PLANE_WM_1_A_0, _PLANE_WM_1_B_0) argument 80 #define _PLANE_WM_2(pipe) _PIPE(pipe, _PLANE_WM_2_A_0, _PLANE_WM_2_B_0) argument 81 #define _PLANE_WM_BASE(pipe, plane) \ argument [all …]
|
| H A D | intel_dsb_regs.h | 13 #define DSBSL_INSTANCE(pipe, id) (_DSBSL_INSTANCE_BASE + \ argument 15 #define DSB_HEAD(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x0) argument 16 #define DSB_TAIL(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x4) argument 17 #define DSB_CTRL(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x8) argument 25 #define DSB_MMIOCTRL(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0xc) argument 31 #define DSB_POLLFUNC(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x10) argument 37 #define DSB_DEBUG(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x14) argument 38 #define DSB_POLLMASK(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x1c) argument 39 #define DSB_STATUS(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x24) argument 40 #define DSB_INTERRUPT(pipe, id) _MMIO(DSBSL_INSTANCE(pipe, id) + 0x28) argument [all …]
|
| H A D | intel_display_irq.c | 26 intel_handle_vblank(struct drm_i915_private *dev_priv, enum pipe pipe) in intel_handle_vblank() 108 enum pipe pipe, u32 interrupt_mask, in bdw_update_pipe_irq() 132 enum pipe pipe, u32 bits) in bdw_enable_pipe_irq() 138 enum pipe pipe, u32 bits) in bdw_disable_pipe_irq() 180 enum pipe pipe) in i915_pipestat_enable_mask() 224 enum pipe pipe, u32 status_mask) in i915_enable_pipestat() 247 enum pipe pipe, u32 status_mask) in i915_disable_pipestat() 298 enum pipe pipe, in display_pipe_crc_irq_handler() 333 enum pipe pipe, in display_pipe_crc_irq_handler() 340 enum pipe pipe) in flip_done_handler() [all …]
|
| H A D | intel_fdi.c | 23 enum pipe pipe, bool state) in assert_fdi_tx() 44 void assert_fdi_tx_enabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_tx_enabled() 49 void assert_fdi_tx_disabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_tx_disabled() 55 enum pipe pipe, bool state) in assert_fdi_rx() 65 void assert_fdi_rx_enabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_rx_enabled() 70 void assert_fdi_rx_disabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_rx_disabled() 76 enum pipe pipe) in assert_fdi_tx_pll_enabled() 94 enum pipe pipe, bool state) in assert_fdi_rx_pll() 104 void assert_fdi_rx_pll_enabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_rx_pll_enabled() 109 void assert_fdi_rx_pll_disabled(struct drm_i915_private *i915, enum pipe pipe) in assert_fdi_rx_pll_disabled() [all …]
|
| H A D | intel_audio_regs.h | 20 #define IBX_HDMIW_HDMIEDID(pipe) _MMIO_PIPE(pipe, _IBX_HDMIW_HDMIEDID_A, \ argument 24 #define IBX_AUD_CNTL_ST(pipe) _MMIO_PIPE(pipe, _IBX_AUD_CNTL_ST_A, \ argument 35 #define CPT_HDMIW_HDMIEDID(pipe) _MMIO_PIPE(pipe, _CPT_HDMIW_HDMIEDID_A, _CPT_HDMIW_HDMIEDID_B) argument 38 #define CPT_AUD_CNTL_ST(pipe) _MMIO_PIPE(pipe, _CPT_AUD_CNTL_ST_A, _CPT_AUD_CNTL_ST_B) argument 43 #define VLV_HDMIW_HDMIEDID(pipe) _MMIO_PIPE(pipe, _VLV_HDMIW_HDMIEDID_A, _VLV_HDMIW_HDMIEDID_B) argument 46 #define VLV_AUD_CNTL_ST(pipe) _MMIO_PIPE(pipe, _VLV_AUD_CNTL_ST_A, _VLV_AUD_CNTL_ST_B) argument 51 #define IBX_AUD_CFG(pipe) _MMIO_PIPE(pipe, _IBX_AUD_CONFIG_A, _IBX_AUD_CONFIG_B) argument 54 #define CPT_AUD_CFG(pipe) _MMIO_PIPE(pipe, _CPT_AUD_CONFIG_A, _CPT_AUD_CONFIG_B) argument 57 #define VLV_AUD_CFG(pipe) _MMIO_PIPE(pipe, _VLV_AUD_CONFIG_A, _VLV_AUD_CONFIG_B) argument 137 #define HBLANK_EARLY_ENABLE_ICL(pipe) (0x1 << (20 - (pipe))) argument [all …]
|
| H A D | intel_pch_display.c | 38 enum pipe pipe, enum port port, in assert_pch_dp_disabled() 57 enum pipe pipe, enum port port, in assert_pch_hdmi_disabled() 76 enum pipe pipe) in assert_pch_ports_disabled() 101 enum pipe pipe) in assert_pch_transcoder_disabled() 178 enum pipe pipe = crtc->pipe; in intel_pch_transcoder_set_m1_n1() local 189 enum pipe pipe = crtc->pipe; in intel_pch_transcoder_set_m2_n2() local 200 enum pipe pipe = crtc->pipe; in intel_pch_transcoder_get_m1_n1() local 211 enum pipe pipe = crtc->pipe; in intel_pch_transcoder_get_m2_n2() local 246 enum pipe pipe = crtc->pipe; in ilk_enable_pch_transcoder() local 312 enum pipe pipe = crtc->pipe; in ilk_disable_pch_transcoder() local [all …]
|
| H A D | intel_fifo_underrun.c | 62 enum pipe pipe; in ivb_can_enable_err_int() local 79 enum pipe pipe; in cpt_can_enable_serr_int() local 114 enum pipe pipe, in i9xx_set_fifo_underrun_reporting() 136 enum pipe pipe, bool enable) in ilk_set_fifo_underrun_reporting() 151 enum pipe pipe = crtc->pipe; in ivb_check_fifo_underruns() local 167 enum pipe pipe, bool enable, in ivb_set_fifo_underrun_reporting() 205 enum pipe pipe, bool enable) in bdw_set_fifo_underrun_reporting() 282 enum pipe pipe, bool enable) in __intel_set_cpu_fifo_underrun_reporting() 322 enum pipe pipe, bool enable) in intel_set_cpu_fifo_underrun_reporting() 395 enum pipe pipe) in intel_cpu_fifo_underrun_irq_handler()
|
| H A D | intel_pipe_crc.c | 76 enum pipe pipe, in i9xx_pipe_crc_auto_source() 126 enum pipe pipe, in vlv_pipe_crc_ctl_reg() 193 enum pipe pipe, in i9xx_pipe_crc_ctl_reg() 230 enum pipe pipe) in vlv_undo_pipe_scramble_reset() 331 enum pipe pipe, in ivb_pipe_crc_ctl_reg() 359 enum pipe pipe, in skl_pipe_crc_ctl_reg() 402 enum pipe pipe, in get_new_crc_ctl_reg() 583 enum pipe pipe = crtc->pipe; in intel_crtc_set_crc_source() local 634 enum pipe pipe = crtc->pipe; in intel_crtc_enable_pipe_crc() local 654 enum pipe pipe = crtc->pipe; in intel_crtc_disable_pipe_crc() local
|
| H A D | intel_display_reg_defs.h | 18 #define _PIPE(pipe, a, b) _PICK_EVEN(pipe, a, b) argument 25 #define _MMIO_PIPE(pipe, a, b) _MMIO(_PIPE(pipe, a, b)) argument 32 #define _MMIO_PIPE3(pipe, a, b, c) _MMIO(_PICK_EVEN_2RANGES(pipe, 1, a, a, b, c)) argument 33 #define _MMIO_PORT3(pipe, a, b, c) _MMIO(_PICK_EVEN_2RANGES(pipe, 1, a, a, b, c)) argument 39 #define _MMIO_PIPE2(pipe, reg) _MMIO(DISPLAY_INFO(dev_priv)->pipe_offsets[(pipe)] - \ argument 45 #define _MMIO_CURSOR2(pipe, reg) _MMIO(DISPLAY_INFO(dev_priv)->cursor_offsets[(pipe)] - \ argument
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/ |
| H A D | drm_vblank.c | 105 static void store_vblank(struct drm_device *dev, unsigned int pipe, in store_vblank() 121 static u32 drm_max_vblank_count(struct drm_device *dev, unsigned int pipe) in drm_max_vblank_count() 132 static u32 drm_vblank_no_hw_counter(struct drm_device *dev, unsigned int pipe) in drm_vblank_no_hw_counter() 138 static u32 __get_vblank_counter(struct drm_device *dev, unsigned int pipe) in __get_vblank_counter() 165 static void drm_reset_vblank_timestamp(struct drm_device *dev, unsigned int pipe) in drm_reset_vblank_timestamp() 214 static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe, in drm_update_vblank_count() 307 static u64 drm_vblank_count(struct drm_device *dev, unsigned int pipe) in drm_vblank_count() 343 unsigned int pipe = drm_crtc_index(crtc); in drm_crtc_accurate_vblank_count() local 363 static void __disable_vblank(struct drm_device *dev, unsigned int pipe) in __disable_vblank() 386 void drm_vblank_disable_and_save(struct drm_device *dev, unsigned int pipe) in drm_vblank_disable_and_save() [all …]
|
| /openbsd-src/sys/dev/pci/drm/ |
| H A D | drm_vblank.c | 169 static void store_vblank(struct drm_device *dev, unsigned int pipe, in store_vblank() 185 static u32 drm_max_vblank_count(struct drm_device *dev, unsigned int pipe) in drm_max_vblank_count() 196 static u32 drm_vblank_no_hw_counter(struct drm_device *dev, unsigned int pipe) in drm_vblank_no_hw_counter() 202 static u32 __get_vblank_counter(struct drm_device *dev, unsigned int pipe) in __get_vblank_counter() 231 static void drm_reset_vblank_timestamp(struct drm_device *dev, unsigned int pipe) in drm_reset_vblank_timestamp() 278 static void drm_update_vblank_count(struct drm_device *dev, unsigned int pipe, in drm_update_vblank_count() 370 u64 drm_vblank_count(struct drm_device *dev, unsigned int pipe) in drm_vblank_count() 406 unsigned int pipe = drm_crtc_index(crtc); in drm_crtc_accurate_vblank_count() local 425 static void __disable_vblank(struct drm_device *dev, unsigned int pipe) in __disable_vblank() 449 void drm_vblank_disable_and_save(struct drm_device *dev, unsigned int pipe) in drm_vblank_disable_and_save() [all …]
|
| /netbsd-src/sys/external/mit/xen-include-public/dist/xen/include/public/io/ |
| H A D | usbif.h | 148 #define usbif_pipeportnum(pipe) ((pipe) & USBIF_PIPE_PORT_MASK) argument 149 #define usbif_setportnum_pipe(pipe, portnum) ((pipe) | (portnum)) argument 151 #define usbif_pipeunlink(pipe) ((pipe) & USBIF_PIPE_UNLINK) argument 152 #define usbif_pipesubmit(pipe) (!usbif_pipeunlink(pipe)) argument 153 #define usbif_setunlink_pipe(pipe) ((pipe) | USBIF_PIPE_UNLINK) argument 155 #define usbif_pipein(pipe) ((pipe) & USBIF_PIPE_DIR) argument 156 #define usbif_pipeout(pipe) (!usbif_pipein(pipe)) argument 158 #define usbif_pipedevice(pipe) \ argument 161 #define usbif_pipeendpoint(pipe) \ argument 164 #define usbif_pipetype(pipe) \ argument [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| H A D | intel_fifo_underrun.c | 63 enum pipe pipe; in ivb_can_enable_err_int() local 80 enum pipe pipe; in cpt_can_enable_serr_int() local 115 enum pipe pipe, in i9xx_set_fifo_underrun_reporting() 135 enum pipe pipe, bool enable) in ilk_set_fifo_underrun_reporting() 150 enum pipe pipe = crtc->pipe; in ivb_check_fifo_underruns() local 166 enum pipe pipe, bool enable, in ivb_set_fifo_underrun_reporting() 189 enum pipe pipe, bool enable) in bdw_set_fifo_underrun_reporting() 258 enum pipe pipe, bool enable) in __intel_set_cpu_fifo_underrun_reporting() 298 enum pipe pipe, bool enable) in intel_set_cpu_fifo_underrun_reporting() 371 enum pipe pipe) in intel_cpu_fifo_underrun_irq_handler()
|
| H A D | intel_pipe_crc.c | 79 enum pipe pipe, in i9xx_pipe_crc_auto_source() 133 enum pipe pipe, in vlv_pipe_crc_ctl_reg() 203 enum pipe pipe, in i9xx_pipe_crc_ctl_reg() 243 enum pipe pipe) in vlv_undo_pipe_scramble_reset() 342 enum pipe pipe, in ivb_pipe_crc_ctl_reg() 370 enum pipe pipe, in skl_pipe_crc_ctl_reg() 413 enum pipe pipe, in get_new_crc_ctl_reg() 450 enum pipe pipe; in intel_display_crc_init() local 461 enum pipe pipe; in intel_display_crc_init() local
|
| /netbsd-src/sys/kern/ |
| H A D | sys_pipe.c | 160 struct pipe *pipe; in pipe_ctor() local 187 struct pipe *pipe; in pipe_dtor() local 272 pipespace(struct pipe *pipe, int size) in pipespace() 306 struct pipe *pipe; in pipe_create() local 332 pipelock(struct pipe *pipe, bool catch_p) in pipelock() 357 pipeunlock(struct pipe *pipe) in pipeunlock() 756 struct pipe *pipe = fp->f_pipe; in pipe_ioctl() local 862 struct pipe *pipe = fp->f_pipe; in pipe_stat() local 889 struct pipe *pipe = fp->f_pipe; in pipe_close() local 899 struct pipe *pipe = fp->f_pipe; in pipe_restart() local [all …]
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/dcn32/ |
| H A D | dcn32_resource_helpers.c | 129 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_merge_pipes_for_subvp() local 174 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_all_pipes_have_stream_and_plane() local 191 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_subvp_in_use() local 216 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_any_surfaces_rotated() local 227 bool dcn32_is_center_timing(struct pipe_ctx *pipe) in dcn32_is_center_timing() 248 bool dcn32_is_psr_capable(struct pipe_ctx *pipe) in dcn32_is_psr_capable() 356 struct pipe_ctx *pipe; in dcn32_set_det_allocations() local 414 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_save_mall_state() local 442 struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i]; in dcn32_restore_mall_state() local 607 bool dcn32_check_native_scaling_for_res(struct pipe_ctx *pipe, unsigned int width, unsigned int hei… in dcn32_check_native_scaling_for_res() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
| H A D | display.c | 46 int pipe = -1; in get_edp_pipe() local 75 int pipe_is_enabled(struct intel_vgpu *vgpu, int pipe) in pipe_is_enabled() 177 int pipe; in emulate_monitor_status_change() local 370 int pipe, id; in intel_gvt_check_vblank_emulation() local 395 static void emulate_vblank_on_pipe(struct intel_vgpu *vgpu, int pipe) in emulate_vblank_on_pipe() 426 int pipe; in emulate_vblank() local
|
| /netbsd-src/sys/external/bsd/drm/dist/shared-core/ |
| H A D | i915_irq.c | 78 i915_pipestat(unsigned int pipe) in i915_pipestat() 88 i915_enable_pipestat(drm_i915_private_t *dev_priv, unsigned int pipe, u32 mask) in i915_enable_pipestat() 101 i915_disable_pipestat(drm_i915_private_t *dev_priv, unsigned int pipe, u32 mask) in i915_disable_pipestat() 122 i915_pipe_enabled(struct drm_device *dev, unsigned int pipe) in i915_pipe_enabled() 136 u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe) in i915_get_vblank_counter() 170 u32 gm45_get_vblank_counter(struct drm_device *dev, unsigned int pipe) in gm45_get_vblank_counter() 379 int i915_enable_vblank(struct drm_device *dev, unsigned int pipe) in i915_enable_vblank() 403 void i915_disable_vblank(struct drm_device *dev, unsigned int pipe) in i915_disable_vblank() 433 drm_i915_vblank_pipe_t *pipe = data; in i915_vblank_pipe_get() local
|
| /netbsd-src/sys/dev/usb/ |
| H A D | usbdi.c | 194 usbd_dump_queue(struct usbd_pipe *pipe) in usbd_dump_queue() 208 usbd_dump_pipe(struct usbd_pipe *pipe) in usbd_dump_pipe() 229 uint8_t flags, struct usbd_pipe **pipe) in usbd_open_pipe() 237 uint8_t flags, struct usbd_pipe **pipe, int ival) in usbd_open_pipe_ival() 296 uint8_t flags, struct usbd_pipe **pipe, in usbd_open_pipe_intr() 339 usbd_close_pipe(struct usbd_pipe *pipe) in usbd_close_pipe() 370 struct usbd_pipe *pipe = xfer->ux_pipe; in usbd_transfer() local 651 usbd_create_xfer(struct usbd_pipe *pipe, size_t len, unsigned int flags, in usbd_create_xfer() 813 usbd_abort_pipe(struct usbd_pipe *pipe) in usbd_abort_pipe() 821 usbd_suspend_pipe(struct usbd_pipe *pipe) in usbd_suspend_pipe() [all …]
|
| /openbsd-src/sys/dev/pci/drm/i915/ |
| H A D | vlv_sideband_reg.h | 49 #define _DP_SSC(val, pipe) ((val) << (2 * (pipe))) argument 50 #define DP_SSC_MASK(pipe) _DP_SSC(0x3, (pipe)) argument 51 #define DP_SSC_PWR_ON(pipe) _DP_SSC(0x0, (pipe)) argument 52 #define DP_SSC_CLK_GATE(pipe) _DP_SSC(0x1, (pipe)) argument 53 #define DP_SSC_RESET(pipe) _DP_SSC(0x2, (pipe)) argument 54 #define DP_SSC_PWR_GATE(pipe) _DP_SSC(0x3, (pipe)) argument 55 #define _DP_SSS(val, pipe) ((val) << (2 * (pipe) + 16)) argument 56 #define DP_SSS_MASK(pipe) _DP_SSS(0x3, (pipe)) argument 57 #define DP_SSS_PWR_ON(pipe) _DP_SSS(0x0, (pipe)) argument 58 #define DP_SSS_CLK_GATE(pipe) _DP_SSS(0x1, (pipe)) argument [all …]
|
| /openbsd-src/sys/dev/usb/ |
| H A D | usbdi.c | 148 usbd_dump_queue(struct usbd_pipe *pipe) in usbd_dump_queue() 159 usbd_dump_pipe(struct usbd_pipe *pipe) in usbd_dump_pipe() 176 struct usbd_pipe **pipe) in usbd_open_pipe() 184 u_int8_t flags, struct usbd_pipe **pipe, int ival) in usbd_open_pipe_ival() 215 u_int8_t flags, struct usbd_pipe **pipe, void *priv, in usbd_open_pipe_intr() 254 usbd_close_pipe(struct usbd_pipe *pipe) in usbd_close_pipe() 280 struct usbd_pipe *pipe = xfer->pipe; in usbd_transfer() local 438 usbd_setup_xfer(struct usbd_xfer *xfer, struct usbd_pipe *pipe, in usbd_setup_xfer() 475 usbd_setup_isoc_xfer(struct usbd_xfer *xfer, struct usbd_pipe *pipe, in usbd_setup_isoc_xfer() 550 usbd_abort_pipe(struct usbd_pipe *pipe) in usbd_abort_pipe() [all …]
|
| /openbsd-src/sys/dev/pci/drm/amd/amdgpu/ |
| H A D | mes_v11_0.c | 477 enum admgpu_mes_pipe pipe) in mes_v11_0_allocate_ucode_buffer() 512 enum admgpu_mes_pipe pipe) in mes_v11_0_allocate_ucode_data_buffer() 547 enum admgpu_mes_pipe pipe) in mes_v11_0_free_ucode_buffers() 561 uint32_t pipe, data = 0; in mes_v11_0_enable() local 613 enum admgpu_mes_pipe pipe, bool prime_icache) in mes_v11_0_load_microcode() 685 enum admgpu_mes_pipe pipe) in mes_v11_0_allocate_eop_buf() 896 enum admgpu_mes_pipe pipe) in mes_v11_0_queue_init() 991 enum admgpu_mes_pipe pipe) in mes_v11_0_mqd_sw_init() 1032 int pipe, r; in mes_v11_0_sw_init() local 1071 int pipe; in mes_v11_0_sw_fini() local [all …]
|