diff options
author | Bryan Wu <bryan.wu@canonical.com> | 2010-11-17 08:34:35 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@nokia.com> | 2011-01-10 04:09:54 -0500 |
commit | da9d2f47aa74f20b07ebbe04676b67ead2672abf (patch) | |
tree | d1c343cd03afed637da6d9af8c1ab58a6e04818e /drivers/video | |
parent | 89747c9141cd750a610974d93f71492922b8cbd7 (diff) |
OMAP: DSS2: remove generic DPI panel driver duplicated panel drivers
Still keep sharp_ls_panel driver, because it contains blacklight control driver.
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
Acked-by: Archit Taneja <archit@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/displays/Kconfig | 18 | ||||
-rw-r--r-- | drivers/video/omap2/displays/Makefile | 3 | ||||
-rw-r--r-- | drivers/video/omap2/displays/panel-generic.c | 174 | ||||
-rw-r--r-- | drivers/video/omap2/displays/panel-sharp-lq043t1dg01.c | 165 | ||||
-rw-r--r-- | drivers/video/omap2/displays/panel-toppoly-tdo35s.c | 164 |
5 files changed, 0 insertions, 524 deletions
diff --git a/drivers/video/omap2/displays/Kconfig b/drivers/video/omap2/displays/Kconfig index 6d921969e731..940cab394c2e 100644 --- a/drivers/video/omap2/displays/Kconfig +++ b/drivers/video/omap2/displays/Kconfig | |||
@@ -9,12 +9,6 @@ config PANEL_GENERIC_DPI | |||
9 | Supports LCD Panel used in TI SDP3430 and EVM boards, | 9 | Supports LCD Panel used in TI SDP3430 and EVM boards, |
10 | OMAP3517 EVM boards and CM-T35. | 10 | OMAP3517 EVM boards and CM-T35. |
11 | 11 | ||
12 | config PANEL_GENERIC | ||
13 | tristate "Generic Panel" | ||
14 | help | ||
15 | Generic panel driver. | ||
16 | Used for DVI output for Beagle and OMAP3 SDP. | ||
17 | |||
18 | config PANEL_SHARP_LS037V7DW01 | 12 | config PANEL_SHARP_LS037V7DW01 |
19 | tristate "Sharp LS037V7DW01 LCD Panel" | 13 | tristate "Sharp LS037V7DW01 LCD Panel" |
20 | depends on OMAP2_DSS | 14 | depends on OMAP2_DSS |
@@ -22,12 +16,6 @@ config PANEL_SHARP_LS037V7DW01 | |||
22 | help | 16 | help |
23 | LCD Panel used in TI's SDP3430 and EVM boards | 17 | LCD Panel used in TI's SDP3430 and EVM boards |
24 | 18 | ||
25 | config PANEL_SHARP_LQ043T1DG01 | ||
26 | tristate "Sharp LQ043T1DG01 LCD Panel" | ||
27 | depends on OMAP2_DSS | ||
28 | help | ||
29 | LCD Panel used in TI's OMAP3517 EVM boards | ||
30 | |||
31 | config PANEL_NEC_NL8048HL11_01B | 19 | config PANEL_NEC_NL8048HL11_01B |
32 | tristate "NEC NL8048HL11-01B Panel" | 20 | tristate "NEC NL8048HL11-01B Panel" |
33 | depends on OMAP2_DSS | 21 | depends on OMAP2_DSS |
@@ -41,12 +29,6 @@ config PANEL_TAAL | |||
41 | help | 29 | help |
42 | Taal DSI command mode panel from TPO. | 30 | Taal DSI command mode panel from TPO. |
43 | 31 | ||
44 | config PANEL_TOPPOLY_TDO35S | ||
45 | tristate "Toppoly TDO35S LCD Panel support" | ||
46 | depends on OMAP2_DSS | ||
47 | help | ||
48 | LCD Panel used in CM-T35 | ||
49 | |||
50 | config PANEL_TPO_TD043MTEA1 | 32 | config PANEL_TPO_TD043MTEA1 |
51 | tristate "TPO TD043MTEA1 LCD Panel" | 33 | tristate "TPO TD043MTEA1 LCD Panel" |
52 | depends on OMAP2_DSS && SPI | 34 | depends on OMAP2_DSS && SPI |
diff --git a/drivers/video/omap2/displays/Makefile b/drivers/video/omap2/displays/Makefile index 48f9c88af0c7..861f0255ec6b 100644 --- a/drivers/video/omap2/displays/Makefile +++ b/drivers/video/omap2/displays/Makefile | |||
@@ -1,10 +1,7 @@ | |||
1 | obj-$(CONFIG_PANEL_GENERIC_DPI) += panel-generic-dpi.o | 1 | obj-$(CONFIG_PANEL_GENERIC_DPI) += panel-generic-dpi.o |
2 | obj-$(CONFIG_PANEL_GENERIC) += panel-generic.o | ||
3 | obj-$(CONFIG_PANEL_SHARP_LS037V7DW01) += panel-sharp-ls037v7dw01.o | 2 | obj-$(CONFIG_PANEL_SHARP_LS037V7DW01) += panel-sharp-ls037v7dw01.o |
4 | obj-$(CONFIG_PANEL_SHARP_LQ043T1DG01) += panel-sharp-lq043t1dg01.o | ||
5 | obj-$(CONFIG_PANEL_NEC_NL8048HL11_01B) += panel-nec-nl8048hl11-01b.o | 3 | obj-$(CONFIG_PANEL_NEC_NL8048HL11_01B) += panel-nec-nl8048hl11-01b.o |
6 | 4 | ||
7 | obj-$(CONFIG_PANEL_TAAL) += panel-taal.o | 5 | obj-$(CONFIG_PANEL_TAAL) += panel-taal.o |
8 | obj-$(CONFIG_PANEL_TOPPOLY_TDO35S) += panel-toppoly-tdo35s.o | ||
9 | obj-$(CONFIG_PANEL_TPO_TD043MTEA1) += panel-tpo-td043mtea1.o | 6 | obj-$(CONFIG_PANEL_TPO_TD043MTEA1) += panel-tpo-td043mtea1.o |
10 | obj-$(CONFIG_PANEL_ACX565AKM) += panel-acx565akm.o | 7 | obj-$(CONFIG_PANEL_ACX565AKM) += panel-acx565akm.o |
diff --git a/drivers/video/omap2/displays/panel-generic.c b/drivers/video/omap2/displays/panel-generic.c deleted file mode 100644 index 395a68de3990..000000000000 --- a/drivers/video/omap2/displays/panel-generic.c +++ /dev/null | |||
@@ -1,174 +0,0 @@ | |||
1 | /* | ||
2 | * Generic panel support | ||
3 | * | ||
4 | * Copyright (C) 2008 Nokia Corporation | ||
5 | * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published by | ||
9 | * the Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along with | ||
17 | * this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/delay.h> | ||
22 | |||
23 | #include <plat/display.h> | ||
24 | |||
25 | static struct omap_video_timings generic_panel_timings = { | ||
26 | /* 640 x 480 @ 60 Hz Reduced blanking VESA CVT 0.31M3-R */ | ||
27 | .x_res = 640, | ||
28 | .y_res = 480, | ||
29 | .pixel_clock = 23500, | ||
30 | .hfp = 48, | ||
31 | .hsw = 32, | ||
32 | .hbp = 80, | ||
33 | .vfp = 3, | ||
34 | .vsw = 4, | ||
35 | .vbp = 7, | ||
36 | }; | ||
37 | |||
38 | static int generic_panel_power_on(struct omap_dss_device *dssdev) | ||
39 | { | ||
40 | int r; | ||
41 | |||
42 | if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) | ||
43 | return 0; | ||
44 | |||
45 | r = omapdss_dpi_display_enable(dssdev); | ||
46 | if (r) | ||
47 | goto err0; | ||
48 | |||
49 | if (dssdev->platform_enable) { | ||
50 | r = dssdev->platform_enable(dssdev); | ||
51 | if (r) | ||
52 | goto err1; | ||
53 | } | ||
54 | |||
55 | return 0; | ||
56 | err1: | ||
57 | omapdss_dpi_display_disable(dssdev); | ||
58 | err0: | ||
59 | return r; | ||
60 | } | ||
61 | |||
62 | static void generic_panel_power_off(struct omap_dss_device *dssdev) | ||
63 | { | ||
64 | if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) | ||
65 | return; | ||
66 | |||
67 | if (dssdev->platform_disable) | ||
68 | dssdev->platform_disable(dssdev); | ||
69 | |||
70 | omapdss_dpi_display_disable(dssdev); | ||
71 | } | ||
72 | |||
73 | static int generic_panel_probe(struct omap_dss_device *dssdev) | ||
74 | { | ||
75 | dssdev->panel.config = OMAP_DSS_LCD_TFT; | ||
76 | dssdev->panel.timings = generic_panel_timings; | ||
77 | |||
78 | return 0; | ||
79 | } | ||
80 | |||
81 | static void generic_panel_remove(struct omap_dss_device *dssdev) | ||
82 | { | ||
83 | } | ||
84 | |||
85 | static int generic_panel_enable(struct omap_dss_device *dssdev) | ||
86 | { | ||
87 | int r = 0; | ||
88 | |||
89 | r = generic_panel_power_on(dssdev); | ||
90 | if (r) | ||
91 | return r; | ||
92 | |||
93 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
94 | |||
95 | return 0; | ||
96 | } | ||
97 | |||
98 | static void generic_panel_disable(struct omap_dss_device *dssdev) | ||
99 | { | ||
100 | generic_panel_power_off(dssdev); | ||
101 | |||
102 | dssdev->state = OMAP_DSS_DISPLAY_DISABLED; | ||
103 | } | ||
104 | |||
105 | static int generic_panel_suspend(struct omap_dss_device *dssdev) | ||
106 | { | ||
107 | generic_panel_power_off(dssdev); | ||
108 | dssdev->state = OMAP_DSS_DISPLAY_SUSPENDED; | ||
109 | return 0; | ||
110 | } | ||
111 | |||
112 | static int generic_panel_resume(struct omap_dss_device *dssdev) | ||
113 | { | ||
114 | int r = 0; | ||
115 | |||
116 | r = generic_panel_power_on(dssdev); | ||
117 | if (r) | ||
118 | return r; | ||
119 | |||
120 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | static void generic_panel_set_timings(struct omap_dss_device *dssdev, | ||
126 | struct omap_video_timings *timings) | ||
127 | { | ||
128 | dpi_set_timings(dssdev, timings); | ||
129 | } | ||
130 | |||
131 | static void generic_panel_get_timings(struct omap_dss_device *dssdev, | ||
132 | struct omap_video_timings *timings) | ||
133 | { | ||
134 | *timings = dssdev->panel.timings; | ||
135 | } | ||
136 | |||
137 | static int generic_panel_check_timings(struct omap_dss_device *dssdev, | ||
138 | struct omap_video_timings *timings) | ||
139 | { | ||
140 | return dpi_check_timings(dssdev, timings); | ||
141 | } | ||
142 | |||
143 | static struct omap_dss_driver generic_driver = { | ||
144 | .probe = generic_panel_probe, | ||
145 | .remove = generic_panel_remove, | ||
146 | |||
147 | .enable = generic_panel_enable, | ||
148 | .disable = generic_panel_disable, | ||
149 | .suspend = generic_panel_suspend, | ||
150 | .resume = generic_panel_resume, | ||
151 | |||
152 | .set_timings = generic_panel_set_timings, | ||
153 | .get_timings = generic_panel_get_timings, | ||
154 | .check_timings = generic_panel_check_timings, | ||
155 | |||
156 | .driver = { | ||
157 | .name = "generic_panel", | ||
158 | .owner = THIS_MODULE, | ||
159 | }, | ||
160 | }; | ||
161 | |||
162 | static int __init generic_panel_drv_init(void) | ||
163 | { | ||
164 | return omap_dss_register_driver(&generic_driver); | ||
165 | } | ||
166 | |||
167 | static void __exit generic_panel_drv_exit(void) | ||
168 | { | ||
169 | omap_dss_unregister_driver(&generic_driver); | ||
170 | } | ||
171 | |||
172 | module_init(generic_panel_drv_init); | ||
173 | module_exit(generic_panel_drv_exit); | ||
174 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/omap2/displays/panel-sharp-lq043t1dg01.c b/drivers/video/omap2/displays/panel-sharp-lq043t1dg01.c deleted file mode 100644 index 0c6896cea2d0..000000000000 --- a/drivers/video/omap2/displays/panel-sharp-lq043t1dg01.c +++ /dev/null | |||
@@ -1,165 +0,0 @@ | |||
1 | /* | ||
2 | * LCD panel driver for Sharp LQ043T1DG01 | ||
3 | * | ||
4 | * Copyright (C) 2009 Texas Instruments Inc | ||
5 | * Author: Vaibhav Hiremath <hvaibhav@ti.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published by | ||
9 | * the Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | * more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along with | ||
17 | * this program. If not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/delay.h> | ||
22 | #include <linux/device.h> | ||
23 | #include <linux/err.h> | ||
24 | |||
25 | #include <plat/display.h> | ||
26 | |||
27 | static struct omap_video_timings sharp_lq_timings = { | ||
28 | .x_res = 480, | ||
29 | .y_res = 272, | ||
30 | |||
31 | .pixel_clock = 9000, | ||
32 | |||
33 | .hsw = 42, | ||
34 | .hfp = 3, | ||
35 | .hbp = 2, | ||
36 | |||
37 | .vsw = 11, | ||
38 | .vfp = 3, | ||
39 | .vbp = 2, | ||
40 | }; | ||
41 | |||
42 | static int sharp_lq_panel_power_on(struct omap_dss_device *dssdev) | ||
43 | { | ||
44 | int r; | ||
45 | |||
46 | if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) | ||
47 | return 0; | ||
48 | |||
49 | r = omapdss_dpi_display_enable(dssdev); | ||
50 | if (r) | ||
51 | goto err0; | ||
52 | |||
53 | /* wait couple of vsyncs until enabling the LCD */ | ||
54 | msleep(50); | ||
55 | |||
56 | if (dssdev->platform_enable) { | ||
57 | r = dssdev->platform_enable(dssdev); | ||
58 | if (r) | ||
59 | goto err1; | ||
60 | } | ||
61 | |||
62 | return 0; | ||
63 | err1: | ||
64 | omapdss_dpi_display_disable(dssdev); | ||
65 | err0: | ||
66 | return r; | ||
67 | } | ||
68 | |||
69 | static void sharp_lq_panel_power_off(struct omap_dss_device *dssdev) | ||
70 | { | ||
71 | if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) | ||
72 | return; | ||
73 | |||
74 | if (dssdev->platform_disable) | ||
75 | dssdev->platform_disable(dssdev); | ||
76 | |||
77 | /* wait at least 5 vsyncs after disabling the LCD */ | ||
78 | msleep(100); | ||
79 | |||
80 | omapdss_dpi_display_disable(dssdev); | ||
81 | } | ||
82 | |||
83 | static int sharp_lq_panel_probe(struct omap_dss_device *dssdev) | ||
84 | { | ||
85 | |||
86 | dssdev->panel.config = OMAP_DSS_LCD_TFT | OMAP_DSS_LCD_IVS | | ||
87 | OMAP_DSS_LCD_IHS | OMAP_DSS_LCD_IEO; | ||
88 | dssdev->panel.acb = 0x0; | ||
89 | dssdev->panel.timings = sharp_lq_timings; | ||
90 | |||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | static void sharp_lq_panel_remove(struct omap_dss_device *dssdev) | ||
95 | { | ||
96 | } | ||
97 | |||
98 | static int sharp_lq_panel_enable(struct omap_dss_device *dssdev) | ||
99 | { | ||
100 | int r = 0; | ||
101 | |||
102 | r = sharp_lq_panel_power_on(dssdev); | ||
103 | if (r) | ||
104 | return r; | ||
105 | |||
106 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
107 | |||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | static void sharp_lq_panel_disable(struct omap_dss_device *dssdev) | ||
112 | { | ||
113 | sharp_lq_panel_power_off(dssdev); | ||
114 | |||
115 | dssdev->state = OMAP_DSS_DISPLAY_DISABLED; | ||
116 | } | ||
117 | |||
118 | static int sharp_lq_panel_suspend(struct omap_dss_device *dssdev) | ||
119 | { | ||
120 | sharp_lq_panel_power_off(dssdev); | ||
121 | dssdev->state = OMAP_DSS_DISPLAY_SUSPENDED; | ||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | static int sharp_lq_panel_resume(struct omap_dss_device *dssdev) | ||
126 | { | ||
127 | int r = 0; | ||
128 | |||
129 | r = sharp_lq_panel_power_on(dssdev); | ||
130 | if (r) | ||
131 | return r; | ||
132 | |||
133 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
134 | |||
135 | return 0; | ||
136 | } | ||
137 | |||
138 | static struct omap_dss_driver sharp_lq_driver = { | ||
139 | .probe = sharp_lq_panel_probe, | ||
140 | .remove = sharp_lq_panel_remove, | ||
141 | |||
142 | .enable = sharp_lq_panel_enable, | ||
143 | .disable = sharp_lq_panel_disable, | ||
144 | .suspend = sharp_lq_panel_suspend, | ||
145 | .resume = sharp_lq_panel_resume, | ||
146 | |||
147 | .driver = { | ||
148 | .name = "sharp_lq_panel", | ||
149 | .owner = THIS_MODULE, | ||
150 | }, | ||
151 | }; | ||
152 | |||
153 | static int __init sharp_lq_panel_drv_init(void) | ||
154 | { | ||
155 | return omap_dss_register_driver(&sharp_lq_driver); | ||
156 | } | ||
157 | |||
158 | static void __exit sharp_lq_panel_drv_exit(void) | ||
159 | { | ||
160 | omap_dss_unregister_driver(&sharp_lq_driver); | ||
161 | } | ||
162 | |||
163 | module_init(sharp_lq_panel_drv_init); | ||
164 | module_exit(sharp_lq_panel_drv_exit); | ||
165 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/omap2/displays/panel-toppoly-tdo35s.c b/drivers/video/omap2/displays/panel-toppoly-tdo35s.c deleted file mode 100644 index 526e906c8a6c..000000000000 --- a/drivers/video/omap2/displays/panel-toppoly-tdo35s.c +++ /dev/null | |||
@@ -1,164 +0,0 @@ | |||
1 | /* | ||
2 | * LCD panel driver for Toppoly TDO35S | ||
3 | * | ||
4 | * Copyright (C) 2009 CompuLab, Ltd. | ||
5 | * Author: Mike Rapoport <mike@compulab.co.il> | ||
6 | * | ||
7 | * Based on generic panel support | ||
8 | * Copyright (C) 2008 Nokia Corporation | ||
9 | * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com> | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify it | ||
12 | * under the terms of the GNU General Public License version 2 as published by | ||
13 | * the Free Software Foundation. | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
16 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
17 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
18 | * more details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License along with | ||
21 | * this program. If not, see <http://www.gnu.org/licenses/>. | ||
22 | */ | ||
23 | |||
24 | #include <linux/module.h> | ||
25 | #include <linux/delay.h> | ||
26 | |||
27 | #include <plat/display.h> | ||
28 | |||
29 | static struct omap_video_timings toppoly_tdo_panel_timings = { | ||
30 | /* 640 x 480 @ 60 Hz Reduced blanking VESA CVT 0.31M3-R */ | ||
31 | .x_res = 480, | ||
32 | .y_res = 640, | ||
33 | |||
34 | .pixel_clock = 26000, | ||
35 | |||
36 | .hfp = 104, | ||
37 | .hsw = 8, | ||
38 | .hbp = 8, | ||
39 | |||
40 | .vfp = 4, | ||
41 | .vsw = 2, | ||
42 | .vbp = 2, | ||
43 | }; | ||
44 | |||
45 | static int toppoly_tdo_panel_power_on(struct omap_dss_device *dssdev) | ||
46 | { | ||
47 | int r; | ||
48 | |||
49 | if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) | ||
50 | return 0; | ||
51 | |||
52 | r = omapdss_dpi_display_enable(dssdev); | ||
53 | if (r) | ||
54 | goto err0; | ||
55 | |||
56 | if (dssdev->platform_enable) { | ||
57 | r = dssdev->platform_enable(dssdev); | ||
58 | if (r) | ||
59 | goto err1; | ||
60 | } | ||
61 | |||
62 | return 0; | ||
63 | err1: | ||
64 | omapdss_dpi_display_disable(dssdev); | ||
65 | err0: | ||
66 | return r; | ||
67 | } | ||
68 | |||
69 | static void toppoly_tdo_panel_power_off(struct omap_dss_device *dssdev) | ||
70 | { | ||
71 | if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) | ||
72 | return; | ||
73 | |||
74 | if (dssdev->platform_disable) | ||
75 | dssdev->platform_disable(dssdev); | ||
76 | |||
77 | omapdss_dpi_display_disable(dssdev); | ||
78 | } | ||
79 | |||
80 | static int toppoly_tdo_panel_probe(struct omap_dss_device *dssdev) | ||
81 | { | ||
82 | dssdev->panel.config = OMAP_DSS_LCD_TFT | | ||
83 | OMAP_DSS_LCD_IVS | | ||
84 | OMAP_DSS_LCD_IHS | | ||
85 | OMAP_DSS_LCD_IPC | | ||
86 | OMAP_DSS_LCD_ONOFF; | ||
87 | |||
88 | dssdev->panel.timings = toppoly_tdo_panel_timings; | ||
89 | |||
90 | return 0; | ||
91 | } | ||
92 | |||
93 | static void toppoly_tdo_panel_remove(struct omap_dss_device *dssdev) | ||
94 | { | ||
95 | } | ||
96 | |||
97 | static int toppoly_tdo_panel_enable(struct omap_dss_device *dssdev) | ||
98 | { | ||
99 | int r = 0; | ||
100 | |||
101 | r = toppoly_tdo_panel_power_on(dssdev); | ||
102 | if (r) | ||
103 | return r; | ||
104 | |||
105 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
106 | |||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | static void toppoly_tdo_panel_disable(struct omap_dss_device *dssdev) | ||
111 | { | ||
112 | toppoly_tdo_panel_power_off(dssdev); | ||
113 | |||
114 | dssdev->state = OMAP_DSS_DISPLAY_DISABLED; | ||
115 | } | ||
116 | |||
117 | static int toppoly_tdo_panel_suspend(struct omap_dss_device *dssdev) | ||
118 | { | ||
119 | toppoly_tdo_panel_power_off(dssdev); | ||
120 | dssdev->state = OMAP_DSS_DISPLAY_SUSPENDED; | ||
121 | return 0; | ||
122 | } | ||
123 | |||
124 | static int toppoly_tdo_panel_resume(struct omap_dss_device *dssdev) | ||
125 | { | ||
126 | int r = 0; | ||
127 | |||
128 | r = toppoly_tdo_panel_power_on(dssdev); | ||
129 | if (r) | ||
130 | return r; | ||
131 | |||
132 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; | ||
133 | |||
134 | return 0; | ||
135 | } | ||
136 | |||
137 | static struct omap_dss_driver generic_driver = { | ||
138 | .probe = toppoly_tdo_panel_probe, | ||
139 | .remove = toppoly_tdo_panel_remove, | ||
140 | |||
141 | .enable = toppoly_tdo_panel_enable, | ||
142 | .disable = toppoly_tdo_panel_disable, | ||
143 | .suspend = toppoly_tdo_panel_suspend, | ||
144 | .resume = toppoly_tdo_panel_resume, | ||
145 | |||
146 | .driver = { | ||
147 | .name = "toppoly_tdo35s_panel", | ||
148 | .owner = THIS_MODULE, | ||
149 | }, | ||
150 | }; | ||
151 | |||
152 | static int __init toppoly_tdo_panel_drv_init(void) | ||
153 | { | ||
154 | return omap_dss_register_driver(&generic_driver); | ||
155 | } | ||
156 | |||
157 | static void __exit toppoly_tdo_panel_drv_exit(void) | ||
158 | { | ||
159 | omap_dss_unregister_driver(&generic_driver); | ||
160 | } | ||
161 | |||
162 | module_init(toppoly_tdo_panel_drv_init); | ||
163 | module_exit(toppoly_tdo_panel_drv_exit); | ||
164 | MODULE_LICENSE("GPL"); | ||