blob: 40995bbe8a8b2c758f14becc9092125da3b1849f [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,
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
Kevin Chan412e9f92012-01-24 10:45:23 -0800326static struct msm_bus_paths cam_bus_client_config[] = {
327 {
328 ARRAY_SIZE(cam_init_vectors),
329 cam_init_vectors,
330 },
331 {
332 ARRAY_SIZE(cam_preview_vectors),
333 cam_preview_vectors,
334 },
335 {
336 ARRAY_SIZE(cam_video_vectors),
337 cam_video_vectors,
338 },
339 {
340 ARRAY_SIZE(cam_snapshot_vectors),
341 cam_snapshot_vectors,
342 },
343 {
344 ARRAY_SIZE(cam_zsl_vectors),
345 cam_zsl_vectors,
346 },
Kiran Kumar H N1d1d3072012-07-05 13:40:13 -0700347 {
348 ARRAY_SIZE(cam_video_ls_vectors),
349 cam_video_ls_vectors,
350 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800351};
352
353static struct msm_bus_scale_pdata cam_bus_client_pdata = {
354 cam_bus_client_config,
355 ARRAY_SIZE(cam_bus_client_config),
356 .name = "msm_camera",
357};
358
359static struct msm_camera_device_platform_data msm_camera_csi_device_data[] = {
360 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800361 .csid_core = 0,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800362 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800363 .cam_bus_scale_table = &cam_bus_client_pdata,
364 },
365 {
Kevin Chan412e9f92012-01-24 10:45:23 -0800366 .csid_core = 1,
Kevin Chaneb6b6072012-01-17 11:54:54 -0800367 .is_vpe = 1,
Kevin Chan412e9f92012-01-24 10:45:23 -0800368 .cam_bus_scale_table = &cam_bus_client_pdata,
369 },
370};
371
Kevin Chand07220e2012-02-13 15:52:22 -0800372static struct camera_vreg_t apq_8064_back_cam_vreg[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800373 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800374 {"cam_vio", REG_VS, 0, 0, 0},
375 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800376 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
377};
378
Kevin Chand07220e2012-02-13 15:52:22 -0800379static struct camera_vreg_t apq_8064_front_cam_vreg[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800380 {"cam_vio", REG_VS, 0, 0, 0},
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800381 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
Kevin Chand07220e2012-02-13 15:52:22 -0800382 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
383 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
384};
385
386#define CAML_RSTN PM8921_GPIO_PM_TO_SYS(28)
387#define CAMR_RSTN 34
388
Kevin Chaneb6b6072012-01-17 11:54:54 -0800389static struct gpio apq8064_common_cam_gpio[] = {
Kevin Chaneb6b6072012-01-17 11:54:54 -0800390};
391
392static struct gpio apq8064_back_cam_gpio[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800393 {5, GPIOF_DIR_IN, "CAMIF_MCLK"},
394 {CAML_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800395};
396
397static struct msm_gpio_set_tbl apq8064_back_cam_gpio_set_tbl[] = {
Kevin Chand07220e2012-02-13 15:52:22 -0800398 {CAML_RSTN, GPIOF_OUT_INIT_LOW, 10000},
399 {CAML_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
Kevin Chaneb6b6072012-01-17 11:54:54 -0800400};
401
402static struct msm_camera_gpio_conf apq8064_back_cam_gpio_conf = {
403 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
404 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
405 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
406 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
407 .cam_gpio_req_tbl = apq8064_back_cam_gpio,
408 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio),
409 .cam_gpio_set_tbl = apq8064_back_cam_gpio_set_tbl,
410 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_back_cam_gpio_set_tbl),
411};
412
Kevin Chand07220e2012-02-13 15:52:22 -0800413static struct gpio apq8064_front_cam_gpio[] = {
414 {4, GPIOF_DIR_IN, "CAMIF_MCLK"},
415 {12, GPIOF_DIR_IN, "CAMIF_I2C_DATA"},
416 {13, GPIOF_DIR_IN, "CAMIF_I2C_CLK"},
417 {CAMR_RSTN, GPIOF_DIR_OUT, "CAM_RESET"},
418};
419
420static struct msm_gpio_set_tbl apq8064_front_cam_gpio_set_tbl[] = {
421 {CAMR_RSTN, GPIOF_OUT_INIT_LOW, 10000},
422 {CAMR_RSTN, GPIOF_OUT_INIT_HIGH, 10000},
423};
424
425static struct msm_camera_gpio_conf apq8064_front_cam_gpio_conf = {
426 .cam_gpiomux_conf_tbl = apq8064_cam_2d_configs,
427 .cam_gpiomux_conf_tbl_size = ARRAY_SIZE(apq8064_cam_2d_configs),
428 .cam_gpio_common_tbl = apq8064_common_cam_gpio,
429 .cam_gpio_common_tbl_size = ARRAY_SIZE(apq8064_common_cam_gpio),
430 .cam_gpio_req_tbl = apq8064_front_cam_gpio,
431 .cam_gpio_req_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio),
432 .cam_gpio_set_tbl = apq8064_front_cam_gpio_set_tbl,
433 .cam_gpio_set_tbl_size = ARRAY_SIZE(apq8064_front_cam_gpio_set_tbl),
434};
435
436static struct msm_camera_i2c_conf apq8064_back_cam_i2c_conf = {
437 .use_i2c_mux = 1,
438 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
439 .i2c_mux_mode = MODE_L,
440};
441
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800442static struct i2c_board_info msm_act_main_cam_i2c_info = {
443 I2C_BOARD_INFO("msm_actuator", 0x11),
Jignesh Mehta33394572012-02-21 19:57:41 -0800444};
445
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800446static struct msm_actuator_info msm_act_main_cam_0_info = {
447 .board_info = &msm_act_main_cam_i2c_info,
448 .cam_name = MSM_ACTUATOR_MAIN_CAM_0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800449 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
450 .vcm_pwd = 0,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800451 .vcm_enable = 0,
Jignesh Mehta33394572012-02-21 19:57:41 -0800452};
453
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700454static struct i2c_board_info msm_act_main_cam1_i2c_info = {
455 I2C_BOARD_INFO("msm_actuator", 0x18),
456};
457
458static struct msm_actuator_info msm_act_main_cam_1_info = {
459 .board_info = &msm_act_main_cam1_i2c_info,
460 .cam_name = MSM_ACTUATOR_MAIN_CAM_1,
461 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
462 .vcm_pwd = 0,
463 .vcm_enable = 0,
464};
465
466
Kevin Chand07220e2012-02-13 15:52:22 -0800467static struct msm_camera_i2c_conf apq8064_front_cam_i2c_conf = {
468 .use_i2c_mux = 1,
469 .mux_dev = &msm8960_device_i2c_mux_gsbi4,
470 .i2c_mux_mode = MODE_L,
471};
472
Kevin Chan412e9f92012-01-24 10:45:23 -0800473static struct msm_camera_sensor_flash_data flash_imx074 = {
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800474 .flash_type = MSM_CAMERA_FLASH_LED,
475 .flash_src = &msm_flash_src
Kevin Chan412e9f92012-01-24 10:45:23 -0800476};
477
Hody Hung9ba65cf2012-01-17 17:34:51 -0800478static struct msm_camera_csi_lane_params imx074_csi_lane_params = {
479 .csi_lane_assign = 0xE4,
480 .csi_lane_mask = 0xF,
481};
482
Kevin Chan412e9f92012-01-24 10:45:23 -0800483static struct msm_camera_sensor_platform_info sensor_board_info_imx074 = {
484 .mount_angle = 90,
Kevin Chand07220e2012-02-13 15:52:22 -0800485 .cam_vreg = apq_8064_back_cam_vreg,
486 .num_vreg = ARRAY_SIZE(apq_8064_back_cam_vreg),
Kevin Chaneb6b6072012-01-17 11:54:54 -0800487 .gpio_conf = &apq8064_back_cam_gpio_conf,
Kevin Chand07220e2012-02-13 15:52:22 -0800488 .i2c_conf = &apq8064_back_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800489 .csi_lane_params = &imx074_csi_lane_params,
Kevin Chan412e9f92012-01-24 10:45:23 -0800490};
491
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700492static struct i2c_board_info imx074_eeprom_i2c_info = {
493 I2C_BOARD_INFO("imx074_eeprom", 0x34 << 1),
494};
495
496static struct msm_eeprom_info imx074_eeprom_info = {
497 .board_info = &imx074_eeprom_i2c_info,
498 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
499};
500
Kevin Chan412e9f92012-01-24 10:45:23 -0800501static struct msm_camera_sensor_info msm_camera_sensor_imx074_data = {
502 .sensor_name = "imx074",
503 .pdata = &msm_camera_csi_device_data[0],
504 .flash_data = &flash_imx074,
505 .sensor_platform_info = &sensor_board_info_imx074,
Kevin Chan412e9f92012-01-24 10:45:23 -0800506 .csi_if = 1,
507 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530508 .sensor_type = BAYER_SENSOR,
Rajakumar Govindaram6627b362012-01-29 19:00:30 -0800509 .actuator_info = &msm_act_main_cam_0_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700510 .eeprom_info = &imx074_eeprom_info,
Kevin Chan412e9f92012-01-24 10:45:23 -0800511};
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700512
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800513static struct msm_camera_csi_lane_params imx091_csi_lane_params = {
514 .csi_lane_assign = 0xE4,
515 .csi_lane_mask = 0xF,
516};
517
518static struct camera_vreg_t apq_8064_imx091_vreg[] = {
519 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
520 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
521 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
522 {"cam_vio", REG_VS, 0, 0, 0},
523};
524
525static struct msm_camera_sensor_flash_data flash_imx091 = {
526 .flash_type = MSM_CAMERA_FLASH_NONE,
527};
528
529static struct msm_camera_sensor_platform_info sensor_board_info_imx091 = {
530 .mount_angle = 0,
531 .cam_vreg = apq_8064_imx091_vreg,
532 .num_vreg = ARRAY_SIZE(apq_8064_imx091_vreg),
533 .gpio_conf = &apq8064_back_cam_gpio_conf,
534 .i2c_conf = &apq8064_back_cam_i2c_conf,
535 .csi_lane_params = &imx091_csi_lane_params,
536};
537
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700538static struct i2c_board_info imx091_eeprom_i2c_info = {
539 I2C_BOARD_INFO("imx091_eeprom", 0x21),
540};
541
542static struct msm_eeprom_info imx091_eeprom_info = {
543 .board_info = &imx091_eeprom_i2c_info,
544 .bus_id = APQ_8064_GSBI4_QUP_I2C_BUS_ID,
545};
546
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800547static struct msm_camera_sensor_info msm_camera_sensor_imx091_data = {
548 .sensor_name = "imx091",
549 .pdata = &msm_camera_csi_device_data[0],
550 .flash_data = &flash_imx091,
551 .sensor_platform_info = &sensor_board_info_imx091,
552 .csi_if = 1,
553 .camera_type = BACK_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530554 .sensor_type = BAYER_SENSOR,
Jeyaprakash Soundrapandian3040c032012-04-21 01:13:29 -0700555 .actuator_info = &msm_act_main_cam_1_info,
Jeyaprakash Soundrapandian734476b2012-05-03 20:08:15 -0700556 .eeprom_info = &imx091_eeprom_info,
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800557};
Kevin Chan412e9f92012-01-24 10:45:23 -0800558
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700559static struct camera_vreg_t apq_8064_s5k3l1yx_vreg[] = {
560 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
561 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
562 {"cam_vio", REG_VS, 0, 0, 0},
563 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
564};
565
566static struct msm_camera_sensor_flash_data flash_s5k3l1yx = {
567 .flash_type = MSM_CAMERA_FLASH_NONE,
568};
569
570static struct msm_camera_csi_lane_params s5k3l1yx_csi_lane_params = {
571 .csi_lane_assign = 0xE4,
572 .csi_lane_mask = 0xF,
573};
574
575static struct msm_camera_sensor_platform_info sensor_board_info_s5k3l1yx = {
576 .mount_angle = 90,
577 .cam_vreg = apq_8064_s5k3l1yx_vreg,
578 .num_vreg = ARRAY_SIZE(apq_8064_s5k3l1yx_vreg),
579 .gpio_conf = &apq8064_back_cam_gpio_conf,
580 .i2c_conf = &apq8064_back_cam_i2c_conf,
581 .csi_lane_params = &s5k3l1yx_csi_lane_params,
582};
583
584static struct msm_camera_sensor_info msm_camera_sensor_s5k3l1yx_data = {
585 .sensor_name = "s5k3l1yx",
586 .pdata = &msm_camera_csi_device_data[0],
587 .flash_data = &flash_s5k3l1yx,
588 .sensor_platform_info = &sensor_board_info_s5k3l1yx,
589 .csi_if = 1,
590 .camera_type = BACK_CAMERA_2D,
591 .sensor_type = BAYER_SENSOR,
592};
593
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800594static struct camera_vreg_t apq_8064_mt9m114_vreg[] = {
595 {"cam_vio", REG_VS, 0, 0, 0},
596 {"cam_vdig", REG_LDO, 1200000, 1200000, 105000},
597 {"cam_vana", REG_LDO, 2800000, 2850000, 85600},
598 {"cam_vaf", REG_LDO, 2800000, 2850000, 300000},
599};
600
601static struct msm_camera_sensor_flash_data flash_mt9m114 = {
602 .flash_type = MSM_CAMERA_FLASH_NONE
603};
604
Hody Hung9ba65cf2012-01-17 17:34:51 -0800605static struct msm_camera_csi_lane_params mt9m114_csi_lane_params = {
606 .csi_lane_assign = 0xE4,
607 .csi_lane_mask = 0x1,
608};
609
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800610static struct msm_camera_sensor_platform_info sensor_board_info_mt9m114 = {
611 .mount_angle = 90,
612 .cam_vreg = apq_8064_mt9m114_vreg,
613 .num_vreg = ARRAY_SIZE(apq_8064_mt9m114_vreg),
614 .gpio_conf = &apq8064_front_cam_gpio_conf,
615 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800616 .csi_lane_params = &mt9m114_csi_lane_params,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800617};
618
619static struct msm_camera_sensor_info msm_camera_sensor_mt9m114_data = {
620 .sensor_name = "mt9m114",
621 .pdata = &msm_camera_csi_device_data[1],
622 .flash_data = &flash_mt9m114,
623 .sensor_platform_info = &sensor_board_info_mt9m114,
624 .csi_if = 1,
625 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530626 .sensor_type = YUV_SENSOR,
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800627};
628
Kevin Chand07220e2012-02-13 15:52:22 -0800629static struct msm_camera_sensor_flash_data flash_ov2720 = {
630 .flash_type = MSM_CAMERA_FLASH_NONE,
631};
632
Hody Hung9ba65cf2012-01-17 17:34:51 -0800633static struct msm_camera_csi_lane_params ov2720_csi_lane_params = {
634 .csi_lane_assign = 0xE4,
635 .csi_lane_mask = 0x3,
636};
637
Kevin Chand07220e2012-02-13 15:52:22 -0800638static struct msm_camera_sensor_platform_info sensor_board_info_ov2720 = {
639 .mount_angle = 0,
640 .cam_vreg = apq_8064_front_cam_vreg,
641 .num_vreg = ARRAY_SIZE(apq_8064_front_cam_vreg),
642 .gpio_conf = &apq8064_front_cam_gpio_conf,
643 .i2c_conf = &apq8064_front_cam_i2c_conf,
Hody Hung9ba65cf2012-01-17 17:34:51 -0800644 .csi_lane_params = &ov2720_csi_lane_params,
Kevin Chand07220e2012-02-13 15:52:22 -0800645};
646
647static struct msm_camera_sensor_info msm_camera_sensor_ov2720_data = {
648 .sensor_name = "ov2720",
649 .pdata = &msm_camera_csi_device_data[1],
650 .flash_data = &flash_ov2720,
651 .sensor_platform_info = &sensor_board_info_ov2720,
652 .csi_if = 1,
653 .camera_type = FRONT_CAMERA_2D,
Raju P.L.S.S.S.N3f4b3022012-03-29 10:09:01 +0530654 .sensor_type = BAYER_SENSOR,
Kevin Chand07220e2012-02-13 15:52:22 -0800655};
Kevin Chand07220e2012-02-13 15:52:22 -0800656
Kevin Chan94b4c832012-03-02 21:27:16 -0800657static struct platform_device msm_camera_server = {
658 .name = "msm_cam_server",
659 .id = 0,
660};
661
Kevin Chan412e9f92012-01-24 10:45:23 -0800662void __init apq8064_init_cam(void)
663{
664 msm_gpiomux_install(apq8064_cam_common_configs,
665 ARRAY_SIZE(apq8064_cam_common_configs));
666
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700667 if (machine_is_apq8064_cdp()) {
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700668 sensor_board_info_imx074.mount_angle = 0;
Sreesudhan Ramakrish Ramkumar6f25eb92012-04-10 09:49:47 -0700669 sensor_board_info_mt9m114.mount_angle = 0;
670 } else if (machine_is_apq8064_liquid())
Jignesh Mehtabfb1aa32012-03-16 17:23:23 -0700671 sensor_board_info_imx074.mount_angle = 180;
Sreesudhan Ramakrish Ramkumar3f06a1b2012-03-15 18:44:56 -0700672
Kevin Chan94b4c832012-03-02 21:27:16 -0800673 platform_device_register(&msm_camera_server);
Kevin Chand07220e2012-02-13 15:52:22 -0800674 platform_device_register(&msm8960_device_i2c_mux_gsbi4);
Kevin Chan412e9f92012-01-24 10:45:23 -0800675 platform_device_register(&msm8960_device_csiphy0);
676 platform_device_register(&msm8960_device_csiphy1);
677 platform_device_register(&msm8960_device_csid0);
678 platform_device_register(&msm8960_device_csid1);
679 platform_device_register(&msm8960_device_ispif);
680 platform_device_register(&msm8960_device_vfe);
681 platform_device_register(&msm8960_device_vpe);
682}
683
684#ifdef CONFIG_I2C
685static struct i2c_board_info apq8064_camera_i2c_boardinfo[] = {
Kevin Chan412e9f92012-01-24 10:45:23 -0800686 {
687 I2C_BOARD_INFO("imx074", 0x1A),
688 .platform_data = &msm_camera_sensor_imx074_data,
689 },
Sreesudhan Ramakrish Ramkumar6c6f57c2012-02-21 15:12:44 -0800690 {
691 I2C_BOARD_INFO("mt9m114", 0x48),
692 .platform_data = &msm_camera_sensor_mt9m114_data,
693 },
Kevin Chand07220e2012-02-13 15:52:22 -0800694 {
695 I2C_BOARD_INFO("ov2720", 0x6C),
696 .platform_data = &msm_camera_sensor_ov2720_data,
697 },
Jeyaprakash Soundrapandiana1b3c532012-02-29 20:33:30 -0800698 {
699 I2C_BOARD_INFO("sc628a", 0x6E),
700 },
Sreesudhan Ramakrish Ramkumar3381da72012-01-27 08:08:32 -0800701 {
702 I2C_BOARD_INFO("imx091", 0x34),
703 .platform_data = &msm_camera_sensor_imx091_data,
704 },
Sreesudhan Ramakrish Ramkumar8002a792012-04-09 17:42:58 -0700705 {
706 I2C_BOARD_INFO("s5k3l1yx", 0x20),
707 .platform_data = &msm_camera_sensor_s5k3l1yx_data,
708 },
Kevin Chan412e9f92012-01-24 10:45:23 -0800709};
710
711struct msm_camera_board_info apq8064_camera_board_info = {
712 .board_info = apq8064_camera_i2c_boardinfo,
713 .num_i2c_board_info = ARRAY_SIZE(apq8064_camera_i2c_boardinfo),
714};
715#endif
716#endif