Lines Matching refs:dbidev
115 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(fb->dev); in st7586_fb_dirty() local
116 struct mipi_dbi *dbi = &dbidev->dbi; in st7586_fb_dirty()
128 ret = st7586_buf_copy(dbidev->tx_buf, fb, rect); in st7586_fb_dirty()
144 (u8 *)dbidev->tx_buf, in st7586_fb_dirty()
170 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in st7586_pipe_enable() local
172 struct mipi_dbi *dbi = &dbidev->dbi; in st7586_pipe_enable()
187 ret = mipi_dbi_poweron_reset(dbidev); in st7586_pipe_enable()
215 switch (dbidev->rotation) { in st7586_pipe_enable()
247 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev); in st7586_pipe_disable() local
258 mipi_dbi_command(&dbidev->dbi, MIPI_DCS_SET_DISPLAY_OFF); in st7586_pipe_disable()
304 struct mipi_dbi_dev *dbidev; in st7586_probe() local
312 dbidev = devm_drm_dev_alloc(dev, &st7586_driver, in st7586_probe()
314 if (IS_ERR(dbidev)) in st7586_probe()
315 return PTR_ERR(dbidev); in st7586_probe()
317 dbi = &dbidev->dbi; in st7586_probe()
318 drm = &dbidev->drm; in st7586_probe()
339 ret = mipi_dbi_dev_init_with_formats(dbidev, &st7586_pipe_funcs, in st7586_probe()