From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tomasz Figa Date: Wed, 30 Jan 2013 15:39:00 +0000 Subject: [RFC PATCH 1/4] video: add display-core Message-Id: <1359560343-31636-2-git-send-email-t.figa@samsung.com> List-Id: References: <1359560343-31636-1-git-send-email-t.figa@samsung.com> In-Reply-To: <1359560343-31636-1-git-send-email-t.figa@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: dri-devel@lists.freedesktop.org Cc: linux-fbdev@vger.kernel.org, linux-samsung-soc@vger.kernel.org, kyungmin.park@samsung.com, m.szyprowski@samsung.com, t.figa@samsung.com, tomasz.figa@gmail.com, Daniel Vetter , Marcus Lorentzon , Laurent Pinchart , rob@ti.com, tomi.valkeinen@ti.com, Vikas Sajjan , inki.dae@samsung.com, dh09.lee@samsung.com, ville.syrjala@intel.com, s.nawrocki@samsung.com Signed-off-by: Tomasz Figa Signed-off-by: Kyungmin Park --- drivers/video/display/display-core.c | 295 +++++++++++++++++++++++++++++++++++ include/video/display.h | 230 +++++++++++++++++++++++++++ 2 files changed, 525 insertions(+) create mode 100644 drivers/video/display/display-core.c create mode 100644 include/video/display.h diff --git a/drivers/video/display/display-core.c b/drivers/video/display/display-core.c new file mode 100644 index 0000000..ed49384 --- /dev/null +++ b/drivers/video/display/display-core.c @@ -0,0 +1,295 @@ +/* + * Display Core + * + * Copyright (C) 2012 Renesas Solutions Corp. + * + * Contacts: Laurent Pinchart + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include +#include +#include +#include +#include +#include +#include + +#include