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 <mach/common.h>
15 #include <mach/iomux-mx3.h>
17 #include <asm/mach-types.h>
20 #include "devices-imx31.h"
22 static unsigned int pcm037_eet_pins[] = {
23 /* Reserve and hardwire GPIO 57 high - S6E63D6 chipselect */
24 IOMUX_MODE(MX31_PIN_KEY_COL7, IOMUX_CONFIG_GPIO),
26 IOMUX_MODE(MX31_PIN_GPIO1_0, IOMUX_CONFIG_GPIO), /* 0 */
27 IOMUX_MODE(MX31_PIN_GPIO1_1, IOMUX_CONFIG_GPIO), /* 1 */
28 IOMUX_MODE(MX31_PIN_GPIO1_2, IOMUX_CONFIG_GPIO), /* 2 */
29 IOMUX_MODE(MX31_PIN_GPIO1_3, IOMUX_CONFIG_GPIO), /* 3 */
30 IOMUX_MODE(MX31_PIN_SVEN0, IOMUX_CONFIG_GPIO), /* 32 */
31 IOMUX_MODE(MX31_PIN_STX0, IOMUX_CONFIG_GPIO), /* 33 */
32 IOMUX_MODE(MX31_PIN_SRX0, IOMUX_CONFIG_GPIO), /* 34 */
33 IOMUX_MODE(MX31_PIN_SIMPD0, IOMUX_CONFIG_GPIO), /* 35 */
34 IOMUX_MODE(MX31_PIN_RTS1, IOMUX_CONFIG_GPIO), /* 38 */
35 IOMUX_MODE(MX31_PIN_CTS1, IOMUX_CONFIG_GPIO), /* 39 */
36 IOMUX_MODE(MX31_PIN_KEY_ROW4, IOMUX_CONFIG_GPIO), /* 50 */
37 IOMUX_MODE(MX31_PIN_KEY_ROW5, IOMUX_CONFIG_GPIO), /* 51 */
38 IOMUX_MODE(MX31_PIN_KEY_ROW6, IOMUX_CONFIG_GPIO), /* 52 */
39 IOMUX_MODE(MX31_PIN_KEY_ROW7, IOMUX_CONFIG_GPIO), /* 53 */
42 IOMUX_MODE(MX31_PIN_DTR_DTE1, IOMUX_CONFIG_GPIO), /* 44 */
43 IOMUX_MODE(MX31_PIN_DSR_DTE1, IOMUX_CONFIG_GPIO), /* 45 */
44 IOMUX_MODE(MX31_PIN_KEY_COL5, IOMUX_CONFIG_GPIO), /* 55 */
45 IOMUX_MODE(MX31_PIN_KEY_COL6, IOMUX_CONFIG_GPIO), /* 56 */
49 static struct spi_board_info pcm037_spi_dev[] = {
51 .modalias = "dac124s085",
52 .max_speed_hz = 400000,
54 .chip_select = 0, /* Index in pcm037_spi1_cs[] */
59 /* Platform Data for MXC CSPI */
60 static int pcm037_spi1_cs[] = {MXC_SPI_CS(1), IOMUX_TO_GPIO(MX31_PIN_KEY_COL7)};
62 static const struct spi_imx_master pcm037_spi1_pdata __initconst = {
63 .chipselect = pcm037_spi1_cs,
64 .num_chipselect = ARRAY_SIZE(pcm037_spi1_cs),
67 /* GPIO-keys input device */
68 static struct gpio_keys_button pcm037_gpio_keys[] = {
73 .desc = "Wheel Manual",
103 .desc = "Nav Pad Right",
109 .desc = "Nav Pad Down",
115 .desc = "Nav Pad Left",
121 .desc = "Nav Pad Ok",
133 .desc = "Focus Forward",
139 .desc = "Focus Backward",
145 .desc = "Release Half",
151 .desc = "Release Full",
156 static const struct gpio_keys_platform_data
157 pcm037_gpio_keys_platform_data __initconst = {
158 .buttons = pcm037_gpio_keys,
159 .nbuttons = ARRAY_SIZE(pcm037_gpio_keys),
160 .rep = 0, /* No auto-repeat */
163 static int __init eet_init_devices(void)
165 if (!machine_is_pcm037() || pcm037_variant() != PCM037_EET)
168 mxc_iomux_setup_multiple_pins(pcm037_eet_pins,
169 ARRAY_SIZE(pcm037_eet_pins), "pcm037_eet");
172 spi_register_board_info(pcm037_spi_dev, ARRAY_SIZE(pcm037_spi_dev));
173 imx31_add_spi_imx0(&pcm037_spi1_pdata);
175 imx_add_gpio_keys(&pcm037_gpio_keys_platform_data);
179 late_initcall(eet_init_devices);