Use dentry_path() to create full path to inode object
[pohmelfs.git] / drivers / media / video / davinci / vpbe_venc.c
blob00e80f59d5d5339c6f0e835e9f82103d328be7f5
1 /*
2 * Copyright (C) 2010 Texas Instruments Inc
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation version 2.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/ctype.h>
21 #include <linux/delay.h>
22 #include <linux/device.h>
23 #include <linux/interrupt.h>
24 #include <linux/platform_device.h>
25 #include <linux/videodev2.h>
26 #include <linux/slab.h>
28 #include <mach/hardware.h>
29 #include <mach/mux.h>
30 #include <mach/io.h>
31 #include <mach/i2c.h>
33 #include <linux/io.h>
35 #include <media/davinci/vpbe_types.h>
36 #include <media/davinci/vpbe_venc.h>
37 #include <media/davinci/vpss.h>
38 #include <media/v4l2-device.h>
40 #include "vpbe_venc_regs.h"
42 #define MODULE_NAME VPBE_VENC_SUBDEV_NAME
44 static int debug = 2;
45 module_param(debug, int, 0644);
46 MODULE_PARM_DESC(debug, "Debug level 0-2");
48 struct venc_state {
49 struct v4l2_subdev sd;
50 struct venc_callback *callback;
51 struct venc_platform_data *pdata;
52 struct device *pdev;
53 u32 output;
54 v4l2_std_id std;
55 spinlock_t lock;
56 void __iomem *venc_base;
57 void __iomem *vdaccfg_reg;
60 static inline struct venc_state *to_state(struct v4l2_subdev *sd)
62 return container_of(sd, struct venc_state, sd);
65 static inline u32 venc_read(struct v4l2_subdev *sd, u32 offset)
67 struct venc_state *venc = to_state(sd);
69 return readl(venc->venc_base + offset);
72 static inline u32 venc_write(struct v4l2_subdev *sd, u32 offset, u32 val)
74 struct venc_state *venc = to_state(sd);
76 writel(val, (venc->venc_base + offset));
78 return val;
81 static inline u32 venc_modify(struct v4l2_subdev *sd, u32 offset,
82 u32 val, u32 mask)
84 u32 new_val = (venc_read(sd, offset) & ~mask) | (val & mask);
86 venc_write(sd, offset, new_val);
88 return new_val;
91 static inline u32 vdaccfg_write(struct v4l2_subdev *sd, u32 val)
93 struct venc_state *venc = to_state(sd);
95 writel(val, venc->vdaccfg_reg);
97 val = readl(venc->vdaccfg_reg);
99 return val;
102 #define VDAC_COMPONENT 0x543
103 #define VDAC_S_VIDEO 0x210
104 /* This function sets the dac of the VPBE for various outputs
106 static int venc_set_dac(struct v4l2_subdev *sd, u32 out_index)
108 switch (out_index) {
109 case 0:
110 v4l2_dbg(debug, 1, sd, "Setting output to Composite\n");
111 venc_write(sd, VENC_DACSEL, 0);
112 break;
113 case 1:
114 v4l2_dbg(debug, 1, sd, "Setting output to Component\n");
115 venc_write(sd, VENC_DACSEL, VDAC_COMPONENT);
116 break;
117 case 2:
118 v4l2_dbg(debug, 1, sd, "Setting output to S-video\n");
119 venc_write(sd, VENC_DACSEL, VDAC_S_VIDEO);
120 break;
121 default:
122 return -EINVAL;
125 return 0;
128 static void venc_enabledigitaloutput(struct v4l2_subdev *sd, int benable)
130 struct venc_state *venc = to_state(sd);
131 struct venc_platform_data *pdata = venc->pdata;
132 v4l2_dbg(debug, 2, sd, "venc_enabledigitaloutput\n");
134 if (benable) {
135 venc_write(sd, VENC_VMOD, 0);
136 venc_write(sd, VENC_CVBS, 0);
137 venc_write(sd, VENC_LCDOUT, 0);
138 venc_write(sd, VENC_HSPLS, 0);
139 venc_write(sd, VENC_HSTART, 0);
140 venc_write(sd, VENC_HVALID, 0);
141 venc_write(sd, VENC_HINT, 0);
142 venc_write(sd, VENC_VSPLS, 0);
143 venc_write(sd, VENC_VSTART, 0);
144 venc_write(sd, VENC_VVALID, 0);
145 venc_write(sd, VENC_VINT, 0);
146 venc_write(sd, VENC_YCCCTL, 0);
147 venc_write(sd, VENC_DACSEL, 0);
149 } else {
150 venc_write(sd, VENC_VMOD, 0);
151 /* disable VCLK output pin enable */
152 venc_write(sd, VENC_VIDCTL, 0x141);
154 /* Disable output sync pins */
155 venc_write(sd, VENC_SYNCCTL, 0);
157 /* Disable DCLOCK */
158 venc_write(sd, VENC_DCLKCTL, 0);
159 venc_write(sd, VENC_DRGBX1, 0x0000057C);
161 /* Disable LCD output control (accepting default polarity) */
162 venc_write(sd, VENC_LCDOUT, 0);
163 if (pdata->venc_type != VPBE_VERSION_3)
164 venc_write(sd, VENC_CMPNT, 0x100);
165 venc_write(sd, VENC_HSPLS, 0);
166 venc_write(sd, VENC_HINT, 0);
167 venc_write(sd, VENC_HSTART, 0);
168 venc_write(sd, VENC_HVALID, 0);
170 venc_write(sd, VENC_VSPLS, 0);
171 venc_write(sd, VENC_VINT, 0);
172 venc_write(sd, VENC_VSTART, 0);
173 venc_write(sd, VENC_VVALID, 0);
175 venc_write(sd, VENC_HSDLY, 0);
176 venc_write(sd, VENC_VSDLY, 0);
178 venc_write(sd, VENC_YCCCTL, 0);
179 venc_write(sd, VENC_VSTARTA, 0);
181 /* Set OSD clock and OSD Sync Adavance registers */
182 venc_write(sd, VENC_OSDCLK0, 1);
183 venc_write(sd, VENC_OSDCLK1, 2);
187 #define VDAC_CONFIG_SD_V3 0x0E21A6B6
188 #define VDAC_CONFIG_SD_V2 0x081141CF
190 * setting NTSC mode
192 static int venc_set_ntsc(struct v4l2_subdev *sd)
194 u32 val;
195 struct venc_state *venc = to_state(sd);
196 struct venc_platform_data *pdata = venc->pdata;
198 v4l2_dbg(debug, 2, sd, "venc_set_ntsc\n");
200 /* Setup clock at VPSS & VENC for SD */
201 vpss_enable_clock(VPSS_VENC_CLOCK_SEL, 1);
202 if (pdata->setup_clock(VPBE_ENC_STD, V4L2_STD_525_60) < 0)
203 return -EINVAL;
205 venc_enabledigitaloutput(sd, 0);
207 if (pdata->venc_type == VPBE_VERSION_3) {
208 venc_write(sd, VENC_CLKCTL, 0x01);
209 venc_write(sd, VENC_VIDCTL, 0);
210 val = vdaccfg_write(sd, VDAC_CONFIG_SD_V3);
211 } else if (pdata->venc_type == VPBE_VERSION_2) {
212 venc_write(sd, VENC_CLKCTL, 0x01);
213 venc_write(sd, VENC_VIDCTL, 0);
214 vdaccfg_write(sd, VDAC_CONFIG_SD_V2);
215 } else {
216 /* to set VENC CLK DIV to 1 - final clock is 54 MHz */
217 venc_modify(sd, VENC_VIDCTL, 0, 1 << 1);
218 /* Set REC656 Mode */
219 venc_write(sd, VENC_YCCCTL, 0x1);
220 venc_modify(sd, VENC_VDPRO, 0, VENC_VDPRO_DAFRQ);
221 venc_modify(sd, VENC_VDPRO, 0, VENC_VDPRO_DAUPS);
224 venc_write(sd, VENC_VMOD, 0);
225 venc_modify(sd, VENC_VMOD, (1 << VENC_VMOD_VIE_SHIFT),
226 VENC_VMOD_VIE);
227 venc_modify(sd, VENC_VMOD, (0 << VENC_VMOD_VMD), VENC_VMOD_VMD);
228 venc_modify(sd, VENC_VMOD, (0 << VENC_VMOD_TVTYP_SHIFT),
229 VENC_VMOD_TVTYP);
230 venc_write(sd, VENC_DACTST, 0x0);
231 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
233 return 0;
237 * setting PAL mode
239 static int venc_set_pal(struct v4l2_subdev *sd)
241 struct venc_state *venc = to_state(sd);
242 struct venc_platform_data *pdata = venc->pdata;
244 v4l2_dbg(debug, 2, sd, "venc_set_pal\n");
246 /* Setup clock at VPSS & VENC for SD */
247 vpss_enable_clock(VPSS_VENC_CLOCK_SEL, 1);
248 if (venc->pdata->setup_clock(VPBE_ENC_STD, V4L2_STD_625_50) < 0)
249 return -EINVAL;
251 venc_enabledigitaloutput(sd, 0);
253 if (pdata->venc_type == VPBE_VERSION_3) {
254 venc_write(sd, VENC_CLKCTL, 0x1);
255 venc_write(sd, VENC_VIDCTL, 0);
256 vdaccfg_write(sd, VDAC_CONFIG_SD_V3);
257 } else if (pdata->venc_type == VPBE_VERSION_2) {
258 venc_write(sd, VENC_CLKCTL, 0x1);
259 venc_write(sd, VENC_VIDCTL, 0);
260 vdaccfg_write(sd, VDAC_CONFIG_SD_V2);
261 } else {
262 /* to set VENC CLK DIV to 1 - final clock is 54 MHz */
263 venc_modify(sd, VENC_VIDCTL, 0, 1 << 1);
264 /* Set REC656 Mode */
265 venc_write(sd, VENC_YCCCTL, 0x1);
268 venc_modify(sd, VENC_SYNCCTL, 1 << VENC_SYNCCTL_OVD_SHIFT,
269 VENC_SYNCCTL_OVD);
270 venc_write(sd, VENC_VMOD, 0);
271 venc_modify(sd, VENC_VMOD,
272 (1 << VENC_VMOD_VIE_SHIFT),
273 VENC_VMOD_VIE);
274 venc_modify(sd, VENC_VMOD,
275 (0 << VENC_VMOD_VMD), VENC_VMOD_VMD);
276 venc_modify(sd, VENC_VMOD,
277 (1 << VENC_VMOD_TVTYP_SHIFT),
278 VENC_VMOD_TVTYP);
279 venc_write(sd, VENC_DACTST, 0x0);
280 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
282 return 0;
285 #define VDAC_CONFIG_HD_V2 0x081141EF
287 * venc_set_480p59_94
289 * This function configures the video encoder to EDTV(525p) component setting.
291 static int venc_set_480p59_94(struct v4l2_subdev *sd)
293 struct venc_state *venc = to_state(sd);
294 struct venc_platform_data *pdata = venc->pdata;
296 v4l2_dbg(debug, 2, sd, "venc_set_480p59_94\n");
297 if ((pdata->venc_type != VPBE_VERSION_1) &&
298 (pdata->venc_type != VPBE_VERSION_2))
299 return -EINVAL;
301 /* Setup clock at VPSS & VENC for SD */
302 if (pdata->setup_clock(VPBE_ENC_DV_PRESET, V4L2_DV_480P59_94) < 0)
303 return -EINVAL;
305 venc_enabledigitaloutput(sd, 0);
307 if (pdata->venc_type == VPBE_VERSION_2)
308 vdaccfg_write(sd, VDAC_CONFIG_HD_V2);
309 venc_write(sd, VENC_OSDCLK0, 0);
310 venc_write(sd, VENC_OSDCLK1, 1);
312 if (pdata->venc_type == VPBE_VERSION_1) {
313 venc_modify(sd, VENC_VDPRO, VENC_VDPRO_DAFRQ,
314 VENC_VDPRO_DAFRQ);
315 venc_modify(sd, VENC_VDPRO, VENC_VDPRO_DAUPS,
316 VENC_VDPRO_DAUPS);
319 venc_write(sd, VENC_VMOD, 0);
320 venc_modify(sd, VENC_VMOD, (1 << VENC_VMOD_VIE_SHIFT),
321 VENC_VMOD_VIE);
322 venc_modify(sd, VENC_VMOD, VENC_VMOD_HDMD, VENC_VMOD_HDMD);
323 venc_modify(sd, VENC_VMOD, (HDTV_525P << VENC_VMOD_TVTYP_SHIFT),
324 VENC_VMOD_TVTYP);
325 venc_modify(sd, VENC_VMOD, VENC_VMOD_VDMD_YCBCR8 <<
326 VENC_VMOD_VDMD_SHIFT, VENC_VMOD_VDMD);
328 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
330 return 0;
334 * venc_set_625p
336 * This function configures the video encoder to HDTV(625p) component setting
338 static int venc_set_576p50(struct v4l2_subdev *sd)
340 struct venc_state *venc = to_state(sd);
341 struct venc_platform_data *pdata = venc->pdata;
343 v4l2_dbg(debug, 2, sd, "venc_set_576p50\n");
345 if ((pdata->venc_type != VPBE_VERSION_1) &&
346 (pdata->venc_type != VPBE_VERSION_2))
347 return -EINVAL;
348 /* Setup clock at VPSS & VENC for SD */
349 if (pdata->setup_clock(VPBE_ENC_DV_PRESET, V4L2_DV_576P50) < 0)
350 return -EINVAL;
352 venc_enabledigitaloutput(sd, 0);
354 if (pdata->venc_type == VPBE_VERSION_2)
355 vdaccfg_write(sd, VDAC_CONFIG_HD_V2);
357 venc_write(sd, VENC_OSDCLK0, 0);
358 venc_write(sd, VENC_OSDCLK1, 1);
360 if (pdata->venc_type == VPBE_VERSION_1) {
361 venc_modify(sd, VENC_VDPRO, VENC_VDPRO_DAFRQ,
362 VENC_VDPRO_DAFRQ);
363 venc_modify(sd, VENC_VDPRO, VENC_VDPRO_DAUPS,
364 VENC_VDPRO_DAUPS);
367 venc_write(sd, VENC_VMOD, 0);
368 venc_modify(sd, VENC_VMOD, (1 << VENC_VMOD_VIE_SHIFT),
369 VENC_VMOD_VIE);
370 venc_modify(sd, VENC_VMOD, VENC_VMOD_HDMD, VENC_VMOD_HDMD);
371 venc_modify(sd, VENC_VMOD, (HDTV_625P << VENC_VMOD_TVTYP_SHIFT),
372 VENC_VMOD_TVTYP);
374 venc_modify(sd, VENC_VMOD, VENC_VMOD_VDMD_YCBCR8 <<
375 VENC_VMOD_VDMD_SHIFT, VENC_VMOD_VDMD);
376 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
378 return 0;
382 * venc_set_720p60_internal - Setup 720p60 in venc for dm365 only
384 static int venc_set_720p60_internal(struct v4l2_subdev *sd)
386 struct venc_state *venc = to_state(sd);
387 struct venc_platform_data *pdata = venc->pdata;
389 if (pdata->setup_clock(VPBE_ENC_DV_PRESET, V4L2_DV_720P60) < 0)
390 return -EINVAL;
392 venc_enabledigitaloutput(sd, 0);
394 venc_write(sd, VENC_OSDCLK0, 0);
395 venc_write(sd, VENC_OSDCLK1, 1);
397 venc_write(sd, VENC_VMOD, 0);
398 /* DM365 component HD mode */
399 venc_modify(sd, VENC_VMOD, (1 << VENC_VMOD_VIE_SHIFT),
400 VENC_VMOD_VIE);
401 venc_modify(sd, VENC_VMOD, VENC_VMOD_HDMD, VENC_VMOD_HDMD);
402 venc_modify(sd, VENC_VMOD, (HDTV_720P << VENC_VMOD_TVTYP_SHIFT),
403 VENC_VMOD_TVTYP);
404 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
405 venc_write(sd, VENC_XHINTVL, 0);
406 return 0;
410 * venc_set_1080i30_internal - Setup 1080i30 in venc for dm365 only
412 static int venc_set_1080i30_internal(struct v4l2_subdev *sd)
414 struct venc_state *venc = to_state(sd);
415 struct venc_platform_data *pdata = venc->pdata;
417 if (pdata->setup_clock(VPBE_ENC_DV_PRESET, V4L2_DV_1080P30) < 0)
418 return -EINVAL;
420 venc_enabledigitaloutput(sd, 0);
422 venc_write(sd, VENC_OSDCLK0, 0);
423 venc_write(sd, VENC_OSDCLK1, 1);
426 venc_write(sd, VENC_VMOD, 0);
427 /* DM365 component HD mode */
428 venc_modify(sd, VENC_VMOD, (1 << VENC_VMOD_VIE_SHIFT),
429 VENC_VMOD_VIE);
430 venc_modify(sd, VENC_VMOD, VENC_VMOD_HDMD, VENC_VMOD_HDMD);
431 venc_modify(sd, VENC_VMOD, (HDTV_1080I << VENC_VMOD_TVTYP_SHIFT),
432 VENC_VMOD_TVTYP);
433 venc_modify(sd, VENC_VMOD, VENC_VMOD_VENC, VENC_VMOD_VENC);
434 venc_write(sd, VENC_XHINTVL, 0);
435 return 0;
438 static int venc_s_std_output(struct v4l2_subdev *sd, v4l2_std_id norm)
440 v4l2_dbg(debug, 1, sd, "venc_s_std_output\n");
442 if (norm & V4L2_STD_525_60)
443 return venc_set_ntsc(sd);
444 else if (norm & V4L2_STD_625_50)
445 return venc_set_pal(sd);
447 return -EINVAL;
450 static int venc_s_dv_preset(struct v4l2_subdev *sd,
451 struct v4l2_dv_preset *dv_preset)
453 struct venc_state *venc = to_state(sd);
454 int ret;
456 v4l2_dbg(debug, 1, sd, "venc_s_dv_preset\n");
458 if (dv_preset->preset == V4L2_DV_576P50)
459 return venc_set_576p50(sd);
460 else if (dv_preset->preset == V4L2_DV_480P59_94)
461 return venc_set_480p59_94(sd);
462 else if ((dv_preset->preset == V4L2_DV_720P60) &&
463 (venc->pdata->venc_type == VPBE_VERSION_2)) {
464 /* TBD setup internal 720p mode here */
465 ret = venc_set_720p60_internal(sd);
466 /* for DM365 VPBE, there is DAC inside */
467 vdaccfg_write(sd, VDAC_CONFIG_HD_V2);
468 return ret;
469 } else if ((dv_preset->preset == V4L2_DV_1080I30) &&
470 (venc->pdata->venc_type == VPBE_VERSION_2)) {
471 /* TBD setup internal 1080i mode here */
472 ret = venc_set_1080i30_internal(sd);
473 /* for DM365 VPBE, there is DAC inside */
474 vdaccfg_write(sd, VDAC_CONFIG_HD_V2);
475 return ret;
477 return -EINVAL;
480 static int venc_s_routing(struct v4l2_subdev *sd, u32 input, u32 output,
481 u32 config)
483 struct venc_state *venc = to_state(sd);
484 int ret;
486 v4l2_dbg(debug, 1, sd, "venc_s_routing\n");
488 ret = venc_set_dac(sd, output);
489 if (!ret)
490 venc->output = output;
492 return ret;
495 static long venc_ioctl(struct v4l2_subdev *sd,
496 unsigned int cmd,
497 void *arg)
499 u32 val;
501 switch (cmd) {
502 case VENC_GET_FLD:
503 val = venc_read(sd, VENC_VSTAT);
504 *((int *)arg) = ((val & VENC_VSTAT_FIDST) ==
505 VENC_VSTAT_FIDST);
506 break;
507 default:
508 v4l2_err(sd, "Wrong IOCTL cmd\n");
509 break;
512 return 0;
515 static const struct v4l2_subdev_core_ops venc_core_ops = {
516 .ioctl = venc_ioctl,
519 static const struct v4l2_subdev_video_ops venc_video_ops = {
520 .s_routing = venc_s_routing,
521 .s_std_output = venc_s_std_output,
522 .s_dv_preset = venc_s_dv_preset,
525 static const struct v4l2_subdev_ops venc_ops = {
526 .core = &venc_core_ops,
527 .video = &venc_video_ops,
530 static int venc_initialize(struct v4l2_subdev *sd)
532 struct venc_state *venc = to_state(sd);
533 int ret;
535 /* Set default to output to composite and std to NTSC */
536 venc->output = 0;
537 venc->std = V4L2_STD_525_60;
539 ret = venc_s_routing(sd, 0, venc->output, 0);
540 if (ret < 0) {
541 v4l2_err(sd, "Error setting output during init\n");
542 return -EINVAL;
545 ret = venc_s_std_output(sd, venc->std);
546 if (ret < 0) {
547 v4l2_err(sd, "Error setting std during init\n");
548 return -EINVAL;
551 return ret;
554 static int venc_device_get(struct device *dev, void *data)
556 struct platform_device *pdev = to_platform_device(dev);
557 struct venc_state **venc = data;
559 if (strcmp(MODULE_NAME, pdev->name) == 0)
560 *venc = platform_get_drvdata(pdev);
562 return 0;
565 struct v4l2_subdev *venc_sub_dev_init(struct v4l2_device *v4l2_dev,
566 const char *venc_name)
568 struct venc_state *venc;
569 int err;
571 err = bus_for_each_dev(&platform_bus_type, NULL, &venc,
572 venc_device_get);
573 if (venc == NULL)
574 return NULL;
576 v4l2_subdev_init(&venc->sd, &venc_ops);
578 strcpy(venc->sd.name, venc_name);
579 if (v4l2_device_register_subdev(v4l2_dev, &venc->sd) < 0) {
580 v4l2_err(v4l2_dev,
581 "vpbe unable to register venc sub device\n");
582 return NULL;
584 if (venc_initialize(&venc->sd)) {
585 v4l2_err(v4l2_dev,
586 "vpbe venc initialization failed\n");
587 return NULL;
590 return &venc->sd;
592 EXPORT_SYMBOL(venc_sub_dev_init);
594 static int venc_probe(struct platform_device *pdev)
596 struct venc_state *venc;
597 struct resource *res;
598 int ret;
600 venc = kzalloc(sizeof(struct venc_state), GFP_KERNEL);
601 if (venc == NULL)
602 return -ENOMEM;
604 venc->pdev = &pdev->dev;
605 venc->pdata = pdev->dev.platform_data;
606 if (NULL == venc->pdata) {
607 dev_err(venc->pdev, "Unable to get platform data for"
608 " VENC sub device");
609 ret = -ENOENT;
610 goto free_mem;
612 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
613 if (!res) {
614 dev_err(venc->pdev,
615 "Unable to get VENC register address map\n");
616 ret = -ENODEV;
617 goto free_mem;
620 if (!request_mem_region(res->start, resource_size(res), "venc")) {
621 dev_err(venc->pdev, "Unable to reserve VENC MMIO region\n");
622 ret = -ENODEV;
623 goto free_mem;
626 venc->venc_base = ioremap_nocache(res->start, resource_size(res));
627 if (!venc->venc_base) {
628 dev_err(venc->pdev, "Unable to map VENC IO space\n");
629 ret = -ENODEV;
630 goto release_venc_mem_region;
633 if (venc->pdata->venc_type != VPBE_VERSION_1) {
634 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
635 if (!res) {
636 dev_err(venc->pdev,
637 "Unable to get VDAC_CONFIG address map\n");
638 ret = -ENODEV;
639 goto unmap_venc_io;
642 if (!request_mem_region(res->start,
643 resource_size(res), "venc")) {
644 dev_err(venc->pdev,
645 "Unable to reserve VDAC_CONFIG MMIO region\n");
646 ret = -ENODEV;
647 goto unmap_venc_io;
650 venc->vdaccfg_reg = ioremap_nocache(res->start,
651 resource_size(res));
652 if (!venc->vdaccfg_reg) {
653 dev_err(venc->pdev,
654 "Unable to map VDAC_CONFIG IO space\n");
655 ret = -ENODEV;
656 goto release_vdaccfg_mem_region;
659 spin_lock_init(&venc->lock);
660 platform_set_drvdata(pdev, venc);
661 dev_notice(venc->pdev, "VENC sub device probe success\n");
662 return 0;
664 release_vdaccfg_mem_region:
665 release_mem_region(res->start, resource_size(res));
666 unmap_venc_io:
667 iounmap(venc->venc_base);
668 release_venc_mem_region:
669 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
670 release_mem_region(res->start, resource_size(res));
671 free_mem:
672 kfree(venc);
673 return ret;
676 static int venc_remove(struct platform_device *pdev)
678 struct venc_state *venc = platform_get_drvdata(pdev);
679 struct resource *res;
681 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
682 iounmap((void *)venc->venc_base);
683 release_mem_region(res->start, resource_size(res));
684 if (venc->pdata->venc_type != VPBE_VERSION_1) {
685 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
686 iounmap((void *)venc->vdaccfg_reg);
687 release_mem_region(res->start, resource_size(res));
689 kfree(venc);
691 return 0;
694 static struct platform_driver venc_driver = {
695 .probe = venc_probe,
696 .remove = venc_remove,
697 .driver = {
698 .name = MODULE_NAME,
699 .owner = THIS_MODULE,
703 module_platform_driver(venc_driver);
705 MODULE_LICENSE("GPL");
706 MODULE_DESCRIPTION("VPBE VENC Driver");
707 MODULE_AUTHOR("Texas Instruments");