video: fbdev: s3c-fb: remove s5p64x0 related fimd codes
This patch removes fimd codes for s5p6440 and s5p6450 SoCs. Acked-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
add924f9db
commit
8340417c66
3 changed files with 1 additions and 32 deletions
|
@ -8,7 +8,6 @@ Required properties:
|
||||||
- compatible: value should be one of the following
|
- compatible: value should be one of the following
|
||||||
"samsung,s3c2443-fimd"; /* for S3C24XX SoCs */
|
"samsung,s3c2443-fimd"; /* for S3C24XX SoCs */
|
||||||
"samsung,s3c6400-fimd"; /* for S3C64XX SoCs */
|
"samsung,s3c6400-fimd"; /* for S3C64XX SoCs */
|
||||||
"samsung,s5p6440-fimd"; /* for S5P64X0 SoCs */
|
|
||||||
"samsung,s5pc100-fimd"; /* for S5PC100 SoC */
|
"samsung,s5pc100-fimd"; /* for S5PC100 SoC */
|
||||||
"samsung,s5pv210-fimd"; /* for S5PV210 SoC */
|
"samsung,s5pv210-fimd"; /* for S5PV210 SoC */
|
||||||
"samsung,exynos4210-fimd"; /* for Exynos4 SoCs */
|
"samsung,exynos4210-fimd"; /* for Exynos4 SoCs */
|
||||||
|
|
|
@ -2018,7 +2018,7 @@ config FB_TMIO_ACCELL
|
||||||
|
|
||||||
config FB_S3C
|
config FB_S3C
|
||||||
tristate "Samsung S3C framebuffer support"
|
tristate "Samsung S3C framebuffer support"
|
||||||
depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || ARCH_S5P64X0 || \
|
depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || \
|
||||||
ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
|
ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
|
||||||
select FB_CFB_FILLRECT
|
select FB_CFB_FILLRECT
|
||||||
select FB_CFB_COPYAREA
|
select FB_CFB_COPYAREA
|
||||||
|
|
|
@ -1970,33 +1970,6 @@ static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
|
|
||||||
.variant = {
|
|
||||||
.nr_windows = 3,
|
|
||||||
.vidtcon = VIDTCON0,
|
|
||||||
.wincon = WINCON(0),
|
|
||||||
.winmap = WINxMAP(0),
|
|
||||||
.keycon = WKEYCON,
|
|
||||||
.osd = VIDOSD_BASE,
|
|
||||||
.osd_stride = 16,
|
|
||||||
.buf_start = VIDW_BUF_START(0),
|
|
||||||
.buf_size = VIDW_BUF_SIZE(0),
|
|
||||||
.buf_end = VIDW_BUF_END(0),
|
|
||||||
|
|
||||||
.palette = {
|
|
||||||
[0] = 0x2400,
|
|
||||||
[1] = 0x2800,
|
|
||||||
[2] = 0x2c00,
|
|
||||||
},
|
|
||||||
|
|
||||||
.has_blendcon = 1,
|
|
||||||
.has_fixvclk = 1,
|
|
||||||
},
|
|
||||||
.win[0] = &s3c_fb_data_s5p_wins[0],
|
|
||||||
.win[1] = &s3c_fb_data_s5p_wins[1],
|
|
||||||
.win[2] = &s3c_fb_data_s5p_wins[2],
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device_id s3c_fb_driver_ids[] = {
|
static struct platform_device_id s3c_fb_driver_ids[] = {
|
||||||
{
|
{
|
||||||
.name = "s3c-fb",
|
.name = "s3c-fb",
|
||||||
|
@ -2016,9 +1989,6 @@ static struct platform_device_id s3c_fb_driver_ids[] = {
|
||||||
}, {
|
}, {
|
||||||
.name = "s3c2443-fb",
|
.name = "s3c2443-fb",
|
||||||
.driver_data = (unsigned long)&s3c_fb_data_s3c2443,
|
.driver_data = (unsigned long)&s3c_fb_data_s3c2443,
|
||||||
}, {
|
|
||||||
.name = "s5p64x0-fb",
|
|
||||||
.driver_data = (unsigned long)&s3c_fb_data_s5p64x0,
|
|
||||||
},
|
},
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue