blob: c37491dbff7560d02166864f396681497b57dd50 [file] [log] [blame]
Kevin Chan412e9f92012-01-24 10:45:23 -08001/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
Kevin Chan412e9f92012-01-24 10:45:23 -080014#include <linux/i2c.h>
Kevin Chaneb6b6072012-01-17 11:54:54 -080015#include <linux/gpio.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070016
17#include <asm/mach-types.h>
18
Kevin Chan412e9f92012-01-24 10:45:23 -080019#include <mach/board.h>
20#include <mach/msm_bus_board.h>
Kevin Chan412e9f92012-01-24 10:45:23 -080021#include <mach/gpiomux.h>
22
23#include "devices.h"
24#include "board-8064.h"
25
Steve Mucklef132c6c2012-06-06 18:30:57 -070026#ifdef CONFIG_MSM_CAMERA
27
Kevin Chan412e9f92012-01-24 10:45:23 -080028static struct gpiomux_setting cam_settings[] = {
29 {
30 .func = GPIOMUX_FUNC_GPIO, /*suspend*/
31 .drv = GPIOMUX_DRV_2MA,
32 .pull = GPIOMUX_PULL_DOWN,
33 },
34
35 {
36 .func = GPIOMUX_FUNC_1, /*active 1*/
37 .drv = GPIOMUX_DRV_2MA,
38 .pull = GPIOMUX_PULL_NONE,
39 },
40
41 {
42 .func = GPIOMUX_FUNC_GPIO, /*active 2*/
43 .drv = GPIOMUX_DRV_2MA,
44 .pull = GPIOMUX_PULL_NONE,
45 },
46
47 {
Kevin Chand07220e2012-02-13 15:52:22 -080048 .func = GPIOMUX_FUNC_2, /*active 3*/
49 .drv = GPIOMUX_DRV_2MA,
Kevin Chan412e9f92012-01-24 10:45:23 -080050 .pull = GPIOMUX_PULL_NONE,
51 },
52
53 {
54 .func = GPIOMUX_FUNC_5, /*active 4*/
55 .drv = GPIOMUX_DRV_8MA,
56 .pull = GPIOMUX_PULL_UP,
57 },
58
59 {
60 .func = GPIOMUX_FUNC_6, /*active 5*/
61 .drv = GPIOMUX_DRV_8MA,
62 .pull = GPIOMUX_PULL_UP,
63 },
64
65 {
66 .func = GPIOMUX_FUNC_2, /*active 6*/
67 .drv = GPIOMUX_DRV_2MA,
68 .pull = GPIOMUX_PULL_UP,
69 },
70
71 {
72 .func = GPIOMUX_FUNC_3, /*active 7*/
73 .drv = GPIOMUX_DRV_8MA,
74 .pull = GPIOMUX_PULL_UP,
75 },
76
77 {
78 .func = GPIOMUX_FUNC_GPIO, /*i2c suspend*/
79 .drv = GPIOMUX_DRV_2MA,
80 .pull = GPIOMUX_PULL_KEEPER,
81 },
82
Kevin Chand07220e2012-02-13 15:52:22 -080083 {
84 .func = GPIOMUX_FUNC_9, /*active 9*/
85 .drv = GPIOMUX_DRV_8MA,
86 .pull = GPIOMUX_PULL_NONE,
87 },
88 {
89 .func = GPIOMUX_FUNC_A, /*active 10*/
90 .drv = GPIOMUX_DRV_8MA,
91 .pull = GPIOMUX_PULL_NONE,
92 },
93 {
94 .func = GPIOMUX_FUNC_6, /*active 11*/
95 .drv = GPIOMUX_DRV_8MA,
96 .pull = GPIOMUX_PULL_NONE,
97 },
98 {
99 .func = GPIOMUX_FUNC_4, /*active 12*/
100 .drv = GPIOMUX_DRV_2MA,
101 .pull = GPIOMUX_PULL_NONE,
102 },
103
Kevin Chan412e9f92012-01-24 10:45:23 -0800104};
105
Kevin Chan412e9f92012-01-24 10:45:23 -0800106static struct msm_gpiomux_config apq8064_cam_common_configs[] = {
107 {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800108 .gpio = 1,
109 .settings = {
110 [GPIOMUX_ACTIVE] = &cam_settings[2],
111 [GPIOMUX_SUSPENDED] = &cam_settings[0],
112 },
113 },
114 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800115 .gpio = 2,
116 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800117 [GPIOMUX_ACTIVE] = &cam_settings[12],
Kevin Chan412e9f92012-01-24 10:45:23 -0800118 [GPIOMUX_SUSPENDED] = &cam_settings[0],
119 },
120 },
121 {
122 .gpio = 3,
123 .settings = {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800124 [GPIOMUX_ACTIVE] = &cam_settings[2],
Kevin Chan412e9f92012-01-24 10:45:23 -0800125 [GPIOMUX_SUSPENDED] = &cam_settings[0],
126 },
127 },
128 {
129 .gpio = 4,
130 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800131 [GPIOMUX_ACTIVE] = &cam_settings[3],
Kevin Chan412e9f92012-01-24 10:45:23 -0800132 [GPIOMUX_SUSPENDED] = &cam_settings[0],
133 },
134 },
135 {
136 .gpio = 5,
137 .settings = {
138 [GPIOMUX_ACTIVE] = &cam_settings[1],
139 [GPIOMUX_SUSPENDED] = &cam_settings[0],
140 },
141 },
142 {
Kevin Chand07220e2012-02-13 15:52:22 -0800143 .gpio = 34,
Kevin Chan412e9f92012-01-24 10:45:23 -0800144 .settings = {
145 [GPIOMUX_ACTIVE] = &cam_settings[2],
146 [GPIOMUX_SUSPENDED] = &cam_settings[0],
147 },
148 },
149 {
150 .gpio = 107,
151 .settings = {
152 [GPIOMUX_ACTIVE] = &cam_settings[2],
153 [GPIOMUX_SUSPENDED] = &cam_settings[0],
154 },
155 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800156 {
157 .gpio = 10,
158 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800159 [GPIOMUX_ACTIVE] = &cam_settings[9],
Kevin Chan412e9f92012-01-24 10:45:23 -0800160 [GPIOMUX_SUSPENDED] = &cam_settings[8],
161 },
162 },
163 {
164 .gpio = 11,
165 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800166 [GPIOMUX_ACTIVE] = &cam_settings[10],
Kevin Chan412e9f92012-01-24 10:45:23 -0800167 [GPIOMUX_SUSPENDED] = &cam_settings[8],
168 },
169 },
170 {
171 .gpio = 12,
172 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800173 [GPIOMUX_ACTIVE] = &cam_settings[11],
Kevin Chan412e9f92012-01-24 10:45:23 -0800174 [GPIOMUX_SUSPENDED] = &cam_settings[8],
175 },
176 },
177 {
178 .gpio = 13,
179 .settings = {
Kevin Chand07220e2012-02-13 15:52:22 -0800180 [GPIOMUX_ACTIVE] = &cam_settings[11],
Kevin Chan412e9f92012-01-24 10:45:23 -0800181 [GPIOMUX_SUSPENDED] = &cam_settings[8],
182 },
183 },
184};
185
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800186
187#define VFE_CAMIF_TIMER1_GPIO 3
188#define VFE_CAMIF_TIMER2_GPIO 1
189
190static struct msm_camera_sensor_flash_src msm_flash_src = {
191 .flash_sr_type = MSM_CAMERA_FLASH_SRC_EXT,
192 ._fsrc.ext_driver_src.led_en = VFE_CAMIF_TIMER1_GPIO,
193 ._fsrc.ext_driver_src.led_flash_en = VFE_CAMIF_TIMER2_GPIO,
Jeyaprakash Soundrapandian85099fe2012-05-15 17:09:51 -0700194 ._fsrc.ext_driver_src.flash_id = MAM_CAMERA_EXT_LED_FLASH_SC628A,
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800195};
196
Kevin Chand07220e2012-02-13 15:52:22 -0800197static struct msm_gpiomux_config apq8064_cam_2d_configs[] = {
198};
199
Kevin Chan412e9f92012-01-24 10:45:23 -0800200static struct msm_bus_vectors cam_init_vectors[] = {
201 {
202 .src = MSM_BUS_MASTER_VFE,
203 .dst = MSM_BUS_SLAVE_EBI_CH0,
204 .ab = 0,
205 .ib = 0,
206 },
207 {
208 .src = MSM_BUS_MASTER_VPE,
209 .dst = MSM_BUS_SLAVE_EBI_CH0,
210 .ab = 0,
211 .ib = 0,
212 },
213 {
214 .src = MSM_BUS_MASTER_JPEG_ENC,
215 .dst = MSM_BUS_SLAVE_EBI_CH0,
216 .ab = 0,
217 .ib = 0,
218 },
219};
220
221static struct msm_bus_vectors cam_preview_vectors[] = {
222 {
223 .src = MSM_BUS_MASTER_VFE,
224 .dst = MSM_BUS_SLAVE_EBI_CH0,
225 .ab = 27648000,
226 .ib = 110592000,
227 },
228 {
229 .src = MSM_BUS_MASTER_VPE,
230 .dst = MSM_BUS_SLAVE_EBI_CH0,
231 .ab = 0,
232 .ib = 0,
233 },
234 {
235 .src = MSM_BUS_MASTER_JPEG_ENC,
236 .dst = MSM_BUS_SLAVE_EBI_CH0,
237 .ab = 0,
238 .ib = 0,
239 },
240};
241
242static struct msm_bus_vectors cam_video_vectors[] = {
243 {
244 .src = MSM_BUS_MASTER_VFE,
245 .dst = MSM_BUS_SLAVE_EBI_CH0,
246 .ab = 140451840,
247 .ib = 561807360,
248 },
249 {
250 .src = MSM_BUS_MASTER_VPE,
251 .dst = MSM_BUS_SLAVE_EBI_CH0,
252 .ab = 206807040,
253 .ib = 488816640,
254 },
255 {
256 .src = MSM_BUS_MASTER_JPEG_ENC,
257 .dst = MSM_BUS_SLAVE_EBI_CH0,
258 .ab = 0,
259 .ib = 0,
260 },
261};
262
263static struct msm_bus_vectors cam_snapshot_vectors[] = {
264 {
265 .src = MSM_BUS_MASTER_VFE,
266 .dst = MSM_BUS_SLAVE_EBI_CH0,
267 .ab = 274423680,
268 .ib = 1097694720,
269 },
270 {
271 .src = MSM_BUS_MASTER_VPE,
272 .dst = MSM_BUS_SLAVE_EBI_CH0,
273 .ab = 0,
274 .ib = 0,
275 },
276 {
277 .src = MSM_BUS_MASTER_JPEG_ENC,
278 .dst = MSM_BUS_SLAVE_EBI_CH0,
279 .ab = 540000000,
280 .ib = 1350000000,
281 },
282};
283
284static struct msm_bus_vectors cam_zsl_vectors[] = {
285 {
286 .src = MSM_BUS_MASTER_VFE,
287 .dst = MSM_BUS_SLAVE_EBI_CH0,
288 .ab = 302071680,
289 .ib = 1208286720,
290 },
291 {
292 .src = MSM_BUS_MASTER_VPE,
293 .dst = MSM_BUS_SLAVE_EBI_CH0,
294 .ab = 0,
295 .ib = 0,
296 },
297 {
298 .src = MSM_BUS_MASTER_JPEG_ENC,
299 .dst = MSM_BUS_SLAVE_EBI_CH0,
300 .ab = 540000000,
301 .ib = 1350000000,
302 },
303};
304
305static struct msm_bus_paths cam_bus_client_config[] = {
306 {
307 ARRAY_SIZE(cam_init_vectors),
308 cam_init_vectors,
309 },
310 {
311 ARRAY_SIZE(cam_preview_vectors),
312 cam_preview_vectors,
313 },
314 {
315 ARRAY_SIZE(cam_video_vectors),
316 cam_video_vectors,
317 },
318 {
319 ARRAY_SIZE(cam_snapshot_vectors),
320 cam_snapshot_vectors,
321 },
322 {
323 ARRAY_SIZE(cam_zsl_vectors),
324 cam_zsl_vectors,
325 },
326};
327
328static struct msm_bus_scale_pdata cam_bus_client_pdata = {
329 cam_bus_client_config,
330 ARRAY_SIZE(cam_bus_client_config),
331 .name = "msm_camera",
332};
333
334static struct msm_camera_device_platform_data msm_camera_csi_device_data[] = {
335 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800336 .csid_core = 0,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800337 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800338 .cam_bus_scale_table = &cam_bus_client_pdata,
339 },
340 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800341 .csid_core = 1,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800342 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800343 .cam_bus_scale_table = &cam_bus_client_pdata,
344 },
345};
346
Kevin Chand07220e2012-02-13 15:52:22 -0800347static struct camera_vreg_t apq_8064_back_cam_vreg[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800348 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800349 {"cam_vio", REG_VS, 0, 0, 0},
350 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800351 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
352};
353
Kevin Chand07220e2012-02-13 15:52:22 -0800354static struct camera_vreg_t apq_8064_front_cam_vreg[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800355 {"cam_vio", REG_VS, 0, 0, 0},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800356 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chand07220e2012-02-13 15:52:22 -0800357 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
358 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
359};
360
361#define CAML_RSTN PM8921_GPIO_PM_TO_SYS(28)
362#define CAMR_RSTN 34
363
Kevin Chaneb6b6072012-01-17 11:54:54 -0800364static struct gpio apq8064_common_cam_gpio[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800365};
366
367static struct gpio apq8064_back_cam_gpio[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800368 {5, GPIOF_DIR_IN, "CAMIF_MCLK"},
369 {CAML_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800370};
371
372static struct msm_gpio_set_tbl apq8064_back_cam_gpio_set_tbl[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800373 {CAML_RSTN, GPIOF_OUT_INIT_LOW, 10000},
374 {CAML_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800375};
376
377static struct msm_camera_gpio_conf apq8064_back_cam_gpio_conf = {
378 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
379 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
380 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
381 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
382 .cam_gpio_req_tbl = apq8064_back_cam_gpio,
383 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio),
384 .cam_gpio_set_tbl = apq8064_back_cam_gpio_set_tbl,
385 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio_set_tbl),
386};
387
Kevin Chand07220e2012-02-13 15:52:22 -0800388static struct gpio apq8064_front_cam_gpio[] = {
389 {4, GPIOF_DIR_IN, "CAMIF_MCLK"},
390 {12, GPIOF_DIR_IN, "CAMIF_I2C_DATA"},
391 {13, GPIOF_DIR_IN, "CAMIF_I2C_CLK"},
392 {CAMR_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
393};
394
395static struct msm_gpio_set_tbl apq8064_front_cam_gpio_set_tbl[] = {
396 {CAMR_RSTN, GPIOF_OUT_INIT_LOW, 10000},
397 {CAMR_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
398};
399
400static struct msm_camera_gpio_conf apq8064_front_cam_gpio_conf = {
401 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
402 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
403 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
404 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
405 .cam_gpio_req_tbl = apq8064_front_cam_gpio,
406 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio),
407 .cam_gpio_set_tbl = apq8064_front_cam_gpio_set_tbl,
408 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio_set_tbl),
409};
410
411static struct msm_camera_i2c_conf apq8064_back_cam_i2c_conf = {
412 .use_i2c_mux = 1,
413 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
414 .i2c_mux_mode = MODE_L,
415};
416
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800417static struct i2c_board_info msm_act_main_cam_i2c_info = {
418 I2C_BOARD_INFO("msm_actuator", 0x11),
Jignesh Mehta33394572012-02-21 19:57:41 -0800419};
420
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800421static struct msm_actuator_info msm_act_main_cam_0_info = {
422 .board_info = &msm_act_main_cam_i2c_info,
423 .cam_name = MSM_ACTUATOR_MAIN_CAM_0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800424 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
425 .vcm_pwd = 0,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800426 .vcm_enable = 0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800427};
428
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700429static struct i2c_board_info msm_act_main_cam1_i2c_info = {
430 I2C_BOARD_INFO("msm_actuator", 0x18),
431};
432
433static struct msm_actuator_info msm_act_main_cam_1_info = {
434 .board_info = &msm_act_main_cam1_i2c_info,
435 .cam_name = MSM_ACTUATOR_MAIN_CAM_1,
436 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
437 .vcm_pwd = 0,
438 .vcm_enable = 0,
439};
440
441
Kevin Chand07220e2012-02-13 15:52:22 -0800442static struct msm_camera_i2c_conf apq8064_front_cam_i2c_conf = {
443 .use_i2c_mux = 1,
444 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
445 .i2c_mux_mode = MODE_L,
446};
447
Kevin Chan412e9f92012-01-24 10:45:23 -0800448static struct msm_camera_sensor_flash_data flash_imx074 = {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800449 .flash_type = MSM_CAMERA_FLASH_LED,
450 .flash_src = &msm_flash_src
Kevin Chan412e9f92012-01-24 10:45:23 -0800451};
452
Hody Hung9ba65cf2012-01-17 17:34:51 -0800453static struct msm_camera_csi_lane_params imx074_csi_lane_params = {
454 .csi_lane_assign = 0xE4,
455 .csi_lane_mask = 0xF,
456};
457
Kevin Chan412e9f92012-01-24 10:45:23 -0800458static struct msm_camera_sensor_platform_info sensor_board_info_imx074 = {
459 .mount_angle = 90,
Kevin Chand07220e2012-02-13 15:52:22 -0800460 .cam_vreg = apq_8064_back_cam_vreg,
461 .num_vreg = ARRAY_SIZE(apq_8064_back_cam_vreg),
Kevin Chaneb6b6072012-01-17 11:54:54 -0800462 .gpio_conf = &apq8064_back_cam_gpio_conf,
Kevin Chand07220e2012-02-13 15:52:22 -0800463 .i2c_conf = &apq8064_back_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800464 .csi_lane_params = &imx074_csi_lane_params,
Kevin Chan412e9f92012-01-24 10:45:23 -0800465};
466
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700467static struct i2c_board_info imx074_eeprom_i2c_info = {
468 I2C_BOARD_INFO("imx074_eeprom", 0x34 << 1),
469};
470
471static struct msm_eeprom_info imx074_eeprom_info = {
472 .board_info = &imx074_eeprom_i2c_info,
473 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
474};
475
Kevin Chan412e9f92012-01-24 10:45:23 -0800476static struct msm_camera_sensor_info msm_camera_sensor_imx074_data = {
477 .sensor_name = "imx074",
478 .pdata = &msm_camera_csi_device_data[0],
479 .flash_data = &flash_imx074,
480 .sensor_platform_info = &sensor_board_info_imx074,
Kevin Chan412e9f92012-01-24 10:45:23 -0800481 .csi_if = 1,
482 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530483 .sensor_type = BAYER_SENSOR,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800484 .actuator_info = &msm_act_main_cam_0_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700485 .eeprom_info = &imx074_eeprom_info,
Kevin Chan412e9f92012-01-24 10:45:23 -0800486};
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700487
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800488static struct msm_camera_csi_lane_params imx091_csi_lane_params = {
489 .csi_lane_assign = 0xE4,
490 .csi_lane_mask = 0xF,
491};
492
493static struct camera_vreg_t apq_8064_imx091_vreg[] = {
494 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
495 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
496 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
497 {"cam_vio", REG_VS, 0, 0, 0},
498};
499
500static struct msm_camera_sensor_flash_data flash_imx091 = {
501 .flash_type = MSM_CAMERA_FLASH_NONE,
502};
503
504static struct msm_camera_sensor_platform_info sensor_board_info_imx091 = {
505 .mount_angle = 0,
506 .cam_vreg = apq_8064_imx091_vreg,
507 .num_vreg = ARRAY_SIZE(apq_8064_imx091_vreg),
508 .gpio_conf = &apq8064_back_cam_gpio_conf,
509 .i2c_conf = &apq8064_back_cam_i2c_conf,
510 .csi_lane_params = &imx091_csi_lane_params,
511};
512
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700513static struct i2c_board_info imx091_eeprom_i2c_info = {
514 I2C_BOARD_INFO("imx091_eeprom", 0x21),
515};
516
517static struct msm_eeprom_info imx091_eeprom_info = {
518 .board_info = &imx091_eeprom_i2c_info,
519 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
520};
521
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800522static struct msm_camera_sensor_info msm_camera_sensor_imx091_data = {
523 .sensor_name = "imx091",
524 .pdata = &msm_camera_csi_device_data[0],
525 .flash_data = &flash_imx091,
526 .sensor_platform_info = &sensor_board_info_imx091,
527 .csi_if = 1,
528 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530529 .sensor_type = BAYER_SENSOR,
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700530 .actuator_info = &msm_act_main_cam_1_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700531 .eeprom_info = &imx091_eeprom_info,
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800532};
Kevin Chan412e9f92012-01-24 10:45:23 -0800533
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700534static struct camera_vreg_t apq_8064_s5k3l1yx_vreg[] = {
535 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
536 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
537 {"cam_vio", REG_VS, 0, 0, 0},
538 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
539};
540
541static struct msm_camera_sensor_flash_data flash_s5k3l1yx = {
542 .flash_type = MSM_CAMERA_FLASH_NONE,
543};
544
545static struct msm_camera_csi_lane_params s5k3l1yx_csi_lane_params = {
546 .csi_lane_assign = 0xE4,
547 .csi_lane_mask = 0xF,
548};
549
550static struct msm_camera_sensor_platform_info sensor_board_info_s5k3l1yx = {
551 .mount_angle = 90,
552 .cam_vreg = apq_8064_s5k3l1yx_vreg,
553 .num_vreg = ARRAY_SIZE(apq_8064_s5k3l1yx_vreg),
554 .gpio_conf = &apq8064_back_cam_gpio_conf,
555 .i2c_conf = &apq8064_back_cam_i2c_conf,
556 .csi_lane_params = &s5k3l1yx_csi_lane_params,
557};
558
559static struct msm_camera_sensor_info msm_camera_sensor_s5k3l1yx_data = {
560 .sensor_name = "s5k3l1yx",
561 .pdata = &msm_camera_csi_device_data[0],
562 .flash_data = &flash_s5k3l1yx,
563 .sensor_platform_info = &sensor_board_info_s5k3l1yx,
564 .csi_if = 1,
565 .camera_type = BACK_CAMERA_2D,
566 .sensor_type = BAYER_SENSOR,
567};
568
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800569static struct camera_vreg_t apq_8064_mt9m114_vreg[] = {
570 {"cam_vio", REG_VS, 0, 0, 0},
571 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
572 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
573 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
574};
575
576static struct msm_camera_sensor_flash_data flash_mt9m114 = {
577 .flash_type = MSM_CAMERA_FLASH_NONE
578};
579
Hody Hung9ba65cf2012-01-17 17:34:51 -0800580static struct msm_camera_csi_lane_params mt9m114_csi_lane_params = {
581 .csi_lane_assign = 0xE4,
582 .csi_lane_mask = 0x1,
583};
584
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800585static struct msm_camera_sensor_platform_info sensor_board_info_mt9m114 = {
586 .mount_angle = 90,
587 .cam_vreg = apq_8064_mt9m114_vreg,
588 .num_vreg = ARRAY_SIZE(apq_8064_mt9m114_vreg),
589 .gpio_conf = &apq8064_front_cam_gpio_conf,
590 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800591 .csi_lane_params = &mt9m114_csi_lane_params,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800592};
593
594static struct msm_camera_sensor_info msm_camera_sensor_mt9m114_data = {
595 .sensor_name = "mt9m114",
596 .pdata = &msm_camera_csi_device_data[1],
597 .flash_data = &flash_mt9m114,
598 .sensor_platform_info = &sensor_board_info_mt9m114,
599 .csi_if = 1,
600 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530601 .sensor_type = YUV_SENSOR,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800602};
603
Kevin Chand07220e2012-02-13 15:52:22 -0800604static struct msm_camera_sensor_flash_data flash_ov2720 = {
605 .flash_type = MSM_CAMERA_FLASH_NONE,
606};
607
Hody Hung9ba65cf2012-01-17 17:34:51 -0800608static struct msm_camera_csi_lane_params ov2720_csi_lane_params = {
609 .csi_lane_assign = 0xE4,
610 .csi_lane_mask = 0x3,
611};
612
Kevin Chand07220e2012-02-13 15:52:22 -0800613static struct msm_camera_sensor_platform_info sensor_board_info_ov2720 = {
614 .mount_angle = 0,
615 .cam_vreg = apq_8064_front_cam_vreg,
616 .num_vreg = ARRAY_SIZE(apq_8064_front_cam_vreg),
617 .gpio_conf = &apq8064_front_cam_gpio_conf,
618 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800619 .csi_lane_params = &ov2720_csi_lane_params,
Kevin Chand07220e2012-02-13 15:52:22 -0800620};
621
622static struct msm_camera_sensor_info msm_camera_sensor_ov2720_data = {
623 .sensor_name = "ov2720",
624 .pdata = &msm_camera_csi_device_data[1],
625 .flash_data = &flash_ov2720,
626 .sensor_platform_info = &sensor_board_info_ov2720,
627 .csi_if = 1,
628 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530629 .sensor_type = BAYER_SENSOR,
Kevin Chand07220e2012-02-13 15:52:22 -0800630};
Kevin Chand07220e2012-02-13 15:52:22 -0800631
Kevin Chan94b4c832012-03-02 21:27:16 -0800632static struct platform_device msm_camera_server = {
633 .name = "msm_cam_server",
634 .id = 0,
635};
636
Kevin Chan412e9f92012-01-24 10:45:23 -0800637void __init apq8064_init_cam(void)
638{
639 msm_gpiomux_install(apq8064_cam_common_configs,
640 ARRAY_SIZE(apq8064_cam_common_configs));
641
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700642 if (machine_is_apq8064_cdp()) {
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700643 sensor_board_info_imx074.mount_angle = 0;
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700644 sensor_board_info_mt9m114.mount_angle = 0;
645 } else if (machine_is_apq8064_liquid())
Jignesh Mehtabfb1aa32012-03-16 17:23:23 -0700646 sensor_board_info_imx074.mount_angle = 180;
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700647
Kevin Chan94b4c832012-03-02 21:27:16 -0800648 platform_device_register(&msm_camera_server);
Kevin Chand07220e2012-02-13 15:52:22 -0800649 platform_device_register(&msm8960_device_i2c_mux_gsbi4);
Kevin Chan412e9f92012-01-24 10:45:23 -0800650 platform_device_register(&msm8960_device_csiphy0);
651 platform_device_register(&msm8960_device_csiphy1);
652 platform_device_register(&msm8960_device_csid0);
653 platform_device_register(&msm8960_device_csid1);
654 platform_device_register(&msm8960_device_ispif);
655 platform_device_register(&msm8960_device_vfe);
656 platform_device_register(&msm8960_device_vpe);
657}
658
659#ifdef CONFIG_I2C
660static struct i2c_board_info apq8064_camera_i2c_boardinfo[] = {
Kevin Chan412e9f92012-01-24 10:45:23 -0800661 {
662 I2C_BOARD_INFO("imx074", 0x1A),
663 .platform_data = &msm_camera_sensor_imx074_data,
664 },
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800665 {
666 I2C_BOARD_INFO("mt9m114", 0x48),
667 .platform_data = &msm_camera_sensor_mt9m114_data,
668 },
Kevin Chand07220e2012-02-13 15:52:22 -0800669 {
670 I2C_BOARD_INFO("ov2720", 0x6C),
671 .platform_data = &msm_camera_sensor_ov2720_data,
672 },
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800673 {
674 I2C_BOARD_INFO("sc628a", 0x6E),
675 },
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800676 {
677 I2C_BOARD_INFO("imx091", 0x34),
678 .platform_data = &msm_camera_sensor_imx091_data,
679 },
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700680 {
681 I2C_BOARD_INFO("s5k3l1yx", 0x20),
682 .platform_data = &msm_camera_sensor_s5k3l1yx_data,
683 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800684};
685
686struct msm_camera_board_info apq8064_camera_board_info = {
687 .board_info = apq8064_camera_i2c_boardinfo,
688 .num_i2c_board_info = ARRAY_SIZE(apq8064_camera_i2c_boardinfo),
689};
690#endif
691#endif