summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-cardhu-panel.c
blob: 864ba5f3df11e2a01e1b3524cc2f5fb83a3647c3 (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 * arch/arm/mach-tegra/board-cardhu-panel.c
 *
 * Copyright (c) 2010, NVIDIA Corporation.
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include <linux/delay.h>
#include <linux/gpio.h>
#include <linux/regulator/consumer.h>
#include <linux/resource.h>
#include <asm/mach-types.h>
#include <linux/platform_device.h>
#include <linux/pwm_backlight.h>
#include <mach/nvhost.h>
#include <mach/nvmap.h>
#include <mach/irqs.h>
#include <mach/iomap.h>
#include <mach/dc.h>
#include <mach/fb.h>

#include "devices.h"
#include "gpio-names.h"

#define PMC_SCRATCH20	0xa0

#define cardhu_lvds_shutdown	TEGRA_GPIO_PB2

static int cardhu_panel_enable(void)
{
	static struct regulator *reg = NULL;

	if (reg == NULL) {
		reg = regulator_get(NULL, "avdd_lvds");
		if (WARN_ON(IS_ERR(reg)))
			pr_err("%s: couldn't get regulator avdd_lvds: %ld\n",
			       __func__, PTR_ERR(reg));
		else
			regulator_enable(reg);
	}

	gpio_set_value(cardhu_lvds_shutdown, 1);
	return 0;
}

static int cardhu_panel_disable(void)
{
	gpio_set_value(cardhu_lvds_shutdown, 0);
	return 0;
}

static struct resource cardhu_disp1_resources[] = {
	{
		.name	= "irq",
		.start	= INT_DISPLAY_GENERAL,
		.end	= INT_DISPLAY_GENERAL,
		.flags	= IORESOURCE_IRQ,
	},
	{
		.name	= "regs",
		.start	= TEGRA_DISPLAY_BASE,
		.end	= TEGRA_DISPLAY_BASE + TEGRA_DISPLAY_SIZE-1,
		.flags	= IORESOURCE_MEM,
	},
	{
		.name	= "fbmem",
		.start	= 0,	/* Filled in by fbmem_set() */
		.end	= 0,	/* Filled in by fbmem_set() */
		.flags	= IORESOURCE_MEM,
	},
};

static struct tegra_dc_mode cardhu_panel_modes[] = {
	{
		.pclk = 18000000,
		.h_ref_to_sync = 8,
		.v_ref_to_sync = 2,
		.h_sync_width = 4,
		.v_sync_width = 1,
		.h_back_porch = 20,
		.v_back_porch = 7,
		.h_active = 480,
		.v_active = 640,
		.h_front_porch = 8,
		.v_front_porch = 8,
	},
};

static struct tegra_fb_data cardhu_fb_data = {
	.win		= 0,
	.xres		= 1366,
	.yres		= 768,
	.bits_per_pixel	= 16,
};

static struct tegra_dc_out cardhu_disp1_out = {
	.type		= TEGRA_DC_OUT_RGB,

	.align		= TEGRA_DC_ALIGN_MSB,
	.order		= TEGRA_DC_ORDER_RED_BLUE,

	.modes	 	= cardhu_panel_modes,
	.n_modes 	= ARRAY_SIZE(cardhu_panel_modes),

	.enable		= cardhu_panel_enable,
	.disable	= cardhu_panel_disable,
};

static struct tegra_dc_platform_data cardhu_disp1_pdata = {
	.flags		= TEGRA_DC_FLAG_ENABLED,
	.default_out	= &cardhu_disp1_out,
	.fb		= &cardhu_fb_data,
};

static struct nvhost_device cardhu_disp1_device = {
	.name		= "tegradc",
	.id		= 0,
	.resource	= cardhu_disp1_resources,
	.num_resources	= ARRAY_SIZE(cardhu_disp1_resources),
	.dev = {
		.platform_data = &cardhu_disp1_pdata,
	},
};

static struct nvmap_platform_carveout cardhu_carveouts[] = {
	[0] = {
		.name		= "iram",
		.usage_mask	= NVMAP_HEAP_CARVEOUT_IRAM,
		.base		= TEGRA_IRAM_BASE,
		.size		= TEGRA_IRAM_SIZE,
		.buddy_size	= 0, /* no buddy allocation for IRAM */
	},
	[1] = {
		.name		= "generic-0",
		.usage_mask	= NVMAP_HEAP_CARVEOUT_GENERIC,
		.base		= 0,	/* Filled in by carveout_set() */
		.size		= 0,	/* Filled in by carveout_set() */
		.buddy_size	= SZ_32K,
	},
};

static struct nvmap_platform_data cardhu_nvmap_data = {
	.carveouts	= cardhu_carveouts,
	.nr_carveouts	= ARRAY_SIZE(cardhu_carveouts),
};

static struct platform_device cardhu_nvmap_device = {
	.name	= "tegra-nvmap",
	.id	= -1,
	.dev	= {
		.platform_data = &cardhu_nvmap_data,
	},
};

static struct platform_device *cardhu_gfx_devices[] __initdata = {
	&cardhu_nvmap_device,
	&tegra_grhost_device,
};


static inline u32 pmc_readl(unsigned long offset)
{
	return readl(IO_TO_VIRT(TEGRA_PMC_BASE + offset));
}

static void fbmem_set(struct resource *res, int num_res,
				u32 start, resource_size_t size)
{
	int i;
	for (i = 0; i < num_res ; i++) {
		if (!strcmp(res[i].name, "fbmem")) {
			res[i].start = start;
			res[i].end = start + size - 1;
			return;
		}
	}
	/* Didn't find a framebuffer memory resource */
	BUG();
}

static void carveout_set(struct nvmap_platform_carveout *res, int num_res,
				u32 base, resource_size_t size)
{
	int i;
	for (i = 0; i < num_res ; i++) {
		if (!strcmp(res[i].name, "generic-0")) {
			res[i].base = base;
			res[i].size = size;
			return;
		}
	}
	/* Didn't find a carveout memory resource */
	BUG();
}

int __init cardhu_panel_init(void)
{
	int err;
	u32 odm_data = pmc_readl(PMC_SCRATCH20);

	/* !!!FIXME!!!	HAVE TO USE HARD-CODED FRAME BUFFER AND CARVEOUT
			ADDRESSES FOR NOW -- BUG 769986 */
	switch (odm_data & 0x70000000) {
	case 0x10000000:
		/* 256MB LPDDR2 */
		fbmem_set(cardhu_disp1_resources,
				ARRAY_SIZE(cardhu_disp1_resources),
				0x8E010000,
				0x0012C3C0);
		carveout_set(cardhu_carveouts,
				ARRAY_SIZE(cardhu_carveouts),
				0x8EC00000, /* 256MB mem - 32MB carveout + 0xC00000 ?*/
				SZ_32M - 0xC00000);
		break;
	case 0x40000000:
		/* 1GB DDR3 -- NOTE: The bootloader cannot map more than 512MB
		   of physical memory. Therefore, the frame buffer and carveout
		   must be completely below the 512MB boundary. */
		fbmem_set(cardhu_disp1_resources,
				ARRAY_SIZE(cardhu_disp1_resources),
				0x9E010000,
				0x0012C3C0);
		carveout_set(cardhu_carveouts,
				ARRAY_SIZE(cardhu_carveouts),
				0x9EC00000, /* 512MB mem - 32MB carveout + 0xC00000 ?*/
				SZ_32M - 0xC00000);
		break;
	default:
		BUG();
	}

	err = platform_add_devices(cardhu_gfx_devices,
				   ARRAY_SIZE(cardhu_gfx_devices));

	if (!err)
		err = nvhost_device_register(&cardhu_disp1_device);

	return err;
}