blob: 479e4d70dbf92c43812124f72add5cd6d87d21c0 [file] [log] [blame]
Uwe Kleine-König3f880142010-11-10 09:58:56 +01001/*
2 * Copyright (C) 2010 Pengutronix
3 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
8 */
Shawn Guo50f2de62012-09-14 14:14:45 +08009#include "../hardware.h"
Shawn Guoe0557c02012-09-13 15:51:15 +080010#include "devices-common.h"
Uwe Kleine-König3f880142010-11-10 09:58:56 +010011
Uwe Kleine-Königab9cee4b2010-11-11 11:35:33 +010012#define imx_imx_keypad_data_entry_single(soc, _size) \
Uwe Kleine-König3f880142010-11-10 09:58:56 +010013 { \
14 .iobase = soc ## _KPP_BASE_ADDR, \
Uwe Kleine-Königab9cee4b2010-11-11 11:35:33 +010015 .iosize = _size, \
Uwe Kleine-König3f880142010-11-10 09:58:56 +010016 .irq = soc ## _INT_KPP, \
17 }
18
19#ifdef CONFIG_SOC_IMX21
20const struct imx_imx_keypad_data imx21_imx_keypad_data __initconst =
Uwe Kleine-Königab9cee4b2010-11-11 11:35:33 +010021 imx_imx_keypad_data_entry_single(MX21, SZ_16);
Uwe Kleine-König3f880142010-11-10 09:58:56 +010022#endif /* ifdef CONFIG_SOC_IMX21 */
23
24#ifdef CONFIG_SOC_IMX27
25const struct imx_imx_keypad_data imx27_imx_keypad_data __initconst =
Uwe Kleine-Königab9cee4b2010-11-11 11:35:33 +010026 imx_imx_keypad_data_entry_single(MX27, SZ_16);
Uwe Kleine-König3f880142010-11-10 09:58:56 +010027#endif /* ifdef CONFIG_SOC_IMX27 */
28
Uwe Kleine-Königd690b4c2010-11-16 21:27:33 +010029#ifdef CONFIG_SOC_IMX31
30const struct imx_imx_keypad_data imx31_imx_keypad_data __initconst =
31 imx_imx_keypad_data_entry_single(MX31, SZ_16);
32#endif /* ifdef CONFIG_SOC_IMX31 */
33
34#ifdef CONFIG_SOC_IMX35
35const struct imx_imx_keypad_data imx35_imx_keypad_data __initconst =
36 imx_imx_keypad_data_entry_single(MX35, SZ_16);
37#endif /* ifdef CONFIG_SOC_IMX35 */
38
Uwe Kleine-König3f880142010-11-10 09:58:56 +010039struct platform_device *__init imx_add_imx_keypad(
40 const struct imx_imx_keypad_data *data,
41 const struct matrix_keymap_data *pdata)
42{
43 struct resource res[] = {
44 {
45 .start = data->iobase,
Uwe Kleine-Königab9cee4b2010-11-11 11:35:33 +010046 .end = data->iobase + data->iosize - 1,
Uwe Kleine-König3f880142010-11-10 09:58:56 +010047 .flags = IORESOURCE_MEM,
48 }, {
49 .start = data->irq,
50 .end = data->irq,
51 .flags = IORESOURCE_IRQ,
52 },
53 };
54
55 return imx_add_platform_device("imx-keypad", -1,
56 res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
57}