72317eaa23
Rename the cvbs encoder to match the newly introduced meson_encoder_hdmi. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20211020123947.2585572-6-narmstrong@baylibre.com
30 lines
684 B
C
30 lines
684 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2016 BayLibre, SAS
|
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
|
* Copyright (C) 2014 Endless Mobile
|
|
*
|
|
* Written by:
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
*/
|
|
|
|
#ifndef __MESON_VENC_CVBS_H
|
|
#define __MESON_VENC_CVBS_H
|
|
|
|
#include "meson_drv.h"
|
|
#include "meson_venc.h"
|
|
|
|
struct meson_cvbs_mode {
|
|
struct meson_cvbs_enci_mode *enci;
|
|
struct drm_display_mode mode;
|
|
};
|
|
|
|
#define MESON_CVBS_MODES_COUNT 2
|
|
|
|
/* Modes supported by the CVBS output */
|
|
extern struct meson_cvbs_mode meson_cvbs_modes[MESON_CVBS_MODES_COUNT];
|
|
|
|
int meson_encoder_cvbs_init(struct meson_drm *priv);
|
|
|
|
#endif /* __MESON_VENC_CVBS_H */
|