linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/17] backlight: Introduce power-state constants
@ 2024-06-24 15:19 Thomas Zimmermann
  2024-06-24 15:19 ` [PATCH v2 01/17] backlight: Add BACKLIGHT_POWER_ constants for power states Thomas Zimmermann
                   ` (18 more replies)
  0 siblings, 19 replies; 22+ messages in thread
From: Thomas Zimmermann @ 2024-06-24 15:19 UTC (permalink / raw)
  To: lee, daniel.thompson, sam, jingoohan1, deller, linus.walleij,
	f.suligoi, ukleinek
  Cc: dri-devel, linux-fbdev, linux-pwm, Thomas Zimmermann

The backlight code currently uses fbdev's FB_BLANK_ constants to
represent power states UNBLANK and POWERDOWN. Introduce dedicated
backlight constants to remove this dependency on fbdev.

Patch 1 introduces BACKLIGHT_POWER_ON and BACKLIGHT_POWER_OFF, which
replace constants from fbdev. There's also BACKLIGHT_POWER_REDUCED,
which is required by a few drivers that appear to use incorrect or
uncommon blanking semantics.

The rest of the patchset converts backlight drivers. The new
constants' values are identical to the old ones, so the driver
conversion can be done one-by-one.

There are many more backlight drivers in other subsystems. These
can later be converted when the new constants have been merged.
Once merged, several include statements for <linux/fb.h> can be
removed (specifically under drivers/platform/x86/).

This patchset is part of a larger effort to implement the backlight
code without depending on fbdev and ultimatively remove fbdev
dependencies from the kernel.

v2:
- rename BL_CORE_ power constants to BACKLIGHT_POWER_ (Sam)
- fix documentation

Thomas Zimmermann (17):
  backlight: Add BACKLIGHT_POWER_ constants for power states
  backlight: aat2870-backlight: Use blacklight power constants
  backlight: ams369fb06: Use backlight power constants
  backlight: corgi-lcd: Use backlight power constants
  backlight: gpio-backlight: Use backlight power constants
  backlight: ipaq-micro-backlight: Use backlight power constants
  backlight: journada_bl: Use backlight power constants
  backlight: kb3886-bl: Use backlight power constants
  backlight: ktd253-backlight: Use backlight power constants
  backlight: led-backlight: Use backlight power constants
  backlight: lm3533-backlight: Use backlight power constants
  backlight: mp3309c: Use backlight power constants
  backlight: pandora-backlight: Use backlight power constants
  backlight: pcf50633-backlight: Use backlight power constants
  backlight: pwm-backlight: Use backlight power constants
  backlight: rave-sp-backlight: Use backlight power constants
  backlight: sky81452-backlight: Use backlight power constants

 .../ABI/stable/sysfs-class-backlight          |  7 +++---
 drivers/video/backlight/aat2870_bl.c          |  4 ++--
 drivers/video/backlight/ams369fg06.c          | 23 +++++++++----------
 drivers/video/backlight/corgi_lcd.c           |  4 ++--
 drivers/video/backlight/gpio_backlight.c      |  9 ++++----
 drivers/video/backlight/ipaq_micro_bl.c       |  3 +--
 drivers/video/backlight/jornada720_bl.c       |  3 +--
 drivers/video/backlight/kb3886_bl.c           |  4 ++--
 drivers/video/backlight/ktd253-backlight.c    |  5 ++--
 drivers/video/backlight/led_bl.c              |  4 ++--
 drivers/video/backlight/lm3533_bl.c           |  3 +--
 drivers/video/backlight/mp3309c.c             |  4 ++--
 drivers/video/backlight/pandora_bl.c          |  3 +--
 drivers/video/backlight/pcf50633-backlight.c  |  5 ++--
 drivers/video/backlight/pwm_bl.c              |  4 ++--
 drivers/video/backlight/rave-sp-backlight.c   |  2 +-
 drivers/video/backlight/sky81452-backlight.c  |  2 +-
 include/linux/backlight.h                     | 20 +++++++++-------
 18 files changed, 53 insertions(+), 56 deletions(-)

-- 
2.45.2


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2024-07-04 15:46 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24 15:19 [PATCH v2 00/17] backlight: Introduce power-state constants Thomas Zimmermann
2024-06-24 15:19 ` [PATCH v2 01/17] backlight: Add BACKLIGHT_POWER_ constants for power states Thomas Zimmermann
2024-06-24 15:19 ` [PATCH v2 02/17] backlight: aat2870-backlight: Use blacklight power constants Thomas Zimmermann
2024-06-24 15:19 ` [PATCH v2 03/17] backlight: ams369fb06: Use backlight " Thomas Zimmermann
2024-06-24 15:19 ` [PATCH v2 04/17] backlight: corgi-lcd: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 05/17] backlight: gpio-backlight: " Thomas Zimmermann
2024-06-26 11:52   ` Linus Walleij
2024-06-24 15:20 ` [PATCH v2 06/17] backlight: ipaq-micro-backlight: " Thomas Zimmermann
2024-06-26 11:51   ` Linus Walleij
2024-06-24 15:20 ` [PATCH v2 07/17] backlight: journada_bl: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 08/17] backlight: kb3886-bl: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 09/17] backlight: ktd253-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 10/17] backlight: led-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 11/17] backlight: lm3533-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 12/17] backlight: mp3309c: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 13/17] backlight: pandora-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 14/17] backlight: pcf50633-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 15/17] backlight: pwm-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 16/17] backlight: rave-sp-backlight: " Thomas Zimmermann
2024-06-24 15:20 ` [PATCH v2 17/17] backlight: sky81452-backlight: " Thomas Zimmermann
2024-07-01 11:07 ` [PATCH v2 00/17] backlight: Introduce power-state constants Daniel Thompson
2024-07-04 15:45 ` Lee Jones

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).