2 * Driver for the Cirrus EP93xx lcd backlight
4 * Copyright (c) 2010 H Hartley Sweeten <hsweeten@visionengravers.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This driver controls the pulse width modulated brightness control output,
11 * BRIGHT, on the Cirrus EP9307, EP9312, and EP9315 processors.
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
18 #include <linux/backlight.h>
20 #include <mach/hardware.h>
22 #define EP93XX_RASTER_REG(x) (EP93XX_RASTER_BASE + (x))
23 #define EP93XX_RASTER_BRIGHTNESS EP93XX_RASTER_REG(0x20)
25 #define EP93XX_MAX_COUNT 255
26 #define EP93XX_MAX_BRIGHT 255
27 #define EP93XX_DEF_BRIGHT 128
34 static int ep93xxbl_set(struct backlight_device
*bl
, int brightness
)
36 struct ep93xxbl
*ep93xxbl
= bl_get_data(bl
);
38 __raw_writel((brightness
<< 8) | EP93XX_MAX_COUNT
, ep93xxbl
->mmio
);
40 ep93xxbl
->brightness
= brightness
;
45 static int ep93xxbl_update_status(struct backlight_device
*bl
)
47 int brightness
= bl
->props
.brightness
;
49 if (bl
->props
.power
!= FB_BLANK_UNBLANK
||
50 bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
53 return ep93xxbl_set(bl
, brightness
);
56 static int ep93xxbl_get_brightness(struct backlight_device
*bl
)
58 struct ep93xxbl
*ep93xxbl
= bl_get_data(bl
);
60 return ep93xxbl
->brightness
;
63 static const struct backlight_ops ep93xxbl_ops
= {
64 .update_status
= ep93xxbl_update_status
,
65 .get_brightness
= ep93xxbl_get_brightness
,
68 static int __init
ep93xxbl_probe(struct platform_device
*dev
)
70 struct ep93xxbl
*ep93xxbl
;
71 struct backlight_device
*bl
;
72 struct backlight_properties props
;
74 ep93xxbl
= devm_kzalloc(&dev
->dev
, sizeof(*ep93xxbl
), GFP_KERNEL
);
79 * This register is located in the range already ioremap'ed by
80 * the framebuffer driver. A MFD driver seems a bit of overkill
81 * to handle this so use the static I/O mapping; this address
84 * NOTE: No locking is required; the framebuffer does not touch
87 ep93xxbl
->mmio
= EP93XX_RASTER_BRIGHTNESS
;
89 memset(&props
, 0, sizeof(struct backlight_properties
));
90 props
.type
= BACKLIGHT_RAW
;
91 props
.max_brightness
= EP93XX_MAX_BRIGHT
;
92 bl
= backlight_device_register(dev
->name
, &dev
->dev
, ep93xxbl
,
93 &ep93xxbl_ops
, &props
);
97 bl
->props
.brightness
= EP93XX_DEF_BRIGHT
;
99 platform_set_drvdata(dev
, bl
);
101 ep93xxbl_update_status(bl
);
106 static int ep93xxbl_remove(struct platform_device
*dev
)
108 struct backlight_device
*bl
= platform_get_drvdata(dev
);
110 backlight_device_unregister(bl
);
111 platform_set_drvdata(dev
, NULL
);
116 static int ep93xxbl_suspend(struct platform_device
*dev
, pm_message_t state
)
118 struct backlight_device
*bl
= platform_get_drvdata(dev
);
120 return ep93xxbl_set(bl
, 0);
123 static int ep93xxbl_resume(struct platform_device
*dev
)
125 struct backlight_device
*bl
= platform_get_drvdata(dev
);
127 backlight_update_status(bl
);
131 #define ep93xxbl_suspend NULL
132 #define ep93xxbl_resume NULL
135 static struct platform_driver ep93xxbl_driver
= {
138 .owner
= THIS_MODULE
,
140 .probe
= ep93xxbl_probe
,
141 .remove
= __devexit_p(ep93xxbl_remove
),
142 .suspend
= ep93xxbl_suspend
,
143 .resume
= ep93xxbl_resume
,
146 module_platform_driver(ep93xxbl_driver
);
148 MODULE_DESCRIPTION("EP93xx Backlight Driver");
149 MODULE_AUTHOR("H Hartley Sweeten <hsweeten@visionengravers.com>");
150 MODULE_LICENSE("GPL");
151 MODULE_ALIAS("platform:ep93xx-bl");