mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
drm/bridge: chipone-icn6211: Switch to atomic operations
Replace atomic version of the pre_enable/enable/post_disable operations to continue the transition to the atomic API. Also added default drm atomic operations for duplicate, destroy and reset state API's in order to have smooth transition on atomic API's. Tested on Allwinner R16/R40 DSI. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Robert Foss <robert.foss@linaro.org> Signed-off-by: Robert Foss <robert.foss@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20211119145325.1775046-1-jagan@amarulasolutions.com
This commit is contained in:
parent
e01356d182
commit
3b26a29168
@ -4,6 +4,7 @@
|
||||
* Author: Jagan Teki <jagan@amarulasolutions.com>
|
||||
*/
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_of.h>
|
||||
#include <drm/drm_print.h>
|
||||
#include <drm/drm_mipi_dsi.h>
|
||||
@ -61,7 +62,8 @@ static inline int chipone_dsi_write(struct chipone *icn, const void *seq,
|
||||
chipone_dsi_write(icn, d, ARRAY_SIZE(d)); \
|
||||
}
|
||||
|
||||
static void chipone_enable(struct drm_bridge *bridge)
|
||||
static void chipone_atomic_enable(struct drm_bridge *bridge,
|
||||
struct drm_bridge_state *old_bridge_state)
|
||||
{
|
||||
struct chipone *icn = bridge_to_chipone(bridge);
|
||||
struct drm_display_mode *mode = bridge_to_mode(bridge);
|
||||
@ -114,7 +116,8 @@ static void chipone_enable(struct drm_bridge *bridge)
|
||||
usleep_range(10000, 11000);
|
||||
}
|
||||
|
||||
static void chipone_pre_enable(struct drm_bridge *bridge)
|
||||
static void chipone_atomic_pre_enable(struct drm_bridge *bridge,
|
||||
struct drm_bridge_state *old_bridge_state)
|
||||
{
|
||||
struct chipone *icn = bridge_to_chipone(bridge);
|
||||
int ret;
|
||||
@ -145,7 +148,8 @@ static void chipone_pre_enable(struct drm_bridge *bridge)
|
||||
usleep_range(10000, 11000);
|
||||
}
|
||||
|
||||
static void chipone_post_disable(struct drm_bridge *bridge)
|
||||
static void chipone_atomic_post_disable(struct drm_bridge *bridge,
|
||||
struct drm_bridge_state *old_bridge_state)
|
||||
{
|
||||
struct chipone *icn = bridge_to_chipone(bridge);
|
||||
|
||||
@ -169,10 +173,13 @@ static int chipone_attach(struct drm_bridge *bridge, enum drm_bridge_attach_flag
|
||||
}
|
||||
|
||||
static const struct drm_bridge_funcs chipone_bridge_funcs = {
|
||||
.attach = chipone_attach,
|
||||
.post_disable = chipone_post_disable,
|
||||
.pre_enable = chipone_pre_enable,
|
||||
.enable = chipone_enable,
|
||||
.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
|
||||
.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
|
||||
.atomic_reset = drm_atomic_helper_bridge_reset,
|
||||
.atomic_pre_enable = chipone_atomic_pre_enable,
|
||||
.atomic_enable = chipone_atomic_enable,
|
||||
.atomic_post_disable = chipone_atomic_post_disable,
|
||||
.attach = chipone_attach,
|
||||
};
|
||||
|
||||
static int chipone_parse_dt(struct chipone *icn)
|
||||
|
Loading…
Reference in New Issue
Block a user