Lines Matching refs:dbidev
57 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in yx240qv29_enable() local
58 struct mipi_dbi *dbi = &dbidev->dbi; in yx240qv29_enable()
67 ret = mipi_dbi_poweron_conditional_reset(dbidev); in yx240qv29_enable()
117 switch (dbidev->rotation) { in yx240qv29_enable()
134 mipi_dbi_enable_flush(dbidev, crtc_state, plane_state); in yx240qv29_enable()
178 struct mipi_dbi_dev *dbidev; in ili9341_probe() local
185 dbidev = devm_drm_dev_alloc(dev, &ili9341_driver, in ili9341_probe()
187 if (IS_ERR(dbidev)) in ili9341_probe()
188 return PTR_ERR(dbidev); in ili9341_probe()
190 dbi = &dbidev->dbi; in ili9341_probe()
191 drm = &dbidev->drm; in ili9341_probe()
201 dbidev->backlight = devm_of_find_backlight(dev); in ili9341_probe()
202 if (IS_ERR(dbidev->backlight)) in ili9341_probe()
203 return PTR_ERR(dbidev->backlight); in ili9341_probe()
211 ret = mipi_dbi_dev_init(dbidev, &ili9341_pipe_funcs, &yx240qv29_mode, rotation); in ili9341_probe()