From: Jani Nikula <ext-jani.1.nikula@nokia.com>
To: Tomi.Valkeinen@nokia.com, tony@atomide.com
Cc: linux-omap@vger.kernel.org, linux-fbdev@vger.kernel.org,
ext-jani.1.nikula@nokia.com
Subject: [PATCH v3 00/21] OMAP: DSS2: Taal panel driver updates
Date: Wed, 05 May 2010 14:27:20 +0000 [thread overview]
Message-ID: <cover.1273067195.git.ext-jani.1.nikula@nokia.com> (raw)
Hi -
This set of patches, on top of [1], contains assorted fixes and cleanups to the
Taal panel driver (01-14), configures board/platform specific things in a new
Nokia DSI command mode panel specific struct instead of DSS structs (15-17), and
makes it feasible to add support for similar DSI command mode panels in the same
driver (18-21).
v3:
- patch 01: move taal_hw_reset() earlier than request_irq() in probe to be ready
to handle the irqs
- patch 07: add panel enabled check also to taal_enable_te(), not just
taal_run_test()
v2:
- No functional changes since v1, just filled in some missing commit messages
(thanks Tony for your feedback!)
[1] git://gitorious.org/linux-omap-dss2/linux.git
BR,
Jani.
Jani Nikula (20):
OMAP: DSS2: Taal: Add panel hardware reset
OMAP: DSS2: Taal: Add locks to protect taal data access
OMAP: DSS2: Taal: Cosmetic improvement to backlight properties
initialization
OMAP: DSS2: Taal: Remove platform enable/disable
OMAP: DSS2: Taal: Fix request_irq() error handling
OMAP: DSS2: Taal: Remove ESD work cancel from driver probe error
handling
OMAP: DSS2: Taal: Improve taal_power_on() error handling
OMAP: DSS2: Taal: Ensure panel is enabled in enable_te() and
run_test()
OMAP: DSS2: Taal: Change DSI bus locking to avoid deadlock in ESD
work
OMAP: DSS2: Taal: Check taal_power_on() return value in taal_resume()
OMAP: DSS2: Taal: Change ESD work management
OMAP: DSS2: Taal: Change probe error handling labels
OMAP: DSS2: Taal: Add proper external TE support
OMAP: DSS2: Add Nokia DSI command mode panel configuration struct
OMAP: DSS2: Taal: Use Nokia DSI panel data
OMAP: DSS2: Taal: Configure ESD check in DSI panel data
OMAP: DSS2: Taal: Add panel specific configuration structure
OMAP: DSS2: Taal: Print panel name in addition to revision
OMAP: DSS2: Taal: Add regulator configuration support
OMAP: DSS2: Taal: CABC workaround is Taal specific
Valkeinen Tomi (Nokia-D/Helsinki) (1):
OMAP: DSS2: Taal: add locks to taal_bl_update_status
arch/arm/plat-omap/include/plat/nokia-dsi-panel.h | 31 ++
drivers/video/omap2/displays/panel-taal.c | 552 ++++++++++++++++-----
2 files changed, 463 insertions(+), 120 deletions(-)
create mode 100644 arch/arm/plat-omap/include/plat/nokia-dsi-panel.h
next reply other threads:[~2010-05-05 14:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-05 14:27 Jani Nikula [this message]
2010-05-05 14:27 ` [PATCH v3 01/21] OMAP: DSS2: Taal: Add panel hardware reset Jani Nikula
2010-05-05 14:27 ` [PATCH v3 02/21] OMAP: DSS2: Taal: add locks to taal_bl_update_status Jani Nikula
2010-05-05 14:27 ` [PATCH v3 03/21] OMAP: DSS2: Taal: Add locks to protect taal data access Jani Nikula
2010-05-05 14:27 ` [PATCH v3 04/21] OMAP: DSS2: Taal: Cosmetic improvement to backlight properties initialization Jani Nikula
2010-05-05 14:27 ` [PATCH v3 05/21] OMAP: DSS2: Taal: Remove platform enable/disable Jani Nikula
2010-05-05 14:27 ` [PATCH v3 06/21] OMAP: DSS2: Taal: Fix request_irq() error handling Jani Nikula
2010-05-05 14:27 ` [PATCH v3 07/21] OMAP: DSS2: Taal: Remove ESD work cancel from driver probe " Jani Nikula
2010-05-05 14:27 ` [PATCH v3 08/21] OMAP: DSS2: Taal: Improve taal_power_on() " Jani Nikula
2010-05-05 14:27 ` [PATCH v3 09/21] OMAP: DSS2: Taal: Ensure panel is enabled in enable_te() and run_test() Jani Nikula
2010-05-05 14:27 ` [PATCH v3 10/21] OMAP: DSS2: Taal: Change DSI bus locking to avoid deadlock in ESD work Jani Nikula
2010-05-05 14:27 ` [PATCH v3 11/21] OMAP: DSS2: Taal: Check taal_power_on() return value in taal_resume() Jani Nikula
2010-05-05 14:27 ` [PATCH v3 12/21] OMAP: DSS2: Taal: Change ESD work management Jani Nikula
2010-05-05 14:27 ` [PATCH v3 13/21] OMAP: DSS2: Taal: Change probe error handling labels Jani Nikula
2010-05-05 14:27 ` [PATCH v3 14/21] OMAP: DSS2: Taal: Add proper external TE support Jani Nikula
2010-05-05 14:27 ` [PATCH v3 15/21] OMAP: DSS2: Add Nokia DSI command mode panel configuration struct Jani Nikula
2010-05-05 14:27 ` [PATCH v3 16/21] OMAP: DSS2: Taal: Use Nokia DSI panel data Jani Nikula
2010-05-05 14:27 ` [PATCH v3 17/21] OMAP: DSS2: Taal: Configure ESD check in " Jani Nikula
2010-05-05 14:27 ` [PATCH v3 18/21] OMAP: DSS2: Taal: Add panel specific configuration structure Jani Nikula
2010-05-05 14:27 ` [PATCH v3 19/21] OMAP: DSS2: Taal: Print panel name in addition to revision Jani Nikula
2010-05-05 14:27 ` [PATCH v3 20/21] OMAP: DSS2: Taal: Add regulator configuration support Jani Nikula
2010-05-05 14:27 ` [PATCH v3 21/21] OMAP: DSS2: Taal: CABC workaround is Taal specific Jani Nikula
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.1273067195.git.ext-jani.1.nikula@nokia.com \
--to=ext-jani.1.nikula@nokia.com \
--cc=Tomi.Valkeinen@nokia.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=tony@atomide.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).