diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2012-10-01 10:39:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-05 13:27:18 -0400 |
commit | 368640827c0be2582d836cd74ae2cff03e6bfc02 (patch) | |
tree | 1012c886f4ce621b6d9284ffac81f3b79c3a95f7 /include/media | |
parent | 182b967e1119d22889e334c8f1c1b75df41f9165 (diff) |
[media] dm644x: replace the obsolete preset API by the timings API
This patch replaces the preset API by the timings API, and
appropriate changes in board file.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/davinci/vpbe.h | 14 | ||||
-rw-r--r-- | include/media/davinci/vpbe_types.h | 8 | ||||
-rw-r--r-- | include/media/davinci/vpbe_venc.h | 2 |
3 files changed, 10 insertions, 14 deletions
diff --git a/include/media/davinci/vpbe.h b/include/media/davinci/vpbe.h index 8bc1b3c0e679..a7ca4884c46c 100644 --- a/include/media/davinci/vpbe.h +++ b/include/media/davinci/vpbe.h | |||
@@ -35,7 +35,7 @@ struct osd_config_info { | |||
35 | struct vpbe_output { | 35 | struct vpbe_output { |
36 | struct v4l2_output output; | 36 | struct v4l2_output output; |
37 | /* | 37 | /* |
38 | * If output capabilities include dv_preset, list supported presets | 38 | * If output capabilities include dv_timings, list supported timings |
39 | * below | 39 | * below |
40 | */ | 40 | */ |
41 | char *subdev_name; | 41 | char *subdev_name; |
@@ -120,16 +120,16 @@ struct vpbe_device_ops { | |||
120 | unsigned int (*get_output)(struct vpbe_device *vpbe_dev); | 120 | unsigned int (*get_output)(struct vpbe_device *vpbe_dev); |
121 | 121 | ||
122 | /* Set DV preset at current output */ | 122 | /* Set DV preset at current output */ |
123 | int (*s_dv_preset)(struct vpbe_device *vpbe_dev, | 123 | int (*s_dv_timings)(struct vpbe_device *vpbe_dev, |
124 | struct v4l2_dv_preset *dv_preset); | 124 | struct v4l2_dv_timings *dv_timings); |
125 | 125 | ||
126 | /* Get DV presets supported at the output */ | 126 | /* Get DV presets supported at the output */ |
127 | int (*g_dv_preset)(struct vpbe_device *vpbe_dev, | 127 | int (*g_dv_timings)(struct vpbe_device *vpbe_dev, |
128 | struct v4l2_dv_preset *dv_preset); | 128 | struct v4l2_dv_timings *dv_timings); |
129 | 129 | ||
130 | /* Enumerate the DV Presets supported at the output */ | 130 | /* Enumerate the DV Presets supported at the output */ |
131 | int (*enum_dv_presets)(struct vpbe_device *vpbe_dev, | 131 | int (*enum_dv_timings)(struct vpbe_device *vpbe_dev, |
132 | struct v4l2_dv_enum_preset *preset_info); | 132 | struct v4l2_enum_dv_timings *timings_info); |
133 | 133 | ||
134 | /* Set std at the output */ | 134 | /* Set std at the output */ |
135 | int (*s_std)(struct vpbe_device *vpbe_dev, v4l2_std_id *std_id); | 135 | int (*s_std)(struct vpbe_device *vpbe_dev, v4l2_std_id *std_id); |
diff --git a/include/media/davinci/vpbe_types.h b/include/media/davinci/vpbe_types.h index 727f55170e41..9b85396514be 100644 --- a/include/media/davinci/vpbe_types.h +++ b/include/media/davinci/vpbe_types.h | |||
@@ -32,11 +32,6 @@ enum vpbe_enc_timings_type { | |||
32 | VPBE_ENC_TIMINGS_INVALID = 0x8, | 32 | VPBE_ENC_TIMINGS_INVALID = 0x8, |
33 | }; | 33 | }; |
34 | 34 | ||
35 | union vpbe_timings { | ||
36 | v4l2_std_id std_id; | ||
37 | unsigned int dv_preset; | ||
38 | }; | ||
39 | |||
40 | /* | 35 | /* |
41 | * struct vpbe_enc_mode_info | 36 | * struct vpbe_enc_mode_info |
42 | * @name: ptr to name string of the standard, "NTSC", "PAL" etc | 37 | * @name: ptr to name string of the standard, "NTSC", "PAL" etc |
@@ -73,7 +68,8 @@ union vpbe_timings { | |||
73 | struct vpbe_enc_mode_info { | 68 | struct vpbe_enc_mode_info { |
74 | unsigned char *name; | 69 | unsigned char *name; |
75 | enum vpbe_enc_timings_type timings_type; | 70 | enum vpbe_enc_timings_type timings_type; |
76 | union vpbe_timings timings; | 71 | v4l2_std_id std_id; |
72 | struct v4l2_dv_timings dv_timings; | ||
77 | unsigned int interlaced; | 73 | unsigned int interlaced; |
78 | unsigned int xres; | 74 | unsigned int xres; |
79 | unsigned int yres; | 75 | unsigned int yres; |
diff --git a/include/media/davinci/vpbe_venc.h b/include/media/davinci/vpbe_venc.h index 6b57334f4029..cc78c2eb16da 100644 --- a/include/media/davinci/vpbe_venc.h +++ b/include/media/davinci/vpbe_venc.h | |||
@@ -32,7 +32,7 @@ struct venc_platform_data { | |||
32 | int (*setup_pinmux)(enum v4l2_mbus_pixelcode if_type, | 32 | int (*setup_pinmux)(enum v4l2_mbus_pixelcode if_type, |
33 | int field); | 33 | int field); |
34 | int (*setup_clock)(enum vpbe_enc_timings_type type, | 34 | int (*setup_clock)(enum vpbe_enc_timings_type type, |
35 | unsigned int mode); | 35 | unsigned int pixclock); |
36 | int (*setup_if_config)(enum v4l2_mbus_pixelcode pixcode); | 36 | int (*setup_if_config)(enum v4l2_mbus_pixelcode pixcode); |
37 | /* Number of LCD outputs supported */ | 37 | /* Number of LCD outputs supported */ |
38 | int num_lcd_outputs; | 38 | int num_lcd_outputs; |