diff options
Diffstat (limited to 'drivers/video/aty/aty128fb.c')
-rw-r--r-- | drivers/video/aty/aty128fb.c | 66 |
1 files changed, 35 insertions, 31 deletions
diff --git a/drivers/video/aty/aty128fb.c b/drivers/video/aty/aty128fb.c index 1006f125fcc7..c64a717e2d4b 100644 --- a/drivers/video/aty/aty128fb.c +++ b/drivers/video/aty/aty128fb.c | |||
@@ -455,6 +455,7 @@ static void do_wait_for_fifo(u16 entries, struct aty128fb_par *par); | |||
455 | static void wait_for_fifo(u16 entries, struct aty128fb_par *par); | 455 | static void wait_for_fifo(u16 entries, struct aty128fb_par *par); |
456 | static void wait_for_idle(struct aty128fb_par *par); | 456 | static void wait_for_idle(struct aty128fb_par *par); |
457 | static u32 depth_to_dst(u32 depth); | 457 | static u32 depth_to_dst(u32 depth); |
458 | static void aty128_bl_set_power(struct fb_info *info, int power); | ||
458 | 459 | ||
459 | #define BIOS_IN8(v) (readb(bios + (v))) | 460 | #define BIOS_IN8(v) (readb(bios + (v))) |
460 | #define BIOS_IN16(v) (readb(bios + (v)) | \ | 461 | #define BIOS_IN16(v) (readb(bios + (v)) | \ |
@@ -1257,25 +1258,11 @@ static void aty128_set_lcd_enable(struct aty128fb_par *par, int on) | |||
1257 | reg &= ~LVDS_DISPLAY_DIS; | 1258 | reg &= ~LVDS_DISPLAY_DIS; |
1258 | aty_st_le32(LVDS_GEN_CNTL, reg); | 1259 | aty_st_le32(LVDS_GEN_CNTL, reg); |
1259 | #ifdef CONFIG_FB_ATY128_BACKLIGHT | 1260 | #ifdef CONFIG_FB_ATY128_BACKLIGHT |
1260 | mutex_lock(&info->bl_mutex); | 1261 | aty128_bl_set_power(info, FB_BLANK_UNBLANK); |
1261 | if (info->bl_dev) { | ||
1262 | down(&info->bl_dev->sem); | ||
1263 | info->bl_dev->props->update_status(info->bl_dev); | ||
1264 | up(&info->bl_dev->sem); | ||
1265 | } | ||
1266 | mutex_unlock(&info->bl_mutex); | ||
1267 | #endif | 1262 | #endif |
1268 | } else { | 1263 | } else { |
1269 | #ifdef CONFIG_FB_ATY128_BACKLIGHT | 1264 | #ifdef CONFIG_FB_ATY128_BACKLIGHT |
1270 | mutex_lock(&info->bl_mutex); | 1265 | aty128_bl_set_power(info, FB_BLANK_POWERDOWN); |
1271 | if (info->bl_dev) { | ||
1272 | down(&info->bl_dev->sem); | ||
1273 | info->bl_dev->props->brightness = 0; | ||
1274 | info->bl_dev->props->power = FB_BLANK_POWERDOWN; | ||
1275 | info->bl_dev->props->update_status(info->bl_dev); | ||
1276 | up(&info->bl_dev->sem); | ||
1277 | } | ||
1278 | mutex_unlock(&info->bl_mutex); | ||
1279 | #endif | 1266 | #endif |
1280 | reg = aty_ld_le32(LVDS_GEN_CNTL); | 1267 | reg = aty_ld_le32(LVDS_GEN_CNTL); |
1281 | reg |= LVDS_DISPLAY_DIS; | 1268 | reg |= LVDS_DISPLAY_DIS; |
@@ -1702,6 +1689,7 @@ static int __devinit aty128fb_setup(char *options) | |||
1702 | 1689 | ||
1703 | static struct backlight_properties aty128_bl_data; | 1690 | static struct backlight_properties aty128_bl_data; |
1704 | 1691 | ||
1692 | /* Call with fb_info->bl_mutex held */ | ||
1705 | static int aty128_bl_get_level_brightness(struct aty128fb_par *par, | 1693 | static int aty128_bl_get_level_brightness(struct aty128fb_par *par, |
1706 | int level) | 1694 | int level) |
1707 | { | 1695 | { |
@@ -1709,10 +1697,8 @@ static int aty128_bl_get_level_brightness(struct aty128fb_par *par, | |||
1709 | int atylevel; | 1697 | int atylevel; |
1710 | 1698 | ||
1711 | /* Get and convert the value */ | 1699 | /* Get and convert the value */ |
1712 | mutex_lock(&info->bl_mutex); | ||
1713 | atylevel = MAX_LEVEL - | 1700 | atylevel = MAX_LEVEL - |
1714 | (info->bl_curve[level] * FB_BACKLIGHT_MAX / MAX_LEVEL); | 1701 | (info->bl_curve[level] * FB_BACKLIGHT_MAX / MAX_LEVEL); |
1715 | mutex_unlock(&info->bl_mutex); | ||
1716 | 1702 | ||
1717 | if (atylevel < 0) | 1703 | if (atylevel < 0) |
1718 | atylevel = 0; | 1704 | atylevel = 0; |
@@ -1730,7 +1716,8 @@ static int aty128_bl_get_level_brightness(struct aty128fb_par *par, | |||
1730 | /* That one prevents proper CRT output with LCD off */ | 1716 | /* That one prevents proper CRT output with LCD off */ |
1731 | #undef BACKLIGHT_DAC_OFF | 1717 | #undef BACKLIGHT_DAC_OFF |
1732 | 1718 | ||
1733 | static int aty128_bl_update_status(struct backlight_device *bd) | 1719 | /* Call with fb_info->bl_mutex held */ |
1720 | static int __aty128_bl_update_status(struct backlight_device *bd) | ||
1734 | { | 1721 | { |
1735 | struct aty128fb_par *par = class_get_devdata(&bd->class_dev); | 1722 | struct aty128fb_par *par = class_get_devdata(&bd->class_dev); |
1736 | unsigned int reg = aty_ld_le32(LVDS_GEN_CNTL); | 1723 | unsigned int reg = aty_ld_le32(LVDS_GEN_CNTL); |
@@ -1783,6 +1770,19 @@ static int aty128_bl_update_status(struct backlight_device *bd) | |||
1783 | return 0; | 1770 | return 0; |
1784 | } | 1771 | } |
1785 | 1772 | ||
1773 | static int aty128_bl_update_status(struct backlight_device *bd) | ||
1774 | { | ||
1775 | struct aty128fb_par *par = class_get_devdata(&bd->class_dev); | ||
1776 | struct fb_info *info = pci_get_drvdata(par->pdev); | ||
1777 | int ret; | ||
1778 | |||
1779 | mutex_lock(&info->bl_mutex); | ||
1780 | ret = __aty128_bl_update_status(bd); | ||
1781 | mutex_unlock(&info->bl_mutex); | ||
1782 | |||
1783 | return ret; | ||
1784 | } | ||
1785 | |||
1786 | static int aty128_bl_get_brightness(struct backlight_device *bd) | 1786 | static int aty128_bl_get_brightness(struct backlight_device *bd) |
1787 | { | 1787 | { |
1788 | return bd->props->brightness; | 1788 | return bd->props->brightness; |
@@ -1795,6 +1795,16 @@ static struct backlight_properties aty128_bl_data = { | |||
1795 | .max_brightness = (FB_BACKLIGHT_LEVELS - 1), | 1795 | .max_brightness = (FB_BACKLIGHT_LEVELS - 1), |
1796 | }; | 1796 | }; |
1797 | 1797 | ||
1798 | static void aty128_bl_set_power(struct fb_info *info, int power) | ||
1799 | { | ||
1800 | mutex_lock(&info->bl_mutex); | ||
1801 | up(&info->bl_dev->sem); | ||
1802 | info->bl_dev->props->power = power; | ||
1803 | __aty128_bl_update_status(info->bl_dev); | ||
1804 | down(&info->bl_dev->sem); | ||
1805 | mutex_unlock(&info->bl_mutex); | ||
1806 | } | ||
1807 | |||
1798 | static void aty128_bl_init(struct aty128fb_par *par) | 1808 | static void aty128_bl_init(struct aty128fb_par *par) |
1799 | { | 1809 | { |
1800 | struct fb_info *info = pci_get_drvdata(par->pdev); | 1810 | struct fb_info *info = pci_get_drvdata(par->pdev); |
@@ -2197,12 +2207,8 @@ static int aty128fb_blank(int blank, struct fb_info *fb) | |||
2197 | return 0; | 2207 | return 0; |
2198 | 2208 | ||
2199 | #ifdef CONFIG_FB_ATY128_BACKLIGHT | 2209 | #ifdef CONFIG_FB_ATY128_BACKLIGHT |
2200 | if (machine_is(powermac) && blank) { | 2210 | if (machine_is(powermac) && blank) |
2201 | down(&fb->bl_dev->sem); | 2211 | aty128_bl_set_power(fb, FB_BLANK_POWERDOWN); |
2202 | fb->bl_dev->props->power = FB_BLANK_POWERDOWN; | ||
2203 | fb->bl_dev->props->update_status(fb->bl_dev); | ||
2204 | up(&fb->bl_dev->sem); | ||
2205 | } | ||
2206 | #endif | 2212 | #endif |
2207 | 2213 | ||
2208 | if (blank & FB_BLANK_VSYNC_SUSPEND) | 2214 | if (blank & FB_BLANK_VSYNC_SUSPEND) |
@@ -2218,14 +2224,12 @@ static int aty128fb_blank(int blank, struct fb_info *fb) | |||
2218 | aty128_set_crt_enable(par, par->crt_on && !blank); | 2224 | aty128_set_crt_enable(par, par->crt_on && !blank); |
2219 | aty128_set_lcd_enable(par, par->lcd_on && !blank); | 2225 | aty128_set_lcd_enable(par, par->lcd_on && !blank); |
2220 | } | 2226 | } |
2227 | |||
2221 | #ifdef CONFIG_FB_ATY128_BACKLIGHT | 2228 | #ifdef CONFIG_FB_ATY128_BACKLIGHT |
2222 | if (machine_is(powermac) && !blank) { | 2229 | if (machine_is(powermac) && !blank) |
2223 | down(&fb->bl_dev->sem); | 2230 | aty128_bl_set_power(fb, FB_BLANK_UNBLANK); |
2224 | fb->bl_dev->props->power = FB_BLANK_UNBLANK; | ||
2225 | fb->bl_dev->props->update_status(fb->bl_dev); | ||
2226 | up(&fb->bl_dev->sem); | ||
2227 | } | ||
2228 | #endif | 2231 | #endif |
2232 | |||
2229 | return 0; | 2233 | return 0; |
2230 | } | 2234 | } |
2231 | 2235 | ||