123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- From bfcb98a5f383cd1cdd08156f8f7267447ab1b7cd Mon Sep 17 00:00:00 2001
- From: P33M <P33M@github.com>
- Date: Wed, 21 Oct 2015 14:55:21 +0100
- Subject: [PATCH 087/381] rpi_display: add backlight driver and overlay
- Add a mailbox-driven backlight controller for the Raspberry Pi DSI
- touchscreen display. Requires updated GPU firmware to recognise the
- mailbox request.
- Signed-off-by: Gordon Hollingworth <gordon@raspberrypi.org>
- ---
- arch/arm/boot/dts/overlays/Makefile | 1 +
- arch/arm/boot/dts/overlays/README | 6 ++
- .../boot/dts/overlays/rpi-backlight-overlay.dts | 21 ++++
- arch/arm/configs/bcm2709_defconfig | 1 +
- arch/arm/configs/bcmrpi_defconfig | 1 +
- drivers/video/backlight/Kconfig | 6 ++
- drivers/video/backlight/Makefile | 1 +
- drivers/video/backlight/rpi_backlight.c | 119 +++++++++++++++++++++
- include/soc/bcm2835/raspberrypi-firmware.h | 1 +
- 9 files changed, 157 insertions(+)
- create mode 100644 arch/arm/boot/dts/overlays/rpi-backlight-overlay.dts
- create mode 100644 drivers/video/backlight/rpi_backlight.c
- --- a/arch/arm/boot/dts/overlays/Makefile
- +++ b/arch/arm/boot/dts/overlays/Makefile
- @@ -38,6 +38,7 @@ dtb-$(RPI_DT_OVERLAYS) += pps-gpio-overl
- dtb-$(RPI_DT_OVERLAYS) += pwm-overlay.dtb
- dtb-$(RPI_DT_OVERLAYS) += pwm-2chan-overlay.dtb
- dtb-$(RPI_DT_OVERLAYS) += raspidac3-overlay.dtb
- +dtb-$(RPI_DT_OVERLAYS) += rpi-backlight-overlay.dtb
- dtb-$(RPI_DT_OVERLAYS) += rpi-dac-overlay.dtb
- dtb-$(RPI_DT_OVERLAYS) += rpi-display-overlay.dtb
- dtb-$(RPI_DT_OVERLAYS) += rpi-ft5406-overlay.dtb
- --- a/arch/arm/boot/dts/overlays/README
- +++ b/arch/arm/boot/dts/overlays/README
- @@ -462,6 +462,12 @@ Load: dtoverlay=raspidac3
- Params: <None>
-
-
- +Name: rpi-backlight
- +Info: Raspberry Pi official display backlight driver
- +Load: dtoverlay=rpi-backlight
- +Params: <None>
- +
- +
- Name: rpi-dac
- Info: Configures the RPi DAC audio card
- Load: dtoverlay=rpi-dac
- --- /dev/null
- +++ b/arch/arm/boot/dts/overlays/rpi-backlight-overlay.dts
- @@ -0,0 +1,21 @@
- +/*
- + * Devicetree overlay for mailbox-driven Raspberry Pi DSI Display
- + * backlight controller
- + */
- +/dts-v1/;
- +/plugin/;
- +
- +/ {
- + compatible = "brcm,bcm2708";
- +
- + fragment@0 {
- + target-path = "/";
- + __overlay__ {
- + rpi_backlight: rpi_backlight {
- + compatible = "raspberrypi,rpi-backlight";
- + firmware = <&firmware>;
- + status = "okay";
- + };
- + };
- + };
- +};
- --- a/arch/arm/configs/bcm2709_defconfig
- +++ b/arch/arm/configs/bcm2709_defconfig
- @@ -808,6 +808,7 @@ CONFIG_FB_UDL=m
- CONFIG_FB_SSD1307=m
- CONFIG_FB_RPISENSE=m
- # CONFIG_BACKLIGHT_GENERIC is not set
- +CONFIG_BACKLIGHT_RPI=m
- CONFIG_BACKLIGHT_GPIO=m
- CONFIG_FRAMEBUFFER_CONSOLE=y
- CONFIG_LOGO=y
- --- a/arch/arm/configs/bcmrpi_defconfig
- +++ b/arch/arm/configs/bcmrpi_defconfig
- @@ -801,6 +801,7 @@ CONFIG_FB_UDL=m
- CONFIG_FB_SSD1307=m
- CONFIG_FB_RPISENSE=m
- # CONFIG_BACKLIGHT_GENERIC is not set
- +CONFIG_BACKLIGHT_RPI=m
- CONFIG_BACKLIGHT_GPIO=m
- CONFIG_FRAMEBUFFER_CONSOLE=y
- CONFIG_LOGO=y
- --- a/drivers/video/backlight/Kconfig
- +++ b/drivers/video/backlight/Kconfig
- @@ -265,6 +265,12 @@ config BACKLIGHT_PWM
- If you have a LCD backlight adjustable by PWM, say Y to enable
- this driver.
-
- +config BACKLIGHT_RPI
- + tristate "Raspberry Pi display firmware driven backlight"
- + help
- + If you have the Raspberry Pi DSI touchscreen display, say Y to
- + enable the mailbox-controlled backlight driver.
- +
- config BACKLIGHT_DA903X
- tristate "Backlight Driver for DA9030/DA9034 using WLED"
- depends on PMIC_DA903X
- --- a/drivers/video/backlight/Makefile
- +++ b/drivers/video/backlight/Makefile
- @@ -50,6 +50,7 @@ obj-$(CONFIG_BACKLIGHT_PANDORA) += pand
- obj-$(CONFIG_BACKLIGHT_PCF50633) += pcf50633-backlight.o
- obj-$(CONFIG_BACKLIGHT_PM8941_WLED) += pm8941-wled.o
- obj-$(CONFIG_BACKLIGHT_PWM) += pwm_bl.o
- +obj-$(CONFIG_BACKLIGHT_RPI) += rpi_backlight.o
- obj-$(CONFIG_BACKLIGHT_SAHARA) += kb3886_bl.o
- obj-$(CONFIG_BACKLIGHT_SKY81452) += sky81452-backlight.o
- obj-$(CONFIG_BACKLIGHT_TOSA) += tosa_bl.o
- --- /dev/null
- +++ b/drivers/video/backlight/rpi_backlight.c
- @@ -0,0 +1,119 @@
- +/*
- + * rpi_bl.c - Backlight controller through VPU
- + *
- + * This program is free software; you can redistribute it and/or modify
- + * it under the terms of the GNU General Public License version 2 as
- + * published by the Free Software Foundation.
- + */
- +
- +#include <linux/backlight.h>
- +#include <linux/err.h>
- +#include <linux/fb.h>
- +#include <linux/gpio.h>
- +#include <linux/init.h>
- +#include <linux/kernel.h>
- +#include <linux/module.h>
- +#include <linux/of.h>
- +#include <linux/of_gpio.h>
- +#include <linux/platform_device.h>
- +#include <linux/slab.h>
- +#include <soc/bcm2835/raspberrypi-firmware.h>
- +
- +struct rpi_backlight {
- + struct device *dev;
- + struct device *fbdev;
- + struct rpi_firmware *fw;
- +};
- +
- +static int rpi_backlight_update_status(struct backlight_device *bl)
- +{
- + struct rpi_backlight *gbl = bl_get_data(bl);
- + int brightness = bl->props.brightness;
- + int ret;
- +
- + if (bl->props.power != FB_BLANK_UNBLANK ||
- + bl->props.fb_blank != FB_BLANK_UNBLANK ||
- + bl->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
- + brightness = 0;
- +
- + ret = rpi_firmware_property(gbl->fw,
- + RPI_FIRMWARE_FRAMEBUFFER_SET_BACKLIGHT,
- + &brightness, sizeof(brightness));
- + if (ret) {
- + dev_err(gbl->dev, "Failed to set brightness\n");
- + return ret;
- + }
- +
- + if (brightness < 0) {
- + dev_err(gbl->dev, "Backlight change failed\n");
- + return -EAGAIN;
- + }
- +
- + return 0;
- +}
- +
- +static const struct backlight_ops rpi_backlight_ops = {
- + .options = BL_CORE_SUSPENDRESUME,
- + .update_status = rpi_backlight_update_status,
- +};
- +
- +static int rpi_backlight_probe(struct platform_device *pdev)
- +{
- + struct backlight_properties props;
- + struct backlight_device *bl;
- + struct rpi_backlight *gbl;
- + struct device_node *fw_node;
- +
- + gbl = devm_kzalloc(&pdev->dev, sizeof(*gbl), GFP_KERNEL);
- + if (gbl == NULL)
- + return -ENOMEM;
- +
- + gbl->dev = &pdev->dev;
- +
- + fw_node = of_parse_phandle(pdev->dev.of_node, "firmware", 0);
- + if (!fw_node) {
- + dev_err(&pdev->dev, "Missing firmware node\n");
- + return -ENOENT;
- + }
- +
- + gbl->fw = rpi_firmware_get(fw_node);
- + if (!gbl->fw)
- + return -EPROBE_DEFER;
- +
- + memset(&props, 0, sizeof(props));
- + props.type = BACKLIGHT_RAW;
- + props.max_brightness = 255;
- + bl = devm_backlight_device_register(&pdev->dev, dev_name(&pdev->dev),
- + &pdev->dev, gbl, &rpi_backlight_ops,
- + &props);
- + if (IS_ERR(bl)) {
- + dev_err(&pdev->dev, "failed to register backlight\n");
- + return PTR_ERR(bl);
- + }
- +
- + bl->props.brightness = 255;
- + backlight_update_status(bl);
- +
- + platform_set_drvdata(pdev, bl);
- + return 0;
- +}
- +
- +static const struct of_device_id rpi_backlight_of_match[] = {
- + { .compatible = "raspberrypi,rpi-backlight" },
- + { /* sentinel */ }
- +};
- +MODULE_DEVICE_TABLE(of, rpi_backlight_of_match);
- +
- +static struct platform_driver rpi_backlight_driver = {
- + .driver = {
- + .name = "rpi-backlight",
- + .of_match_table = of_match_ptr(rpi_backlight_of_match),
- + },
- + .probe = rpi_backlight_probe,
- +};
- +
- +module_platform_driver(rpi_backlight_driver);
- +
- +MODULE_AUTHOR("Gordon Hollingworth <gordon@raspberrypi.org>");
- +MODULE_DESCRIPTION("Raspberry Pi mailbox based Backlight Driver");
- +MODULE_LICENSE("GPL");
- --- a/include/soc/bcm2835/raspberrypi-firmware.h
- +++ b/include/soc/bcm2835/raspberrypi-firmware.h
- @@ -112,6 +112,7 @@ enum rpi_firmware_property_tag {
- RPI_FIRMWARE_FRAMEBUFFER_SET_OVERSCAN = 0x0004800a,
- RPI_FIRMWARE_FRAMEBUFFER_SET_PALETTE = 0x0004800b,
- RPI_FIRMWARE_FRAMEBUFFER_SET_VSYNC = 0x0004800e,
- + RPI_FIRMWARE_FRAMEBUFFER_SET_BACKLIGHT = 0x0004800f,
-
- RPI_FIRMWARE_VCHIQ_INIT = 0x00048010,
-
|