Hi Dave,
this patch set fixes minor issues and also includes exception codes and code clean.
Highlights: - fix modesetting - check pixel format specific to Exynos - hardware overlay disabling - plane's crtc updating - add exception codes and code clean
The following changes since commit 350352dfef5028225b73994d304a38a4050d894b:
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux into drm-fixes (2012-09-03 11:29:56 +0900)
are available in the git repository at:
git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-fixes
if there is any problem, please let me know.
Thanks, Inki Dae
Inki Dae (11): drm/exynos: added device object to subdrv's remove callback as argument drm/exynos: separated subdrv_probe function into two parts. drm/exynos: fixed page align bug. drm/exynos: separeated fimd_power_on into some parts. drm/exynos: fixed duplicated mode setting. drm/exynos: add wait_for_vblank callback interface. drm/exynos: make sure that hardware overlay for fimd is disabled drm/exynos: make sure that hardware overlay for hdmi is disabled drm/exynos: check NV12M format specific to Exynos properly drm/exynos: update crtc to plane safely drm/exynos: Disable plane when released
Sachin Kamat (9): drm/exynos: Remove redundant check in exynos_hdmi.c file drm/exynos: Remove redundant check in exynos_drm_fimd.c file drm/exynos: Use devm_kzalloc in exynos_drm_vidi.c file drm/exynos: Use devm_kzalloc in exynos_drm_hdmi.c file drm/exynos: Use devm_* functions in exynos_drm_g2d.c file drm/exynos: Add dependency for G2D in Kconfig drm/exynos: Make g2d_pm_ops static drm/exynos: Add missing braces around sizeof in exynos_hdmi.c drm/exynos: Add missing braces around sizeof in exynos_mixer.c
Thomas Meyer (1): drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1]
drivers/gpu/drm/exynos/Kconfig | 2 +- drivers/gpu/drm/exynos/exynos_drm_connector.c | 41 +++++++++- drivers/gpu/drm/exynos/exynos_drm_connector.h | 2 + drivers/gpu/drm/exynos/exynos_drm_core.c | 100 +++++++++++++++------- drivers/gpu/drm/exynos/exynos_drm_crtc.c | 3 +- drivers/gpu/drm/exynos/exynos_drm_drv.h | 19 ++++- drivers/gpu/drm/exynos/exynos_drm_encoder.c | 114 ++++++++++++++++++++++--- drivers/gpu/drm/exynos/exynos_drm_fb.c | 65 +++++++++++++- drivers/gpu/drm/exynos/exynos_drm_fb.h | 20 ++--- drivers/gpu/drm/exynos/exynos_drm_fbdev.c | 3 + drivers/gpu/drm/exynos/exynos_drm_fimd.c | 79 ++++++++++++------ drivers/gpu/drm/exynos/exynos_drm_g2d.c | 52 +++--------- drivers/gpu/drm/exynos/exynos_drm_gem.c | 4 +- drivers/gpu/drm/exynos/exynos_drm_hdmi.c | 14 +++- drivers/gpu/drm/exynos/exynos_drm_hdmi.h | 1 + drivers/gpu/drm/exynos/exynos_drm_plane.c | 2 +- drivers/gpu/drm/exynos/exynos_drm_vidi.c | 6 +- drivers/gpu/drm/exynos/exynos_hdmi.c | 11 +-- drivers/gpu/drm/exynos/exynos_mixer.c | 19 ++++- 19 files changed, 404 insertions(+), 153 deletions(-)
On Mon, Sep 3, 2012 at 2:47 PM, Inki Dae inki.dae@samsung.com wrote:
Hi Dave,
this patch set fixes minor issues and also includes exception codes and code clean.
Highlights:
- fix modesetting
- check pixel format specific to Exynos
- hardware overlay disabling
- plane's crtc updating
- add exception codes and code clean
Hi Inki,
This is getting a bit on the large size for this rc stage, maybe drop the code cleanups until -next,
we should only be getting regression or major breakage fixes at this point.
Dave.
2012/9/3 Dave Airlie airlied@gmail.com:
On Mon, Sep 3, 2012 at 2:47 PM, Inki Dae inki.dae@samsung.com wrote:
Hi Dave,
this patch set fixes minor issues and also includes exception codes and code clean.
Highlights:
- fix modesetting
- check pixel format specific to Exynos
- hardware overlay disabling
- plane's crtc updating
- add exception codes and code clean
Hi Inki,
This is getting a bit on the large size for this rc stage, maybe drop the code cleanups until -next,
we should only be getting regression or major breakage fixes at this point.
Hi Dave,
got it. I will request pull again after merging them into exynos-drm-next.
Thanks, Inki Dae
Dave. _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel
Hi Dave,
this patch set fixes build warnings and includes minor code cleanup. other patches posted before will go to -next because they include big changes.
Highlights: - fix build warnings - minor code cleanup
if there is any problem, please let me know.
Thanks. Inki Dae
The following changes since commit 350352dfef5028225b73994d304a38a4050d894b:
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux into drm-fixes (2012-09-03 11:29:56 +0900)
are available in the git repository at:
git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-fixes
Inki Dae (2): drm/exynos: added device object to subdrv's remove callback as argument drm/exynos: fixed page align bug.
Sachin Kamat (9): drm/exynos: Remove redundant check in exynos_hdmi.c file drm/exynos: Remove redundant check in exynos_drm_fimd.c file drm/exynos: Use devm_kzalloc in exynos_drm_vidi.c file drm/exynos: Use devm_kzalloc in exynos_drm_hdmi.c file drm/exynos: Use devm_* functions in exynos_drm_g2d.c file drm/exynos: Add dependency for G2D in Kconfig drm/exynos: Make g2d_pm_ops static drm/exynos: Add missing braces around sizeof in exynos_hdmi.c drm/exynos: Add missing braces around sizeof in exynos_mixer.c
Thomas Meyer (1): drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1]
drivers/gpu/drm/exynos/Kconfig | 2 +- drivers/gpu/drm/exynos/exynos_drm_drv.h | 2 +- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 7 +--- drivers/gpu/drm/exynos/exynos_drm_g2d.c | 52 ++++++----------------------- drivers/gpu/drm/exynos/exynos_drm_gem.c | 4 +- drivers/gpu/drm/exynos/exynos_drm_hdmi.c | 3 +- drivers/gpu/drm/exynos/exynos_drm_vidi.c | 6 +-- drivers/gpu/drm/exynos/exynos_hdmi.c | 11 ++---- drivers/gpu/drm/exynos/exynos_mixer.c | 6 ++-- 9 files changed, 25 insertions(+), 68 deletions(-)
Hi Dave.
please do not pull it yet. this pull request includes a wrong patch so I will fix it soon. sorry for inconvenient.
Thanks. Inki Dae
2012/9/3 Inki Dae inki.dae@samsung.com:
Hi Dave,
this patch set fixes build warnings and includes minor code cleanup. other patches posted before will go to -next because they include big changes.
Highlights:
- fix build warnings
- minor code cleanup
if there is any problem, please let me know.
Thanks. Inki Dae
The following changes since commit 350352dfef5028225b73994d304a38a4050d894b:
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux into drm-fixes (2012-09-03 11:29:56 +0900)
are available in the git repository at:
git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-fixes
Inki Dae (2): drm/exynos: added device object to subdrv's remove callback as argument drm/exynos: fixed page align bug.
Sachin Kamat (9): drm/exynos: Remove redundant check in exynos_hdmi.c file drm/exynos: Remove redundant check in exynos_drm_fimd.c file drm/exynos: Use devm_kzalloc in exynos_drm_vidi.c file drm/exynos: Use devm_kzalloc in exynos_drm_hdmi.c file drm/exynos: Use devm_* functions in exynos_drm_g2d.c file drm/exynos: Add dependency for G2D in Kconfig drm/exynos: Make g2d_pm_ops static drm/exynos: Add missing braces around sizeof in exynos_hdmi.c drm/exynos: Add missing braces around sizeof in exynos_mixer.c
Thomas Meyer (1): drm/exynos: Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(.. [1]
drivers/gpu/drm/exynos/Kconfig | 2 +- drivers/gpu/drm/exynos/exynos_drm_drv.h | 2 +- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 7 +--- drivers/gpu/drm/exynos/exynos_drm_g2d.c | 52 ++++++----------------------- drivers/gpu/drm/exynos/exynos_drm_gem.c | 4 +- drivers/gpu/drm/exynos/exynos_drm_hdmi.c | 3 +- drivers/gpu/drm/exynos/exynos_drm_vidi.c | 6 +-- drivers/gpu/drm/exynos/exynos_hdmi.c | 11 ++---- drivers/gpu/drm/exynos/exynos_mixer.c | 6 ++-- 9 files changed, 25 insertions(+), 68 deletions(-) _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel
dri-devel@lists.freedesktop.org