diff options
Diffstat (limited to 'drivers/video/bfin-t350mcqb-fb.c')
-rw-r--r-- | drivers/video/bfin-t350mcqb-fb.c | 32 |
1 files changed, 25 insertions, 7 deletions
diff --git a/drivers/video/bfin-t350mcqb-fb.c b/drivers/video/bfin-t350mcqb-fb.c index 5cc36cfbf07b..2549c53b26a0 100644 --- a/drivers/video/bfin-t350mcqb-fb.c +++ b/drivers/video/bfin-t350mcqb-fb.c | |||
@@ -487,8 +487,8 @@ static int __devinit bfin_t350mcqb_probe(struct platform_device *pdev) | |||
487 | 487 | ||
488 | fbinfo->var.nonstd = 0; | 488 | fbinfo->var.nonstd = 0; |
489 | fbinfo->var.activate = FB_ACTIVATE_NOW; | 489 | fbinfo->var.activate = FB_ACTIVATE_NOW; |
490 | fbinfo->var.height = -1; | 490 | fbinfo->var.height = 53; |
491 | fbinfo->var.width = -1; | 491 | fbinfo->var.width = 70; |
492 | fbinfo->var.accel_flags = 0; | 492 | fbinfo->var.accel_flags = 0; |
493 | fbinfo->var.vmode = FB_VMODE_NONINTERLACED; | 493 | fbinfo->var.vmode = FB_VMODE_NONINTERLACED; |
494 | 494 | ||
@@ -634,17 +634,35 @@ static int __devexit bfin_t350mcqb_remove(struct platform_device *pdev) | |||
634 | #ifdef CONFIG_PM | 634 | #ifdef CONFIG_PM |
635 | static int bfin_t350mcqb_suspend(struct platform_device *pdev, pm_message_t state) | 635 | static int bfin_t350mcqb_suspend(struct platform_device *pdev, pm_message_t state) |
636 | { | 636 | { |
637 | bfin_t350mcqb_disable_ppi(); | 637 | struct fb_info *fbinfo = platform_get_drvdata(pdev); |
638 | disable_dma(CH_PPI); | 638 | struct bfin_t350mcqbfb_info *fbi = fbinfo->par; |
639 | bfin_write_PPI_STATUS(0xFFFF); | 639 | |
640 | if (fbi->lq043_open_cnt) { | ||
641 | bfin_t350mcqb_disable_ppi(); | ||
642 | disable_dma(CH_PPI); | ||
643 | bfin_t350mcqb_stop_timers(); | ||
644 | bfin_write_PPI_STATUS(-1); | ||
645 | } | ||
646 | |||
640 | 647 | ||
641 | return 0; | 648 | return 0; |
642 | } | 649 | } |
643 | 650 | ||
644 | static int bfin_t350mcqb_resume(struct platform_device *pdev) | 651 | static int bfin_t350mcqb_resume(struct platform_device *pdev) |
645 | { | 652 | { |
646 | enable_dma(CH_PPI); | 653 | struct fb_info *fbinfo = platform_get_drvdata(pdev); |
647 | bfin_t350mcqb_enable_ppi(); | 654 | struct bfin_t350mcqbfb_info *fbi = fbinfo->par; |
655 | |||
656 | if (fbi->lq043_open_cnt) { | ||
657 | bfin_t350mcqb_config_dma(fbi); | ||
658 | bfin_t350mcqb_config_ppi(fbi); | ||
659 | bfin_t350mcqb_init_timers(); | ||
660 | |||
661 | /* start dma */ | ||
662 | enable_dma(CH_PPI); | ||
663 | bfin_t350mcqb_enable_ppi(); | ||
664 | bfin_t350mcqb_start_timers(); | ||
665 | } | ||
648 | 666 | ||
649 | return 0; | 667 | return 0; |
650 | } | 668 | } |