diff options
Diffstat (limited to 'arch/arm/mach-pxa/palmz72.c')
| -rw-r--r-- | arch/arm/mach-pxa/palmz72.c | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/palmz72.c b/arch/arm/mach-pxa/palmz72.c index 3010193b081e..3b8a4f37dbbe 100644 --- a/arch/arm/mach-pxa/palmz72.c +++ b/arch/arm/mach-pxa/palmz72.c | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | #include <linux/wm97xx.h> | 30 | #include <linux/wm97xx.h> |
| 31 | #include <linux/power_supply.h> | 31 | #include <linux/power_supply.h> |
| 32 | #include <linux/usb/gpio_vbus.h> | 32 | #include <linux/usb/gpio_vbus.h> |
| 33 | #include <linux/i2c-gpio.h> | ||
| 33 | 34 | ||
| 34 | #include <asm/mach-types.h> | 35 | #include <asm/mach-types.h> |
| 35 | #include <asm/mach/arch.h> | 36 | #include <asm/mach/arch.h> |
| @@ -47,6 +48,9 @@ | |||
| 47 | #include <mach/palm27x.h> | 48 | #include <mach/palm27x.h> |
| 48 | 49 | ||
| 49 | #include <mach/pm.h> | 50 | #include <mach/pm.h> |
| 51 | #include <mach/camera.h> | ||
| 52 | |||
| 53 | #include <media/soc_camera.h> | ||
| 50 | 54 | ||
| 51 | #include "generic.h" | 55 | #include "generic.h" |
| 52 | #include "devices.h" | 56 | #include "devices.h" |
| @@ -103,6 +107,28 @@ static unsigned long palmz72_pin_config[] __initdata = { | |||
| 103 | GPIO22_GPIO, /* LCD border color */ | 107 | GPIO22_GPIO, /* LCD border color */ |
| 104 | GPIO96_GPIO, /* lcd power */ | 108 | GPIO96_GPIO, /* lcd power */ |
| 105 | 109 | ||
| 110 | /* PXA Camera */ | ||
| 111 | GPIO81_CIF_DD_0, | ||
| 112 | GPIO48_CIF_DD_5, | ||
| 113 | GPIO50_CIF_DD_3, | ||
| 114 | GPIO51_CIF_DD_2, | ||
| 115 | GPIO52_CIF_DD_4, | ||
| 116 | GPIO53_CIF_MCLK, | ||
| 117 | GPIO54_CIF_PCLK, | ||
| 118 | GPIO55_CIF_DD_1, | ||
| 119 | GPIO84_CIF_FV, | ||
| 120 | GPIO85_CIF_LV, | ||
| 121 | GPIO93_CIF_DD_6, | ||
| 122 | GPIO108_CIF_DD_7, | ||
| 123 | |||
| 124 | GPIO56_GPIO, /* OV9640 Powerdown */ | ||
| 125 | GPIO57_GPIO, /* OV9640 Reset */ | ||
| 126 | GPIO91_GPIO, /* OV9640 Power */ | ||
| 127 | |||
| 128 | /* I2C */ | ||
| 129 | GPIO117_GPIO, /* I2C_SCL */ | ||
| 130 | GPIO118_GPIO, /* I2C_SDA */ | ||
| 131 | |||
| 106 | /* Misc. */ | 132 | /* Misc. */ |
| 107 | GPIO0_GPIO | WAKEUP_ON_LEVEL_HIGH, /* power detect */ | 133 | GPIO0_GPIO | WAKEUP_ON_LEVEL_HIGH, /* power detect */ |
| 108 | GPIO88_GPIO, /* green led */ | 134 | GPIO88_GPIO, /* green led */ |
| @@ -254,6 +280,106 @@ device_initcall(palmz72_pm_init); | |||
| 254 | #endif | 280 | #endif |
| 255 | 281 | ||
| 256 | /****************************************************************************** | 282 | /****************************************************************************** |
| 283 | * SoC Camera | ||
| 284 | ******************************************************************************/ | ||
| 285 | #if defined(CONFIG_SOC_CAMERA_OV9640) || \ | ||
| 286 | defined(CONFIG_SOC_CAMERA_OV9640_MODULE) | ||
| 287 | static struct pxacamera_platform_data palmz72_pxacamera_platform_data = { | ||
| 288 | .flags = PXA_CAMERA_MASTER | PXA_CAMERA_DATAWIDTH_8 | | ||
| 289 | PXA_CAMERA_PCLK_EN | PXA_CAMERA_MCLK_EN, | ||
| 290 | .mclk_10khz = 2600, | ||
| 291 | }; | ||
| 292 | |||
| 293 | /* Board I2C devices. */ | ||
| 294 | static struct i2c_board_info palmz72_i2c_device[] = { | ||
| 295 | { | ||
| 296 | I2C_BOARD_INFO("ov9640", 0x30), | ||
| 297 | } | ||
| 298 | }; | ||
| 299 | |||
| 300 | static int palmz72_camera_power(struct device *dev, int power) | ||
| 301 | { | ||
| 302 | gpio_set_value(GPIO_NR_PALMZ72_CAM_PWDN, !power); | ||
| 303 | mdelay(50); | ||
| 304 | return 0; | ||
| 305 | } | ||
| 306 | |||
| 307 | static int palmz72_camera_reset(struct device *dev) | ||
| 308 | { | ||
| 309 | gpio_set_value(GPIO_NR_PALMZ72_CAM_RESET, 1); | ||
| 310 | mdelay(50); | ||
| 311 | gpio_set_value(GPIO_NR_PALMZ72_CAM_RESET, 0); | ||
| 312 | mdelay(50); | ||
| 313 | return 0; | ||
| 314 | } | ||
| 315 | |||
| 316 | static struct soc_camera_link palmz72_iclink = { | ||
| 317 | .bus_id = 0, /* Match id in pxa27x_device_camera in device.c */ | ||
| 318 | .board_info = &palmz72_i2c_device[0], | ||
| 319 | .i2c_adapter_id = 0, | ||
| 320 | .module_name = "ov96xx", | ||
| 321 | .power = &palmz72_camera_power, | ||
| 322 | .reset = &palmz72_camera_reset, | ||
| 323 | .flags = SOCAM_DATAWIDTH_8, | ||
| 324 | }; | ||
| 325 | |||
| 326 | static struct i2c_gpio_platform_data palmz72_i2c_bus_data = { | ||
| 327 | .sda_pin = 118, | ||
| 328 | .scl_pin = 117, | ||
| 329 | .udelay = 10, | ||
| 330 | .timeout = 100, | ||
| 331 | }; | ||
| 332 | |||
| 333 | static struct platform_device palmz72_i2c_bus_device = { | ||
| 334 | .name = "i2c-gpio", | ||
| 335 | .id = 0, /* we use this as a replacement for i2c-pxa */ | ||
| 336 | .dev = { | ||
| 337 | .platform_data = &palmz72_i2c_bus_data, | ||
| 338 | } | ||
| 339 | }; | ||
| 340 | |||
| 341 | static struct platform_device palmz72_camera = { | ||
| 342 | .name = "soc-camera-pdrv", | ||
| 343 | .id = -1, | ||
| 344 | .dev = { | ||
| 345 | .platform_data = &palmz72_iclink, | ||
| 346 | }, | ||
| 347 | }; | ||
| 348 | |||
| 349 | /* Here we request the camera GPIOs and configure them. We power up the camera | ||
| 350 | * module, deassert the reset pin, but put it into powerdown (low to no power | ||
| 351 | * consumption) mode. This allows us to later bring the module up fast. */ | ||
| 352 | static struct gpio palmz72_camera_gpios[] = { | ||
| 353 | { GPIO_NR_PALMZ72_CAM_POWER, GPIOF_INIT_HIGH,"Camera DVDD" }, | ||
| 354 | { GPIO_NR_PALMZ72_CAM_RESET, GPIOF_INIT_LOW, "Camera RESET" }, | ||
| 355 | { GPIO_NR_PALMZ72_CAM_PWDN, GPIOF_INIT_LOW, "Camera PWDN" }, | ||
| 356 | }; | ||
| 357 | |||
| 358 | static inline void __init palmz72_cam_gpio_init(void) | ||
| 359 | { | ||
| 360 | int ret; | ||
| 361 | |||
| 362 | ret = gpio_request_array(ARRAY_AND_SIZE(palmz72_camera_gpios)); | ||
| 363 | if (!ret) | ||
| 364 | gpio_free_array(ARRAY_AND_SIZE(palmz72_camera_gpios)); | ||
| 365 | else | ||
| 366 | printk(KERN_ERR "Camera GPIO init failed!\n"); | ||
| 367 | |||
| 368 | return; | ||
| 369 | } | ||
| 370 | |||
| 371 | static void __init palmz72_camera_init(void) | ||
| 372 | { | ||
| 373 | palmz72_cam_gpio_init(); | ||
| 374 | pxa_set_camera_info(&palmz72_pxacamera_platform_data); | ||
| 375 | platform_device_register(&palmz72_i2c_bus_device); | ||
| 376 | platform_device_register(&palmz72_camera); | ||
| 377 | } | ||
| 378 | #else | ||
| 379 | static inline void palmz72_camera_init(void) {} | ||
| 380 | #endif | ||
| 381 | |||
| 382 | /****************************************************************************** | ||
| 257 | * Machine init | 383 | * Machine init |
| 258 | ******************************************************************************/ | 384 | ******************************************************************************/ |
| 259 | static void __init palmz72_init(void) | 385 | static void __init palmz72_init(void) |
| @@ -276,6 +402,7 @@ static void __init palmz72_init(void) | |||
| 276 | palm27x_pmic_init(); | 402 | palm27x_pmic_init(); |
| 277 | palmz72_kpc_init(); | 403 | palmz72_kpc_init(); |
| 278 | palmz72_leds_init(); | 404 | palmz72_leds_init(); |
| 405 | palmz72_camera_init(); | ||
| 279 | } | 406 | } |
| 280 | 407 | ||
| 281 | MACHINE_START(PALMZ72, "Palm Zire72") | 408 | MACHINE_START(PALMZ72, "Palm Zire72") |
