ieee802154: verify packet size before trying to allocate it
[linux/fpc-iii.git] / drivers / video / backlight / tosa_bl.c
blob0d54e607e82d1bd3f86196944d425a8dee40fdb2
1 /*
2 * LCD / Backlight control code for Sharp SL-6000x (tosa)
4 * Copyright (c) 2005 Dirk Opfer
5 * Copyright (c) 2007,2008 Dmitry Baryshkov
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/spi/spi.h>
17 #include <linux/i2c.h>
18 #include <linux/gpio.h>
19 #include <linux/fb.h>
20 #include <linux/backlight.h>
21 #include <linux/slab.h>
23 #include <asm/mach/sharpsl_param.h>
25 #include <mach/tosa.h>
27 #define COMADJ_DEFAULT 97
29 #define DAC_CH1 0
30 #define DAC_CH2 1
32 struct tosa_bl_data {
33 struct i2c_client *i2c;
34 struct backlight_device *bl;
36 int comadj;
39 static void tosa_bl_set_backlight(struct tosa_bl_data *data, int brightness)
41 struct spi_device *spi = data->i2c->dev.platform_data;
43 i2c_smbus_write_byte_data(data->i2c, DAC_CH1, data->comadj);
45 /* SetBacklightDuty */
46 i2c_smbus_write_byte_data(data->i2c, DAC_CH2, (u8)(brightness & 0xff));
48 /* SetBacklightVR */
49 gpio_set_value(TOSA_GPIO_BL_C20MA, brightness & 0x100);
51 tosa_bl_enable(spi, brightness);
54 static int tosa_bl_update_status(struct backlight_device *dev)
56 struct backlight_properties *props = &dev->props;
57 struct tosa_bl_data *data = dev_get_drvdata(&dev->dev);
58 int power = max(props->power, props->fb_blank);
59 int brightness = props->brightness;
61 if (power)
62 brightness = 0;
64 tosa_bl_set_backlight(data, brightness);
66 return 0;
69 static int tosa_bl_get_brightness(struct backlight_device *dev)
71 struct backlight_properties *props = &dev->props;
73 return props->brightness;
76 static const struct backlight_ops bl_ops = {
77 .get_brightness = tosa_bl_get_brightness,
78 .update_status = tosa_bl_update_status,
81 static int __devinit tosa_bl_probe(struct i2c_client *client,
82 const struct i2c_device_id *id)
84 struct backlight_properties props;
85 struct tosa_bl_data *data;
86 int ret = 0;
88 data = devm_kzalloc(&client->dev, sizeof(struct tosa_bl_data),
89 GFP_KERNEL);
90 if (!data)
91 return -ENOMEM;
93 data->comadj = sharpsl_param.comadj == -1 ? COMADJ_DEFAULT : sharpsl_param.comadj;
95 ret = gpio_request(TOSA_GPIO_BL_C20MA, "backlight");
96 if (ret) {
97 dev_dbg(&data->bl->dev, "Unable to request gpio!\n");
98 return ret;
100 ret = gpio_direction_output(TOSA_GPIO_BL_C20MA, 0);
101 if (ret)
102 goto err_gpio_dir;
104 i2c_set_clientdata(client, data);
105 data->i2c = client;
107 memset(&props, 0, sizeof(struct backlight_properties));
108 props.type = BACKLIGHT_RAW;
109 props.max_brightness = 512 - 1;
110 data->bl = backlight_device_register("tosa-bl", &client->dev, data,
111 &bl_ops, &props);
112 if (IS_ERR(data->bl)) {
113 ret = PTR_ERR(data->bl);
114 goto err_reg;
117 data->bl->props.brightness = 69;
118 data->bl->props.power = FB_BLANK_UNBLANK;
120 backlight_update_status(data->bl);
122 return 0;
124 err_reg:
125 data->bl = NULL;
126 err_gpio_dir:
127 gpio_free(TOSA_GPIO_BL_C20MA);
128 return ret;
131 static int __devexit tosa_bl_remove(struct i2c_client *client)
133 struct tosa_bl_data *data = i2c_get_clientdata(client);
135 backlight_device_unregister(data->bl);
136 data->bl = NULL;
138 gpio_free(TOSA_GPIO_BL_C20MA);
140 return 0;
143 #ifdef CONFIG_PM
144 static int tosa_bl_suspend(struct i2c_client *client, pm_message_t pm)
146 struct tosa_bl_data *data = i2c_get_clientdata(client);
148 tosa_bl_set_backlight(data, 0);
150 return 0;
153 static int tosa_bl_resume(struct i2c_client *client)
155 struct tosa_bl_data *data = i2c_get_clientdata(client);
157 backlight_update_status(data->bl);
158 return 0;
160 #else
161 #define tosa_bl_suspend NULL
162 #define tosa_bl_resume NULL
163 #endif
165 static const struct i2c_device_id tosa_bl_id[] = {
166 { "tosa-bl", 0 },
167 { },
171 static struct i2c_driver tosa_bl_driver = {
172 .driver = {
173 .name = "tosa-bl",
174 .owner = THIS_MODULE,
176 .probe = tosa_bl_probe,
177 .remove = __devexit_p(tosa_bl_remove),
178 .suspend = tosa_bl_suspend,
179 .resume = tosa_bl_resume,
180 .id_table = tosa_bl_id,
183 module_i2c_driver(tosa_bl_driver);
185 MODULE_AUTHOR("Dmitry Baryshkov");
186 MODULE_LICENSE("GPL v2");
187 MODULE_DESCRIPTION("LCD/Backlight control for Sharp SL-6000 PDA");