Lines Matching refs:dbidev
58 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in yx240qv29_enable() local
59 struct mipi_dbi *dbi = &dbidev->dbi; in yx240qv29_enable()
68 ret = mipi_dbi_poweron_conditional_reset(dbidev); in yx240qv29_enable()
118 switch (dbidev->rotation) { in yx240qv29_enable()
135 mipi_dbi_enable_flush(dbidev, crtc_state, plane_state); in yx240qv29_enable()
177 struct mipi_dbi_dev *dbidev; in ili9341_probe() local
184 dbidev = devm_drm_dev_alloc(dev, &ili9341_driver, in ili9341_probe()
186 if (IS_ERR(dbidev)) in ili9341_probe()
187 return PTR_ERR(dbidev); in ili9341_probe()
189 dbi = &dbidev->dbi; in ili9341_probe()
190 drm = &dbidev->drm; in ili9341_probe()
200 dbidev->backlight = devm_of_find_backlight(dev); in ili9341_probe()
201 if (IS_ERR(dbidev->backlight)) in ili9341_probe()
202 return PTR_ERR(dbidev->backlight); in ili9341_probe()
210 ret = mipi_dbi_dev_init(dbidev, &ili9341_pipe_funcs, &yx240qv29_mode, rotation); in ili9341_probe()