treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / meson / meson_vclk.h
blobb62125540aeffa300c0ce338c2075db6fe12d836
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Copyright (C) 2016 BayLibre, SAS
4 * Author: Neil Armstrong <narmstrong@baylibre.com>
5 */
7 /* Video Clock */
9 #ifndef __MESON_VCLK_H
10 #define __MESON_VCLK_H
12 #include <drm/drm_modes.h>
14 struct meson_drm;
16 enum {
17 MESON_VCLK_TARGET_CVBS = 0,
18 MESON_VCLK_TARGET_HDMI = 1,
19 MESON_VCLK_TARGET_DMT = 2,
22 /* 27MHz is the CVBS Pixel Clock */
23 #define MESON_VCLK_CVBS 27000
25 enum drm_mode_status
26 meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq);
27 enum drm_mode_status
28 meson_vclk_vic_supported_freq(unsigned int freq);
30 void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
31 unsigned int vclk_freq, unsigned int venc_freq,
32 unsigned int dac_freq, bool hdmi_use_enci);
34 #endif /* __MESON_VCLK_H */