Lines Matching refs:dbidev
114 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(fb->dev); in st7586_fb_dirty() local
115 struct mipi_dbi *dbi = &dbidev->dbi; in st7586_fb_dirty()
124 ret = st7586_buf_copy(dbidev->tx_buf, src, fb, rect); in st7586_fb_dirty()
140 (u8 *)dbidev->tx_buf, in st7586_fb_dirty()
172 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in st7586_pipe_enable() local
175 struct mipi_dbi *dbi = &dbidev->dbi; in st7586_pipe_enable()
190 ret = mipi_dbi_poweron_reset(dbidev); in st7586_pipe_enable()
218 switch (dbidev->rotation) { in st7586_pipe_enable()
250 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in st7586_pipe_disable() local
261 mipi_dbi_command(&dbidev->dbi, MIPI_DCS_SET_DISPLAY_OFF); in st7586_pipe_disable()
313 struct mipi_dbi_dev *dbidev; in st7586_probe() local
321 dbidev = devm_drm_dev_alloc(dev, &st7586_driver, in st7586_probe()
323 if (IS_ERR(dbidev)) in st7586_probe()
324 return PTR_ERR(dbidev); in st7586_probe()
326 dbi = &dbidev->dbi; in st7586_probe()
327 drm = &dbidev->drm; in st7586_probe()
348 ret = mipi_dbi_dev_init_with_formats(dbidev, &st7586_pipe_funcs, in st7586_probe()