1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for the Cirrus EP93xx lcd backlight
5 * Copyright (c) 2010 H Hartley Sweeten <hsweeten@visionengravers.com>
7 * This driver controls the pulse width modulated brightness control output,
8 * BRIGHT, on the Cirrus EP9307, EP9312, and EP9315 processors.
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
15 #include <linux/backlight.h>
17 #define EP93XX_MAX_COUNT 255
18 #define EP93XX_MAX_BRIGHT 255
19 #define EP93XX_DEF_BRIGHT 128
26 static int ep93xxbl_set(struct backlight_device
*bl
, int brightness
)
28 struct ep93xxbl
*ep93xxbl
= bl_get_data(bl
);
30 writel((brightness
<< 8) | EP93XX_MAX_COUNT
, ep93xxbl
->mmio
);
32 ep93xxbl
->brightness
= brightness
;
37 static int ep93xxbl_update_status(struct backlight_device
*bl
)
39 int brightness
= bl
->props
.brightness
;
41 if (bl
->props
.power
!= FB_BLANK_UNBLANK
||
42 bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
45 return ep93xxbl_set(bl
, brightness
);
48 static int ep93xxbl_get_brightness(struct backlight_device
*bl
)
50 struct ep93xxbl
*ep93xxbl
= bl_get_data(bl
);
52 return ep93xxbl
->brightness
;
55 static const struct backlight_ops ep93xxbl_ops
= {
56 .update_status
= ep93xxbl_update_status
,
57 .get_brightness
= ep93xxbl_get_brightness
,
60 static int ep93xxbl_probe(struct platform_device
*dev
)
62 struct ep93xxbl
*ep93xxbl
;
63 struct backlight_device
*bl
;
64 struct backlight_properties props
;
67 ep93xxbl
= devm_kzalloc(&dev
->dev
, sizeof(*ep93xxbl
), GFP_KERNEL
);
71 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
76 * FIXME - We don't do a request_mem_region here because we are
77 * sharing the register space with the framebuffer driver (see
78 * drivers/video/ep93xx-fb.c) and doing so will cause the second
79 * loaded driver to return -EBUSY.
81 * NOTE: No locking is required; the framebuffer does not touch
84 ep93xxbl
->mmio
= devm_ioremap(&dev
->dev
, res
->start
,
89 memset(&props
, 0, sizeof(struct backlight_properties
));
90 props
.type
= BACKLIGHT_RAW
;
91 props
.max_brightness
= EP93XX_MAX_BRIGHT
;
92 bl
= devm_backlight_device_register(&dev
->dev
, dev
->name
, &dev
->dev
,
93 ep93xxbl
, &ep93xxbl_ops
, &props
);
97 bl
->props
.brightness
= EP93XX_DEF_BRIGHT
;
99 platform_set_drvdata(dev
, bl
);
101 ep93xxbl_update_status(bl
);
106 #ifdef CONFIG_PM_SLEEP
107 static int ep93xxbl_suspend(struct device
*dev
)
109 struct backlight_device
*bl
= dev_get_drvdata(dev
);
111 return ep93xxbl_set(bl
, 0);
114 static int ep93xxbl_resume(struct device
*dev
)
116 struct backlight_device
*bl
= dev_get_drvdata(dev
);
118 backlight_update_status(bl
);
123 static SIMPLE_DEV_PM_OPS(ep93xxbl_pm_ops
, ep93xxbl_suspend
, ep93xxbl_resume
);
125 static struct platform_driver ep93xxbl_driver
= {
128 .pm
= &ep93xxbl_pm_ops
,
130 .probe
= ep93xxbl_probe
,
133 module_platform_driver(ep93xxbl_driver
);
135 MODULE_DESCRIPTION("EP93xx Backlight Driver");
136 MODULE_AUTHOR("H Hartley Sweeten <hsweeten@visionengravers.com>");
137 MODULE_LICENSE("GPL");
138 MODULE_ALIAS("platform:ep93xx-bl");