blob: 3955e77b8137611683f96a9fafd14492a379a215 [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
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -080019#include <mach/camera.h>
Kevin Chan412e9f92012-01-24 10:45:23 -080020#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,
Kiran Kumar H N1d1d3072012-07-05 13:40:13 -0700246 .ab = 274406400,
Kevin Chan412e9f92012-01-24 10:45:23 -0800247 .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
Kiran Kumar H N1d1d3072012-07-05 13:40:13 -0700305static struct msm_bus_vectors cam_video_ls_vectors[] = {
306 {
307 .src = MSM_BUS_MASTER_VFE,
308 .dst = MSM_BUS_SLAVE_EBI_CH0,
309 .ab = 348192000,
310 .ib = 617103360,
311 },
312 {
313 .src = MSM_BUS_MASTER_VPE,
314 .dst = MSM_BUS_SLAVE_EBI_CH0,
315 .ab = 206807040,
316 .ib = 488816640,
317 },
318 {
319 .src = MSM_BUS_MASTER_JPEG_ENC,
320 .dst = MSM_BUS_SLAVE_EBI_CH0,
321 .ab = 540000000,
322 .ib = 1350000000,
323 },
324};
325
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800326static struct msm_bus_vectors cam_dual_vectors[] = {
327 {
328 .src = MSM_BUS_MASTER_VFE,
329 .dst = MSM_BUS_SLAVE_EBI_CH0,
330 .ab = 348192000,
331 .ib = 1208286720,
332 },
333 {
334 .src = MSM_BUS_MASTER_VPE,
335 .dst = MSM_BUS_SLAVE_EBI_CH0,
336 .ab = 206807040,
337 .ib = 488816640,
338 },
339 {
340 .src = MSM_BUS_MASTER_JPEG_ENC,
341 .dst = MSM_BUS_SLAVE_EBI_CH0,
342 .ab = 540000000,
343 .ib = 1350000000,
344 },
345 {
346 .src = MSM_BUS_MASTER_JPEG_ENC,
347 .dst = MSM_BUS_SLAVE_MM_IMEM,
348 .ab = 43200000,
349 .ib = 69120000,
350 },
351 {
352 .src = MSM_BUS_MASTER_VFE,
353 .dst = MSM_BUS_SLAVE_MM_IMEM,
354 .ab = 43200000,
355 .ib = 69120000,
356 },
357};
358
Nishant Panditd74a62d2012-12-13 14:22:31 +0530359static struct msm_bus_vectors cam_low_power_vectors[] = {
360 {
361 .src = MSM_BUS_MASTER_VFE,
362 .dst = MSM_BUS_SLAVE_EBI_CH0,
363 .ab = 1451520,
364 .ib = 3870720,
365 },
366 {
367 .src = MSM_BUS_MASTER_VPE,
368 .dst = MSM_BUS_SLAVE_EBI_CH0,
369 .ab = 0,
370 .ib = 0,
371 },
372 {
373 .src = MSM_BUS_MASTER_JPEG_ENC,
374 .dst = MSM_BUS_SLAVE_EBI_CH0,
375 .ab = 0,
376 .ib = 0,
377 },
378};
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800379
Kevin Chan412e9f92012-01-24 10:45:23 -0800380static struct msm_bus_paths cam_bus_client_config[] = {
381 {
382 ARRAY_SIZE(cam_init_vectors),
383 cam_init_vectors,
384 },
385 {
386 ARRAY_SIZE(cam_preview_vectors),
387 cam_preview_vectors,
388 },
389 {
390 ARRAY_SIZE(cam_video_vectors),
391 cam_video_vectors,
392 },
393 {
394 ARRAY_SIZE(cam_snapshot_vectors),
395 cam_snapshot_vectors,
396 },
397 {
398 ARRAY_SIZE(cam_zsl_vectors),
399 cam_zsl_vectors,
400 },
Kiran Kumar H N1d1d3072012-07-05 13:40:13 -0700401 {
402 ARRAY_SIZE(cam_video_ls_vectors),
403 cam_video_ls_vectors,
404 },
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800405 {
406 ARRAY_SIZE(cam_dual_vectors),
407 cam_dual_vectors,
408 },
Nishant Panditd74a62d2012-12-13 14:22:31 +0530409 {
410 ARRAY_SIZE(cam_low_power_vectors),
411 cam_low_power_vectors,
412 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800413};
414
415static struct msm_bus_scale_pdata cam_bus_client_pdata = {
416 cam_bus_client_config,
417 ARRAY_SIZE(cam_bus_client_config),
418 .name = "msm_camera",
419};
420
421static struct msm_camera_device_platform_data msm_camera_csi_device_data[] = {
422 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800423 .csid_core = 0,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800424 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800425 .cam_bus_scale_table = &cam_bus_client_pdata,
426 },
427 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800428 .csid_core = 1,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800429 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800430 .cam_bus_scale_table = &cam_bus_client_pdata,
431 },
432};
433
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800434static struct camera_vreg_t apq_8064_cam_vreg[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800435 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800436 {"cam_vio", REG_VS, 0, 0, 0},
437 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800438 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
439};
440
Kevin Chand07220e2012-02-13 15:52:22 -0800441#define CAML_RSTN PM8921_GPIO_PM_TO_SYS(28)
442#define CAMR_RSTN 34
443
Kevin Chaneb6b6072012-01-17 11:54:54 -0800444static struct gpio apq8064_common_cam_gpio[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800445};
446
447static struct gpio apq8064_back_cam_gpio[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800448 {5, GPIOF_DIR_IN, "CAMIF_MCLK"},
449 {CAML_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800450};
451
452static struct msm_gpio_set_tbl apq8064_back_cam_gpio_set_tbl[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800453 {CAML_RSTN, GPIOF_OUT_INIT_LOW, 10000},
454 {CAML_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800455};
456
457static struct msm_camera_gpio_conf apq8064_back_cam_gpio_conf = {
458 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
459 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
460 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
461 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
462 .cam_gpio_req_tbl = apq8064_back_cam_gpio,
463 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio),
464 .cam_gpio_set_tbl = apq8064_back_cam_gpio_set_tbl,
465 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio_set_tbl),
466};
467
Kevin Chand07220e2012-02-13 15:52:22 -0800468static struct gpio apq8064_front_cam_gpio[] = {
469 {4, GPIOF_DIR_IN, "CAMIF_MCLK"},
470 {12, GPIOF_DIR_IN, "CAMIF_I2C_DATA"},
471 {13, GPIOF_DIR_IN, "CAMIF_I2C_CLK"},
472 {CAMR_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
473};
474
475static struct msm_gpio_set_tbl apq8064_front_cam_gpio_set_tbl[] = {
476 {CAMR_RSTN, GPIOF_OUT_INIT_LOW, 10000},
477 {CAMR_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
478};
479
480static struct msm_camera_gpio_conf apq8064_front_cam_gpio_conf = {
481 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
482 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
483 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
484 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
485 .cam_gpio_req_tbl = apq8064_front_cam_gpio,
486 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio),
487 .cam_gpio_set_tbl = apq8064_front_cam_gpio_set_tbl,
488 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio_set_tbl),
489};
490
491static struct msm_camera_i2c_conf apq8064_back_cam_i2c_conf = {
492 .use_i2c_mux = 1,
493 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
494 .i2c_mux_mode = MODE_L,
495};
496
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800497static struct i2c_board_info msm_act_main_cam_i2c_info = {
498 I2C_BOARD_INFO("msm_actuator", 0x11),
Jignesh Mehta33394572012-02-21 19:57:41 -0800499};
500
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800501static struct msm_actuator_info msm_act_main_cam_0_info = {
502 .board_info = &msm_act_main_cam_i2c_info,
503 .cam_name = MSM_ACTUATOR_MAIN_CAM_0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800504 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
505 .vcm_pwd = 0,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800506 .vcm_enable = 0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800507};
508
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700509static struct i2c_board_info msm_act_main_cam1_i2c_info = {
510 I2C_BOARD_INFO("msm_actuator", 0x18),
511};
512
513static struct msm_actuator_info msm_act_main_cam_1_info = {
514 .board_info = &msm_act_main_cam1_i2c_info,
515 .cam_name = MSM_ACTUATOR_MAIN_CAM_1,
516 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
517 .vcm_pwd = 0,
518 .vcm_enable = 0,
519};
520
521
Kevin Chand07220e2012-02-13 15:52:22 -0800522static struct msm_camera_i2c_conf apq8064_front_cam_i2c_conf = {
523 .use_i2c_mux = 1,
524 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
525 .i2c_mux_mode = MODE_L,
526};
527
Kevin Chan412e9f92012-01-24 10:45:23 -0800528static struct msm_camera_sensor_flash_data flash_imx074 = {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800529 .flash_type = MSM_CAMERA_FLASH_LED,
530 .flash_src = &msm_flash_src
Kevin Chan412e9f92012-01-24 10:45:23 -0800531};
532
Hody Hung9ba65cf2012-01-17 17:34:51 -0800533static struct msm_camera_csi_lane_params imx074_csi_lane_params = {
534 .csi_lane_assign = 0xE4,
535 .csi_lane_mask = 0xF,
536};
537
Kevin Chan412e9f92012-01-24 10:45:23 -0800538static struct msm_camera_sensor_platform_info sensor_board_info_imx074 = {
539 .mount_angle = 90,
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800540 .cam_vreg = apq_8064_cam_vreg,
541 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Kevin Chaneb6b6072012-01-17 11:54:54 -0800542 .gpio_conf = &apq8064_back_cam_gpio_conf,
Kevin Chand07220e2012-02-13 15:52:22 -0800543 .i2c_conf = &apq8064_back_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800544 .csi_lane_params = &imx074_csi_lane_params,
Kevin Chan412e9f92012-01-24 10:45:23 -0800545};
546
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700547static struct i2c_board_info imx074_eeprom_i2c_info = {
548 I2C_BOARD_INFO("imx074_eeprom", 0x34 << 1),
549};
550
551static struct msm_eeprom_info imx074_eeprom_info = {
552 .board_info = &imx074_eeprom_i2c_info,
553 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
554};
555
Kevin Chan412e9f92012-01-24 10:45:23 -0800556static struct msm_camera_sensor_info msm_camera_sensor_imx074_data = {
557 .sensor_name = "imx074",
558 .pdata = &msm_camera_csi_device_data[0],
559 .flash_data = &flash_imx074,
560 .sensor_platform_info = &sensor_board_info_imx074,
Kevin Chan412e9f92012-01-24 10:45:23 -0800561 .csi_if = 1,
562 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530563 .sensor_type = BAYER_SENSOR,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800564 .actuator_info = &msm_act_main_cam_0_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700565 .eeprom_info = &imx074_eeprom_info,
Kevin Chan412e9f92012-01-24 10:45:23 -0800566};
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700567
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800568static struct msm_camera_csi_lane_params imx091_csi_lane_params = {
569 .csi_lane_assign = 0xE4,
570 .csi_lane_mask = 0xF,
571};
572
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800573static struct msm_camera_sensor_flash_data flash_imx091 = {
574 .flash_type = MSM_CAMERA_FLASH_NONE,
575};
576
577static struct msm_camera_sensor_platform_info sensor_board_info_imx091 = {
578 .mount_angle = 0,
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800579 .cam_vreg = apq_8064_cam_vreg,
580 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800581 .gpio_conf = &apq8064_back_cam_gpio_conf,
582 .i2c_conf = &apq8064_back_cam_i2c_conf,
583 .csi_lane_params = &imx091_csi_lane_params,
584};
585
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700586static struct i2c_board_info imx091_eeprom_i2c_info = {
587 I2C_BOARD_INFO("imx091_eeprom", 0x21),
588};
589
590static struct msm_eeprom_info imx091_eeprom_info = {
591 .board_info = &imx091_eeprom_i2c_info,
592 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
593};
594
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800595static struct msm_camera_sensor_info msm_camera_sensor_imx091_data = {
596 .sensor_name = "imx091",
597 .pdata = &msm_camera_csi_device_data[0],
598 .flash_data = &flash_imx091,
599 .sensor_platform_info = &sensor_board_info_imx091,
600 .csi_if = 1,
601 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530602 .sensor_type = BAYER_SENSOR,
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700603 .actuator_info = &msm_act_main_cam_1_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700604 .eeprom_info = &imx091_eeprom_info,
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800605};
Kevin Chan412e9f92012-01-24 10:45:23 -0800606
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700607static struct msm_camera_sensor_flash_data flash_s5k3l1yx = {
608 .flash_type = MSM_CAMERA_FLASH_NONE,
609};
610
611static struct msm_camera_csi_lane_params s5k3l1yx_csi_lane_params = {
612 .csi_lane_assign = 0xE4,
613 .csi_lane_mask = 0xF,
614};
615
616static struct msm_camera_sensor_platform_info sensor_board_info_s5k3l1yx = {
617 .mount_angle = 90,
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800618 .cam_vreg = apq_8064_cam_vreg,
619 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700620 .gpio_conf = &apq8064_back_cam_gpio_conf,
621 .i2c_conf = &apq8064_back_cam_i2c_conf,
622 .csi_lane_params = &s5k3l1yx_csi_lane_params,
623};
624
625static struct msm_camera_sensor_info msm_camera_sensor_s5k3l1yx_data = {
626 .sensor_name = "s5k3l1yx",
627 .pdata = &msm_camera_csi_device_data[0],
628 .flash_data = &flash_s5k3l1yx,
629 .sensor_platform_info = &sensor_board_info_s5k3l1yx,
630 .csi_if = 1,
631 .camera_type = BACK_CAMERA_2D,
632 .sensor_type = BAYER_SENSOR,
633};
634
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800635static struct msm_camera_sensor_flash_data flash_mt9m114 = {
636 .flash_type = MSM_CAMERA_FLASH_NONE
637};
638
Hody Hung9ba65cf2012-01-17 17:34:51 -0800639static struct msm_camera_csi_lane_params mt9m114_csi_lane_params = {
640 .csi_lane_assign = 0xE4,
641 .csi_lane_mask = 0x1,
642};
643
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800644static struct msm_camera_sensor_platform_info sensor_board_info_mt9m114 = {
645 .mount_angle = 90,
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800646 .cam_vreg = apq_8064_cam_vreg,
647 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800648 .gpio_conf = &apq8064_front_cam_gpio_conf,
649 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800650 .csi_lane_params = &mt9m114_csi_lane_params,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800651};
652
653static struct msm_camera_sensor_info msm_camera_sensor_mt9m114_data = {
654 .sensor_name = "mt9m114",
655 .pdata = &msm_camera_csi_device_data[1],
656 .flash_data = &flash_mt9m114,
657 .sensor_platform_info = &sensor_board_info_mt9m114,
658 .csi_if = 1,
659 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530660 .sensor_type = YUV_SENSOR,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800661};
662
Kevin Chand07220e2012-02-13 15:52:22 -0800663static struct msm_camera_sensor_flash_data flash_ov2720 = {
664 .flash_type = MSM_CAMERA_FLASH_NONE,
665};
666
Hody Hung9ba65cf2012-01-17 17:34:51 -0800667static struct msm_camera_csi_lane_params ov2720_csi_lane_params = {
668 .csi_lane_assign = 0xE4,
669 .csi_lane_mask = 0x3,
670};
671
Kevin Chand07220e2012-02-13 15:52:22 -0800672static struct msm_camera_sensor_platform_info sensor_board_info_ov2720 = {
673 .mount_angle = 0,
Azam Sadiq Pasha Kapatrala Syed92fa99c2012-11-28 18:56:19 -0800674 .cam_vreg = apq_8064_cam_vreg,
675 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Kevin Chand07220e2012-02-13 15:52:22 -0800676 .gpio_conf = &apq8064_front_cam_gpio_conf,
677 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800678 .csi_lane_params = &ov2720_csi_lane_params,
Kevin Chand07220e2012-02-13 15:52:22 -0800679};
680
681static struct msm_camera_sensor_info msm_camera_sensor_ov2720_data = {
682 .sensor_name = "ov2720",
683 .pdata = &msm_camera_csi_device_data[1],
684 .flash_data = &flash_ov2720,
685 .sensor_platform_info = &sensor_board_info_ov2720,
686 .csi_if = 1,
687 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530688 .sensor_type = BAYER_SENSOR,
Kevin Chand07220e2012-02-13 15:52:22 -0800689};
Kevin Chand07220e2012-02-13 15:52:22 -0800690
Kevin Chan94b4c832012-03-02 21:27:16 -0800691static struct platform_device msm_camera_server = {
692 .name = "msm_cam_server",
693 .id = 0,
694};
695
Kevin Chan412e9f92012-01-24 10:45:23 -0800696void __init apq8064_init_cam(void)
697{
698 msm_gpiomux_install(apq8064_cam_common_configs,
699 ARRAY_SIZE(apq8064_cam_common_configs));
700
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700701 if (machine_is_apq8064_cdp()) {
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700702 sensor_board_info_imx074.mount_angle = 0;
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700703 sensor_board_info_mt9m114.mount_angle = 0;
704 } else if (machine_is_apq8064_liquid())
Jignesh Mehtabfb1aa32012-03-16 17:23:23 -0700705 sensor_board_info_imx074.mount_angle = 180;
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700706
Kevin Chan94b4c832012-03-02 21:27:16 -0800707 platform_device_register(&msm_camera_server);
Kevin Chand07220e2012-02-13 15:52:22 -0800708 platform_device_register(&msm8960_device_i2c_mux_gsbi4);
Kevin Chan412e9f92012-01-24 10:45:23 -0800709 platform_device_register(&msm8960_device_csiphy0);
710 platform_device_register(&msm8960_device_csiphy1);
711 platform_device_register(&msm8960_device_csid0);
712 platform_device_register(&msm8960_device_csid1);
713 platform_device_register(&msm8960_device_ispif);
714 platform_device_register(&msm8960_device_vfe);
715 platform_device_register(&msm8960_device_vpe);
716}
717
718#ifdef CONFIG_I2C
719static struct i2c_board_info apq8064_camera_i2c_boardinfo[] = {
Kevin Chan412e9f92012-01-24 10:45:23 -0800720 {
721 I2C_BOARD_INFO("imx074", 0x1A),
722 .platform_data = &msm_camera_sensor_imx074_data,
723 },
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800724 {
725 I2C_BOARD_INFO("mt9m114", 0x48),
726 .platform_data = &msm_camera_sensor_mt9m114_data,
727 },
Kevin Chand07220e2012-02-13 15:52:22 -0800728 {
729 I2C_BOARD_INFO("ov2720", 0x6C),
730 .platform_data = &msm_camera_sensor_ov2720_data,
731 },
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800732 {
733 I2C_BOARD_INFO("sc628a", 0x6E),
734 },
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800735 {
736 I2C_BOARD_INFO("imx091", 0x34),
737 .platform_data = &msm_camera_sensor_imx091_data,
738 },
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700739 {
740 I2C_BOARD_INFO("s5k3l1yx", 0x20),
741 .platform_data = &msm_camera_sensor_s5k3l1yx_data,
742 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800743};
744
745struct msm_camera_board_info apq8064_camera_board_info = {
746 .board_info = apq8064_camera_i2c_boardinfo,
747 .num_i2c_board_info = ARRAY_SIZE(apq8064_camera_i2c_boardinfo),
748};
749#endif
750#endif