HomeSort by: relevance | last modified time | path
    Searched defs:fbdev (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/arch/arm/nvidia/
tegra_drm_fb.c 53 struct tegra_fbdev *fbdev; local in function:tegra_drm_fb_init
56 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP);
58 drm_fb_helper_prepare(ddev, &fbdev->helper, &tegra_fb_helper_funcs);
60 error = drm_fb_helper_init(ddev, &fbdev->helper, 1);
62 kmem_free(fbdev, sizeof(*fbdev));
77 fbdev->helper.fb =
80 drm_fb_helper_single_add_all_connectors(&fbdev->helper);
84 drm_fb_helper_initial_config(&fbdev->helper, 32)
    [all...]
  /src/sys/external/bsd/drm2/i915drm/
intelfb.c 173 struct intel_fbdev *const fbdev = container_of(helper, local in function:intelfb_drmfb_mmapfb
179 struct i915_vma *const vma = fbdev->vma;
  /src/sys/arch/arm/imx/
imx51_ipuv3var.h 102 device_t fbdev; member in struct:imx51_ipuv3_softc
  /src/sys/arch/arm/rockchip/
rk_drm.c 363 helper->fbdev = config_found(ddev->dev, &sfa, NULL,
365 if (helper->fbdev == NULL) {
382 struct rk_drm_fbdev *fbdev; local in function:rk_drm_load
425 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP);
427 drm_fb_helper_prepare(ddev, &fbdev->helper, &rk_drm_fb_helper_funcs);
429 error = drm_fb_helper_init(ddev, &fbdev->helper, num_crtc);
433 fbdev->helper.fb = kmem_zalloc(sizeof(struct rk_drm_framebuffer), KM_SLEEP);
435 drm_fb_helper_single_add_all_connectors(&fbdev->helper);
437 drm_fb_helper_initial_config(&fbdev->helper, 32)
    [all...]
  /src/sys/arch/arm/sunxi/
sunxi_drm.c 415 helper->fbdev = config_found(ddev->dev, &sfa, NULL,
417 if (helper->fbdev == NULL) {
434 struct sunxi_drm_fbdev *fbdev; local in function:sunxi_drm_load
472 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP);
474 drm_fb_helper_prepare(ddev, &fbdev->helper, &sunxi_drm_fb_helper_funcs);
476 error = drm_fb_helper_init(ddev, &fbdev->helper, num_crtc);
480 fbdev->helper.fb = kmem_zalloc(sizeof(struct sunxi_drm_framebuffer), KM_SLEEP);
482 drm_fb_helper_single_add_all_connectors(&fbdev->helper);
486 drm_fb_helper_initial_config(&fbdev->helper, 32)
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_fb_helper.h 54 * struct drm_fb_helper_surface_size - describes fbdev size and scanout surface size
55 * @fb_width: fbdev width
56 * @fb_height: fbdev height
62 * Note that the scanout surface width/height may be larger than the fbdev
65 * to scanout). But the fbdev width/height is sized to the minimum width/
80 * struct drm_fb_helper_funcs - driver callbacks for the fbdev emulation library
82 * Driver callbacks used by the fbdev emulation helper library.
88 * Driver callback to allocate and initialize the fbdev info structure.
90 * back the fbdev.
104 * struct drm_fb_helper - main structure to emulate fbdev on top of KM
140 device_t fbdev; member in struct:drm_fb_helper
142 struct fb_info *fbdev; member in struct:drm_fb_helper
    [all...]
  /src/sys/arch/arm/ti/
ti_lcdc.c 601 helper->fbdev = config_found(ddev->dev, &tfa, NULL,
603 if (helper->fbdev == NULL) {
619 struct tilcdc_fbdev *fbdev; local in function:tilcdc_load
643 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP);
645 drm_fb_helper_prepare(ddev, &fbdev->helper, &tilcdc_fb_helper_funcs);
647 error = drm_fb_helper_init(ddev, &fbdev->helper, 1);
651 fbdev->helper.fb = kmem_zalloc(sizeof(struct tilcdc_framebuffer),
654 drm_fb_helper_single_add_all_connectors(&fbdev->helper);
658 drm_fb_helper_initial_config(&fbdev->helper, 32)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_drv.h 1151 /* list of fbdev register on this device */
1152 struct intel_fbdev *fbdev; member in struct:drm_i915_private

Completed in 18 milliseconds