Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * LCD driver for HP Jornada 700 series (710/720/728) |
| 4 | * Copyright (C) 2006-2009 Kristoffer Ericson <kristoffer.ericson@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License version |
| 8 | * 2 or any later version as published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/device.h> |
| 13 | #include <linux/fb.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/lcd.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/delay.h> |
| 19 | |
| 20 | #include <mach/jornada720.h> |
| 21 | #include <mach/hardware.h> |
| 22 | |
| 23 | #include <video/s1d13xxxfb.h> |
| 24 | |
| 25 | #define LCD_MAX_CONTRAST 0xff |
| 26 | #define LCD_DEF_CONTRAST 0x80 |
| 27 | |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 28 | static int jornada_lcd_get_power(struct lcd_device *ld) |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 29 | { |
Jingoo Han | 3e51cd9 | 2014-08-27 10:14:43 +0900 | [diff] [blame] | 30 | return PPSR & PPC_LDD2 ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 31 | } |
| 32 | |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 33 | static int jornada_lcd_get_contrast(struct lcd_device *ld) |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 34 | { |
| 35 | int ret; |
| 36 | |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 37 | if (jornada_lcd_get_power(ld) != FB_BLANK_UNBLANK) |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 38 | return 0; |
| 39 | |
| 40 | jornada_ssp_start(); |
| 41 | |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 42 | if (jornada_ssp_byte(GETCONTRAST) == TXDUMMY) { |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 43 | ret = jornada_ssp_byte(TXDUMMY); |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 44 | goto success; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 45 | } |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 46 | |
| 47 | dev_err(&ld->dev, "failed to set contrast\n"); |
| 48 | ret = -ETIMEDOUT; |
| 49 | |
| 50 | success: |
| 51 | jornada_ssp_end(); |
| 52 | return ret; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 55 | static int jornada_lcd_set_contrast(struct lcd_device *ld, int value) |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 56 | { |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 57 | int ret = 0; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 58 | |
| 59 | jornada_ssp_start(); |
| 60 | |
| 61 | /* start by sending our set contrast cmd to mcu */ |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 62 | if (jornada_ssp_byte(SETCONTRAST) == TXDUMMY) { |
| 63 | /* if successful push the new value */ |
| 64 | if (jornada_ssp_byte(value) == TXDUMMY) |
| 65 | goto success; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 68 | dev_err(&ld->dev, "failed to set contrast\n"); |
| 69 | ret = -ETIMEDOUT; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 70 | |
Lee Jones | 1e3b097 | 2014-07-10 09:07:06 +0100 | [diff] [blame] | 71 | success: |
| 72 | jornada_ssp_end(); |
| 73 | return ret; |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 76 | static int jornada_lcd_set_power(struct lcd_device *ld, int power) |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 77 | { |
| 78 | if (power != FB_BLANK_UNBLANK) { |
| 79 | PPSR &= ~PPC_LDD2; |
| 80 | PPDR |= PPC_LDD2; |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 81 | } else { |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 82 | PPSR |= PPC_LDD2; |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 83 | } |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static struct lcd_ops jornada_lcd_props = { |
| 89 | .get_contrast = jornada_lcd_get_contrast, |
| 90 | .set_contrast = jornada_lcd_set_contrast, |
| 91 | .get_power = jornada_lcd_get_power, |
| 92 | .set_power = jornada_lcd_set_power, |
| 93 | }; |
| 94 | |
| 95 | static int jornada_lcd_probe(struct platform_device *pdev) |
| 96 | { |
| 97 | struct lcd_device *lcd_device; |
| 98 | int ret; |
| 99 | |
Jingoo Han | 964598f | 2014-01-23 15:54:29 -0800 | [diff] [blame] | 100 | lcd_device = devm_lcd_device_register(&pdev->dev, S1D_DEVICENAME, |
| 101 | &pdev->dev, NULL, &jornada_lcd_props); |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 102 | |
| 103 | if (IS_ERR(lcd_device)) { |
| 104 | ret = PTR_ERR(lcd_device); |
Jingoo Han | b2dcd7b | 2013-04-29 16:17:31 -0700 | [diff] [blame] | 105 | dev_err(&pdev->dev, "failed to register device\n"); |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 106 | return ret; |
| 107 | } |
| 108 | |
| 109 | platform_set_drvdata(pdev, lcd_device); |
| 110 | |
| 111 | /* lets set our default values */ |
| 112 | jornada_lcd_set_contrast(lcd_device, LCD_DEF_CONTRAST); |
| 113 | jornada_lcd_set_power(lcd_device, FB_BLANK_UNBLANK); |
| 114 | /* give it some time to startup */ |
| 115 | msleep(100); |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 120 | static struct platform_driver jornada_lcd_driver = { |
| 121 | .probe = jornada_lcd_probe, |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 122 | .driver = { |
| 123 | .name = "jornada_lcd", |
| 124 | }, |
| 125 | }; |
| 126 | |
Axel Lin | 81178e0 | 2012-01-10 15:09:11 -0800 | [diff] [blame] | 127 | module_platform_driver(jornada_lcd_driver); |
Kristoffer Ericson | 9e12443 | 2009-02-18 11:47:26 +0000 | [diff] [blame] | 128 | |
| 129 | MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson@gmail.com>"); |
| 130 | MODULE_DESCRIPTION("HP Jornada 710/720/728 LCD driver"); |
| 131 | MODULE_LICENSE("GPL"); |