From: Jyri Sarha <jsarha@ti.com>
To: dri-devel@lists.freedesktop.org
Cc: Jyri Sarha <jsarha@ti.com>,
tomi.valkeinen@ti.com, laurent.pinchart@ideasonboard.com
Subject: [PATCH v4 00/22] drm/ticdc: Accumulated fixes over the past couple of years
Date: Wed, 24 Feb 2016 18:48:34 +0200 [thread overview]
Message-ID: <cover.1456331965.git.jsarha@ti.com> (raw)
... and yet one more round.
Changes since v3:
- 21/22 "drm/tilcdc: Initialize crtc->port"
- Return an error and don't use scary WARN but simple dev_err() instead
- 22/22 "drm/tilcdc: Use devm_kzalloc() and devm_kcalloc() for private data"
- Tested module loading and unloading with all relevant (and prbably
some unrelevant) memory debugging option on. No problem found in
the patch. However, there is something fishy either in the
component framework or in the way tilcdc used, but that is another
story.
One more round to fix the last issues commented by Tomi Valkeinen.
Changes since v2:
- 09/22 "drm/tilcdc: Allocate register storage based on the actual number
registers"
- Fixed typo in the description
- 21/22 "drm/tilcdc: Initialize crtc->port"
- Changed the code to handle a port-node that is put in side a ports-node
- Removed dev_warn(), and use WARN_ON() instead
- Added more details in description
- 22/22 "Use devm_kzalloc() and devm_kcalloc() for private data"
- New patch
Changes since the first version of the series:
- Dropped: "drm/tilcdc: disable console switching during pm operations"
- Changed: "drm/tilcdc: Allocate register storage based on the actual number.."
- Reversed kcalloc() nmemb and size parameters to correct order
- Added: "drm/tilcdc: Initialize crtc->port"
We have not been too active in pushing the tilcdc fixes to
mainline. This series tries to bring the mainline tilcdc upto same
level with TI ti-linux tree.
Some patches that touch the same place over and over again have been
squashed into one, leaving author of the last rewrite on top.
Best regards,
Jyri
Darren Etheridge (4):
drm/tilcdc: rewrite pixel clock calculation
drm/tilcdc: fix kernel panic on suspend when no hdmi monitor connected
drm/tilcdc: make frame_done interrupt active at all times
drm/tilcdc: disable the lcd controller/dma engine when suspend invoked
Dave Gerlach (1):
drm/tilcdc: adopt pinctrl support
Grygorii Strashko (1):
drm/tilcdc: fix build error when !CONFIG_CPU_FREQ
Jyri Sarha (8):
drm/tilcdc: Implement dma-buf support for tilcdc
drm/tilcdc: Allocate register storage based on the actual number
registers
drm/tilcdc: Fix interrupt enable/disable code for version 2 tilcdc
drm/tilcdc: Remove the duplicate LCDC_INT_ENABLE_SET_REG in
registers[]
drm/tilcdc: Add prints on sync lost and FIFO underrun interrupts
drm/tilcdc: Disable sync lost interrupt if it fires on every frame
drm/tilcdc: Initialize crtc->port
drm/tilcdc: Use devm_kzalloc() and devm_kcalloc() for private data
Tomi Valkeinen (8):
drm/tilcdc: verify fb pitch
drm/tilcdc: cleanup runtime PM handling
drm/tilcdc: disable crtc on unload
drm/tilcdc: split reset to a separate function
drm/tilcdc: remove broken error handling
drm/tilcdc: cleanup irq handling
drm/tilcdc: Get rid of complex ping-pong mechanism
drm/tilcdc: Do not update the next frame buffer close to vertical
blank
drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 313 ++++++++++++++++++++++-----------
drivers/gpu/drm/tilcdc/tilcdc_drv.c | 130 ++++++++------
drivers/gpu/drm/tilcdc/tilcdc_drv.h | 5 +-
drivers/gpu/drm/tilcdc/tilcdc_panel.c | 20 +--
drivers/gpu/drm/tilcdc/tilcdc_tfp410.c | 24 +--
5 files changed, 300 insertions(+), 192 deletions(-)
--
1.9.1
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2016-02-24 16:49 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-24 16:48 Jyri Sarha [this message]
2016-02-24 16:48 ` [PATCH v4 01/22] drm/tilcdc: rewrite pixel clock calculation Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 02/22] drm/tilcdc: verify fb pitch Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 03/22] drm/tilcdc: adopt pinctrl support Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 04/22] drm/tilcdc: fix kernel panic on suspend when no hdmi monitor connected Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 05/22] drm/tilcdc: make frame_done interrupt active at all times Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 06/22] drm/tilcdc: disable the lcd controller/dma engine when suspend invoked Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 07/22] drm/tilcdc: Implement dma-buf support for tilcdc Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 08/22] drm/tilcdc: fix build error when !CONFIG_CPU_FREQ Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 09/22] drm/tilcdc: Allocate register storage based on the actual number registers Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 10/22] drm/tilcdc: cleanup runtime PM handling Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 11/22] drm/tilcdc: disable crtc on unload Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 12/22] drm/tilcdc: split reset to a separate function Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 13/22] drm/tilcdc: remove broken error handling Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 14/22] drm/tilcdc: cleanup irq handling Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 15/22] drm/tilcdc: Get rid of complex ping-pong mechanism Jyri Sarha
2016-02-24 20:31 ` Rob Clark
2016-02-25 6:55 ` Tomi Valkeinen
2016-02-25 13:37 ` Rob Clark
2016-02-24 16:48 ` [PATCH v4 16/22] drm/tilcdc: Do not update the next frame buffer close to vertical blank Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 17/22] drm/tilcdc: Fix interrupt enable/disable code for version 2 tilcdc Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 18/22] drm/tilcdc: Remove the duplicate LCDC_INT_ENABLE_SET_REG in registers[] Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 19/22] drm/tilcdc: Add prints on sync lost and FIFO underrun interrupts Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 20/22] drm/tilcdc: Disable sync lost interrupt if it fires on every frame Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 21/22] drm/tilcdc: Initialize crtc->port Jyri Sarha
2016-02-24 16:48 ` [PATCH v4 22/22] drm/tilcdc: Use devm_kzalloc() and devm_kcalloc() for private data Jyri Sarha
2016-02-25 10:22 ` [PATCH v4 00/22] drm/ticdc: Accumulated fixes over the past couple of years Tomi Valkeinen
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=cover.1456331965.git.jsarha@ti.com \
--to=jsarha@ti.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=laurent.pinchart@ideasonboard.com \
--cc=tomi.valkeinen@ti.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.