summaryrefslogtreecommitdiff
path: root/drivers/staging/gma500/mdfld_output.c
blob: ee55f87ba1fda419f5416018789dea3b89a2a388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
 * Copyright (c)  2010 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicensen
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 * Thomas Eaton <thomas.g.eaton@intel.com>
 * Scott Rowe <scott.m.rowe@intel.com>
*/

#include <linux/init.h>
#include "mdfld_dsi_dbi.h"
#include "mdfld_dsi_dpi.h"
#include "mdfld_dsi_output.h"
#include "mdfld_output.h"
#include "mdfld_dsi_dbi_dpu.h"

#include "displays/tpo_cmd.h"
#include "displays/tpo_vid.h"
#include "displays/tmd_cmd.h"
#include "displays/tmd_vid.h"
#include "displays/pyr_cmd.h"
#include "displays/pyr_vid.h"
/* #include "displays/hdmi.h" */

static int mdfld_dual_mipi;
static int mdfld_hdmi;
static int mdfld_dpu;

module_param(mdfld_dual_mipi, int, 0600);
MODULE_PARM_DESC(mdfld_dual_mipi, "Enable dual MIPI configuration");
module_param(mdfld_hdmi, int, 0600);
MODULE_PARM_DESC(mdfld_hdmi, "Enable Medfield HDMI");
module_param(mdfld_dpu, int, 0600);
MODULE_PARM_DESC(mdfld_dpu, "Enable Medfield DPU");

/* For now a single type per device is all we cope with */
int mdfld_get_panel_type(struct drm_device *dev, int pipe)
{
	struct drm_psb_private *dev_priv = dev->dev_private;
	return dev_priv->panel_id;
}

int mdfld_panel_dpi(struct drm_device *dev)
{
	struct drm_psb_private *dev_priv = dev->dev_private;

	switch (dev_priv->panel_id) {
	case TMD_VID:
	case TPO_VID:
	case PYR_VID:
		return true;
	case TMD_CMD:
	case TPO_CMD:
	case PYR_CMD:
	default:
		return false;
	}
}

static int init_panel(struct drm_device *dev, int mipi_pipe, int p_type)
{
	struct panel_funcs *p_cmd_funcs;
	struct panel_funcs *p_vid_funcs;

	/* Oh boy ... FIXME */
	p_cmd_funcs = kzalloc(sizeof(struct panel_funcs), GFP_KERNEL);
	if (p_cmd_funcs == NULL)
		return -ENODEV;
	p_vid_funcs = kzalloc(sizeof(struct panel_funcs), GFP_KERNEL);
	if (p_vid_funcs == NULL) {
		kfree(p_cmd_funcs);
		return -ENODEV;
	}

	switch (p_type) {
	case TPO_CMD:
		tpo_cmd_init(dev, p_cmd_funcs);
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, p_cmd_funcs, NULL);
		break;
	case TPO_VID:
		tpo_vid_init(dev, p_vid_funcs);
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, NULL, p_vid_funcs);
		break;
	case TMD_CMD:
		/*tmd_cmd_init(dev, p_cmd_funcs); */
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, p_cmd_funcs, NULL);
		break;
	case TMD_VID:
		tmd_vid_init(dev, p_vid_funcs);
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, NULL, p_vid_funcs);
		break;
	case PYR_CMD:
		pyr_cmd_init(dev, p_cmd_funcs);
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, p_cmd_funcs, NULL);
		break;
	case PYR_VID:
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, NULL, p_vid_funcs);
		break;
	case TPO:	/* TPO panel supports both cmd & vid interfaces */
		tpo_cmd_init(dev, p_cmd_funcs);
		tpo_vid_init(dev, p_vid_funcs);
		mdfld_dsi_output_init(dev, mipi_pipe, NULL, p_cmd_funcs,
				      p_vid_funcs);
		break;
	case TMD:
		break;
	case PYR:
		break;
#if 0
	case HDMI:
		dev_dbg(dev->dev, "Initializing HDMI");
		mdfld_hdmi_init(dev, &dev_priv->mode_dev);
		break;
#endif
	default:
		dev_err(dev->dev, "Unsupported interface %d", p_type);
		return -ENODEV;
	}
	return 0;
}

int mdfld_output_init(struct drm_device *dev)
{
	int type;

	/* MIPI panel 1 */
	type = mdfld_get_panel_type(dev, 0);
	dev_info(dev->dev, "panel 1: type is %d\n", type);
	init_panel(dev, 0, type);

	if (mdfld_dual_mipi) {
		/* MIPI panel 2 */
		type = mdfld_get_panel_type(dev, 2);
		dev_info(dev->dev, "panel 2: type is %d\n", type);
		init_panel(dev, 2, type);
	}
	if (mdfld_hdmi)
		/* HDMI panel */
		init_panel(dev, 0, HDMI);
	return 0;
}

void mdfld_output_setup(struct drm_device *dev)
{
	/* FIXME: this is not the right place for this stuff ! */
	if (IS_MFLD(dev)) {
		if (mdfld_dpu)
			mdfld_dbi_dpu_init(dev);
		else
			mdfld_dbi_dsr_init(dev);
	}
}