dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Inki Dae <inki.dae@samsung.com>
To: airlied@linux.ie
Cc: linux-samsung-soc@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: [GIT PULL v2] exynos-drm-next
Date: Fri, 25 May 2018 15:31:59 +0900	[thread overview]
Message-ID: <1527229919-25665-1-git-send-email-inki.dae@samsung.com> (raw)
In-Reply-To: CGME20180525063159epcas1p488f55ec164803d9d7e515421dcac3fee@epcas1p4.samsung.com

Hi Dave,

   Since previous git-pull request, it includes more HW overlays
   support of DECON controller and several fixups and one cleanup.

   Please kindly let me know if there is any problem.

Thanks,
Inki Dae

The following changes since commit bec923c50ab550d1d53b297dd4c753db18a13204:

  Merge tag 'exynos-drm-fixes-for-v4.17-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos into exynos-drm-next (2018-05-09 09:27:08 +0900)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos tags/exynos-drm-next-for-v4.18-v2

for you to fetch changes up to 19832055e2bf5e67f506bac62e4e07326fb545b7:

  drm/exynos: fimc: signedness bug in fimc_setup_clocks() (2018-05-25 14:47:40 +0900)

----------------------------------------------------------------
Add more HW overlays support
- It enables hardware overlay number 4 and 5. For this,
  this patch series adds required clocks.

Several fixups
- Fix default value of zpos according to real hardware overlay number.
- Fix error value of exynos_Drm_crtc_get_by_type function correctly.
- Fix static checker warning of scaler_task_done function.
- Fix signedness bug in fimc_setup_clocks function.

One cleanup
- Disable framedone interrupt of DSI device which is not required.

----------------------------------------------------------------
Andrzej Hajda (2):
      drm/exynos/dsi: remove mode_set callback
      drm/exynos/dsi: mask frame-done interrupt

Andrzej Pietrasiewicz (1):
      drm/exynos: Add driver for Exynos Scaler module

Dan Carpenter (1):
      drm/exynos: fimc: signedness bug in fimc_setup_clocks()

Inki Dae (2):
      Merge tag 'exynos-drm-next-for-v4.18' of git://git.kernel.org/.../daeinki/drm-exynos into exynos-drm-next
      drm/exynos: scaler: fix static checker warning

Marek Szyprowski (8):
      drm/exynos: ipp: Add IPP v2 framework
      drm/exynos: rotator: Convert driver to IPP v2 core API
      drm/exynos: gsc: Convert driver to IPP v2 core API
      drm/exynos: fimc: Convert driver to IPP v2 core API
      dt-bindings: exynos5433-decon: add more required clocks
      drm/exynos: decon: Add support for hardware windows no 4 and 5
      drm/exynos: Fix error value in exynos_drm_crtc_get_by_type()
      drm/exynos: Fix default value for zpos plane property

Paweł Chmiel (1):
      drm/exynos: Allow DRM_EXYNOS on s5pv210.

Souptick Joarder (1):
      gpu: drm: exynos: Change return type to vm_fault_t

Tomasz Figa (1):
      drm/exynos: fimd: Add support for S5PV210 FIMD variant

 .../bindings/display/exynos/exynos5433-decon.txt   |    9 +-
 .../devicetree/bindings/gpu/samsung-scaler.txt     |   27 +
 drivers/gpu/drm/exynos/Kconfig                     |   18 +-
 drivers/gpu/drm/exynos/Makefile                    |    2 +
 drivers/gpu/drm/exynos/exynos5433_drm_decon.c      |   21 +-
 drivers/gpu/drm/exynos/exynos_drm_crtc.c           |    2 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.c            |   35 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.h            |   10 +
 drivers/gpu/drm/exynos/exynos_drm_dsi.c            |   46 +-
 drivers/gpu/drm/exynos/exynos_drm_fimc.c           | 1080 +++++++-------------
 drivers/gpu/drm/exynos/exynos_drm_fimc.h           |   23 -
 drivers/gpu/drm/exynos/exynos_drm_fimd.c           |    8 +
 drivers/gpu/drm/exynos/exynos_drm_gem.c            |   21 +-
 drivers/gpu/drm/exynos/exynos_drm_gem.h            |    3 +-
 drivers/gpu/drm/exynos/exynos_drm_gsc.c            | 1075 ++++++-------------
 drivers/gpu/drm/exynos/exynos_drm_gsc.h            |   24 -
 drivers/gpu/drm/exynos/exynos_drm_ipp.c            |  916 +++++++++++++++++
 drivers/gpu/drm/exynos/exynos_drm_ipp.h            |  175 ++++
 drivers/gpu/drm/exynos/exynos_drm_plane.c          |    9 +-
 drivers/gpu/drm/exynos/exynos_drm_rotator.c        |  758 ++++----------
 drivers/gpu/drm/exynos/exynos_drm_scaler.c         |  694 +++++++++++++
 drivers/gpu/drm/exynos/regs-scaler.h               |  426 ++++++++
 include/uapi/drm/exynos_drm.h                      |  240 +++++
 23 files changed, 3459 insertions(+), 2163 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/gpu/samsung-scaler.txt
 delete mode 100644 drivers/gpu/drm/exynos/exynos_drm_fimc.h
 delete mode 100644 drivers/gpu/drm/exynos/exynos_drm_gsc.h
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_ipp.c
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_ipp.h
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_scaler.c
 create mode 100644 drivers/gpu/drm/exynos/regs-scaler.h
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

       reply	other threads:[~2018-05-25  6:32 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20180525063159epcas1p488f55ec164803d9d7e515421dcac3fee@epcas1p4.samsung.com>
2018-05-25  6:31 ` Inki Dae [this message]
     [not found] <CGME20241106010943epcas1p1f43d635384661d8dc4a401c5b82b25af@epcas1p1.samsung.com>
2024-11-06  1:09 ` [GIT PULL v2] exynos-drm-next Inki Dae
     [not found] <CGME20230417100624epcas1p3d39ab3b88da18da0b365d67ad1062086@epcas1p3.samsung.com>
2023-04-17 10:06 ` Inki Dae
     [not found] <CGME20181214072711epcas2p4f9d1016da37bae403a9416d00a1c0e78@epcas2p4.samsung.com>
2018-12-14  7:27 ` Inki Dae
2018-12-14 16:11   ` Daniel Vetter
2018-12-14 16:42     ` Daniel Vetter
2014-04-04 12:49 Inki Dae
  -- strict thread matches above, loose matches on Subject: below --
2013-07-04  7:31 Inki Dae
2013-02-15  4:24 [GIT PULL] exynos-drm-next Inki Dae
2013-02-21  6:40 ` [GIT PULL v2] exynos-drm-next Inki Dae
2012-11-29 12:11 Inki Dae
2012-11-29 14:34 ` Daniel Vetter
2012-11-30  5:27   ` Inki Dae
2012-11-30 16:28     ` Daniel Vetter
2012-10-04  2:12 [GIT PULL] exynos-drm-next Inki Dae
2012-10-05 11:04 ` [GIT PULL v2] exynos-drm-next Inki Dae

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1527229919-25665-1-git-send-email-inki.dae@samsung.com \
    --to=inki.dae@samsung.com \
    --cc=airlied@linux.ie \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox