From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jimmy Rubin Date: Wed, 10 Nov 2010 12:04:04 +0000 Subject: [PATCH 01/10] MCDE: Add hardware abstraction layer Message-Id: <1289390653-6111-2-git-send-email-jimmy.rubin@stericsson.com> List-Id: References: <1289390653-6111-1-git-send-email-jimmy.rubin@stericsson.com> In-Reply-To: <1289390653-6111-1-git-send-email-jimmy.rubin@stericsson.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-arm-kernel@lists.infradead.org This patch adds support for MCDE, Memory-to-display controller found in the ST-Ericsson ux500 products. This patch adds the hardware abstraction layer. All calls to the hardware is handled in mcde_hw.c Signed-off-by: Jimmy Rubin Acked-by: Linus Walleij --- drivers/video/mcde/mcde_hw.c | 2528 ++++++++++++++++++++++++++++++++++++++++++ include/video/mcde/mcde.h | 387 +++++++ 2 files changed, 2915 insertions(+), 0 deletions(-) create mode 100644 drivers/video/mcde/mcde_hw.c create mode 100644 include/video/mcde/mcde.h diff --git a/drivers/video/mcde/mcde_hw.c b/drivers/video/mcde/mcde_hw.c new file mode 100644 index 0000000..38bc49c --- /dev/null +++ b/drivers/video/mcde/mcde_hw.c @@ -0,0 +1,2528 @@ +/* + * Copyright (C) ST-Ericsson SA 2010 + * + * ST-Ericsson MCDE base driver + * + * Author: Marcus Lorentzon + * for ST-Ericsson. + * + * License terms: GNU General Public License (GPL), version 2. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include