Linux 2.6.34-rc3
[pohmelfs.git] / drivers / video / omap2 / dss / core.c
blob7ebe50b335ed963fce253779b4a5610bb1d0c1a1
1 /*
2 * linux/drivers/video/omap2/dss/core.c
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
7 * Some code and ideas taken from drivers/video/omap/ driver
8 * by Imre Deak.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
23 #define DSS_SUBSYS_NAME "CORE"
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/clk.h>
28 #include <linux/err.h>
29 #include <linux/platform_device.h>
30 #include <linux/seq_file.h>
31 #include <linux/debugfs.h>
32 #include <linux/io.h>
33 #include <linux/device.h>
34 #include <linux/regulator/consumer.h>
36 #include <plat/display.h>
37 #include <plat/clock.h>
39 #include "dss.h"
41 static struct {
42 struct platform_device *pdev;
43 int ctx_id;
45 struct clk *dss_ick;
46 struct clk *dss1_fck;
47 struct clk *dss2_fck;
48 struct clk *dss_54m_fck;
49 struct clk *dss_96m_fck;
50 unsigned num_clks_enabled;
52 struct regulator *vdds_dsi_reg;
53 struct regulator *vdds_sdi_reg;
54 struct regulator *vdda_dac_reg;
55 } core;
57 static void dss_clk_enable_all_no_ctx(void);
58 static void dss_clk_disable_all_no_ctx(void);
59 static void dss_clk_enable_no_ctx(enum dss_clock clks);
60 static void dss_clk_disable_no_ctx(enum dss_clock clks);
62 static char *def_disp_name;
63 module_param_named(def_disp, def_disp_name, charp, 0);
64 MODULE_PARM_DESC(def_disp_name, "default display name");
66 #ifdef DEBUG
67 unsigned int dss_debug;
68 module_param_named(debug, dss_debug, bool, 0644);
69 #endif
71 /* CONTEXT */
72 static int dss_get_ctx_id(void)
74 struct omap_dss_board_info *pdata = core.pdev->dev.platform_data;
75 int r;
77 if (!pdata->get_last_off_on_transaction_id)
78 return 0;
79 r = pdata->get_last_off_on_transaction_id(&core.pdev->dev);
80 if (r < 0) {
81 dev_err(&core.pdev->dev, "getting transaction ID failed, "
82 "will force context restore\n");
83 r = -1;
85 return r;
88 int dss_need_ctx_restore(void)
90 int id = dss_get_ctx_id();
92 if (id < 0 || id != core.ctx_id) {
93 DSSDBG("ctx id %d -> id %d\n",
94 core.ctx_id, id);
95 core.ctx_id = id;
96 return 1;
97 } else {
98 return 0;
102 static void save_all_ctx(void)
104 DSSDBG("save context\n");
106 dss_clk_enable_no_ctx(DSS_CLK_ICK | DSS_CLK_FCK1);
108 dss_save_context();
109 dispc_save_context();
110 #ifdef CONFIG_OMAP2_DSS_DSI
111 dsi_save_context();
112 #endif
114 dss_clk_disable_no_ctx(DSS_CLK_ICK | DSS_CLK_FCK1);
117 static void restore_all_ctx(void)
119 DSSDBG("restore context\n");
121 dss_clk_enable_all_no_ctx();
123 dss_restore_context();
124 dispc_restore_context();
125 #ifdef CONFIG_OMAP2_DSS_DSI
126 dsi_restore_context();
127 #endif
129 dss_clk_disable_all_no_ctx();
132 #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
133 /* CLOCKS */
134 static void core_dump_clocks(struct seq_file *s)
136 int i;
137 struct clk *clocks[5] = {
138 core.dss_ick,
139 core.dss1_fck,
140 core.dss2_fck,
141 core.dss_54m_fck,
142 core.dss_96m_fck
145 seq_printf(s, "- CORE -\n");
147 seq_printf(s, "internal clk count\t\t%u\n", core.num_clks_enabled);
149 for (i = 0; i < 5; i++) {
150 if (!clocks[i])
151 continue;
152 seq_printf(s, "%-15s\t%lu\t%d\n",
153 clocks[i]->name,
154 clk_get_rate(clocks[i]),
155 clocks[i]->usecount);
158 #endif /* defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT) */
160 static int dss_get_clock(struct clk **clock, const char *clk_name)
162 struct clk *clk;
164 clk = clk_get(&core.pdev->dev, clk_name);
166 if (IS_ERR(clk)) {
167 DSSERR("can't get clock %s", clk_name);
168 return PTR_ERR(clk);
171 *clock = clk;
173 DSSDBG("clk %s, rate %ld\n", clk_name, clk_get_rate(clk));
175 return 0;
178 static int dss_get_clocks(void)
180 int r;
182 core.dss_ick = NULL;
183 core.dss1_fck = NULL;
184 core.dss2_fck = NULL;
185 core.dss_54m_fck = NULL;
186 core.dss_96m_fck = NULL;
188 r = dss_get_clock(&core.dss_ick, "ick");
189 if (r)
190 goto err;
192 r = dss_get_clock(&core.dss1_fck, "dss1_fck");
193 if (r)
194 goto err;
196 r = dss_get_clock(&core.dss2_fck, "dss2_fck");
197 if (r)
198 goto err;
200 r = dss_get_clock(&core.dss_54m_fck, "tv_fck");
201 if (r)
202 goto err;
204 r = dss_get_clock(&core.dss_96m_fck, "video_fck");
205 if (r)
206 goto err;
208 return 0;
210 err:
211 if (core.dss_ick)
212 clk_put(core.dss_ick);
213 if (core.dss1_fck)
214 clk_put(core.dss1_fck);
215 if (core.dss2_fck)
216 clk_put(core.dss2_fck);
217 if (core.dss_54m_fck)
218 clk_put(core.dss_54m_fck);
219 if (core.dss_96m_fck)
220 clk_put(core.dss_96m_fck);
222 return r;
225 static void dss_put_clocks(void)
227 if (core.dss_96m_fck)
228 clk_put(core.dss_96m_fck);
229 clk_put(core.dss_54m_fck);
230 clk_put(core.dss1_fck);
231 clk_put(core.dss2_fck);
232 clk_put(core.dss_ick);
235 unsigned long dss_clk_get_rate(enum dss_clock clk)
237 switch (clk) {
238 case DSS_CLK_ICK:
239 return clk_get_rate(core.dss_ick);
240 case DSS_CLK_FCK1:
241 return clk_get_rate(core.dss1_fck);
242 case DSS_CLK_FCK2:
243 return clk_get_rate(core.dss2_fck);
244 case DSS_CLK_54M:
245 return clk_get_rate(core.dss_54m_fck);
246 case DSS_CLK_96M:
247 return clk_get_rate(core.dss_96m_fck);
250 BUG();
251 return 0;
254 static unsigned count_clk_bits(enum dss_clock clks)
256 unsigned num_clks = 0;
258 if (clks & DSS_CLK_ICK)
259 ++num_clks;
260 if (clks & DSS_CLK_FCK1)
261 ++num_clks;
262 if (clks & DSS_CLK_FCK2)
263 ++num_clks;
264 if (clks & DSS_CLK_54M)
265 ++num_clks;
266 if (clks & DSS_CLK_96M)
267 ++num_clks;
269 return num_clks;
272 static void dss_clk_enable_no_ctx(enum dss_clock clks)
274 unsigned num_clks = count_clk_bits(clks);
276 if (clks & DSS_CLK_ICK)
277 clk_enable(core.dss_ick);
278 if (clks & DSS_CLK_FCK1)
279 clk_enable(core.dss1_fck);
280 if (clks & DSS_CLK_FCK2)
281 clk_enable(core.dss2_fck);
282 if (clks & DSS_CLK_54M)
283 clk_enable(core.dss_54m_fck);
284 if (clks & DSS_CLK_96M)
285 clk_enable(core.dss_96m_fck);
287 core.num_clks_enabled += num_clks;
290 void dss_clk_enable(enum dss_clock clks)
292 bool check_ctx = core.num_clks_enabled == 0;
294 dss_clk_enable_no_ctx(clks);
296 if (check_ctx && cpu_is_omap34xx() && dss_need_ctx_restore())
297 restore_all_ctx();
300 static void dss_clk_disable_no_ctx(enum dss_clock clks)
302 unsigned num_clks = count_clk_bits(clks);
304 if (clks & DSS_CLK_ICK)
305 clk_disable(core.dss_ick);
306 if (clks & DSS_CLK_FCK1)
307 clk_disable(core.dss1_fck);
308 if (clks & DSS_CLK_FCK2)
309 clk_disable(core.dss2_fck);
310 if (clks & DSS_CLK_54M)
311 clk_disable(core.dss_54m_fck);
312 if (clks & DSS_CLK_96M)
313 clk_disable(core.dss_96m_fck);
315 core.num_clks_enabled -= num_clks;
318 void dss_clk_disable(enum dss_clock clks)
320 if (cpu_is_omap34xx()) {
321 unsigned num_clks = count_clk_bits(clks);
323 BUG_ON(core.num_clks_enabled < num_clks);
325 if (core.num_clks_enabled == num_clks)
326 save_all_ctx();
329 dss_clk_disable_no_ctx(clks);
332 static void dss_clk_enable_all_no_ctx(void)
334 enum dss_clock clks;
336 clks = DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_FCK2 | DSS_CLK_54M;
337 if (cpu_is_omap34xx())
338 clks |= DSS_CLK_96M;
339 dss_clk_enable_no_ctx(clks);
342 static void dss_clk_disable_all_no_ctx(void)
344 enum dss_clock clks;
346 clks = DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_FCK2 | DSS_CLK_54M;
347 if (cpu_is_omap34xx())
348 clks |= DSS_CLK_96M;
349 dss_clk_disable_no_ctx(clks);
352 static void dss_clk_disable_all(void)
354 enum dss_clock clks;
356 clks = DSS_CLK_ICK | DSS_CLK_FCK1 | DSS_CLK_FCK2 | DSS_CLK_54M;
357 if (cpu_is_omap34xx())
358 clks |= DSS_CLK_96M;
359 dss_clk_disable(clks);
362 /* REGULATORS */
364 struct regulator *dss_get_vdds_dsi(void)
366 struct regulator *reg;
368 if (core.vdds_dsi_reg != NULL)
369 return core.vdds_dsi_reg;
371 reg = regulator_get(&core.pdev->dev, "vdds_dsi");
372 if (!IS_ERR(reg))
373 core.vdds_dsi_reg = reg;
375 return reg;
378 struct regulator *dss_get_vdds_sdi(void)
380 struct regulator *reg;
382 if (core.vdds_sdi_reg != NULL)
383 return core.vdds_sdi_reg;
385 reg = regulator_get(&core.pdev->dev, "vdds_sdi");
386 if (!IS_ERR(reg))
387 core.vdds_sdi_reg = reg;
389 return reg;
392 struct regulator *dss_get_vdda_dac(void)
394 struct regulator *reg;
396 if (core.vdda_dac_reg != NULL)
397 return core.vdda_dac_reg;
399 reg = regulator_get(&core.pdev->dev, "vdda_dac");
400 if (!IS_ERR(reg))
401 core.vdda_dac_reg = reg;
403 return reg;
406 /* DEBUGFS */
407 #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
408 static void dss_debug_dump_clocks(struct seq_file *s)
410 core_dump_clocks(s);
411 dss_dump_clocks(s);
412 dispc_dump_clocks(s);
413 #ifdef CONFIG_OMAP2_DSS_DSI
414 dsi_dump_clocks(s);
415 #endif
418 static int dss_debug_show(struct seq_file *s, void *unused)
420 void (*func)(struct seq_file *) = s->private;
421 func(s);
422 return 0;
425 static int dss_debug_open(struct inode *inode, struct file *file)
427 return single_open(file, dss_debug_show, inode->i_private);
430 static const struct file_operations dss_debug_fops = {
431 .open = dss_debug_open,
432 .read = seq_read,
433 .llseek = seq_lseek,
434 .release = single_release,
437 static struct dentry *dss_debugfs_dir;
439 static int dss_initialize_debugfs(void)
441 dss_debugfs_dir = debugfs_create_dir("omapdss", NULL);
442 if (IS_ERR(dss_debugfs_dir)) {
443 int err = PTR_ERR(dss_debugfs_dir);
444 dss_debugfs_dir = NULL;
445 return err;
448 debugfs_create_file("clk", S_IRUGO, dss_debugfs_dir,
449 &dss_debug_dump_clocks, &dss_debug_fops);
451 #ifdef CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS
452 debugfs_create_file("dispc_irq", S_IRUGO, dss_debugfs_dir,
453 &dispc_dump_irqs, &dss_debug_fops);
454 #endif
456 #if defined(CONFIG_OMAP2_DSS_DSI) && defined(CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS)
457 debugfs_create_file("dsi_irq", S_IRUGO, dss_debugfs_dir,
458 &dsi_dump_irqs, &dss_debug_fops);
459 #endif
461 debugfs_create_file("dss", S_IRUGO, dss_debugfs_dir,
462 &dss_dump_regs, &dss_debug_fops);
463 debugfs_create_file("dispc", S_IRUGO, dss_debugfs_dir,
464 &dispc_dump_regs, &dss_debug_fops);
465 #ifdef CONFIG_OMAP2_DSS_RFBI
466 debugfs_create_file("rfbi", S_IRUGO, dss_debugfs_dir,
467 &rfbi_dump_regs, &dss_debug_fops);
468 #endif
469 #ifdef CONFIG_OMAP2_DSS_DSI
470 debugfs_create_file("dsi", S_IRUGO, dss_debugfs_dir,
471 &dsi_dump_regs, &dss_debug_fops);
472 #endif
473 #ifdef CONFIG_OMAP2_DSS_VENC
474 debugfs_create_file("venc", S_IRUGO, dss_debugfs_dir,
475 &venc_dump_regs, &dss_debug_fops);
476 #endif
477 return 0;
480 static void dss_uninitialize_debugfs(void)
482 if (dss_debugfs_dir)
483 debugfs_remove_recursive(dss_debugfs_dir);
485 #endif /* CONFIG_DEBUG_FS && CONFIG_OMAP2_DSS_DEBUG_SUPPORT */
487 /* PLATFORM DEVICE */
488 static int omap_dss_probe(struct platform_device *pdev)
490 struct omap_dss_board_info *pdata = pdev->dev.platform_data;
491 int skip_init = 0;
492 int r;
493 int i;
495 core.pdev = pdev;
497 dss_init_overlay_managers(pdev);
498 dss_init_overlays(pdev);
500 r = dss_get_clocks();
501 if (r)
502 goto fail0;
504 dss_clk_enable_all_no_ctx();
506 core.ctx_id = dss_get_ctx_id();
507 DSSDBG("initial ctx id %u\n", core.ctx_id);
509 #ifdef CONFIG_FB_OMAP_BOOTLOADER_INIT
510 /* DISPC_CONTROL */
511 if (omap_readl(0x48050440) & 1) /* LCD enabled? */
512 skip_init = 1;
513 #endif
515 r = dss_init(skip_init);
516 if (r) {
517 DSSERR("Failed to initialize DSS\n");
518 goto fail0;
521 #ifdef CONFIG_OMAP2_DSS_RFBI
522 r = rfbi_init();
523 if (r) {
524 DSSERR("Failed to initialize rfbi\n");
525 goto fail0;
527 #endif
529 r = dpi_init(pdev);
530 if (r) {
531 DSSERR("Failed to initialize dpi\n");
532 goto fail0;
535 r = dispc_init();
536 if (r) {
537 DSSERR("Failed to initialize dispc\n");
538 goto fail0;
540 #ifdef CONFIG_OMAP2_DSS_VENC
541 r = venc_init(pdev);
542 if (r) {
543 DSSERR("Failed to initialize venc\n");
544 goto fail0;
546 #endif
547 if (cpu_is_omap34xx()) {
548 #ifdef CONFIG_OMAP2_DSS_SDI
549 r = sdi_init(skip_init);
550 if (r) {
551 DSSERR("Failed to initialize SDI\n");
552 goto fail0;
554 #endif
555 #ifdef CONFIG_OMAP2_DSS_DSI
556 r = dsi_init(pdev);
557 if (r) {
558 DSSERR("Failed to initialize DSI\n");
559 goto fail0;
561 #endif
564 #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
565 r = dss_initialize_debugfs();
566 if (r)
567 goto fail0;
568 #endif
570 for (i = 0; i < pdata->num_devices; ++i) {
571 struct omap_dss_device *dssdev = pdata->devices[i];
573 r = omap_dss_register_device(dssdev);
574 if (r)
575 DSSERR("device reg failed %d\n", i);
577 if (def_disp_name && strcmp(def_disp_name, dssdev->name) == 0)
578 pdata->default_device = dssdev;
581 dss_clk_disable_all();
583 return 0;
585 /* XXX fail correctly */
586 fail0:
587 return r;
590 static int omap_dss_remove(struct platform_device *pdev)
592 struct omap_dss_board_info *pdata = pdev->dev.platform_data;
593 int i;
594 int c;
596 #if defined(CONFIG_DEBUG_FS) && defined(CONFIG_OMAP2_DSS_DEBUG_SUPPORT)
597 dss_uninitialize_debugfs();
598 #endif
600 #ifdef CONFIG_OMAP2_DSS_VENC
601 venc_exit();
602 #endif
603 dispc_exit();
604 dpi_exit();
605 #ifdef CONFIG_OMAP2_DSS_RFBI
606 rfbi_exit();
607 #endif
608 if (cpu_is_omap34xx()) {
609 #ifdef CONFIG_OMAP2_DSS_DSI
610 dsi_exit();
611 #endif
612 #ifdef CONFIG_OMAP2_DSS_SDI
613 sdi_exit();
614 #endif
617 dss_exit();
619 /* these should be removed at some point */
620 c = core.dss_ick->usecount;
621 if (c > 0) {
622 DSSERR("warning: dss_ick usecount %d, disabling\n", c);
623 while (c-- > 0)
624 clk_disable(core.dss_ick);
627 c = core.dss1_fck->usecount;
628 if (c > 0) {
629 DSSERR("warning: dss1_fck usecount %d, disabling\n", c);
630 while (c-- > 0)
631 clk_disable(core.dss1_fck);
634 c = core.dss2_fck->usecount;
635 if (c > 0) {
636 DSSERR("warning: dss2_fck usecount %d, disabling\n", c);
637 while (c-- > 0)
638 clk_disable(core.dss2_fck);
641 c = core.dss_54m_fck->usecount;
642 if (c > 0) {
643 DSSERR("warning: dss_54m_fck usecount %d, disabling\n", c);
644 while (c-- > 0)
645 clk_disable(core.dss_54m_fck);
648 if (core.dss_96m_fck) {
649 c = core.dss_96m_fck->usecount;
650 if (c > 0) {
651 DSSERR("warning: dss_96m_fck usecount %d, disabling\n",
653 while (c-- > 0)
654 clk_disable(core.dss_96m_fck);
658 dss_put_clocks();
660 dss_uninit_overlays(pdev);
661 dss_uninit_overlay_managers(pdev);
663 for (i = 0; i < pdata->num_devices; ++i)
664 omap_dss_unregister_device(pdata->devices[i]);
666 return 0;
669 static void omap_dss_shutdown(struct platform_device *pdev)
671 DSSDBG("shutdown\n");
672 dss_disable_all_devices();
675 static int omap_dss_suspend(struct platform_device *pdev, pm_message_t state)
677 DSSDBG("suspend %d\n", state.event);
679 return dss_suspend_all_devices();
682 static int omap_dss_resume(struct platform_device *pdev)
684 DSSDBG("resume\n");
686 return dss_resume_all_devices();
689 static struct platform_driver omap_dss_driver = {
690 .probe = omap_dss_probe,
691 .remove = omap_dss_remove,
692 .shutdown = omap_dss_shutdown,
693 .suspend = omap_dss_suspend,
694 .resume = omap_dss_resume,
695 .driver = {
696 .name = "omapdss",
697 .owner = THIS_MODULE,
701 /* BUS */
702 static int dss_bus_match(struct device *dev, struct device_driver *driver)
704 struct omap_dss_device *dssdev = to_dss_device(dev);
706 DSSDBG("bus_match. dev %s/%s, drv %s\n",
707 dev_name(dev), dssdev->driver_name, driver->name);
709 return strcmp(dssdev->driver_name, driver->name) == 0;
712 static ssize_t device_name_show(struct device *dev,
713 struct device_attribute *attr, char *buf)
715 struct omap_dss_device *dssdev = to_dss_device(dev);
716 return snprintf(buf, PAGE_SIZE, "%s\n",
717 dssdev->name ?
718 dssdev->name : "");
721 static struct device_attribute default_dev_attrs[] = {
722 __ATTR(name, S_IRUGO, device_name_show, NULL),
723 __ATTR_NULL,
726 static ssize_t driver_name_show(struct device_driver *drv, char *buf)
728 struct omap_dss_driver *dssdrv = to_dss_driver(drv);
729 return snprintf(buf, PAGE_SIZE, "%s\n",
730 dssdrv->driver.name ?
731 dssdrv->driver.name : "");
733 static struct driver_attribute default_drv_attrs[] = {
734 __ATTR(name, S_IRUGO, driver_name_show, NULL),
735 __ATTR_NULL,
738 static struct bus_type dss_bus_type = {
739 .name = "omapdss",
740 .match = dss_bus_match,
741 .dev_attrs = default_dev_attrs,
742 .drv_attrs = default_drv_attrs,
745 static void dss_bus_release(struct device *dev)
747 DSSDBG("bus_release\n");
750 static struct device dss_bus = {
751 .release = dss_bus_release,
754 struct bus_type *dss_get_bus(void)
756 return &dss_bus_type;
759 /* DRIVER */
760 static int dss_driver_probe(struct device *dev)
762 int r;
763 struct omap_dss_driver *dssdrv = to_dss_driver(dev->driver);
764 struct omap_dss_device *dssdev = to_dss_device(dev);
765 struct omap_dss_board_info *pdata = core.pdev->dev.platform_data;
766 bool force;
768 DSSDBG("driver_probe: dev %s/%s, drv %s\n",
769 dev_name(dev), dssdev->driver_name,
770 dssdrv->driver.name);
772 dss_init_device(core.pdev, dssdev);
774 force = pdata->default_device == dssdev;
775 dss_recheck_connections(dssdev, force);
777 r = dssdrv->probe(dssdev);
779 if (r) {
780 DSSERR("driver probe failed: %d\n", r);
781 dss_uninit_device(core.pdev, dssdev);
782 return r;
785 DSSDBG("probe done for device %s\n", dev_name(dev));
787 dssdev->driver = dssdrv;
789 return 0;
792 static int dss_driver_remove(struct device *dev)
794 struct omap_dss_driver *dssdrv = to_dss_driver(dev->driver);
795 struct omap_dss_device *dssdev = to_dss_device(dev);
797 DSSDBG("driver_remove: dev %s/%s\n", dev_name(dev),
798 dssdev->driver_name);
800 dssdrv->remove(dssdev);
802 dss_uninit_device(core.pdev, dssdev);
804 dssdev->driver = NULL;
806 return 0;
809 int omap_dss_register_driver(struct omap_dss_driver *dssdriver)
811 dssdriver->driver.bus = &dss_bus_type;
812 dssdriver->driver.probe = dss_driver_probe;
813 dssdriver->driver.remove = dss_driver_remove;
815 if (dssdriver->get_resolution == NULL)
816 dssdriver->get_resolution = omapdss_default_get_resolution;
817 if (dssdriver->get_recommended_bpp == NULL)
818 dssdriver->get_recommended_bpp =
819 omapdss_default_get_recommended_bpp;
821 return driver_register(&dssdriver->driver);
823 EXPORT_SYMBOL(omap_dss_register_driver);
825 void omap_dss_unregister_driver(struct omap_dss_driver *dssdriver)
827 driver_unregister(&dssdriver->driver);
829 EXPORT_SYMBOL(omap_dss_unregister_driver);
831 /* DEVICE */
832 static void reset_device(struct device *dev, int check)
834 u8 *dev_p = (u8 *)dev;
835 u8 *dev_end = dev_p + sizeof(*dev);
836 void *saved_pdata;
838 saved_pdata = dev->platform_data;
839 if (check) {
841 * Check if there is any other setting than platform_data
842 * in struct device; warn that these will be reset by our
843 * init.
845 dev->platform_data = NULL;
846 while (dev_p < dev_end) {
847 if (*dev_p) {
848 WARN("%s: struct device fields will be "
849 "discarded\n",
850 __func__);
851 break;
853 dev_p++;
856 memset(dev, 0, sizeof(*dev));
857 dev->platform_data = saved_pdata;
861 static void omap_dss_dev_release(struct device *dev)
863 reset_device(dev, 0);
866 int omap_dss_register_device(struct omap_dss_device *dssdev)
868 static int dev_num;
870 WARN_ON(!dssdev->driver_name);
872 reset_device(&dssdev->dev, 1);
873 dssdev->dev.bus = &dss_bus_type;
874 dssdev->dev.parent = &dss_bus;
875 dssdev->dev.release = omap_dss_dev_release;
876 dev_set_name(&dssdev->dev, "display%d", dev_num++);
877 return device_register(&dssdev->dev);
880 void omap_dss_unregister_device(struct omap_dss_device *dssdev)
882 device_unregister(&dssdev->dev);
885 /* BUS */
886 static int omap_dss_bus_register(void)
888 int r;
890 r = bus_register(&dss_bus_type);
891 if (r) {
892 DSSERR("bus register failed\n");
893 return r;
896 dev_set_name(&dss_bus, "omapdss");
897 r = device_register(&dss_bus);
898 if (r) {
899 DSSERR("bus driver register failed\n");
900 bus_unregister(&dss_bus_type);
901 return r;
904 return 0;
907 /* INIT */
909 #ifdef CONFIG_OMAP2_DSS_MODULE
910 static void omap_dss_bus_unregister(void)
912 device_unregister(&dss_bus);
914 bus_unregister(&dss_bus_type);
917 static int __init omap_dss_init(void)
919 int r;
921 r = omap_dss_bus_register();
922 if (r)
923 return r;
925 r = platform_driver_register(&omap_dss_driver);
926 if (r) {
927 omap_dss_bus_unregister();
928 return r;
931 return 0;
934 static void __exit omap_dss_exit(void)
936 if (core.vdds_dsi_reg != NULL) {
937 regulator_put(core.vdds_dsi_reg);
938 core.vdds_dsi_reg = NULL;
941 if (core.vdds_sdi_reg != NULL) {
942 regulator_put(core.vdds_sdi_reg);
943 core.vdds_sdi_reg = NULL;
946 if (core.vdda_dac_reg != NULL) {
947 regulator_put(core.vdda_dac_reg);
948 core.vdda_dac_reg = NULL;
951 platform_driver_unregister(&omap_dss_driver);
953 omap_dss_bus_unregister();
956 module_init(omap_dss_init);
957 module_exit(omap_dss_exit);
958 #else
959 static int __init omap_dss_init(void)
961 return omap_dss_bus_register();
964 static int __init omap_dss_init2(void)
966 return platform_driver_register(&omap_dss_driver);
969 core_initcall(omap_dss_init);
970 device_initcall(omap_dss_init2);
971 #endif
973 MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@nokia.com>");
974 MODULE_DESCRIPTION("OMAP2/3 Display Subsystem");
975 MODULE_LICENSE("GPL v2");