diff options
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/amba-clcd.c | 54 | ||||
-rw-r--r-- | drivers/video/backlight/Kconfig | 8 | ||||
-rw-r--r-- | drivers/video/backlight/Makefile | 1 | ||||
-rw-r--r-- | drivers/video/backlight/hp680_bl.c | 189 | ||||
-rw-r--r-- | drivers/video/cyblafb.c | 1 | ||||
-rw-r--r-- | drivers/video/i810/i810-i2c.c | 6 | ||||
-rw-r--r-- | drivers/video/i810/i810.h | 1 | ||||
-rw-r--r-- | drivers/video/i810/i810_main.c | 13 |
8 files changed, 241 insertions, 32 deletions
diff --git a/drivers/video/amba-clcd.c b/drivers/video/amba-clcd.c index b2187175d03f..6761b68c35e9 100644 --- a/drivers/video/amba-clcd.c +++ b/drivers/video/amba-clcd.c | |||
@@ -116,9 +116,10 @@ clcdfb_set_bitfields(struct clcd_fb *fb, struct fb_var_screeninfo *var) | |||
116 | int ret = 0; | 116 | int ret = 0; |
117 | 117 | ||
118 | memset(&var->transp, 0, sizeof(var->transp)); | 118 | memset(&var->transp, 0, sizeof(var->transp)); |
119 | memset(&var->red, 0, sizeof(var->red)); | 119 | |
120 | memset(&var->green, 0, sizeof(var->green)); | 120 | var->red.msb_right = 0; |
121 | memset(&var->blue, 0, sizeof(var->blue)); | 121 | var->green.msb_right = 0; |
122 | var->blue.msb_right = 0; | ||
122 | 123 | ||
123 | switch (var->bits_per_pixel) { | 124 | switch (var->bits_per_pixel) { |
124 | case 1: | 125 | case 1: |
@@ -133,34 +134,20 @@ clcdfb_set_bitfields(struct clcd_fb *fb, struct fb_var_screeninfo *var) | |||
133 | var->blue.offset = 0; | 134 | var->blue.offset = 0; |
134 | break; | 135 | break; |
135 | case 16: | 136 | case 16: |
136 | var->red.length = 5; | 137 | var->red.length = 5; |
137 | var->green.length = 6; | 138 | var->blue.length = 5; |
138 | var->blue.length = 5; | 139 | /* |
139 | if (fb->panel->cntl & CNTL_BGR) { | 140 | * Green length can be 5 or 6 depending whether |
140 | var->red.offset = 11; | 141 | * we're operating in RGB555 or RGB565 mode. |
141 | var->green.offset = 5; | 142 | */ |
142 | var->blue.offset = 0; | 143 | if (var->green.length != 5 && var->green.length != 6) |
143 | } else { | 144 | var->green.length = 6; |
144 | var->red.offset = 0; | ||
145 | var->green.offset = 5; | ||
146 | var->blue.offset = 11; | ||
147 | } | ||
148 | break; | 145 | break; |
149 | case 32: | 146 | case 32: |
150 | if (fb->panel->cntl & CNTL_LCDTFT) { | 147 | if (fb->panel->cntl & CNTL_LCDTFT) { |
151 | var->red.length = 8; | 148 | var->red.length = 8; |
152 | var->green.length = 8; | 149 | var->green.length = 8; |
153 | var->blue.length = 8; | 150 | var->blue.length = 8; |
154 | |||
155 | if (fb->panel->cntl & CNTL_BGR) { | ||
156 | var->red.offset = 16; | ||
157 | var->green.offset = 8; | ||
158 | var->blue.offset = 0; | ||
159 | } else { | ||
160 | var->red.offset = 0; | ||
161 | var->green.offset = 8; | ||
162 | var->blue.offset = 16; | ||
163 | } | ||
164 | break; | 151 | break; |
165 | } | 152 | } |
166 | default: | 153 | default: |
@@ -168,6 +155,23 @@ clcdfb_set_bitfields(struct clcd_fb *fb, struct fb_var_screeninfo *var) | |||
168 | break; | 155 | break; |
169 | } | 156 | } |
170 | 157 | ||
158 | /* | ||
159 | * >= 16bpp displays have separate colour component bitfields | ||
160 | * encoded in the pixel data. Calculate their position from | ||
161 | * the bitfield length defined above. | ||
162 | */ | ||
163 | if (ret == 0 && var->bits_per_pixel >= 16) { | ||
164 | if (fb->panel->cntl & CNTL_BGR) { | ||
165 | var->blue.offset = 0; | ||
166 | var->green.offset = var->blue.offset + var->blue.length; | ||
167 | var->red.offset = var->green.offset + var->green.length; | ||
168 | } else { | ||
169 | var->red.offset = 0; | ||
170 | var->green.offset = var->red.offset + var->red.length; | ||
171 | var->blue.offset = var->green.offset + var->green.length; | ||
172 | } | ||
173 | } | ||
174 | |||
171 | return ret; | 175 | return ret; |
172 | } | 176 | } |
173 | 177 | ||
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index 996d543d6609..9d996f2c10d5 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -50,3 +50,11 @@ config BACKLIGHT_CORGI | |||
50 | If you have a Sharp Zaurus SL-C7xx, say y to enable the | 50 | If you have a Sharp Zaurus SL-C7xx, say y to enable the |
51 | backlight driver. | 51 | backlight driver. |
52 | 52 | ||
53 | config BACKLIGHT_HP680 | ||
54 | tristate "HP Jornada 680 Backlight Driver" | ||
55 | depends on BACKLIGHT_DEVICE && SH_HP6XX | ||
56 | default y | ||
57 | help | ||
58 | If you have a HP Jornada 680, say y to enable the | ||
59 | backlight driver. | ||
60 | |||
diff --git a/drivers/video/backlight/Makefile b/drivers/video/backlight/Makefile index 4af321fae390..744210c38e74 100644 --- a/drivers/video/backlight/Makefile +++ b/drivers/video/backlight/Makefile | |||
@@ -3,4 +3,5 @@ | |||
3 | obj-$(CONFIG_LCD_CLASS_DEVICE) += lcd.o | 3 | obj-$(CONFIG_LCD_CLASS_DEVICE) += lcd.o |
4 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o | 4 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o |
5 | obj-$(CONFIG_BACKLIGHT_CORGI) += corgi_bl.o | 5 | obj-$(CONFIG_BACKLIGHT_CORGI) += corgi_bl.o |
6 | obj-$(CONFIG_BACKLIGHT_HP680) += hp680_bl.o | ||
6 | obj-$(CONFIG_SHARP_LOCOMO) += locomolcd.o | 7 | obj-$(CONFIG_SHARP_LOCOMO) += locomolcd.o |
diff --git a/drivers/video/backlight/hp680_bl.c b/drivers/video/backlight/hp680_bl.c new file mode 100644 index 000000000000..95da4c9ed1f1 --- /dev/null +++ b/drivers/video/backlight/hp680_bl.c | |||
@@ -0,0 +1,189 @@ | |||
1 | /* | ||
2 | * Backlight Driver for HP Jornada 680 | ||
3 | * | ||
4 | * Copyright (c) 2005 Andriy Skulysh | ||
5 | * | ||
6 | * Based on Sharp's Corgi Backlight Driver | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | |||
13 | #include <linux/module.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/init.h> | ||
16 | #include <linux/device.h> | ||
17 | #include <linux/spinlock.h> | ||
18 | #include <linux/fb.h> | ||
19 | #include <linux/backlight.h> | ||
20 | |||
21 | #include <asm/cpu/dac.h> | ||
22 | #include <asm/hp6xx/hp6xx.h> | ||
23 | #include <asm/hd64461/hd64461.h> | ||
24 | |||
25 | #define HP680_MAX_INTENSITY 255 | ||
26 | #define HP680_DEFAULT_INTENSITY 10 | ||
27 | |||
28 | static int hp680bl_powermode = FB_BLANK_UNBLANK; | ||
29 | static int current_intensity = 0; | ||
30 | static spinlock_t bl_lock = SPIN_LOCK_UNLOCKED; | ||
31 | |||
32 | static void hp680bl_send_intensity(int intensity) | ||
33 | { | ||
34 | unsigned long flags; | ||
35 | |||
36 | if (hp680bl_powermode != FB_BLANK_UNBLANK) | ||
37 | intensity = 0; | ||
38 | |||
39 | spin_lock_irqsave(&bl_lock, flags); | ||
40 | sh_dac_output(255-(u8)intensity, DAC_LCD_BRIGHTNESS); | ||
41 | spin_unlock_irqrestore(&bl_lock, flags); | ||
42 | } | ||
43 | |||
44 | static void hp680bl_blank(int blank) | ||
45 | { | ||
46 | u16 v; | ||
47 | |||
48 | switch(blank) { | ||
49 | |||
50 | case FB_BLANK_NORMAL: | ||
51 | case FB_BLANK_VSYNC_SUSPEND: | ||
52 | case FB_BLANK_HSYNC_SUSPEND: | ||
53 | case FB_BLANK_POWERDOWN: | ||
54 | if (hp680bl_powermode == FB_BLANK_UNBLANK) { | ||
55 | hp680bl_send_intensity(0); | ||
56 | hp680bl_powermode = blank; | ||
57 | sh_dac_disable(DAC_LCD_BRIGHTNESS); | ||
58 | v = inw(HD64461_GPBDR); | ||
59 | v |= HD64461_GPBDR_LCDOFF; | ||
60 | outw(v, HD64461_GPBDR); | ||
61 | } | ||
62 | break; | ||
63 | case FB_BLANK_UNBLANK: | ||
64 | if (hp680bl_powermode != FB_BLANK_UNBLANK) { | ||
65 | sh_dac_enable(DAC_LCD_BRIGHTNESS); | ||
66 | v = inw(HD64461_GPBDR); | ||
67 | v &= ~HD64461_GPBDR_LCDOFF; | ||
68 | outw(v, HD64461_GPBDR); | ||
69 | hp680bl_powermode = blank; | ||
70 | hp680bl_send_intensity(current_intensity); | ||
71 | } | ||
72 | break; | ||
73 | } | ||
74 | } | ||
75 | |||
76 | #ifdef CONFIG_PM | ||
77 | static int hp680bl_suspend(struct device *dev, pm_message_t state, u32 level) | ||
78 | { | ||
79 | if (level == SUSPEND_POWER_DOWN) | ||
80 | hp680bl_blank(FB_BLANK_POWERDOWN); | ||
81 | return 0; | ||
82 | } | ||
83 | |||
84 | static int hp680bl_resume(struct device *dev, u32 level) | ||
85 | { | ||
86 | if (level == RESUME_POWER_ON) | ||
87 | hp680bl_blank(FB_BLANK_UNBLANK); | ||
88 | return 0; | ||
89 | } | ||
90 | #else | ||
91 | #define hp680bl_suspend NULL | ||
92 | #define hp680bl_resume NULL | ||
93 | #endif | ||
94 | |||
95 | |||
96 | static int hp680bl_set_power(struct backlight_device *bd, int state) | ||
97 | { | ||
98 | hp680bl_blank(state); | ||
99 | return 0; | ||
100 | } | ||
101 | |||
102 | static int hp680bl_get_power(struct backlight_device *bd) | ||
103 | { | ||
104 | return hp680bl_powermode; | ||
105 | } | ||
106 | |||
107 | static int hp680bl_set_intensity(struct backlight_device *bd, int intensity) | ||
108 | { | ||
109 | if (intensity > HP680_MAX_INTENSITY) | ||
110 | intensity = HP680_MAX_INTENSITY; | ||
111 | hp680bl_send_intensity(intensity); | ||
112 | current_intensity = intensity; | ||
113 | return 0; | ||
114 | } | ||
115 | |||
116 | static int hp680bl_get_intensity(struct backlight_device *bd) | ||
117 | { | ||
118 | return current_intensity; | ||
119 | } | ||
120 | |||
121 | static struct backlight_properties hp680bl_data = { | ||
122 | .owner = THIS_MODULE, | ||
123 | .get_power = hp680bl_get_power, | ||
124 | .set_power = hp680bl_set_power, | ||
125 | .max_brightness = HP680_MAX_INTENSITY, | ||
126 | .get_brightness = hp680bl_get_intensity, | ||
127 | .set_brightness = hp680bl_set_intensity, | ||
128 | }; | ||
129 | |||
130 | static struct backlight_device *hp680_backlight_device; | ||
131 | |||
132 | static int __init hp680bl_probe(struct device *dev) | ||
133 | { | ||
134 | hp680_backlight_device = backlight_device_register ("hp680-bl", | ||
135 | NULL, &hp680bl_data); | ||
136 | if (IS_ERR (hp680_backlight_device)) | ||
137 | return PTR_ERR (hp680_backlight_device); | ||
138 | |||
139 | hp680bl_set_intensity(NULL, HP680_DEFAULT_INTENSITY); | ||
140 | |||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | static int hp680bl_remove(struct device *dev) | ||
145 | { | ||
146 | backlight_device_unregister(hp680_backlight_device); | ||
147 | |||
148 | return 0; | ||
149 | } | ||
150 | |||
151 | static struct device_driver hp680bl_driver = { | ||
152 | .name = "hp680-bl", | ||
153 | .bus = &platform_bus_type, | ||
154 | .probe = hp680bl_probe, | ||
155 | .remove = hp680bl_remove, | ||
156 | .suspend = hp680bl_suspend, | ||
157 | .resume = hp680bl_resume, | ||
158 | }; | ||
159 | |||
160 | static struct platform_device hp680bl_device = { | ||
161 | .name = "hp680-bl", | ||
162 | .id = -1, | ||
163 | }; | ||
164 | |||
165 | static int __init hp680bl_init(void) | ||
166 | { | ||
167 | int ret; | ||
168 | |||
169 | ret=driver_register(&hp680bl_driver); | ||
170 | if (!ret) { | ||
171 | ret = platform_device_register(&hp680bl_device); | ||
172 | if (ret) | ||
173 | driver_unregister(&hp680bl_driver); | ||
174 | } | ||
175 | return ret; | ||
176 | } | ||
177 | |||
178 | static void __exit hp680bl_exit(void) | ||
179 | { | ||
180 | platform_device_unregister(&hp680bl_device); | ||
181 | driver_unregister(&hp680bl_driver); | ||
182 | } | ||
183 | |||
184 | module_init(hp680bl_init); | ||
185 | module_exit(hp680bl_exit); | ||
186 | |||
187 | MODULE_AUTHOR("Andriy Skulysh <askulysh@image.kiev.ua>"); | ||
188 | MODULE_DESCRIPTION("HP Jornada 680 Backlight Driver"); | ||
189 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/cyblafb.c b/drivers/video/cyblafb.c index 2b972461a030..0ae0a97b0fed 100644 --- a/drivers/video/cyblafb.c +++ b/drivers/video/cyblafb.c | |||
@@ -1665,7 +1665,6 @@ static int __devinit cyblafb_init(void) | |||
1665 | } | 1665 | } |
1666 | #endif | 1666 | #endif |
1667 | output("CyblaFB version %s initializing\n", VERSION); | 1667 | output("CyblaFB version %s initializing\n", VERSION); |
1668 | return pci_module_init(&cyblafb_pci_driver); | ||
1669 | return pci_register_driver(&cyblafb_pci_driver); | 1668 | return pci_register_driver(&cyblafb_pci_driver); |
1670 | } | 1669 | } |
1671 | 1670 | ||
diff --git a/drivers/video/i810/i810-i2c.c b/drivers/video/i810/i810-i2c.c index bd410e06db73..e3c8b5f1ca76 100644 --- a/drivers/video/i810/i810-i2c.c +++ b/drivers/video/i810/i810-i2c.c | |||
@@ -191,11 +191,11 @@ int i810_probe_i2c_connector(struct fb_info *info, u8 **out_edid, int conn) | |||
191 | u8 *edid = NULL; | 191 | u8 *edid = NULL; |
192 | int i; | 192 | int i; |
193 | 193 | ||
194 | DPRINTK("i810-i2c: Probe DDC%i Bus\n", conn); | 194 | DPRINTK("i810-i2c: Probe DDC%i Bus\n", conn+1); |
195 | if (conn < 4) { | 195 | if (conn < par->ddc_num) { |
196 | for (i = 0; i < 3; i++) { | 196 | for (i = 0; i < 3; i++) { |
197 | /* Do the real work */ | 197 | /* Do the real work */ |
198 | edid = i810_do_probe_i2c_edid(&par->chan[conn-1]); | 198 | edid = i810_do_probe_i2c_edid(&par->chan[conn]); |
199 | if (edid) | 199 | if (edid) |
200 | break; | 200 | break; |
201 | } | 201 | } |
diff --git a/drivers/video/i810/i810.h b/drivers/video/i810/i810.h index 6c187d5fe951..579195c2bea3 100644 --- a/drivers/video/i810/i810.h +++ b/drivers/video/i810/i810.h | |||
@@ -280,6 +280,7 @@ struct i810fb_par { | |||
280 | u32 blit_bpp; | 280 | u32 blit_bpp; |
281 | u32 ovract; | 281 | u32 ovract; |
282 | u32 cur_state; | 282 | u32 cur_state; |
283 | u32 ddc_num; | ||
283 | int mtrr_reg; | 284 | int mtrr_reg; |
284 | u16 bltcntl; | 285 | u16 bltcntl; |
285 | u8 interlace; | 286 | u8 interlace; |
diff --git a/drivers/video/i810/i810_main.c b/drivers/video/i810/i810_main.c index 266d0ab92663..d8467c03b49f 100644 --- a/drivers/video/i810/i810_main.c +++ b/drivers/video/i810/i810_main.c | |||
@@ -149,6 +149,7 @@ static int vyres __devinitdata; | |||
149 | static int sync __devinitdata; | 149 | static int sync __devinitdata; |
150 | static int extvga __devinitdata; | 150 | static int extvga __devinitdata; |
151 | static int dcolor __devinitdata; | 151 | static int dcolor __devinitdata; |
152 | static int ddc3 __devinitdata = 2; | ||
152 | 153 | ||
153 | /*------------------------------------------------------------*/ | 154 | /*------------------------------------------------------------*/ |
154 | 155 | ||
@@ -1763,6 +1764,8 @@ static void __devinit i810_init_defaults(struct i810fb_par *par, | |||
1763 | if (sync) | 1764 | if (sync) |
1764 | par->dev_flags |= ALWAYS_SYNC; | 1765 | par->dev_flags |= ALWAYS_SYNC; |
1765 | 1766 | ||
1767 | par->ddc_num = ddc3; | ||
1768 | |||
1766 | if (bpp < 8) | 1769 | if (bpp < 8) |
1767 | bpp = 8; | 1770 | bpp = 8; |
1768 | 1771 | ||
@@ -1885,7 +1888,7 @@ static void __devinit i810fb_find_init_mode(struct fb_info *info) | |||
1885 | int found = 0; | 1888 | int found = 0; |
1886 | #ifdef CONFIG_FB_I810_I2C | 1889 | #ifdef CONFIG_FB_I810_I2C |
1887 | int i; | 1890 | int i; |
1888 | int err; | 1891 | int err = 1; |
1889 | struct i810fb_par *par = info->par; | 1892 | struct i810fb_par *par = info->par; |
1890 | #endif | 1893 | #endif |
1891 | 1894 | ||
@@ -1895,8 +1898,8 @@ static void __devinit i810fb_find_init_mode(struct fb_info *info) | |||
1895 | #ifdef CONFIG_FB_I810_I2C | 1898 | #ifdef CONFIG_FB_I810_I2C |
1896 | i810_create_i2c_busses(par); | 1899 | i810_create_i2c_busses(par); |
1897 | 1900 | ||
1898 | for (i = 0; i < 4; i++) { | 1901 | for (i = 0; i < par->ddc_num + 1; i++) { |
1899 | err = i810_probe_i2c_connector(info, &par->edid, i+1); | 1902 | err = i810_probe_i2c_connector(info, &par->edid, i); |
1900 | if (!err) | 1903 | if (!err) |
1901 | break; | 1904 | break; |
1902 | } | 1905 | } |
@@ -1983,6 +1986,8 @@ static int __devinit i810fb_setup(char *options) | |||
1983 | vsync2 = simple_strtoul(this_opt+7, NULL, 0); | 1986 | vsync2 = simple_strtoul(this_opt+7, NULL, 0); |
1984 | else if (!strncmp(this_opt, "dcolor", 6)) | 1987 | else if (!strncmp(this_opt, "dcolor", 6)) |
1985 | dcolor = 1; | 1988 | dcolor = 1; |
1989 | else if (!strncmp(this_opt, "ddc3", 4)) | ||
1990 | ddc3 = 3; | ||
1986 | else | 1991 | else |
1987 | mode_option = this_opt; | 1992 | mode_option = this_opt; |
1988 | } | 1993 | } |
@@ -2190,6 +2195,8 @@ MODULE_PARM_DESC(sync, "wait for accel engine to finish drawing" | |||
2190 | module_param(dcolor, bool, 0); | 2195 | module_param(dcolor, bool, 0); |
2191 | MODULE_PARM_DESC(dcolor, "use DirectColor visuals" | 2196 | MODULE_PARM_DESC(dcolor, "use DirectColor visuals" |
2192 | " (default = 0 = TrueColor)"); | 2197 | " (default = 0 = TrueColor)"); |
2198 | module_param(ddc3, bool, 0); | ||
2199 | MODULE_PARM_DESC(ddc3, "Probe DDC bus 3 (default = 0 = no)"); | ||
2193 | module_param(mode_option, charp, 0); | 2200 | module_param(mode_option, charp, 0); |
2194 | MODULE_PARM_DESC(mode_option, "Specify initial video mode"); | 2201 | MODULE_PARM_DESC(mode_option, "Specify initial video mode"); |
2195 | 2202 | ||