diff options
| author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
|---|---|---|
| committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-28 08:29:59 -0400 |
| commit | 185a257f2f73bcd89050ad02da5bedbc28fc43fa (patch) | |
| tree | 5e32586114534ed3f2165614cba3d578f5d87307 /drivers/video | |
| parent | 3f1a9aaeffd8d1cbc5ab9776c45cbd66af1c9699 (diff) | |
| parent | a77c64c1a641950626181b4857abb701d8f38ccc (diff) | |
Merge branch 'master' into gfs2
Diffstat (limited to 'drivers/video')
| -rw-r--r-- | drivers/video/aty/radeon_pm.c | 15 | ||||
| -rw-r--r-- | drivers/video/backlight/hp680_bl.c | 4 | ||||
| -rw-r--r-- | drivers/video/console/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/video/fbsysfs.c | 12 | ||||
| -rw-r--r-- | drivers/video/hitfb.c | 229 | ||||
| -rw-r--r-- | drivers/video/i810/i810-i2c.c | 1 | ||||
| -rw-r--r-- | drivers/video/i810/i810_main.c | 12 | ||||
| -rw-r--r-- | drivers/video/matrox/i2c-matroxfb.c | 12 | ||||
| -rw-r--r-- | drivers/video/nvidia/nvidia.c | 13 | ||||
| -rw-r--r-- | drivers/video/pvr2fb.c | 22 | ||||
| -rw-r--r-- | drivers/video/savage/savagefb-i2c.c | 1 | ||||
| -rw-r--r-- | drivers/video/savage/savagefb_driver.c | 14 |
12 files changed, 245 insertions, 92 deletions
diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index e308ed2d249a..365de5dcc888 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c | |||
| @@ -2621,25 +2621,28 @@ static int radeon_restore_pci_cfg(struct radeonfb_info *rinfo) | |||
| 2621 | } | 2621 | } |
| 2622 | 2622 | ||
| 2623 | 2623 | ||
| 2624 | int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t state) | 2624 | int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) |
| 2625 | { | 2625 | { |
| 2626 | struct fb_info *info = pci_get_drvdata(pdev); | 2626 | struct fb_info *info = pci_get_drvdata(pdev); |
| 2627 | struct radeonfb_info *rinfo = info->par; | 2627 | struct radeonfb_info *rinfo = info->par; |
| 2628 | int i; | 2628 | int i; |
| 2629 | 2629 | ||
| 2630 | if (state.event == pdev->dev.power.power_state.event) | 2630 | if (mesg.event == pdev->dev.power.power_state.event) |
| 2631 | return 0; | 2631 | return 0; |
| 2632 | 2632 | ||
| 2633 | printk(KERN_DEBUG "radeonfb (%s): suspending to state: %d...\n", | 2633 | printk(KERN_DEBUG "radeonfb (%s): suspending for event: %d...\n", |
| 2634 | pci_name(pdev), state.event); | 2634 | pci_name(pdev), mesg.event); |
| 2635 | 2635 | ||
| 2636 | /* For suspend-to-disk, we cheat here. We don't suspend anything and | 2636 | /* For suspend-to-disk, we cheat here. We don't suspend anything and |
| 2637 | * let fbcon continue drawing until we are all set. That shouldn't | 2637 | * let fbcon continue drawing until we are all set. That shouldn't |
| 2638 | * really cause any problem at this point, provided that the wakeup | 2638 | * really cause any problem at this point, provided that the wakeup |
| 2639 | * code knows that any state in memory may not match the HW | 2639 | * code knows that any state in memory may not match the HW |
| 2640 | */ | 2640 | */ |
| 2641 | if (state.event == PM_EVENT_FREEZE) | 2641 | switch (mesg.event) { |
| 2642 | case PM_EVENT_FREEZE: /* about to take snapshot */ | ||
| 2643 | case PM_EVENT_PRETHAW: /* before restoring snapshot */ | ||
| 2642 | goto done; | 2644 | goto done; |
| 2645 | } | ||
| 2643 | 2646 | ||
| 2644 | acquire_console_sem(); | 2647 | acquire_console_sem(); |
| 2645 | 2648 | ||
| @@ -2706,7 +2709,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t state) | |||
| 2706 | release_console_sem(); | 2709 | release_console_sem(); |
| 2707 | 2710 | ||
| 2708 | done: | 2711 | done: |
| 2709 | pdev->dev.power.power_state = state; | 2712 | pdev->dev.power.power_state = mesg; |
| 2710 | 2713 | ||
| 2711 | return 0; | 2714 | return 0; |
| 2712 | } | 2715 | } |
diff --git a/drivers/video/backlight/hp680_bl.c b/drivers/video/backlight/hp680_bl.c index ffc72ae3ada8..fe1488374f62 100644 --- a/drivers/video/backlight/hp680_bl.c +++ b/drivers/video/backlight/hp680_bl.c | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | #include <asm/cpu/dac.h> | 21 | #include <asm/cpu/dac.h> |
| 22 | #include <asm/hp6xx/hp6xx.h> | 22 | #include <asm/hp6xx/hp6xx.h> |
| 23 | #include <asm/hd64461/hd64461.h> | 23 | #include <asm/hd64461.h> |
| 24 | 24 | ||
| 25 | #define HP680_MAX_INTENSITY 255 | 25 | #define HP680_MAX_INTENSITY 255 |
| 26 | #define HP680_DEFAULT_INTENSITY 10 | 26 | #define HP680_DEFAULT_INTENSITY 10 |
| @@ -163,6 +163,6 @@ static void __exit hp680bl_exit(void) | |||
| 163 | module_init(hp680bl_init); | 163 | module_init(hp680bl_init); |
| 164 | module_exit(hp680bl_exit); | 164 | module_exit(hp680bl_exit); |
| 165 | 165 | ||
| 166 | MODULE_AUTHOR("Andriy Skulysh <askulysh@image.kiev.ua>"); | 166 | MODULE_AUTHOR("Andriy Skulysh <askulysh@gmail.com>"); |
| 167 | MODULE_DESCRIPTION("HP Jornada 680 Backlight Driver"); | 167 | MODULE_DESCRIPTION("HP Jornada 680 Backlight Driver"); |
| 168 | MODULE_LICENSE("GPL"); | 168 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index 4444bef68fba..aa3935df852a 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig | |||
| @@ -6,7 +6,7 @@ menu "Console display driver support" | |||
| 6 | 6 | ||
| 7 | config VGA_CONSOLE | 7 | config VGA_CONSOLE |
| 8 | bool "VGA text console" if EMBEDDED || !X86 | 8 | bool "VGA text console" if EMBEDDED || !X86 |
| 9 | depends on !ARCH_ACORN && !ARCH_EBSA110 && !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !ARCH_VERSATILE | 9 | depends on !ARCH_ACORN && !ARCH_EBSA110 && !4xx && !8xx && !SPARC && !M68K && !PARISC && !FRV && !ARCH_VERSATILE && !SUPERH |
| 10 | default y | 10 | default y |
| 11 | help | 11 | help |
| 12 | Saying Y here will allow you to use Linux in text mode through a | 12 | Saying Y here will allow you to use Linux in text mode through a |
diff --git a/drivers/video/fbsysfs.c b/drivers/video/fbsysfs.c index 4f78f234473d..c151dcf68786 100644 --- a/drivers/video/fbsysfs.c +++ b/drivers/video/fbsysfs.c | |||
| @@ -397,6 +397,12 @@ static ssize_t store_bl_curve(struct class_device *class_device, | |||
| 397 | u8 tmp_curve[FB_BACKLIGHT_LEVELS]; | 397 | u8 tmp_curve[FB_BACKLIGHT_LEVELS]; |
| 398 | unsigned int i; | 398 | unsigned int i; |
| 399 | 399 | ||
| 400 | /* Some drivers don't use framebuffer_alloc(), but those also | ||
| 401 | * don't have backlights. | ||
| 402 | */ | ||
| 403 | if (!fb_info || !fb_info->bl_dev) | ||
| 404 | return -ENODEV; | ||
| 405 | |||
| 400 | if (count != (FB_BACKLIGHT_LEVELS / 8 * 24)) | 406 | if (count != (FB_BACKLIGHT_LEVELS / 8 * 24)) |
| 401 | return -EINVAL; | 407 | return -EINVAL; |
| 402 | 408 | ||
| @@ -430,6 +436,12 @@ static ssize_t show_bl_curve(struct class_device *class_device, char *buf) | |||
| 430 | ssize_t len = 0; | 436 | ssize_t len = 0; |
| 431 | unsigned int i; | 437 | unsigned int i; |
| 432 | 438 | ||
| 439 | /* Some drivers don't use framebuffer_alloc(), but those also | ||
| 440 | * don't have backlights. | ||
| 441 | */ | ||
| 442 | if (!fb_info || !fb_info->bl_dev) | ||
| 443 | return -ENODEV; | ||
| 444 | |||
| 433 | mutex_lock(&fb_info->bl_mutex); | 445 | mutex_lock(&fb_info->bl_mutex); |
| 434 | for (i = 0; i < FB_BACKLIGHT_LEVELS; i += 8) | 446 | for (i = 0; i < FB_BACKLIGHT_LEVELS; i += 8) |
| 435 | len += snprintf(&buf[len], PAGE_SIZE, | 447 | len += snprintf(&buf[len], PAGE_SIZE, |
diff --git a/drivers/video/hitfb.c b/drivers/video/hitfb.c index 4cc6b454265e..3afb472763c0 100644 --- a/drivers/video/hitfb.c +++ b/drivers/video/hitfb.c | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | * (C) 1999 Mihai Spatar | 4 | * (C) 1999 Mihai Spatar |
| 5 | * (C) 2000 YAEGASHI Takeshi | 5 | * (C) 2000 YAEGASHI Takeshi |
| 6 | * (C) 2003, 2004 Paul Mundt | 6 | * (C) 2003, 2004 Paul Mundt |
| 7 | * (C) 2003, 2004 Andriy Skulysh | 7 | * (C) 2003, 2004, 2006 Andriy Skulysh |
| 8 | * | 8 | * |
| 9 | * This file is subject to the terms and conditions of the GNU General Public | 9 | * This file is subject to the terms and conditions of the GNU General Public |
| 10 | * License. See the file COPYING in the main directory of this archive for | 10 | * License. See the file COPYING in the main directory of this archive for |
| @@ -20,18 +20,16 @@ | |||
| 20 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
| 21 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
| 22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
| 23 | #include <linux/platform_device.h> | ||
| 23 | #include <linux/fb.h> | 24 | #include <linux/fb.h> |
| 24 | 25 | ||
| 25 | #include <asm/machvec.h> | 26 | #include <asm/machvec.h> |
| 26 | #include <asm/uaccess.h> | 27 | #include <asm/uaccess.h> |
| 27 | #include <asm/pgtable.h> | 28 | #include <asm/pgtable.h> |
| 28 | #include <asm/io.h> | 29 | #include <asm/io.h> |
| 29 | #include <asm/hd64461/hd64461.h> | 30 | #include <asm/hd64461.h> |
| 30 | |||
| 31 | #ifdef MACH_HP600 | ||
| 32 | #include <asm/cpu/dac.h> | 31 | #include <asm/cpu/dac.h> |
| 33 | #include <asm/hp6xx/hp6xx.h> | 32 | #include <asm/hp6xx/hp6xx.h> |
| 34 | #endif | ||
| 35 | 33 | ||
| 36 | #define WIDTH 640 | 34 | #define WIDTH 640 |
| 37 | 35 | ||
| @@ -45,7 +43,6 @@ static struct fb_var_screeninfo hitfb_var __initdata = { | |||
| 45 | static struct fb_fix_screeninfo hitfb_fix __initdata = { | 43 | static struct fb_fix_screeninfo hitfb_fix __initdata = { |
| 46 | .id = "Hitachi HD64461", | 44 | .id = "Hitachi HD64461", |
| 47 | .type = FB_TYPE_PACKED_PIXELS, | 45 | .type = FB_TYPE_PACKED_PIXELS, |
| 48 | .ypanstep = 8, | ||
| 49 | .accel = FB_ACCEL_NONE, | 46 | .accel = FB_ACCEL_NONE, |
| 50 | }; | 47 | }; |
| 51 | 48 | ||
| @@ -73,26 +70,14 @@ static inline void hitfb_accel_set_dest(int truecolor, u16 dx, u16 dy, | |||
| 73 | if (truecolor) | 70 | if (truecolor) |
| 74 | saddr <<= 1; | 71 | saddr <<= 1; |
| 75 | 72 | ||
| 76 | fb_writew(width, HD64461_BBTDWR); | 73 | fb_writew(width-1, HD64461_BBTDWR); |
| 77 | fb_writew(height, HD64461_BBTDHR); | 74 | fb_writew(height-1, HD64461_BBTDHR); |
| 78 | 75 | ||
| 79 | fb_writew(saddr & 0xffff, HD64461_BBTDSARL); | 76 | fb_writew(saddr & 0xffff, HD64461_BBTDSARL); |
| 80 | fb_writew(saddr >> 16, HD64461_BBTDSARH); | 77 | fb_writew(saddr >> 16, HD64461_BBTDSARH); |
| 81 | 78 | ||
| 82 | } | 79 | } |
| 83 | 80 | ||
| 84 | static inline void hitfb_accel_solidfill(int truecolor, u16 dx, u16 dy, | ||
| 85 | u16 width, u16 height, u16 color) | ||
| 86 | { | ||
| 87 | hitfb_accel_set_dest(truecolor, dx, dy, width, height); | ||
| 88 | |||
| 89 | fb_writew(0x00f0, HD64461_BBTROPR); | ||
| 90 | fb_writew(16, HD64461_BBTMDR); | ||
| 91 | fb_writew(color, HD64461_GRSCR); | ||
| 92 | |||
| 93 | hitfb_accel_start(truecolor); | ||
| 94 | } | ||
| 95 | |||
| 96 | static inline void hitfb_accel_bitblt(int truecolor, u16 sx, u16 sy, u16 dx, | 81 | static inline void hitfb_accel_bitblt(int truecolor, u16 sx, u16 sy, u16 dx, |
| 97 | u16 dy, u16 width, u16 height, u16 rop, | 82 | u16 dy, u16 width, u16 height, u16 rop, |
| 98 | u32 mask_addr) | 83 | u32 mask_addr) |
| @@ -100,6 +85,8 @@ static inline void hitfb_accel_bitblt(int truecolor, u16 sx, u16 sy, u16 dx, | |||
| 100 | u32 saddr, daddr; | 85 | u32 saddr, daddr; |
| 101 | u32 maddr = 0; | 86 | u32 maddr = 0; |
| 102 | 87 | ||
| 88 | height--; | ||
| 89 | width--; | ||
| 103 | fb_writew(rop, HD64461_BBTROPR); | 90 | fb_writew(rop, HD64461_BBTROPR); |
| 104 | if ((sy < dy) || ((sy == dy) && (sx <= dx))) { | 91 | if ((sy < dy) || ((sy == dy) && (sx <= dx))) { |
| 105 | saddr = WIDTH * (sy + height) + sx + width; | 92 | saddr = WIDTH * (sy + height) + sx + width; |
| @@ -146,6 +133,7 @@ static void hitfb_fillrect(struct fb_info *p, const struct fb_fillrect *rect) | |||
| 146 | if (rect->rop != ROP_COPY) | 133 | if (rect->rop != ROP_COPY) |
| 147 | cfb_fillrect(p, rect); | 134 | cfb_fillrect(p, rect); |
| 148 | else { | 135 | else { |
| 136 | hitfb_accel_wait(); | ||
| 149 | fb_writew(0x00f0, HD64461_BBTROPR); | 137 | fb_writew(0x00f0, HD64461_BBTROPR); |
| 150 | fb_writew(16, HD64461_BBTMDR); | 138 | fb_writew(16, HD64461_BBTMDR); |
| 151 | 139 | ||
| @@ -161,16 +149,15 @@ static void hitfb_fillrect(struct fb_info *p, const struct fb_fillrect *rect) | |||
| 161 | rect->height); | 149 | rect->height); |
| 162 | hitfb_accel_start(0); | 150 | hitfb_accel_start(0); |
| 163 | } | 151 | } |
| 164 | hitfb_accel_wait(); | ||
| 165 | } | 152 | } |
| 166 | } | 153 | } |
| 167 | 154 | ||
| 168 | static void hitfb_copyarea(struct fb_info *p, const struct fb_copyarea *area) | 155 | static void hitfb_copyarea(struct fb_info *p, const struct fb_copyarea *area) |
| 169 | { | 156 | { |
| 157 | hitfb_accel_wait(); | ||
| 170 | hitfb_accel_bitblt(p->var.bits_per_pixel == 16, area->sx, area->sy, | 158 | hitfb_accel_bitblt(p->var.bits_per_pixel == 16, area->sx, area->sy, |
| 171 | area->dx, area->dy, area->width, area->height, | 159 | area->dx, area->dy, area->width, area->height, |
| 172 | 0x00cc, 0); | 160 | 0x00cc, 0); |
| 173 | hitfb_accel_wait(); | ||
| 174 | } | 161 | } |
| 175 | 162 | ||
| 176 | static int hitfb_pan_display(struct fb_var_screeninfo *var, | 163 | static int hitfb_pan_display(struct fb_var_screeninfo *var, |
| @@ -182,7 +169,7 @@ static int hitfb_pan_display(struct fb_var_screeninfo *var, | |||
| 182 | if (xoffset != 0) | 169 | if (xoffset != 0) |
| 183 | return -EINVAL; | 170 | return -EINVAL; |
| 184 | 171 | ||
| 185 | fb_writew(yoffset, HD64461_LCDCBAR); | 172 | fb_writew((yoffset*info->fix.line_length)>>10, HD64461_LCDCBAR); |
| 186 | 173 | ||
| 187 | return 0; | 174 | return 0; |
| 188 | } | 175 | } |
| @@ -192,12 +179,6 @@ int hitfb_blank(int blank_mode, struct fb_info *info) | |||
| 192 | unsigned short v; | 179 | unsigned short v; |
| 193 | 180 | ||
| 194 | if (blank_mode) { | 181 | if (blank_mode) { |
| 195 | #ifdef MACH_HP600 | ||
| 196 | sh_dac_disable(DAC_LCD_BRIGHTNESS); | ||
| 197 | v = fb_readw(HD64461_GPBDR); | ||
| 198 | v |= HD64461_GPBDR_LCDOFF; | ||
| 199 | fb_writew(v, HD64461_GPBDR); | ||
| 200 | #endif | ||
| 201 | v = fb_readw(HD64461_LDR1); | 182 | v = fb_readw(HD64461_LDR1); |
| 202 | v &= ~HD64461_LDR1_DON; | 183 | v &= ~HD64461_LDR1_DON; |
| 203 | fb_writew(v, HD64461_LDR1); | 184 | fb_writew(v, HD64461_LDR1); |
| @@ -213,19 +194,18 @@ int hitfb_blank(int blank_mode, struct fb_info *info) | |||
| 213 | v = fb_readw(HD64461_STBCR); | 194 | v = fb_readw(HD64461_STBCR); |
| 214 | v &= ~HD64461_STBCR_SLCDST; | 195 | v &= ~HD64461_STBCR_SLCDST; |
| 215 | fb_writew(v, HD64461_STBCR); | 196 | fb_writew(v, HD64461_STBCR); |
| 216 | #ifdef MACH_HP600 | ||
| 217 | sh_dac_enable(DAC_LCD_BRIGHTNESS); | ||
| 218 | v = fb_readw(HD64461_GPBDR); | ||
| 219 | v &= ~HD64461_GPBDR_LCDOFF; | ||
| 220 | fb_writew(v, HD64461_GPBDR); | ||
| 221 | #endif | ||
| 222 | v = fb_readw(HD64461_LDR1); | ||
| 223 | v |= HD64461_LDR1_DON; | ||
| 224 | fb_writew(v, HD64461_LDR1); | ||
| 225 | 197 | ||
| 226 | v = fb_readw(HD64461_LCDCCR); | 198 | v = fb_readw(HD64461_LCDCCR); |
| 227 | v &= ~HD64461_LCDCCR_MOFF; | 199 | v &= ~(HD64461_LCDCCR_MOFF | HD64461_LCDCCR_STREQ); |
| 228 | fb_writew(v, HD64461_LCDCCR); | 200 | fb_writew(v, HD64461_LCDCCR); |
| 201 | |||
| 202 | do { | ||
| 203 | v = fb_readw(HD64461_LCDCCR); | ||
| 204 | } while(v&HD64461_LCDCCR_STBACK); | ||
| 205 | |||
| 206 | v = fb_readw(HD64461_LDR1); | ||
| 207 | v |= HD64461_LDR1_DON; | ||
| 208 | fb_writew(v, HD64461_LDR1); | ||
| 229 | } | 209 | } |
| 230 | return 0; | 210 | return 0; |
| 231 | } | 211 | } |
| @@ -233,7 +213,7 @@ int hitfb_blank(int blank_mode, struct fb_info *info) | |||
| 233 | static int hitfb_setcolreg(unsigned regno, unsigned red, unsigned green, | 213 | static int hitfb_setcolreg(unsigned regno, unsigned red, unsigned green, |
| 234 | unsigned blue, unsigned transp, struct fb_info *info) | 214 | unsigned blue, unsigned transp, struct fb_info *info) |
| 235 | { | 215 | { |
| 236 | if (regno >= info->cmap.len) | 216 | if (regno >= 256) |
| 237 | return 1; | 217 | return 1; |
| 238 | 218 | ||
| 239 | switch (info->var.bits_per_pixel) { | 219 | switch (info->var.bits_per_pixel) { |
| @@ -244,6 +224,8 @@ static int hitfb_setcolreg(unsigned regno, unsigned red, unsigned green, | |||
| 244 | fb_writew(blue >> 10, HD64461_CPTWDR); | 224 | fb_writew(blue >> 10, HD64461_CPTWDR); |
| 245 | break; | 225 | break; |
| 246 | case 16: | 226 | case 16: |
| 227 | if (regno >= 16) | ||
| 228 | return 1; | ||
| 247 | ((u32 *) (info->pseudo_palette))[regno] = | 229 | ((u32 *) (info->pseudo_palette))[regno] = |
| 248 | ((red & 0xf800)) | | 230 | ((red & 0xf800)) | |
| 249 | ((green & 0xfc00) >> 5) | ((blue & 0xf800) >> 11); | 231 | ((green & 0xfc00) >> 5) | ((blue & 0xf800) >> 11); |
| @@ -252,26 +234,113 @@ static int hitfb_setcolreg(unsigned regno, unsigned red, unsigned green, | |||
| 252 | return 0; | 234 | return 0; |
| 253 | } | 235 | } |
| 254 | 236 | ||
| 237 | static int hitfb_sync(struct fb_info *info) | ||
| 238 | { | ||
| 239 | hitfb_accel_wait(); | ||
| 240 | |||
| 241 | return 0; | ||
| 242 | } | ||
| 243 | |||
| 244 | static int hitfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) | ||
| 245 | { | ||
| 246 | int maxy; | ||
| 247 | |||
| 248 | var->xres = info->var.xres; | ||
| 249 | var->xres_virtual = info->var.xres; | ||
| 250 | var->yres = info->var.yres; | ||
| 251 | |||
| 252 | if ((var->bits_per_pixel != 8) && (var->bits_per_pixel != 16)) | ||
| 253 | var->bits_per_pixel = info->var.bits_per_pixel; | ||
| 254 | |||
| 255 | if (var->yres_virtual < var->yres) | ||
| 256 | var->yres_virtual = var->yres; | ||
| 257 | |||
| 258 | maxy = info->fix.smem_len / var->xres; | ||
| 259 | |||
| 260 | if (var->bits_per_pixel == 16) | ||
| 261 | maxy /= 2; | ||
| 262 | |||
| 263 | if (var->yres_virtual > maxy) | ||
| 264 | var->yres_virtual = maxy; | ||
| 265 | |||
| 266 | var->xoffset = 0; | ||
| 267 | var->yoffset = 0; | ||
| 268 | |||
| 269 | switch (var->bits_per_pixel) { | ||
| 270 | case 8: | ||
| 271 | var->red.offset = 0; | ||
| 272 | var->red.length = 8; | ||
| 273 | var->green.offset = 0; | ||
| 274 | var->green.length = 8; | ||
| 275 | var->blue.offset = 0; | ||
| 276 | var->blue.length = 8; | ||
| 277 | var->transp.offset = 0; | ||
| 278 | var->transp.length = 0; | ||
| 279 | break; | ||
| 280 | case 16: /* RGB 565 */ | ||
| 281 | var->red.offset = 11; | ||
| 282 | var->red.length = 5; | ||
| 283 | var->green.offset = 5; | ||
| 284 | var->green.length = 6; | ||
| 285 | var->blue.offset = 0; | ||
| 286 | var->blue.length = 5; | ||
| 287 | var->transp.offset = 0; | ||
| 288 | var->transp.length = 0; | ||
| 289 | break; | ||
| 290 | } | ||
| 291 | |||
| 292 | return 0; | ||
| 293 | } | ||
| 294 | |||
| 295 | static int hitfb_set_par(struct fb_info *info) | ||
| 296 | { | ||
| 297 | unsigned short ldr3; | ||
| 298 | |||
| 299 | switch (info->var.bits_per_pixel) { | ||
| 300 | case 8: | ||
| 301 | info->fix.line_length = info->var.xres; | ||
| 302 | info->fix.visual = FB_VISUAL_PSEUDOCOLOR; | ||
| 303 | info->fix.ypanstep = 16; | ||
| 304 | break; | ||
| 305 | case 16: | ||
| 306 | info->fix.line_length = info->var.xres*2; | ||
| 307 | info->fix.visual = FB_VISUAL_TRUECOLOR; | ||
| 308 | info->fix.ypanstep = 8; | ||
| 309 | break; | ||
| 310 | } | ||
| 311 | |||
| 312 | fb_writew(info->fix.line_length, HD64461_LCDCLOR); | ||
| 313 | ldr3 = fb_readw(HD64461_LDR3); | ||
| 314 | ldr3 &= ~15; | ||
| 315 | ldr3 |= (info->var.bits_per_pixel == 8) ? 4 : 8; | ||
| 316 | fb_writew(ldr3, HD64461_LDR3); | ||
| 317 | return 0; | ||
| 318 | } | ||
| 319 | |||
| 255 | static struct fb_ops hitfb_ops = { | 320 | static struct fb_ops hitfb_ops = { |
| 256 | .owner = THIS_MODULE, | 321 | .owner = THIS_MODULE, |
| 322 | .fb_check_var = hitfb_check_var, | ||
| 323 | .fb_set_par = hitfb_set_par, | ||
| 257 | .fb_setcolreg = hitfb_setcolreg, | 324 | .fb_setcolreg = hitfb_setcolreg, |
| 258 | .fb_blank = hitfb_blank, | 325 | .fb_blank = hitfb_blank, |
| 326 | .fb_sync = hitfb_sync, | ||
| 259 | .fb_pan_display = hitfb_pan_display, | 327 | .fb_pan_display = hitfb_pan_display, |
| 260 | .fb_fillrect = hitfb_fillrect, | 328 | .fb_fillrect = hitfb_fillrect, |
| 261 | .fb_copyarea = hitfb_copyarea, | 329 | .fb_copyarea = hitfb_copyarea, |
| 262 | .fb_imageblit = cfb_imageblit, | 330 | .fb_imageblit = cfb_imageblit, |
| 263 | }; | 331 | }; |
| 264 | 332 | ||
| 265 | int __init hitfb_init(void) | 333 | static int __init hitfb_probe(struct platform_device *dev) |
| 266 | { | 334 | { |
| 267 | unsigned short lcdclor, ldr3, ldvndr; | 335 | unsigned short lcdclor, ldr3, ldvndr; |
| 268 | int size; | ||
| 269 | 336 | ||
| 270 | if (fb_get_options("hitfb", NULL)) | 337 | if (fb_get_options("hitfb", NULL)) |
| 271 | return -ENODEV; | 338 | return -ENODEV; |
| 272 | 339 | ||
| 340 | hitfb_fix.mmio_start = CONFIG_HD64461_IOBASE+0x1000; | ||
| 341 | hitfb_fix.mmio_len = 0x1000; | ||
| 273 | hitfb_fix.smem_start = CONFIG_HD64461_IOBASE + 0x02000000; | 342 | hitfb_fix.smem_start = CONFIG_HD64461_IOBASE + 0x02000000; |
| 274 | hitfb_fix.smem_len = (MACH_HP690) ? 1024 * 1024 : 512 * 1024; | 343 | hitfb_fix.smem_len = 512 * 1024; |
| 275 | 344 | ||
| 276 | lcdclor = fb_readw(HD64461_LCDCLOR); | 345 | lcdclor = fb_readw(HD64461_LCDCLOR); |
| 277 | ldvndr = fb_readw(HD64461_LDVNDR); | 346 | ldvndr = fb_readw(HD64461_LDVNDR); |
| @@ -321,12 +390,12 @@ int __init hitfb_init(void) | |||
| 321 | fb_info.var = hitfb_var; | 390 | fb_info.var = hitfb_var; |
| 322 | fb_info.fix = hitfb_fix; | 391 | fb_info.fix = hitfb_fix; |
| 323 | fb_info.pseudo_palette = pseudo_palette; | 392 | fb_info.pseudo_palette = pseudo_palette; |
| 324 | fb_info.flags = FBINFO_DEFAULT; | 393 | fb_info.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN | |
| 394 | FBINFO_HWACCEL_FILLRECT | FBINFO_HWACCEL_COPYAREA; | ||
| 325 | 395 | ||
| 326 | fb_info.screen_base = (void *)hitfb_fix.smem_start; | 396 | fb_info.screen_base = (void *)hitfb_fix.smem_start; |
| 327 | 397 | ||
| 328 | size = (fb_info.var.bits_per_pixel == 8) ? 256 : 16; | 398 | fb_alloc_cmap(&fb_info.cmap, 256, 0); |
| 329 | fb_alloc_cmap(&fb_info.cmap, size, 0); | ||
| 330 | 399 | ||
| 331 | if (register_framebuffer(&fb_info) < 0) | 400 | if (register_framebuffer(&fb_info) < 0) |
| 332 | return -EINVAL; | 401 | return -EINVAL; |
| @@ -336,9 +405,75 @@ int __init hitfb_init(void) | |||
| 336 | return 0; | 405 | return 0; |
| 337 | } | 406 | } |
| 338 | 407 | ||
| 408 | static int __devexit hitfb_remove(struct platform_device *dev) | ||
| 409 | { | ||
| 410 | return unregister_framebuffer(&fb_info); | ||
| 411 | } | ||
| 412 | |||
| 413 | #ifdef CONFIG_PM | ||
| 414 | static int hitfb_suspend(struct platform_device *dev, pm_message_t state) | ||
| 415 | { | ||
| 416 | u16 v; | ||
| 417 | |||
| 418 | hitfb_blank(1,0); | ||
| 419 | v = fb_readw(HD64461_STBCR); | ||
| 420 | v |= HD64461_STBCR_SLCKE_IST; | ||
| 421 | fb_writew(v, HD64461_STBCR); | ||
| 422 | |||
| 423 | return 0; | ||
| 424 | } | ||
| 425 | |||
| 426 | static int hitfb_resume(struct platform_device *dev) | ||
| 427 | { | ||
| 428 | u16 v; | ||
| 429 | |||
| 430 | v = fb_readw(HD64461_STBCR); | ||
| 431 | v &= ~HD64461_STBCR_SLCKE_OST; | ||
| 432 | msleep(100); | ||
| 433 | v = fb_readw(HD64461_STBCR); | ||
| 434 | v &= ~HD64461_STBCR_SLCKE_IST; | ||
| 435 | fb_writew(v, HD64461_STBCR); | ||
| 436 | hitfb_blank(0,0); | ||
| 437 | |||
| 438 | return 0; | ||
| 439 | } | ||
| 440 | #endif | ||
| 441 | |||
| 442 | static struct platform_driver hitfb_driver = { | ||
| 443 | .probe = hitfb_probe, | ||
| 444 | .remove = __devexit_p(hitfb_remove), | ||
| 445 | #ifdef CONFIG_PM | ||
| 446 | .suspend = hitfb_suspend, | ||
| 447 | .resume = hitfb_resume, | ||
| 448 | #endif | ||
| 449 | .driver = { | ||
| 450 | .name = "hitfb", | ||
| 451 | }, | ||
| 452 | }; | ||
| 453 | |||
| 454 | static struct platform_device hitfb_device = { | ||
| 455 | .name = "hitfb", | ||
| 456 | .id = -1, | ||
| 457 | }; | ||
| 458 | |||
| 459 | static int __init hitfb_init(void) | ||
| 460 | { | ||
| 461 | int ret; | ||
| 462 | |||
| 463 | ret = platform_driver_register(&hitfb_driver); | ||
| 464 | if (!ret) { | ||
| 465 | ret = platform_device_register(&hitfb_device); | ||
| 466 | if (ret) | ||
| 467 | platform_driver_unregister(&hitfb_driver); | ||
| 468 | } | ||
| 469 | return ret; | ||
| 470 | } | ||
| 471 | |||
| 472 | |||
| 339 | static void __exit hitfb_exit(void) | 473 | static void __exit hitfb_exit(void) |
| 340 | { | 474 | { |
| 341 | unregister_framebuffer(&fb_info); | 475 | platform_device_unregister(&hitfb_device); |
| 476 | platform_driver_unregister(&hitfb_driver); | ||
| 342 | } | 477 | } |
| 343 | 478 | ||
| 344 | module_init(hitfb_init); | 479 | module_init(hitfb_init); |
diff --git a/drivers/video/i810/i810-i2c.c b/drivers/video/i810/i810-i2c.c index c1f7b49975dd..7d06b38e80a0 100644 --- a/drivers/video/i810/i810-i2c.c +++ b/drivers/video/i810/i810-i2c.c | |||
| @@ -98,7 +98,6 @@ static int i810_setup_i2c_bus(struct i810fb_i2c_chan *chan, const char *name) | |||
| 98 | chan->algo.getsda = i810i2c_getsda; | 98 | chan->algo.getsda = i810i2c_getsda; |
| 99 | chan->algo.getscl = i810i2c_getscl; | 99 | chan->algo.getscl = i810i2c_getscl; |
| 100 | chan->algo.udelay = 10; | 100 | chan->algo.udelay = 10; |
| 101 | chan->algo.mdelay = 10; | ||
| 102 | chan->algo.timeout = (HZ/2); | 101 | chan->algo.timeout = (HZ/2); |
| 103 | chan->algo.data = chan; | 102 | chan->algo.data = chan; |
| 104 | 103 | ||
diff --git a/drivers/video/i810/i810_main.c b/drivers/video/i810/i810_main.c index a6ca02f2156a..d42edaccb84c 100644 --- a/drivers/video/i810/i810_main.c +++ b/drivers/video/i810/i810_main.c | |||
| @@ -1554,15 +1554,17 @@ static struct fb_ops i810fb_ops __devinitdata = { | |||
| 1554 | /*********************************************************************** | 1554 | /*********************************************************************** |
| 1555 | * Power Management * | 1555 | * Power Management * |
| 1556 | ***********************************************************************/ | 1556 | ***********************************************************************/ |
| 1557 | static int i810fb_suspend(struct pci_dev *dev, pm_message_t state) | 1557 | static int i810fb_suspend(struct pci_dev *dev, pm_message_t mesg) |
| 1558 | { | 1558 | { |
| 1559 | struct fb_info *info = pci_get_drvdata(dev); | 1559 | struct fb_info *info = pci_get_drvdata(dev); |
| 1560 | struct i810fb_par *par = info->par; | 1560 | struct i810fb_par *par = info->par; |
| 1561 | 1561 | ||
| 1562 | par->cur_state = state.event; | 1562 | par->cur_state = mesg.event; |
| 1563 | 1563 | ||
| 1564 | if (state.event == PM_EVENT_FREEZE) { | 1564 | switch (mesg.event) { |
| 1565 | dev->dev.power.power_state = state; | 1565 | case PM_EVENT_FREEZE: |
| 1566 | case PM_EVENT_PRETHAW: | ||
| 1567 | dev->dev.power.power_state = mesg; | ||
| 1566 | return 0; | 1568 | return 0; |
| 1567 | } | 1569 | } |
| 1568 | 1570 | ||
| @@ -1578,7 +1580,7 @@ static int i810fb_suspend(struct pci_dev *dev, pm_message_t state) | |||
| 1578 | 1580 | ||
| 1579 | pci_save_state(dev); | 1581 | pci_save_state(dev); |
| 1580 | pci_disable_device(dev); | 1582 | pci_disable_device(dev); |
| 1581 | pci_set_power_state(dev, pci_choose_state(dev, state)); | 1583 | pci_set_power_state(dev, pci_choose_state(dev, mesg)); |
| 1582 | release_console_sem(); | 1584 | release_console_sem(); |
| 1583 | 1585 | ||
| 1584 | return 0; | 1586 | return 0; |
diff --git a/drivers/video/matrox/i2c-matroxfb.c b/drivers/video/matrox/i2c-matroxfb.c index 57abbae5520f..795c1a99a680 100644 --- a/drivers/video/matrox/i2c-matroxfb.c +++ b/drivers/video/matrox/i2c-matroxfb.c | |||
| @@ -95,12 +95,12 @@ static struct i2c_adapter matrox_i2c_adapter_template = | |||
| 95 | 95 | ||
| 96 | static struct i2c_algo_bit_data matrox_i2c_algo_template = | 96 | static struct i2c_algo_bit_data matrox_i2c_algo_template = |
| 97 | { | 97 | { |
| 98 | NULL, | 98 | .setsda = matroxfb_gpio_setsda, |
| 99 | matroxfb_gpio_setsda, | 99 | .setscl = matroxfb_gpio_setscl, |
| 100 | matroxfb_gpio_setscl, | 100 | .getsda = matroxfb_gpio_getsda, |
| 101 | matroxfb_gpio_getsda, | 101 | .getscl = matroxfb_gpio_getscl, |
| 102 | matroxfb_gpio_getscl, | 102 | .udelay = 10, |
| 103 | 10, 10, 100, | 103 | .timeout = 100, |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | static int i2c_bus_reg(struct i2c_bit_adapter* b, struct matrox_fb_info* minfo, | 106 | static int i2c_bus_reg(struct i2c_bit_adapter* b, struct matrox_fb_info* minfo, |
diff --git a/drivers/video/nvidia/nvidia.c b/drivers/video/nvidia/nvidia.c index d4f850117874..f8cd4c519aeb 100644 --- a/drivers/video/nvidia/nvidia.c +++ b/drivers/video/nvidia/nvidia.c | |||
| @@ -950,24 +950,25 @@ static struct fb_ops nvidia_fb_ops = { | |||
| 950 | }; | 950 | }; |
| 951 | 951 | ||
| 952 | #ifdef CONFIG_PM | 952 | #ifdef CONFIG_PM |
| 953 | static int nvidiafb_suspend(struct pci_dev *dev, pm_message_t state) | 953 | static int nvidiafb_suspend(struct pci_dev *dev, pm_message_t mesg) |
| 954 | { | 954 | { |
| 955 | struct fb_info *info = pci_get_drvdata(dev); | 955 | struct fb_info *info = pci_get_drvdata(dev); |
| 956 | struct nvidia_par *par = info->par; | 956 | struct nvidia_par *par = info->par; |
| 957 | 957 | ||
| 958 | if (mesg.event == PM_EVENT_PRETHAW) | ||
| 959 | mesg.event = PM_EVENT_FREEZE; | ||
| 958 | acquire_console_sem(); | 960 | acquire_console_sem(); |
| 959 | par->pm_state = state.event; | 961 | par->pm_state = mesg.event; |
| 960 | 962 | ||
| 961 | if (state.event == PM_EVENT_FREEZE) { | 963 | if (mesg.event == PM_EVENT_SUSPEND) { |
| 962 | dev->dev.power.power_state = state; | ||
| 963 | } else { | ||
| 964 | fb_set_suspend(info, 1); | 964 | fb_set_suspend(info, 1); |
| 965 | nvidiafb_blank(FB_BLANK_POWERDOWN, info); | 965 | nvidiafb_blank(FB_BLANK_POWERDOWN, info); |
| 966 | nvidia_write_regs(par, &par->SavedReg); | 966 | nvidia_write_regs(par, &par->SavedReg); |
| 967 | pci_save_state(dev); | 967 | pci_save_state(dev); |
| 968 | pci_disable_device(dev); | 968 | pci_disable_device(dev); |
| 969 | pci_set_power_state(dev, pci_choose_state(dev, state)); | 969 | pci_set_power_state(dev, pci_choose_state(dev, mesg)); |
| 970 | } | 970 | } |
| 971 | dev->dev.power.power_state = mesg; | ||
| 971 | 972 | ||
| 972 | release_console_sem(); | 973 | release_console_sem(); |
| 973 | return 0; | 974 | return 0; |
diff --git a/drivers/video/pvr2fb.c b/drivers/video/pvr2fb.c index 940ba2be55e9..78dc59a1751b 100644 --- a/drivers/video/pvr2fb.c +++ b/drivers/video/pvr2fb.c | |||
| @@ -187,7 +187,7 @@ static short do_blank = 0; /* (Un)Blank the screen */ | |||
| 187 | static unsigned int is_blanked = 0; /* Is the screen blanked? */ | 187 | static unsigned int is_blanked = 0; /* Is the screen blanked? */ |
| 188 | 188 | ||
| 189 | #ifdef CONFIG_SH_STORE_QUEUES | 189 | #ifdef CONFIG_SH_STORE_QUEUES |
| 190 | static struct sq_mapping *pvr2fb_map; | 190 | static unsigned long pvr2fb_map; |
| 191 | #endif | 191 | #endif |
| 192 | 192 | ||
| 193 | #ifdef CONFIG_SH_DMA | 193 | #ifdef CONFIG_SH_DMA |
| @@ -213,15 +213,17 @@ static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id, struct pt_regs *fp); | |||
| 213 | static int pvr2_init_cable(void); | 213 | static int pvr2_init_cable(void); |
| 214 | static int pvr2_get_param(const struct pvr2_params *p, const char *s, | 214 | static int pvr2_get_param(const struct pvr2_params *p, const char *s, |
| 215 | int val, int size); | 215 | int val, int size); |
| 216 | #ifdef CONFIG_SH_DMA | ||
| 216 | static ssize_t pvr2fb_write(struct file *file, const char *buf, | 217 | static ssize_t pvr2fb_write(struct file *file, const char *buf, |
| 217 | size_t count, loff_t *ppos); | 218 | size_t count, loff_t *ppos); |
| 219 | #endif | ||
| 218 | 220 | ||
| 219 | static struct fb_ops pvr2fb_ops = { | 221 | static struct fb_ops pvr2fb_ops = { |
| 220 | .owner = THIS_MODULE, | 222 | .owner = THIS_MODULE, |
| 221 | .fb_setcolreg = pvr2fb_setcolreg, | 223 | .fb_setcolreg = pvr2fb_setcolreg, |
| 222 | .fb_blank = pvr2fb_blank, | 224 | .fb_blank = pvr2fb_blank, |
| 223 | .fb_check_var = pvr2fb_check_var, | 225 | .fb_check_var = pvr2fb_check_var, |
| 224 | .fb_set_par = pvr2fb_set_par, | 226 | .fb_set_par = pvr2fb_set_par, |
| 225 | #ifdef CONFIG_SH_DMA | 227 | #ifdef CONFIG_SH_DMA |
| 226 | .fb_write = pvr2fb_write, | 228 | .fb_write = pvr2fb_write, |
| 227 | #endif | 229 | #endif |
| @@ -783,7 +785,7 @@ static int __init pvr2fb_common_init(void) | |||
| 783 | goto out_err; | 785 | goto out_err; |
| 784 | } | 786 | } |
| 785 | 787 | ||
| 786 | fb_memset((unsigned long)fb_info->screen_base, 0, pvr2_fix.smem_len); | 788 | fb_memset(fb_info->screen_base, 0, pvr2_fix.smem_len); |
| 787 | 789 | ||
| 788 | pvr2_fix.ypanstep = nopan ? 0 : 1; | 790 | pvr2_fix.ypanstep = nopan ? 0 : 1; |
| 789 | pvr2_fix.ywrapstep = nowrap ? 0 : 1; | 791 | pvr2_fix.ywrapstep = nowrap ? 0 : 1; |
| @@ -820,7 +822,7 @@ static int __init pvr2fb_common_init(void) | |||
| 820 | modememused >> 10, (unsigned long)(fb_info->fix.smem_len >> 10)); | 822 | modememused >> 10, (unsigned long)(fb_info->fix.smem_len >> 10)); |
| 821 | printk("fb%d: Mode %dx%d-%d pitch = %ld cable: %s video output: %s\n", | 823 | printk("fb%d: Mode %dx%d-%d pitch = %ld cable: %s video output: %s\n", |
| 822 | fb_info->node, fb_info->var.xres, fb_info->var.yres, | 824 | fb_info->node, fb_info->var.xres, fb_info->var.yres, |
| 823 | fb_info->var.bits_per_pixel, | 825 | fb_info->var.bits_per_pixel, |
| 824 | get_line_length(fb_info->var.xres, fb_info->var.bits_per_pixel), | 826 | get_line_length(fb_info->var.xres, fb_info->var.bits_per_pixel), |
| 825 | (char *)pvr2_get_param(cables, NULL, cable_type, 3), | 827 | (char *)pvr2_get_param(cables, NULL, cable_type, 3), |
| 826 | (char *)pvr2_get_param(outputs, NULL, video_output, 3)); | 828 | (char *)pvr2_get_param(outputs, NULL, video_output, 3)); |
| @@ -829,10 +831,10 @@ static int __init pvr2fb_common_init(void) | |||
| 829 | printk(KERN_NOTICE "fb%d: registering with SQ API\n", fb_info->node); | 831 | printk(KERN_NOTICE "fb%d: registering with SQ API\n", fb_info->node); |
| 830 | 832 | ||
| 831 | pvr2fb_map = sq_remap(fb_info->fix.smem_start, fb_info->fix.smem_len, | 833 | pvr2fb_map = sq_remap(fb_info->fix.smem_start, fb_info->fix.smem_len, |
| 832 | fb_info->fix.id); | 834 | fb_info->fix.id, pgprot_val(PAGE_SHARED)); |
| 833 | 835 | ||
| 834 | printk(KERN_NOTICE "fb%d: Mapped video memory to SQ addr 0x%lx\n", | 836 | printk(KERN_NOTICE "fb%d: Mapped video memory to SQ addr 0x%lx\n", |
| 835 | fb_info->node, pvr2fb_map->sq_addr); | 837 | fb_info->node, pvr2fb_map); |
| 836 | #endif | 838 | #endif |
| 837 | 839 | ||
| 838 | return 0; | 840 | return 0; |
diff --git a/drivers/video/savage/savagefb-i2c.c b/drivers/video/savage/savagefb-i2c.c index e83befd16d63..d7d810dbf0bd 100644 --- a/drivers/video/savage/savagefb-i2c.c +++ b/drivers/video/savage/savagefb-i2c.c | |||
| @@ -148,7 +148,6 @@ static int savage_setup_i2c_bus(struct savagefb_i2c_chan *chan, | |||
| 148 | chan->adapter.algo_data = &chan->algo; | 148 | chan->adapter.algo_data = &chan->algo; |
| 149 | chan->adapter.dev.parent = &chan->par->pcidev->dev; | 149 | chan->adapter.dev.parent = &chan->par->pcidev->dev; |
| 150 | chan->algo.udelay = 40; | 150 | chan->algo.udelay = 40; |
| 151 | chan->algo.mdelay = 5; | ||
| 152 | chan->algo.timeout = 20; | 151 | chan->algo.timeout = 20; |
| 153 | chan->algo.data = chan; | 152 | chan->algo.data = chan; |
| 154 | 153 | ||
diff --git a/drivers/video/savage/savagefb_driver.c b/drivers/video/savage/savagefb_driver.c index 461e094e7b45..82b3deaae02d 100644 --- a/drivers/video/savage/savagefb_driver.c +++ b/drivers/video/savage/savagefb_driver.c | |||
| @@ -2323,24 +2323,24 @@ static void __devexit savagefb_remove(struct pci_dev *dev) | |||
| 2323 | } | 2323 | } |
| 2324 | } | 2324 | } |
| 2325 | 2325 | ||
| 2326 | static int savagefb_suspend(struct pci_dev* dev, pm_message_t state) | 2326 | static int savagefb_suspend(struct pci_dev *dev, pm_message_t mesg) |
| 2327 | { | 2327 | { |
| 2328 | struct fb_info *info = pci_get_drvdata(dev); | 2328 | struct fb_info *info = pci_get_drvdata(dev); |
| 2329 | struct savagefb_par *par = info->par; | 2329 | struct savagefb_par *par = info->par; |
| 2330 | 2330 | ||
| 2331 | DBG("savagefb_suspend"); | 2331 | DBG("savagefb_suspend"); |
| 2332 | 2332 | ||
| 2333 | 2333 | if (mesg.event == PM_EVENT_PRETHAW) | |
| 2334 | par->pm_state = state.event; | 2334 | mesg.event = PM_EVENT_FREEZE; |
| 2335 | par->pm_state = mesg.event; | ||
| 2336 | dev->dev.power.power_state = mesg; | ||
| 2335 | 2337 | ||
| 2336 | /* | 2338 | /* |
| 2337 | * For PM_EVENT_FREEZE, do not power down so the console | 2339 | * For PM_EVENT_FREEZE, do not power down so the console |
| 2338 | * can remain active. | 2340 | * can remain active. |
| 2339 | */ | 2341 | */ |
| 2340 | if (state.event == PM_EVENT_FREEZE) { | 2342 | if (mesg.event == PM_EVENT_FREEZE) |
| 2341 | dev->dev.power.power_state = state; | ||
| 2342 | return 0; | 2343 | return 0; |
| 2343 | } | ||
| 2344 | 2344 | ||
| 2345 | acquire_console_sem(); | 2345 | acquire_console_sem(); |
| 2346 | fb_set_suspend(info, 1); | 2346 | fb_set_suspend(info, 1); |
| @@ -2353,7 +2353,7 @@ static int savagefb_suspend(struct pci_dev* dev, pm_message_t state) | |||
| 2353 | savage_disable_mmio(par); | 2353 | savage_disable_mmio(par); |
| 2354 | pci_save_state(dev); | 2354 | pci_save_state(dev); |
| 2355 | pci_disable_device(dev); | 2355 | pci_disable_device(dev); |
| 2356 | pci_set_power_state(dev, pci_choose_state(dev, state)); | 2356 | pci_set_power_state(dev, pci_choose_state(dev, mesg)); |
| 2357 | release_console_sem(); | 2357 | release_console_sem(); |
| 2358 | 2358 | ||
| 2359 | return 0; | 2359 | return 0; |
