| /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 | 359 helper->fbdev = config_found(ddev->dev, &sfa, NULL, 361 if (helper->fbdev == NULL) { 378 struct rk_drm_fbdev *fbdev; local in function:rk_drm_load 421 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP); 423 drm_fb_helper_prepare(ddev, &fbdev->helper, &rk_drm_fb_helper_funcs); 425 error = drm_fb_helper_init(ddev, &fbdev->helper, num_crtc); 429 fbdev->helper.fb = kmem_zalloc(sizeof(struct rk_drm_framebuffer), KM_SLEEP); 431 drm_fb_helper_single_add_all_connectors(&fbdev->helper); 433 drm_fb_helper_initial_config(&fbdev->helper, 32) [all...] |
| /src/sys/arch/arm/sunxi/ |
| sunxi_drm.c | 411 helper->fbdev = config_found(ddev->dev, &sfa, NULL, 413 if (helper->fbdev == NULL) { 430 struct sunxi_drm_fbdev *fbdev; local in function:sunxi_drm_load 468 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP); 470 drm_fb_helper_prepare(ddev, &fbdev->helper, &sunxi_drm_fb_helper_funcs); 472 error = drm_fb_helper_init(ddev, &fbdev->helper, num_crtc); 476 fbdev->helper.fb = kmem_zalloc(sizeof(struct sunxi_drm_framebuffer), KM_SLEEP); 478 drm_fb_helper_single_add_all_connectors(&fbdev->helper); 482 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 | 598 helper->fbdev = config_found(ddev->dev, &tfa, NULL, 600 if (helper->fbdev == NULL) { 616 struct tilcdc_fbdev *fbdev; local in function:tilcdc_load 640 fbdev = kmem_zalloc(sizeof(*fbdev), KM_SLEEP); 642 drm_fb_helper_prepare(ddev, &fbdev->helper, &tilcdc_fb_helper_funcs); 644 error = drm_fb_helper_init(ddev, &fbdev->helper, 1); 648 fbdev->helper.fb = kmem_zalloc(sizeof(struct tilcdc_framebuffer), 651 drm_fb_helper_single_add_all_connectors(&fbdev->helper); 655 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
|