dw_hdmi.h 1.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2011 Freescale Semiconductor, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#ifndef __DW_HDMI__
#define __DW_HDMI__

#include <drm/drmP.h>

15 16
struct dw_hdmi;

17 18 19 20 21 22 23 24 25 26
enum {
	DW_HDMI_RES_8,
	DW_HDMI_RES_10,
	DW_HDMI_RES_12,
	DW_HDMI_RES_MAX,
};

enum dw_hdmi_devtype {
	IMX6Q_HDMI,
	IMX6DL_HDMI,
27
	RK3288_HDMI,
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
};

struct dw_hdmi_mpll_config {
	unsigned long mpixelclock;
	struct {
		u16 cpce;
		u16 gmp;
	} res[DW_HDMI_RES_MAX];
};

struct dw_hdmi_curr_ctrl {
	unsigned long mpixelclock;
	u16 curr[DW_HDMI_RES_MAX];
};

43
struct dw_hdmi_phy_config {
44 45 46
	unsigned long mpixelclock;
	u16 sym_ctr;    /*clock symbol and transmitter control*/
	u16 term;       /*transmission termination value*/
47
	u16 vlev_ctr;   /* voltage level control */
48 49 50 51 52 53
};

struct dw_hdmi_plat_data {
	enum dw_hdmi_devtype dev_type;
	const struct dw_hdmi_mpll_config *mpll_cfg;
	const struct dw_hdmi_curr_ctrl *cur_ctr;
54
	const struct dw_hdmi_phy_config *phy_config;
55 56 57 58
	enum drm_mode_status (*mode_valid)(struct drm_connector *connector,
					   struct drm_display_mode *mode);
};

59 60 61
int dw_hdmi_probe(struct platform_device *pdev,
		  const struct dw_hdmi_plat_data *plat_data);
void dw_hdmi_remove(struct platform_device *pdev);
62
void dw_hdmi_unbind(struct device *dev);
63
int dw_hdmi_bind(struct platform_device *pdev, struct drm_encoder *encoder,
64
		 const struct dw_hdmi_plat_data *plat_data);
65 66

void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate);
67 68
void dw_hdmi_audio_enable(struct dw_hdmi *hdmi);
void dw_hdmi_audio_disable(struct dw_hdmi *hdmi);
69

70
#endif /* __IMX_HDMI_H__ */