Home
last modified time | relevance | path

Searched refs:udl (Results 1 – 12 of 12) sorted by relevance

/kernel/linux/linux-5.10/drivers/gpu/drm/udl/
Dudl_main.c32 struct udl_device *udl = to_udl(dev); in udl_parse_vendor_descriptor() local
75 udl->sku_pixel_limit = max_area; in udl_parse_vendor_descriptor()
99 static int udl_select_std_channel(struct udl_device *udl) in udl_select_std_channel() argument
112 ret = usb_control_msg(udl->udev, in udl_select_std_channel()
113 usb_sndctrlpipe(udl->udev, 0), in udl_select_std_channel()
133 struct udl_device *udl = unode->dev; in udl_urb_completion() local
146 urb->transfer_buffer_length = udl->urbs.size; /* reset to actual */ in udl_urb_completion()
148 spin_lock_irqsave(&udl->urbs.lock, flags); in udl_urb_completion()
149 list_add_tail(&unode->entry, &udl->urbs.list); in udl_urb_completion()
150 udl->urbs.available++; in udl_urb_completion()
[all …]
Dudl_drv.c43 struct udl_device *udl = to_udl(dev); in udl_driver_gem_prime_import() local
45 if (!udl->dmadev) in udl_driver_gem_prime_import()
48 return drm_gem_prime_import_dev(dev, dma_buf, udl->dmadev); in udl_driver_gem_prime_import()
74 struct udl_device *udl; in udl_driver_create() local
77 udl = devm_drm_dev_alloc(&interface->dev, &driver, in udl_driver_create()
79 if (IS_ERR(udl)) in udl_driver_create()
80 return udl; in udl_driver_create()
82 udl->udev = udev; in udl_driver_create()
84 r = udl_init(udl); in udl_driver_create()
88 usb_set_intfdata(interface, udl); in udl_driver_create()
[all …]
Dudl_connector.c22 struct udl_device *udl = data; in udl_get_edid_block() local
30 ret = usb_control_msg(udl->udev, in udl_get_edid_block()
31 usb_rcvctrlpipe(udl->udev, 0), in udl_get_edid_block()
62 struct udl_device *udl = to_udl(connector->dev); in udl_mode_valid() local
63 if (!udl->sku_pixel_limit) in udl_mode_valid()
66 if (mode->vdisplay * mode->hdisplay > udl->sku_pixel_limit) in udl_mode_valid()
75 struct udl_device *udl = to_udl(connector->dev); in udl_detect() local
87 udl_connector->edid = drm_do_get_edid(connector, udl_get_edid_block, udl); in udl_detect()
Dudl_modeset.c218 struct udl_device *udl = to_udl(dev); in udl_crtc_write_mode_to_hw() local
223 if (udl->mode_buf_len == 0) { in udl_crtc_write_mode_to_hw()
234 memcpy(buf, udl->mode_buf, udl->mode_buf_len); in udl_crtc_write_mode_to_hw()
235 retval = udl_submit_urb(dev, urb, udl->mode_buf_len); in udl_crtc_write_mode_to_hw()
236 DRM_DEBUG("write mode info %d\n", udl->mode_buf_len); in udl_crtc_write_mode_to_hw()
374 struct udl_device *udl = to_udl(dev); in udl_simple_display_pipe_enable() local
380 buf = (char *)udl->mode_buf; in udl_simple_display_pipe_enable()
399 udl->mode_buf_len = wrptr - buf; in udl_simple_display_pipe_enable()
466 struct udl_device *udl = to_udl(dev); in udl_modeset_init() local
491 ret = drm_simple_display_pipe_init(dev, &udl->display_pipe, in udl_modeset_init()
DMakefile2 udl-y := udl_drv.o udl_modeset.o udl_connector.o udl_main.o udl_transfer.o
4 obj-$(CONFIG_DRM_UDL) := udl.o
Dudl_drv.h79 int udl_init(struct udl_device *udl);
/kernel/linux/linux-5.10/kernel/rcu/
Drefscale.c115 void (*delaysection)(const int nloops, const int udl, const int ndl);
121 static void un_delay(const int udl, const int ndl) in un_delay() argument
123 if (udl) in un_delay()
124 udelay(udl); in un_delay()
139 static void ref_rcu_delay_section(const int nloops, const int udl, const int ndl) in ref_rcu_delay_section() argument
145 un_delay(udl, ndl); in ref_rcu_delay_section()
176 static void srcu_ref_scale_delay_section(const int nloops, const int udl, const int ndl) in srcu_ref_scale_delay_section() argument
183 un_delay(udl, ndl); in srcu_ref_scale_delay_section()
205 static void rcu_tasks_ref_scale_delay_section(const int nloops, const int udl, const int ndl) in rcu_tasks_ref_scale_delay_section() argument
210 un_delay(udl, ndl); in rcu_tasks_ref_scale_delay_section()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ixgbe/
Dixgbe_fcoe.c27 ddp->udl = NULL; in ixgbe_fcoe_clear_ddp()
62 if (!ddp->udl) in ixgbe_fcoe_ddp_put()
114 dma_pool_free(ddp->pool, ddp->udl, ddp->udp); in ixgbe_fcoe_ddp_put()
196 ddp->udl = dma_pool_alloc(ddp_pool->pool, GFP_ATOMIC, &ddp->udp); in ixgbe_fcoe_ddp_setup()
197 if (!ddp->udl) { in ixgbe_fcoe_ddp_setup()
234 ddp->udl[j] = (u64)(addr - thisoff); in ixgbe_fcoe_ddp_setup()
256 ddp->udl[j] = (u64)(fcoe->extra_ddp_buffer_dma); in ixgbe_fcoe_ddp_setup()
320 dma_pool_free(ddp->pool, ddp->udl, ddp->udp); in ixgbe_fcoe_ddp_setup()
425 if (!ddp->udl) in ixgbe_fcoe_ddp()
Dixgbe_fcoe.h41 u64 *udl; member
/kernel/linux/linux-5.10/drivers/gpu/drm/
DMakefile87 obj-$(CONFIG_DRM_UDL) += udl/
DKconfig312 source "drivers/gpu/drm/udl/Kconfig"
/kernel/linux/linux-5.10/
DMAINTAINERS5712 F: drivers/gpu/drm/udl/