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 return ep93xxbl_set(bl
, backlight_get_brightness(bl
));
42 static int ep93xxbl_get_brightness(struct backlight_device
*bl
)
44 struct ep93xxbl
*ep93xxbl
= bl_get_data(bl
);
46 return ep93xxbl
->brightness
;
49 static const struct backlight_ops ep93xxbl_ops
= {
50 .update_status
= ep93xxbl_update_status
,
51 .get_brightness
= ep93xxbl_get_brightness
,
54 static int ep93xxbl_probe(struct platform_device
*dev
)
56 struct ep93xxbl
*ep93xxbl
;
57 struct backlight_device
*bl
;
58 struct backlight_properties props
;
61 ep93xxbl
= devm_kzalloc(&dev
->dev
, sizeof(*ep93xxbl
), GFP_KERNEL
);
65 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
70 * FIXME - We don't do a request_mem_region here because we are
71 * sharing the register space with the framebuffer driver (see
72 * drivers/video/ep93xx-fb.c) and doing so will cause the second
73 * loaded driver to return -EBUSY.
75 * NOTE: No locking is required; the framebuffer does not touch
78 ep93xxbl
->mmio
= devm_ioremap(&dev
->dev
, res
->start
,
83 memset(&props
, 0, sizeof(struct backlight_properties
));
84 props
.type
= BACKLIGHT_RAW
;
85 props
.max_brightness
= EP93XX_MAX_BRIGHT
;
86 bl
= devm_backlight_device_register(&dev
->dev
, dev
->name
, &dev
->dev
,
87 ep93xxbl
, &ep93xxbl_ops
, &props
);
91 bl
->props
.brightness
= EP93XX_DEF_BRIGHT
;
93 platform_set_drvdata(dev
, bl
);
95 ep93xxbl_update_status(bl
);
100 #ifdef CONFIG_PM_SLEEP
101 static int ep93xxbl_suspend(struct device
*dev
)
103 struct backlight_device
*bl
= dev_get_drvdata(dev
);
105 return ep93xxbl_set(bl
, 0);
108 static int ep93xxbl_resume(struct device
*dev
)
110 struct backlight_device
*bl
= dev_get_drvdata(dev
);
112 backlight_update_status(bl
);
117 static SIMPLE_DEV_PM_OPS(ep93xxbl_pm_ops
, ep93xxbl_suspend
, ep93xxbl_resume
);
119 static struct platform_driver ep93xxbl_driver
= {
122 .pm
= &ep93xxbl_pm_ops
,
124 .probe
= ep93xxbl_probe
,
127 module_platform_driver(ep93xxbl_driver
);
129 MODULE_DESCRIPTION("EP93xx Backlight Driver");
130 MODULE_AUTHOR("H Hartley Sweeten <hsweeten@visionengravers.com>");
131 MODULE_LICENSE("GPL");
132 MODULE_ALIAS("platform:ep93xx-bl");