16 Nov, 2010

1 commit


25 May, 2010

1 commit

  • This work includes the following:

    - Implement handler for FBIO_WAITFORVSYNC ioctl.

    - Allocate the data and palette buffers separately. A consequence of
    this is that the palette and data loading is now done in different
    phases. And that the LCD must be disabled temporarily after the palette
    is loaded but this will only happen once after init and each time the
    palette is changed. I think this is OK.

    - Allocate two (ping and pong) framebuffers from memory.

    - Add pan_display handler which toggles the LCDC DMA registers between
    the ping and pong buffers.

    Signed-off-by: Martin Ambrose
    Cc: Chaithrika U S
    Cc: Sudhakar Rajashekhara
    Cc: Krzysztof Helt
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Martin Ambrose
     

16 Dec, 2009

1 commit


23 Sep, 2009

2 commits

  • Since the previous version, return values in ioctl() function have been
    modified.

    [akpm@linux-foundation.org: simplify lcd_disable_raster()]
    Signed-off-by: Sudhakar Rajashekhara
    Signed-off-by: Pavel Kiryukhin
    Signed-off-by: Steve Chen
    Acked-by: Krzysztof Helt
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Sudhakar Rajashekhara
     
  • Add LCD controller (LCDC) driver for TI's DA8xx/OMAP-L1xx architecture.
    LCDC specifications can be found at http://www.ti.com/litv/pdf/sprufm0a.

    LCDC on DA8xx consists of two independent controllers, the Raster
    Controller and the LCD Interface Display Driver (LIDD) controller. LIDD
    further supports character and graphic displays.

    This patch adds support for the graphic display (Sharp LQ035Q3DG01) found
    on the DA830 based EVM. The EVM details can be found at:
    http://support.spectrumdigital.com/boards/dskda830/revc/.

    Signed-off-by: Sudhakar Rajashekhara
    Signed-off-by: Pavel Kiryukhin
    Signed-off-by: Steve Chen
    Acked-by: Krzysztof Helt
    DESC
    davinci-fb-frame-buffer-driver-for-ti-da8xx-omap-l1xx-fix
    EDESC
    From: Andrew Morton

    fix kconfig indenting

    Cc: Krzysztof Helt
    Cc: Pavel Kiryukhin
    Cc: Steve Chen
    Cc: Sudhakar Rajashekhara
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Sudhakar Rajashekhara