linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/16] OMAPDSS: old OMAPFB cleanup
@ 2012-01-24 10:00 Tomi Valkeinen
  2012-01-24 10:00 ` [PATCH 01/16] OMAPFB: remove old blizzard driver Tomi Valkeinen
                   ` (16 more replies)
  0 siblings, 17 replies; 31+ messages in thread
From: Tomi Valkeinen @ 2012-01-24 10:00 UTC (permalink / raw)
  To: linux-omap, linux-fbdev; +Cc: archit, tony, Tomi Valkeinen

Now that all omap2+ boards have been changed to use the newer omapdss driver,
this patch series removes omap2+ support from the old omapfb driver
(drivers/video/omap), and thus makes it an omap1 dss/fb driver.

The use of SRAM for video ram had earlier been disabled by removing the SRAM
allocation (fee926bb0d399b1eaaf38f9f694bbf2747c4b8a2), and now this series also
removes the support from the omap fb drivers.

Also various cleanup patches allow us to remove remove OMAP_TAG_LCD and
OMAP_TAG_FBMEM.

All in all, the series removes quite a bit of unneeded code and cleans up the
links between the board files and the display drivers, and this should help
with device tree adaptation.

Some of the patches affect the newer omapdss and omapfb drivers, but mostly the
patches deal with omap1. I have compile tested the series for both omap1 and
omap2, but I have only tested this on OMAP3 and OMAP4 boards, as I don't have
OMAP1/2 boards. I think N770's display won't work after these patches, but
other OMAP1 boards should be ok. To fix N770's display requires knowledge of
the hardware setup, which is currently passed from the bootloader.

 Tomi

Tomi Valkeinen (16):
  OMAPFB: remove old blizzard driver
  OMAPFB: Remove OMAP2/3 support from old omapfb driver
  OMAPDSS: Remove video SRAM support
  OMAPFB: Remove video SRAM support (old omapfb)
  OMAP2+: remove unneeded #include omapfb.h
  OMAP: N770: remove HWA742 platform data
  OAMPFB: remove unused omapfb_set_ctrl_platform_data()
  OMAPFB: remove early mem alloc from old omapfb
  OMAPFB: remove mem info from platform_data
  OMAPFB: remove unused fb_format_to_dss_mode()
  OMAPFB: Move old omapfb private structs to a private include file
  OMAPFB: remove omapfb_set_platform_data()
  OMAP1: pass LCD config with omapfb_set_lcd_config()
  OMAP: Remove OMAP_TAG_LCD and OMAP_TAG_FBMEM
  OMAP1: Remove unused LCD devices from board files
  OMAPFB: remove remaining OMAP arch checks

 arch/arm/mach-omap1/board-ams-delta.c      |    9 +-
 arch/arm/mach-omap1/board-fsample.c        |   15 +-
 arch/arm/mach-omap1/board-h2.c             |   15 +-
 arch/arm/mach-omap1/board-h3.c             |    9 +-
 arch/arm/mach-omap1/board-htcherald.c      |    9 +-
 arch/arm/mach-omap1/board-innovator.c      |   11 +-
 arch/arm/mach-omap1/board-nokia770.c       |   19 +-
 arch/arm/mach-omap1/board-osk.c            |   14 +-
 arch/arm/mach-omap1/board-palmte.c         |   10 +-
 arch/arm/mach-omap1/board-palmtt.c         |   10 +-
 arch/arm/mach-omap1/board-palmz71.c        |   10 +-
 arch/arm/mach-omap1/board-perseus2.c       |   15 +-
 arch/arm/mach-omap1/board-sx1.c            |   16 +-
 arch/arm/mach-omap2/io.c                   |    1 -
 arch/arm/plat-omap/common.c                |    2 -
 arch/arm/plat-omap/fb.c                    |  336 +------
 arch/arm/plat-omap/fb.h                    |   10 -
 arch/arm/plat-omap/include/plat/blizzard.h |   12 -
 arch/arm/plat-omap/include/plat/board.h    |    2 -
 arch/arm/plat-omap/include/plat/hwa742.h   |    8 -
 arch/arm/plat-omap/include/plat/vram.h     |   21 +-
 drivers/video/omap/Kconfig                 |   16 +-
 drivers/video/omap/Makefile                |   12 +-
 drivers/video/omap/blizzard.c              | 1648 ----------------------------
 drivers/video/omap/dispc.c                 | 1547 --------------------------
 drivers/video/omap/dispc.h                 |   46 -
 drivers/video/omap/hwa742.c                |   21 +-
 drivers/video/omap/omapfb.h                |   25 +-
 drivers/video/omap/omapfb_main.c           |   30 +-
 drivers/video/omap/rfbi.c                  |  598 ----------
 drivers/video/omap2/dss/dispc.c            |    1 -
 drivers/video/omap2/omapfb/omapfb-ioctl.c  |    2 +-
 drivers/video/omap2/omapfb/omapfb-main.c   |  101 +--
 drivers/video/omap2/vram.c                 |   99 +--
 include/linux/omapfb.h                     |   32 +-
 35 files changed, 100 insertions(+), 4632 deletions(-)
 delete mode 100644 arch/arm/plat-omap/fb.h
 delete mode 100644 arch/arm/plat-omap/include/plat/blizzard.h
 delete mode 100644 arch/arm/plat-omap/include/plat/hwa742.h
 delete mode 100644 drivers/video/omap/blizzard.c
 delete mode 100644 drivers/video/omap/dispc.c
 delete mode 100644 drivers/video/omap/dispc.h
 delete mode 100644 drivers/video/omap/rfbi.c

-- 
1.7.4.1


^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2012-02-22 22:09 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-24 10:00 [PATCH 00/16] OMAPDSS: old OMAPFB cleanup Tomi Valkeinen
2012-01-24 10:00 ` [PATCH 01/16] OMAPFB: remove old blizzard driver Tomi Valkeinen
2012-01-24 10:00 ` =?UTF-8?q?=5BPATCH=2002/16=5D=20OMAPFB=3A=20Remove=20OMAP2/3=20support=20from=20old=20omapfb=20drive Tomi Valkeinen
2012-01-24 10:00 ` [PATCH 03/16] OMAPDSS: Remove video SRAM support Tomi Valkeinen
2012-02-22 18:06   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 04/16] OMAPFB: Remove video SRAM support (old omapfb) Tomi Valkeinen
2012-02-22 18:06   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 05/16] OMAP2+: remove unneeded #include omapfb.h Tomi Valkeinen
2012-02-22 18:07   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 06/16] OMAP: N770: remove HWA742 platform data Tomi Valkeinen
2012-02-22 18:08   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 07/16] OAMPFB: remove unused omapfb_set_ctrl_platform_data() Tomi Valkeinen
2012-02-22 18:08   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 08/16] OMAPFB: remove early mem alloc from old omapfb Tomi Valkeinen
2012-02-22 18:09   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 09/16] OMAPFB: remove mem info from platform_data Tomi Valkeinen
2012-01-24 10:00 ` [PATCH 10/16] OMAPFB: remove unused fb_format_to_dss_mode() Tomi Valkeinen
2012-01-24 10:00 ` [PATCH 11/16] OMAPFB: Move old omapfb private structs to a private include file Tomi Valkeinen
2012-01-24 10:00 ` [PATCH 12/16] OMAPFB: remove omapfb_set_platform_data() Tomi Valkeinen
2012-02-22 18:09   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 13/16] OMAP1: pass LCD config with omapfb_set_lcd_config() Tomi Valkeinen
2012-02-22 18:10   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 14/16] OMAP: Remove OMAP_TAG_LCD and OMAP_TAG_FBMEM Tomi Valkeinen
2012-02-22 18:11   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 15/16] OMAP1: Remove unused LCD devices from board files Tomi Valkeinen
2012-02-22 18:11   ` Tony Lindgren
2012-01-24 10:00 ` [PATCH 16/16] OMAPFB: remove remaining OMAP arch checks Tomi Valkeinen
2012-02-22 18:11   ` Tony Lindgren
2012-02-14 11:52 ` [PATCH 00/16] OMAPDSS: old OMAPFB cleanup Tomi Valkeinen
2012-02-22 18:50   ` Tony Lindgren
2012-02-22 22:09     ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).