Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70c0d5b7 authored by Lucas Stach's avatar Lucas Stach Committed by Thierry Reding
Browse files

drm/panel: simple: add support for AUO P320HVN03



This adds support for the AU Optronics Corporation 31.5"
FHD (1920x1080) LVDS TFT LCD panel, which can be supported
by the simple panel driver

Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
Acked-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170608180758.31020-4-l.stach@pengutronix.de
parent 4177fa66
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
AU Optronics Corporation 31.5" FHD (1920x1080) TFT LCD panel

Required properties:
- compatible: should be "auo,p320hvn03"
- power-supply: as specified in the base binding

This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
+31 −0
Original line number Original line Diff line number Diff line
@@ -638,6 +638,34 @@ static const struct panel_desc auo_g185han01 = {
	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
};
};


static const struct display_timing auo_p320hvn03_timings = {
	.pixelclock = { 106000000, 148500000, 164000000 },
	.hactive = { 1920, 1920, 1920 },
	.hfront_porch = { 25, 50, 130 },
	.hback_porch = { 25, 50, 130 },
	.hsync_len = { 20, 40, 105 },
	.vactive = { 1080, 1080, 1080 },
	.vfront_porch = { 8, 17, 150 },
	.vback_porch = { 8, 17, 150 },
	.vsync_len = { 4, 11, 100 },
};

static const struct panel_desc auo_p320hvn03 = {
	.timings = &auo_p320hvn03_timings,
	.num_timings = 1,
	.bpc = 8,
	.size = {
		.width = 698,
		.height = 393,
	},
	.delay = {
		.prepare = 1,
		.enable = 450,
		.unprepare = 500,
	},
	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
};

static const struct drm_display_mode auo_t215hvn01_mode = {
static const struct drm_display_mode auo_t215hvn01_mode = {
	.clock = 148800,
	.clock = 148800,
	.hdisplay = 1920,
	.hdisplay = 1920,
@@ -1940,6 +1968,9 @@ static const struct of_device_id platform_of_match[] = {
	}, {
	}, {
		.compatible = "auo,g185han01",
		.compatible = "auo,g185han01",
		.data = &auo_g185han01,
		.data = &auo_g185han01,
	}, {
		.compatible = "auo,p320hvn03",
		.data = &auo_p320hvn03,
	}, {
	}, {
		.compatible = "auo,t215hvn01",
		.compatible = "auo,t215hvn01",
		.data = &auo_t215hvn01,
		.data = &auo_t215hvn01,