3 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 #include <linux/gpio.h>
10 #include <linux/input.h>
11 #include <linux/platform_device.h>
12 #include <linux/spi/spi.h>
14 #include <asm/mach-types.h>
18 #include "devices-imx31.h"
19 #include "iomux-mx3.h"
21 static unsigned int pcm037_eet_pins
[] = {
22 /* Reserve and hardwire GPIO 57 high - S6E63D6 chipselect */
23 IOMUX_MODE(MX31_PIN_KEY_COL7
, IOMUX_CONFIG_GPIO
),
25 IOMUX_MODE(MX31_PIN_GPIO1_0
, IOMUX_CONFIG_GPIO
), /* 0 */
26 IOMUX_MODE(MX31_PIN_GPIO1_1
, IOMUX_CONFIG_GPIO
), /* 1 */
27 IOMUX_MODE(MX31_PIN_GPIO1_2
, IOMUX_CONFIG_GPIO
), /* 2 */
28 IOMUX_MODE(MX31_PIN_GPIO1_3
, IOMUX_CONFIG_GPIO
), /* 3 */
29 IOMUX_MODE(MX31_PIN_SVEN0
, IOMUX_CONFIG_GPIO
), /* 32 */
30 IOMUX_MODE(MX31_PIN_STX0
, IOMUX_CONFIG_GPIO
), /* 33 */
31 IOMUX_MODE(MX31_PIN_SRX0
, IOMUX_CONFIG_GPIO
), /* 34 */
32 IOMUX_MODE(MX31_PIN_SIMPD0
, IOMUX_CONFIG_GPIO
), /* 35 */
33 IOMUX_MODE(MX31_PIN_RTS1
, IOMUX_CONFIG_GPIO
), /* 38 */
34 IOMUX_MODE(MX31_PIN_CTS1
, IOMUX_CONFIG_GPIO
), /* 39 */
35 IOMUX_MODE(MX31_PIN_KEY_ROW4
, IOMUX_CONFIG_GPIO
), /* 50 */
36 IOMUX_MODE(MX31_PIN_KEY_ROW5
, IOMUX_CONFIG_GPIO
), /* 51 */
37 IOMUX_MODE(MX31_PIN_KEY_ROW6
, IOMUX_CONFIG_GPIO
), /* 52 */
38 IOMUX_MODE(MX31_PIN_KEY_ROW7
, IOMUX_CONFIG_GPIO
), /* 53 */
41 IOMUX_MODE(MX31_PIN_DTR_DTE1
, IOMUX_CONFIG_GPIO
), /* 44 */
42 IOMUX_MODE(MX31_PIN_DSR_DTE1
, IOMUX_CONFIG_GPIO
), /* 45 */
43 IOMUX_MODE(MX31_PIN_KEY_COL5
, IOMUX_CONFIG_GPIO
), /* 55 */
44 IOMUX_MODE(MX31_PIN_KEY_COL6
, IOMUX_CONFIG_GPIO
), /* 56 */
48 static struct spi_board_info pcm037_spi_dev
[] = {
50 .modalias
= "dac124s085",
51 .max_speed_hz
= 400000,
53 .chip_select
= 0, /* Index in pcm037_spi1_cs[] */
58 /* Platform Data for MXC CSPI */
59 static int pcm037_spi1_cs
[] = {MXC_SPI_CS(1), IOMUX_TO_GPIO(MX31_PIN_KEY_COL7
)};
61 static const struct spi_imx_master pcm037_spi1_pdata __initconst
= {
62 .chipselect
= pcm037_spi1_cs
,
63 .num_chipselect
= ARRAY_SIZE(pcm037_spi1_cs
),
66 /* GPIO-keys input device */
67 static struct gpio_keys_button pcm037_gpio_keys
[] = {
72 .desc
= "Wheel Manual",
102 .desc
= "Nav Pad Right",
108 .desc
= "Nav Pad Down",
114 .desc
= "Nav Pad Left",
120 .desc
= "Nav Pad Ok",
132 .desc
= "Focus Forward",
138 .desc
= "Focus Backward",
144 .desc
= "Release Half",
150 .desc
= "Release Full",
155 static const struct gpio_keys_platform_data
156 pcm037_gpio_keys_platform_data __initconst
= {
157 .buttons
= pcm037_gpio_keys
,
158 .nbuttons
= ARRAY_SIZE(pcm037_gpio_keys
),
159 .rep
= 0, /* No auto-repeat */
162 int __init
pcm037_eet_init_devices(void)
164 if (pcm037_variant() != PCM037_EET
)
167 mxc_iomux_setup_multiple_pins(pcm037_eet_pins
,
168 ARRAY_SIZE(pcm037_eet_pins
), "pcm037_eet");
171 spi_register_board_info(pcm037_spi_dev
, ARRAY_SIZE(pcm037_spi_dev
));
172 imx31_add_spi_imx0(&pcm037_spi1_pdata
);
174 imx_add_gpio_keys(&pcm037_gpio_keys_platform_data
);