mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
z5 Phone:add OV7690 sensor support
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
#define RK29_CAM_SENSOR_OV2640 ov2640
|
||||
#define RK29_CAM_SENSOR_OV2655 ov2655
|
||||
#define RK29_CAM_SENSOR_OV2659 ov2659
|
||||
#define RK29_CAM_SENSOR_OV7690 ov7690
|
||||
#define RK29_CAM_SENSOR_OV3640 ov3640
|
||||
#define RK29_CAM_SENSOR_OV5640 ov5640
|
||||
#define RK29_CAM_SENSOR_OV5642 ov5642
|
||||
@@ -63,6 +64,7 @@
|
||||
#define RK29_CAM_SENSOR_NAME_OV2640 "ov2640"
|
||||
#define RK29_CAM_SENSOR_NAME_OV2655 "ov2655"
|
||||
#define RK29_CAM_SENSOR_NAME_OV2659 "ov2659"
|
||||
#define RK29_CAM_SENSOR_NAME_OV7690 "ov7690"
|
||||
#define RK29_CAM_SENSOR_NAME_OV3640 "ov3640"
|
||||
#define RK29_CAM_SENSOR_NAME_OV5640 "ov5640"
|
||||
#define RK29_CAM_SENSOR_NAME_OV5642 "ov5642"
|
||||
@@ -87,6 +89,7 @@
|
||||
#define ov2640_FULL_RESOLUTION 0x200000 // 2 megapixel
|
||||
#define ov2655_FULL_RESOLUTION 0x200000 // 2 megapixel
|
||||
#define ov2659_FULL_RESOLUTION 0x200000 // 2 megapixel
|
||||
#define ov7690_FULL_RESOLUTION 0x300000 // 2 megapixel
|
||||
#define ov3640_FULL_RESOLUTION 0x300000 // 3 megapixel
|
||||
#define ov5640_FULL_RESOLUTION 0x500000 // 5 megapixel
|
||||
#define ov5642_FULL_RESOLUTION 0x500000 // 5 megapixel
|
||||
|
||||
@@ -904,6 +904,12 @@ config SOC_CAMERA_OV2659
|
||||
depends on SOC_CAMERA && I2C
|
||||
help
|
||||
This is a ov2659 camera driver
|
||||
|
||||
config SOC_CAMERA_OV7690
|
||||
tristate "ov7690 camera support"
|
||||
depends on SOC_CAMERA && I2C
|
||||
help
|
||||
This is a ov7690 camera driver
|
||||
|
||||
config SOC_CAMERA_OV9650
|
||||
tristate "ov9650 camera support"
|
||||
|
||||
@@ -92,6 +92,7 @@ obj-$(CONFIG_SOC_CAMERA_TW9910) += tw9910.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV7675) += ov7675.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV2655) += ov2655.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV2659) += ov2659.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV7690) += ov7690.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV9650) += ov9650.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV2640) += ov2640.o
|
||||
obj-$(CONFIG_SOC_CAMERA_OV3640) += ov3640.o
|
||||
|
||||
2559
drivers/media/video/ov7690.c
Normal file
2559
drivers/media/video/ov7690.c
Normal file
File diff suppressed because it is too large
Load Diff
@@ -82,6 +82,7 @@ enum {
|
||||
V4L2_IDENT_OV9640 = 264,
|
||||
V4L2_IDENT_OV6650 = 265,
|
||||
V4L2_IDENT_OV9740 = 266,
|
||||
V4L2_IDENT_OV7690 = 267,
|
||||
|
||||
/* module saa7146: reserved range 300-309 */
|
||||
V4L2_IDENT_SAA7146 = 300,
|
||||
|
||||
Reference in New Issue
Block a user