Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | ENGR00275033-1 mx6sl: pxp/v4l: port v4l2 output driver to 3.10 | Robby Cai | 2014-04-16 |
| | | | | | | | | | | | | | | | | port v4l2 output driver to 3.10 kernel - replace .ioctl with .unlocked_ioctl - add .vfl_dir flag - VFL_DIR_TX (newly introduced) for video_device - drop __devinit, __devexit, __exit and __exit_p - replace mxc_elcdif_frame_addr_setup() with pxp_show_buf(), where pan_display be called due to the adoption of mxsfb.c from community - change the fb id to be compared due to use new mxsfb.c - mark the s_crop() and s_fbuf() third parameter const - move local fbi variable to struct pxps - use module_platform_driver() Signed-off-by: Robby Cai <R63905@freescale.com> | ||
* | ENGR00273974-1 media: port mxc vout driver from 3.5.7 to 3.10 | Liu Ying | 2014-04-16 |
This is porting mxc vout driver from imx_3.5.7 kernel to imx_3.10 kernel. * Put the driver in drivers/media/platform/ directory instead of drivers/media/video/ directory, since the later one is renamed to the former one in 3.10 kernel. * Change the ipu-v3.h header file from <mach/ipu-v3.h> to <linux/ipu-v3.h>. * Change the mxc_vidioc_s_crop() function's implementation since the definition of the vidioc_s_crop() function is modified to make the last argument be constant. * Set vfl_dir to be VFL_DIR_TX since the ioctrl validity checks are improved in 3.10 kernel. * Remove 'defaut y' setting for VIDEO_MXC_OUTPUT and VIDEO_MXC_IPU_OUTPUT Kconfigs. They may be configured by kernel default configure or by user. * Make VIDEO_MXC_OUTPUT Kconfig depend on FB_MXC Kconfig since we need framebuffers to be rendered. * Make VIDEO_MXC_IPU_OUTPUT Kconfig be tristate. * Split <linux/mxc_v4l2.h> header file up into include/linux/ and include/uapi/linux/ directories so that the userspace may include the mxc_v4l2.h header file. Signed-off-by: Liu Ying <Ying.Liu@freescale.com> |