blob: 7d98cb0164faa4b42044fd9682263620df0036a6 [file] [log] [blame]
Valentin Longchampe00f0b42009-02-16 12:47:51 +01001/*
2 * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
Valentin Longchamp04ea3c82009-11-03 18:09:51 +010019#include <linux/delay.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020020#include <linux/gpio.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010021#include <linux/init.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020022#include <linux/interrupt.h>
Valentin Longchamp04ea3c82009-11-03 18:09:51 +010023#include <linux/i2c.h>
Valentin Longchamp33c4d912009-11-23 19:16:36 +010024#include <linux/spi/spi.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010025#include <linux/platform_device.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020026#include <linux/types.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010027
Valentin Longchampe00f0b42009-02-16 12:47:51 +010028#include <mach/common.h>
Valentin Longchamp220bbce2009-04-17 15:20:25 +020029#include <mach/hardware.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010030#include <mach/imx-uart.h>
31#include <mach/iomux-mx3.h>
Valentin Longchamp45b131a2009-04-21 10:24:56 +020032#include <mach/mmc.h>
Valentin Longchampe00f0b42009-02-16 12:47:51 +010033
Valentin Longchamp04ea3c82009-11-03 18:09:51 +010034#include <media/soc_camera.h>
35
Valentin Longchampe00f0b42009-02-16 12:47:51 +010036#include "devices.h"
37
Valentin Longchamp56c7a452009-04-22 10:55:50 +020038static unsigned int marxbot_pins[] = {
39 /* SDHC2 */
40 MX31_PIN_PC_PWRON__SD2_DATA3, MX31_PIN_PC_VS1__SD2_DATA2,
41 MX31_PIN_PC_READY__SD2_DATA1, MX31_PIN_PC_WAIT_B__SD2_DATA0,
42 MX31_PIN_PC_CD2_B__SD2_CLK, MX31_PIN_PC_CD1_B__SD2_CMD,
43 MX31_PIN_ATA_DIOR__GPIO3_28, MX31_PIN_ATA_DIOW__GPIO3_29,
44 /* CSI */
Valentin Longchamp56c7a452009-04-22 10:55:50 +020045 MX31_PIN_CSI_D6__CSI_D6, MX31_PIN_CSI_D7__CSI_D7,
46 MX31_PIN_CSI_D8__CSI_D8, MX31_PIN_CSI_D9__CSI_D9,
47 MX31_PIN_CSI_D10__CSI_D10, MX31_PIN_CSI_D11__CSI_D11,
48 MX31_PIN_CSI_D12__CSI_D12, MX31_PIN_CSI_D13__CSI_D13,
49 MX31_PIN_CSI_D14__CSI_D14, MX31_PIN_CSI_D15__CSI_D15,
50 MX31_PIN_CSI_HSYNC__CSI_HSYNC, MX31_PIN_CSI_MCLK__CSI_MCLK,
51 MX31_PIN_CSI_PIXCLK__CSI_PIXCLK, MX31_PIN_CSI_VSYNC__CSI_VSYNC,
Valentin Longchamp04ea3c82009-11-03 18:09:51 +010052 MX31_PIN_CSI_D4__GPIO3_4, MX31_PIN_CSI_D5__GPIO3_5,
Valentin Longchamp56c7a452009-04-22 10:55:50 +020053 MX31_PIN_GPIO3_0__GPIO3_0, MX31_PIN_GPIO3_1__GPIO3_1,
54 MX31_PIN_TXD2__GPIO1_28,
Valentin Longchamp2718c152009-08-12 11:29:21 +020055 /* dsPIC resets */
56 MX31_PIN_STXD5__GPIO1_21, MX31_PIN_SRXD5__GPIO1_22,
Valentin Longchamp10949ff2009-11-03 18:09:48 +010057 /*battery detection */
58 MX31_PIN_LCS0__GPIO3_23,
Valentin Longchamp56c7a452009-04-22 10:55:50 +020059};
60
Valentin Longchamp45b131a2009-04-21 10:24:56 +020061#define SDHC2_CD IOMUX_TO_GPIO(MX31_PIN_ATA_DIOR)
62#define SDHC2_WP IOMUX_TO_GPIO(MX31_PIN_ATA_DIOW)
63
64static int marxbot_sdhc2_get_ro(struct device *dev)
65{
Valentin Longchamp563abb42009-08-11 17:29:21 +020066 return !gpio_get_value(SDHC2_WP);
Valentin Longchamp45b131a2009-04-21 10:24:56 +020067}
68
69static int marxbot_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
70 void *data)
71{
Sascha Hauer4f163eb2009-05-06 12:55:50 +020072 int ret;
73
74 ret = gpio_request(SDHC2_CD, "sdhc-detect");
75 if (ret)
76 return ret;
77
78 gpio_direction_input(SDHC2_CD);
79
80 ret = gpio_request(SDHC2_WP, "sdhc-wp");
81 if (ret)
82 goto err_gpio_free;
83 gpio_direction_input(SDHC2_WP);
84
85 ret = request_irq(gpio_to_irq(SDHC2_CD), detect_irq,
Valentin Longchamp45b131a2009-04-21 10:24:56 +020086 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
87 "sdhc2-card-detect", data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +020088 if (ret)
89 goto err_gpio_free_2;
90
91 return 0;
92
93err_gpio_free_2:
94 gpio_free(SDHC2_WP);
95err_gpio_free:
96 gpio_free(SDHC2_CD);
97
98 return ret;
Valentin Longchamp45b131a2009-04-21 10:24:56 +020099}
100
101static void marxbot_sdhc2_exit(struct device *dev, void *data)
102{
103 free_irq(gpio_to_irq(SDHC2_CD), data);
Sascha Hauer4f163eb2009-05-06 12:55:50 +0200104 gpio_free(SDHC2_WP);
105 gpio_free(SDHC2_CD);
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200106}
107
108static struct imxmmc_platform_data sdhc2_pdata = {
109 .get_ro = marxbot_sdhc2_get_ro,
110 .init = marxbot_sdhc2_init,
111 .exit = marxbot_sdhc2_exit,
112};
113
Valentin Longchamp2718c152009-08-12 11:29:21 +0200114#define TRSLAT_RST_B IOMUX_TO_GPIO(MX31_PIN_STXD5)
115#define DSPICS_RST_B IOMUX_TO_GPIO(MX31_PIN_SRXD5)
116
117static void dspics_resets_init(void)
118{
119 if (!gpio_request(TRSLAT_RST_B, "translator-rst")) {
120 gpio_direction_output(TRSLAT_RST_B, 1);
121 gpio_export(TRSLAT_RST_B, false);
122 }
123
124 if (!gpio_request(DSPICS_RST_B, "dspics-rst")) {
125 gpio_direction_output(DSPICS_RST_B, 1);
126 gpio_export(DSPICS_RST_B, false);
127 }
128}
129
Valentin Longchamp33c4d912009-11-23 19:16:36 +0100130static struct spi_board_info marxbot_spi_board_info[] __initdata = {
131 {
132 .modalias = "spidev",
133 .max_speed_hz = 300000,
134 .bus_num = 1,
135 .chip_select = 1, /* according spi1_cs[] ! */
136 },
137};
138
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100139#define TURRETCAM_POWER IOMUX_TO_GPIO(MX31_PIN_GPIO3_1)
140#define BASECAM_POWER IOMUX_TO_GPIO(MX31_PIN_CSI_D5)
141#define TURRETCAM_RST_B IOMUX_TO_GPIO(MX31_PIN_GPIO3_0)
142#define BASECAM_RST_B IOMUX_TO_GPIO(MX31_PIN_CSI_D4)
143#define CAM_CHOICE IOMUX_TO_GPIO(MX31_PIN_TXD2)
144
145static int marxbot_basecam_power(struct device *dev, int on)
146{
147 gpio_set_value(BASECAM_POWER, !on);
148 return 0;
149}
150
151static int marxbot_basecam_reset(struct device *dev)
152{
153 gpio_set_value(BASECAM_RST_B, 0);
154 udelay(100);
155 gpio_set_value(BASECAM_RST_B, 1);
156 return 0;
157}
158
159static struct i2c_board_info marxbot_i2c_devices[] = {
160 {
161 I2C_BOARD_INFO("mt9t031", 0x5d),
162 },
163};
164
165static struct soc_camera_link base_iclink = {
166 .bus_id = 0, /* Must match with the camera ID */
167 .power = marxbot_basecam_power,
168 .reset = marxbot_basecam_reset,
169 .board_info = &marxbot_i2c_devices[0],
170 .i2c_adapter_id = 0,
171 .module_name = "mt9t031",
172};
173
174static struct platform_device marxbot_camera[] = {
175 {
176 .name = "soc-camera-pdrv",
177 .id = 0,
178 .dev = {
179 .platform_data = &base_iclink,
180 },
181 },
182};
183
184static struct platform_device *marxbot_cameras[] __initdata = {
185 &marxbot_camera[0],
186};
187
188static int __init marxbot_cam_init(void)
189{
190 int ret = gpio_request(CAM_CHOICE, "cam-choice");
191 if (ret)
192 return ret;
193 gpio_direction_output(CAM_CHOICE, 1);
194
195 ret = gpio_request(BASECAM_RST_B, "basecam-reset");
196 if (ret)
197 return ret;
198 gpio_direction_output(BASECAM_RST_B, 1);
199 ret = gpio_request(BASECAM_POWER, "basecam-standby");
200 if (ret)
201 return ret;
202 gpio_direction_output(BASECAM_POWER, 0);
203
204 ret = gpio_request(TURRETCAM_RST_B, "turretcam-reset");
205 if (ret)
206 return ret;
207 gpio_direction_output(TURRETCAM_RST_B, 1);
208 ret = gpio_request(TURRETCAM_POWER, "turretcam-standby");
209 if (ret)
210 return ret;
211 gpio_direction_output(TURRETCAM_POWER, 0);
212
213 return 0;
214}
215
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100216/*
217 * system init for baseboard usage. Will be called by mx31moboard init.
218 */
219void __init mx31moboard_marxbot_init(void)
220{
221 printk(KERN_INFO "Initializing mx31marxbot peripherals\n");
Valentin Longchamp56c7a452009-04-22 10:55:50 +0200222
223 mxc_iomux_setup_multiple_pins(marxbot_pins, ARRAY_SIZE(marxbot_pins),
224 "marxbot");
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200225
Valentin Longchamp2718c152009-08-12 11:29:21 +0200226 dspics_resets_init();
227
Valentin Longchamp45b131a2009-04-21 10:24:56 +0200228 mxc_register_device(&mxcsdhc_device1, &sdhc2_pdata);
Valentin Longchamp10949ff2009-11-03 18:09:48 +0100229
Valentin Longchamp33c4d912009-11-23 19:16:36 +0100230 spi_register_board_info(marxbot_spi_board_info,
231 ARRAY_SIZE(marxbot_spi_board_info));
232
Valentin Longchamp04ea3c82009-11-03 18:09:51 +0100233 marxbot_cam_init();
234 platform_add_devices(marxbot_cameras, ARRAY_SIZE(marxbot_cameras));
235
Valentin Longchamp10949ff2009-11-03 18:09:48 +0100236 /* battery present pin */
237 gpio_request(IOMUX_TO_GPIO(MX31_PIN_LCS0), "bat-present");
238 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_LCS0));
239 gpio_export(IOMUX_TO_GPIO(MX31_PIN_LCS0), false);
Valentin Longchampe00f0b42009-02-16 12:47:51 +0100240}