blob: c79f82fbc1235111a18e6536913fa8279bd98947 [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
Jack Wangb88c8c22012-07-26 11:33:36 -070019#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
Nishant Pandit221a9482012-09-03 05:36:04 +0530326static 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
359
Kevin Chan412e9f92012-01-24 10:45:23 -0800360static struct msm_bus_paths cam_bus_client_config[] = {
361 {
362 ARRAY_SIZE(cam_init_vectors),
363 cam_init_vectors,
364 },
365 {
366 ARRAY_SIZE(cam_preview_vectors),
367 cam_preview_vectors,
368 },
369 {
370 ARRAY_SIZE(cam_video_vectors),
371 cam_video_vectors,
372 },
373 {
374 ARRAY_SIZE(cam_snapshot_vectors),
375 cam_snapshot_vectors,
376 },
377 {
378 ARRAY_SIZE(cam_zsl_vectors),
379 cam_zsl_vectors,
380 },
Kiran Kumar H N1d1d3072012-07-05 13:40:13 -0700381 {
382 ARRAY_SIZE(cam_video_ls_vectors),
383 cam_video_ls_vectors,
384 },
Nishant Pandit221a9482012-09-03 05:36:04 +0530385 {
386 ARRAY_SIZE(cam_dual_vectors),
387 cam_dual_vectors,
388 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800389};
390
391static struct msm_bus_scale_pdata cam_bus_client_pdata = {
392 cam_bus_client_config,
393 ARRAY_SIZE(cam_bus_client_config),
394 .name = "msm_camera",
395};
396
397static struct msm_camera_device_platform_data msm_camera_csi_device_data[] = {
398 {
Sreesudhan Ramakrish Ramkumar5ad18cd2012-09-07 23:22:34 -0700399 .csiphy_core = 0,
Kevin Chan412e9f92012-01-24 10:45:23 -0800400 .csid_core = 0,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800401 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800402 .cam_bus_scale_table = &cam_bus_client_pdata,
403 },
404 {
Sreesudhan Ramakrish Ramkumar5ad18cd2012-09-07 23:22:34 -0700405 .csiphy_core = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800406 .csid_core = 1,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800407 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800408 .cam_bus_scale_table = &cam_bus_client_pdata,
409 },
410};
411
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700412static struct camera_vreg_t apq_8064_cam_vreg[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800413 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800414 {"cam_vio", REG_VS, 0, 0, 0},
415 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800416 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
417};
418
Kevin Chand07220e2012-02-13 15:52:22 -0800419#define CAML_RSTN PM8921_GPIO_PM_TO_SYS(28)
420#define CAMR_RSTN 34
421
Kevin Chaneb6b6072012-01-17 11:54:54 -0800422static struct gpio apq8064_common_cam_gpio[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800423};
424
425static struct gpio apq8064_back_cam_gpio[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800426 {5, GPIOF_DIR_IN, "CAMIF_MCLK"},
427 {CAML_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800428};
429
430static struct msm_gpio_set_tbl apq8064_back_cam_gpio_set_tbl[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800431 {CAML_RSTN, GPIOF_OUT_INIT_LOW, 10000},
432 {CAML_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800433};
434
435static struct msm_camera_gpio_conf apq8064_back_cam_gpio_conf = {
436 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
437 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
438 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
439 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
440 .cam_gpio_req_tbl = apq8064_back_cam_gpio,
441 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio),
442 .cam_gpio_set_tbl = apq8064_back_cam_gpio_set_tbl,
443 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio_set_tbl),
444};
445
Kevin Chand07220e2012-02-13 15:52:22 -0800446static struct gpio apq8064_front_cam_gpio[] = {
447 {4, GPIOF_DIR_IN, "CAMIF_MCLK"},
448 {12, GPIOF_DIR_IN, "CAMIF_I2C_DATA"},
449 {13, GPIOF_DIR_IN, "CAMIF_I2C_CLK"},
450 {CAMR_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
451};
452
453static struct msm_gpio_set_tbl apq8064_front_cam_gpio_set_tbl[] = {
454 {CAMR_RSTN, GPIOF_OUT_INIT_LOW, 10000},
455 {CAMR_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
456};
457
458static struct msm_camera_gpio_conf apq8064_front_cam_gpio_conf = {
459 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
460 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
461 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
462 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
463 .cam_gpio_req_tbl = apq8064_front_cam_gpio,
464 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio),
465 .cam_gpio_set_tbl = apq8064_front_cam_gpio_set_tbl,
466 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio_set_tbl),
467};
468
469static struct msm_camera_i2c_conf apq8064_back_cam_i2c_conf = {
470 .use_i2c_mux = 1,
471 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
472 .i2c_mux_mode = MODE_L,
473};
474
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800475static struct i2c_board_info msm_act_main_cam_i2c_info = {
476 I2C_BOARD_INFO("msm_actuator", 0x11),
Jignesh Mehta33394572012-02-21 19:57:41 -0800477};
478
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800479static struct msm_actuator_info msm_act_main_cam_0_info = {
480 .board_info = &msm_act_main_cam_i2c_info,
481 .cam_name = MSM_ACTUATOR_MAIN_CAM_0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800482 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
483 .vcm_pwd = 0,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800484 .vcm_enable = 0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800485};
486
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700487static struct i2c_board_info msm_act_main_cam1_i2c_info = {
488 I2C_BOARD_INFO("msm_actuator", 0x18),
489};
490
491static struct msm_actuator_info msm_act_main_cam_1_info = {
492 .board_info = &msm_act_main_cam1_i2c_info,
493 .cam_name = MSM_ACTUATOR_MAIN_CAM_1,
494 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
495 .vcm_pwd = 0,
496 .vcm_enable = 0,
497};
498
499
Kevin Chand07220e2012-02-13 15:52:22 -0800500static struct msm_camera_i2c_conf apq8064_front_cam_i2c_conf = {
501 .use_i2c_mux = 1,
502 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
503 .i2c_mux_mode = MODE_L,
504};
505
Kevin Chan412e9f92012-01-24 10:45:23 -0800506static struct msm_camera_sensor_flash_data flash_imx074 = {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800507 .flash_type = MSM_CAMERA_FLASH_LED,
508 .flash_src = &msm_flash_src
Kevin Chan412e9f92012-01-24 10:45:23 -0800509};
510
Hody Hung9ba65cf2012-01-17 17:34:51 -0800511static struct msm_camera_csi_lane_params imx074_csi_lane_params = {
512 .csi_lane_assign = 0xE4,
513 .csi_lane_mask = 0xF,
514};
515
Kevin Chan412e9f92012-01-24 10:45:23 -0800516static struct msm_camera_sensor_platform_info sensor_board_info_imx074 = {
517 .mount_angle = 90,
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700518 .cam_vreg = apq_8064_cam_vreg,
519 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Kevin Chaneb6b6072012-01-17 11:54:54 -0800520 .gpio_conf = &apq8064_back_cam_gpio_conf,
Kevin Chand07220e2012-02-13 15:52:22 -0800521 .i2c_conf = &apq8064_back_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800522 .csi_lane_params = &imx074_csi_lane_params,
Kevin Chan412e9f92012-01-24 10:45:23 -0800523};
524
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700525static struct i2c_board_info imx074_eeprom_i2c_info = {
526 I2C_BOARD_INFO("imx074_eeprom", 0x34 << 1),
527};
528
529static struct msm_eeprom_info imx074_eeprom_info = {
530 .board_info = &imx074_eeprom_i2c_info,
531 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
532};
533
Kevin Chan412e9f92012-01-24 10:45:23 -0800534static struct msm_camera_sensor_info msm_camera_sensor_imx074_data = {
535 .sensor_name = "imx074",
536 .pdata = &msm_camera_csi_device_data[0],
537 .flash_data = &flash_imx074,
538 .sensor_platform_info = &sensor_board_info_imx074,
Kevin Chan412e9f92012-01-24 10:45:23 -0800539 .csi_if = 1,
540 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530541 .sensor_type = BAYER_SENSOR,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800542 .actuator_info = &msm_act_main_cam_0_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700543 .eeprom_info = &imx074_eeprom_info,
Kevin Chan412e9f92012-01-24 10:45:23 -0800544};
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700545
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800546static struct msm_camera_csi_lane_params imx091_csi_lane_params = {
547 .csi_lane_assign = 0xE4,
548 .csi_lane_mask = 0xF,
549};
550
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800551static struct msm_camera_sensor_flash_data flash_imx091 = {
552 .flash_type = MSM_CAMERA_FLASH_NONE,
553};
554
555static struct msm_camera_sensor_platform_info sensor_board_info_imx091 = {
556 .mount_angle = 0,
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700557 .cam_vreg = apq_8064_cam_vreg,
558 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800559 .gpio_conf = &apq8064_back_cam_gpio_conf,
560 .i2c_conf = &apq8064_back_cam_i2c_conf,
561 .csi_lane_params = &imx091_csi_lane_params,
562};
563
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700564static struct i2c_board_info imx091_eeprom_i2c_info = {
565 I2C_BOARD_INFO("imx091_eeprom", 0x21),
566};
567
568static struct msm_eeprom_info imx091_eeprom_info = {
569 .board_info = &imx091_eeprom_i2c_info,
570 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
571};
572
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800573static struct msm_camera_sensor_info msm_camera_sensor_imx091_data = {
574 .sensor_name = "imx091",
575 .pdata = &msm_camera_csi_device_data[0],
576 .flash_data = &flash_imx091,
577 .sensor_platform_info = &sensor_board_info_imx091,
578 .csi_if = 1,
579 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530580 .sensor_type = BAYER_SENSOR,
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700581 .actuator_info = &msm_act_main_cam_1_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700582 .eeprom_info = &imx091_eeprom_info,
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800583};
Kevin Chan412e9f92012-01-24 10:45:23 -0800584
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700585static struct msm_camera_sensor_flash_data flash_s5k3l1yx = {
586 .flash_type = MSM_CAMERA_FLASH_NONE,
587};
588
589static struct msm_camera_csi_lane_params s5k3l1yx_csi_lane_params = {
590 .csi_lane_assign = 0xE4,
591 .csi_lane_mask = 0xF,
592};
593
594static struct msm_camera_sensor_platform_info sensor_board_info_s5k3l1yx = {
595 .mount_angle = 90,
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700596 .cam_vreg = apq_8064_cam_vreg,
597 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700598 .gpio_conf = &apq8064_back_cam_gpio_conf,
599 .i2c_conf = &apq8064_back_cam_i2c_conf,
600 .csi_lane_params = &s5k3l1yx_csi_lane_params,
601};
602
603static struct msm_camera_sensor_info msm_camera_sensor_s5k3l1yx_data = {
604 .sensor_name = "s5k3l1yx",
605 .pdata = &msm_camera_csi_device_data[0],
606 .flash_data = &flash_s5k3l1yx,
607 .sensor_platform_info = &sensor_board_info_s5k3l1yx,
608 .csi_if = 1,
609 .camera_type = BACK_CAMERA_2D,
610 .sensor_type = BAYER_SENSOR,
611};
612
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800613static struct msm_camera_sensor_flash_data flash_mt9m114 = {
614 .flash_type = MSM_CAMERA_FLASH_NONE
615};
616
Hody Hung9ba65cf2012-01-17 17:34:51 -0800617static struct msm_camera_csi_lane_params mt9m114_csi_lane_params = {
618 .csi_lane_assign = 0xE4,
619 .csi_lane_mask = 0x1,
620};
621
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800622static struct msm_camera_sensor_platform_info sensor_board_info_mt9m114 = {
623 .mount_angle = 90,
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700624 .cam_vreg = apq_8064_cam_vreg,
625 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800626 .gpio_conf = &apq8064_front_cam_gpio_conf,
627 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800628 .csi_lane_params = &mt9m114_csi_lane_params,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800629};
630
631static struct msm_camera_sensor_info msm_camera_sensor_mt9m114_data = {
632 .sensor_name = "mt9m114",
633 .pdata = &msm_camera_csi_device_data[1],
634 .flash_data = &flash_mt9m114,
635 .sensor_platform_info = &sensor_board_info_mt9m114,
636 .csi_if = 1,
637 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530638 .sensor_type = YUV_SENSOR,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800639};
640
Kevin Chand07220e2012-02-13 15:52:22 -0800641static struct msm_camera_sensor_flash_data flash_ov2720 = {
642 .flash_type = MSM_CAMERA_FLASH_NONE,
643};
644
Hody Hung9ba65cf2012-01-17 17:34:51 -0800645static struct msm_camera_csi_lane_params ov2720_csi_lane_params = {
646 .csi_lane_assign = 0xE4,
647 .csi_lane_mask = 0x3,
648};
649
Kevin Chand07220e2012-02-13 15:52:22 -0800650static struct msm_camera_sensor_platform_info sensor_board_info_ov2720 = {
651 .mount_angle = 0,
Sreesudhan Ramakrish Ramkumar923fbad2012-07-26 17:31:42 -0700652 .cam_vreg = apq_8064_cam_vreg,
653 .num_vreg = ARRAY_SIZE(apq_8064_cam_vreg),
Kevin Chand07220e2012-02-13 15:52:22 -0800654 .gpio_conf = &apq8064_front_cam_gpio_conf,
655 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800656 .csi_lane_params = &ov2720_csi_lane_params,
Kevin Chand07220e2012-02-13 15:52:22 -0800657};
658
659static struct msm_camera_sensor_info msm_camera_sensor_ov2720_data = {
660 .sensor_name = "ov2720",
661 .pdata = &msm_camera_csi_device_data[1],
662 .flash_data = &flash_ov2720,
663 .sensor_platform_info = &sensor_board_info_ov2720,
664 .csi_if = 1,
665 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530666 .sensor_type = BAYER_SENSOR,
Kevin Chand07220e2012-02-13 15:52:22 -0800667};
Kevin Chand07220e2012-02-13 15:52:22 -0800668
Kevin Chan94b4c832012-03-02 21:27:16 -0800669static struct platform_device msm_camera_server = {
670 .name = "msm_cam_server",
671 .id = 0,
672};
673
Kevin Chan412e9f92012-01-24 10:45:23 -0800674void __init apq8064_init_cam(void)
675{
676 msm_gpiomux_install(apq8064_cam_common_configs,
677 ARRAY_SIZE(apq8064_cam_common_configs));
678
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700679 if (machine_is_apq8064_cdp()) {
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700680 sensor_board_info_imx074.mount_angle = 0;
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700681 sensor_board_info_mt9m114.mount_angle = 0;
682 } else if (machine_is_apq8064_liquid())
Jignesh Mehtabfb1aa32012-03-16 17:23:23 -0700683 sensor_board_info_imx074.mount_angle = 180;
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700684
Kevin Chan94b4c832012-03-02 21:27:16 -0800685 platform_device_register(&msm_camera_server);
Kevin Chand07220e2012-02-13 15:52:22 -0800686 platform_device_register(&msm8960_device_i2c_mux_gsbi4);
Kevin Chan412e9f92012-01-24 10:45:23 -0800687 platform_device_register(&msm8960_device_csiphy0);
688 platform_device_register(&msm8960_device_csiphy1);
689 platform_device_register(&msm8960_device_csid0);
690 platform_device_register(&msm8960_device_csid1);
691 platform_device_register(&msm8960_device_ispif);
692 platform_device_register(&msm8960_device_vfe);
693 platform_device_register(&msm8960_device_vpe);
694}
695
696#ifdef CONFIG_I2C
697static struct i2c_board_info apq8064_camera_i2c_boardinfo[] = {
Kevin Chan412e9f92012-01-24 10:45:23 -0800698 {
699 I2C_BOARD_INFO("imx074", 0x1A),
700 .platform_data = &msm_camera_sensor_imx074_data,
701 },
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800702 {
703 I2C_BOARD_INFO("mt9m114", 0x48),
704 .platform_data = &msm_camera_sensor_mt9m114_data,
705 },
Kevin Chand07220e2012-02-13 15:52:22 -0800706 {
707 I2C_BOARD_INFO("ov2720", 0x6C),
708 .platform_data = &msm_camera_sensor_ov2720_data,
709 },
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800710 {
711 I2C_BOARD_INFO("sc628a", 0x6E),
712 },
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800713 {
714 I2C_BOARD_INFO("imx091", 0x34),
715 .platform_data = &msm_camera_sensor_imx091_data,
716 },
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700717 {
718 I2C_BOARD_INFO("s5k3l1yx", 0x20),
719 .platform_data = &msm_camera_sensor_s5k3l1yx_data,
720 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800721};
722
723struct msm_camera_board_info apq8064_camera_board_info = {
724 .board_info = apq8064_camera_i2c_boardinfo,
725 .num_i2c_board_info = ARRAY_SIZE(apq8064_camera_i2c_boardinfo),
726};
727#endif
728#endif