mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-08-22 00:42:01 +02:00

input_bus_flags are specified in drm_bridge_timings (legacy) as well as drm_bridge_state->input_bus_cfg.flags The flags from the timings will be deprecated. Bridges are supposed to validate and set the bridge state flags from atomic_check. Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com> [a-bhatia1: replace timings in cdns_mhdp_platform_info by input_bus_flags] Signed-off-by: Aradhya Bhatia <a-bhatia1@ti.com> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230606082142.23760-5-a-bhatia1@ti.com
20 lines
472 B
C
20 lines
472 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* TI j721e Cadence MHDP8546 DP wrapper
|
|
*
|
|
* Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
|
|
* Author: Jyri Sarha <jsarha@ti.com>
|
|
*/
|
|
|
|
#ifndef CDNS_MHDP8546_J721E_H
|
|
#define CDNS_MHDP8546_J721E_H
|
|
|
|
#include "cdns-mhdp8546-core.h"
|
|
|
|
struct mhdp_platform_ops;
|
|
|
|
extern const struct mhdp_platform_ops mhdp_ti_j721e_ops;
|
|
extern const u32 mhdp_ti_j721e_bridge_input_bus_flags;
|
|
|
|
#endif /* !CDNS_MHDP8546_J721E_H */
|