Linux on ARM based TI OMAP SoCs
 help / color / mirror / Atom feed
* [PATCH 00/28] OMAP: DSS related board file changes
@ 2013-03-28 12:48 Tomi Valkeinen
  2013-03-28 12:48 ` [PATCH 01/28] ARM: OMAP: Remove unnecessary platform callbacks for VENC devices Tomi Valkeinen
                   ` (29 more replies)
  0 siblings, 30 replies; 50+ messages in thread
From: Tomi Valkeinen @ 2013-03-28 12:48 UTC (permalink / raw)
  To: Tony Lindgren, linux-omap; +Cc: Archit Taneja, Tomi Valkeinen

So here are the DSS related board file changes for 3.10.

First there are a bunch of patches adding the Kconfig options so that only one
display device is created for a single video bus. Only Overo had more than two
displays on the same bus, but unfortunately there were multiple boards with a
setup that puts an LCD and DVI output on the same video bus.

So the ifdeffery is not very nice. But, as discussed, this is the best way
forward, and should be seen as a temporary solution until we get full DT
support.

Then the rest are converting the old omap_dss_device style displays to platform
devices. Only TFP410, generic-dpi-panel, HDMI and Taal drivers have been
converted yet, but those seem to form the bulk of the display options used.

This series can be found from:
git://gitorious.org/linux-omap-dss2/linux.git 3.10-lo/1-arch-dss

These patches depend on a few dss header file changes. These header file
changes can be found from:
git://gitorious.org/linux-omap-dss2/linux.git 3.10/0-dss-headers

If this series is applied without the relevant omapdss changes, everything
compiles and the boards boot, but the converted displays do not work. The same
happens if only the omapdss changes are applied, but not this series.

The related omapdss changes can be found from:
git://gitorious.org/linux-omap-dss2/linux.git 3.10/3-dss-dev-model

 Tomi

Archit Taneja (2):
  ARM: OMAP: Remove unnecessary platform callbacks for VENC devices
  ARM: OMAP: don't use reset_gpio from omap4_panda_dvi_device

Tomi Valkeinen (26):
  ARM: OMAP: Overo: Kconfig option for the display options
  ARM: OMAP: 3430SDP: Kconfig option for the display options
  ARM: OMAP: 4430SDP: Kconfig option for the display options
  ARM: OMAP: DEVKIT8000: Kconfig option for the display options
  ARM: OMAP: OMAP3EVM: Kconfig option for the display options
  ARM: OMAP: CM-T35: Kconfig option for the display options
  ARM: OMAP: AM3517EVM: Kconfig option for the display options
  ARM: OMAP: Panda: use new TFP410 platform driver
  ARM: OMAP: Panda & SDP: use new HDMI driver
  ARM: OMAP: 4430SDP: use new Taal driver
  ARM: OMAP: Beagle: use new TFP410 platform driver
  ARM: OMAP: Stalker: use new TFP410 platform driver
  ARM: OMAP: OMAP3EVM: use new TFP410 platform driver
  ARM: OMAP: IGEP0020: use new TFP410 platform driver
  ARM: OMAP: Devkit8000: use new TFP410 platform driver
  ARM: OMAP: CM-T35: use new TFP410 platform driver
  ARM: OMAP: AM3517EVM: use new TFP410 platform driver
  ARM: OMAP: 3430SDP: use new TFP410 platform driver
  ARM: OMAP: Overo: use new TFP410 platform driver
  ARM: OMAP: Overo: use new generic-dpi-panel platform driver
  ARM: OMAP: LDP: use new generic-dpi-panel platform driver
  ARM: OMAP: H4: use new generic-dpi-panel platform driver
  ARM: OMAP: Devkit8000: use new generic-dpi-panel platform driver
  ARM: OMAP: CM-T35: use new generic-dpi-panel platform driver
  ARM: OMAP: AM3517EVM: use new generic-dpi-panel platform driver
  ARM: OMAP: 2430SDP: use new generic-dpi-panel platform driver

 arch/arm/mach-omap2/Kconfig              |  100 ++++++++++++++++++++
 arch/arm/mach-omap2/board-2430sdp.c      |   24 ++---
 arch/arm/mach-omap2/board-3430sdp.c      |   78 +++++++++-------
 arch/arm/mach-omap2/board-am3517evm.c    |   86 ++++++++---------
 arch/arm/mach-omap2/board-cm-t35.c       |  113 +++++++++++-----------
 arch/arm/mach-omap2/board-devkit8000.c   |  106 +++++++++++++--------
 arch/arm/mach-omap2/board-h4.c           |   24 ++---
 arch/arm/mach-omap2/board-igep0020.c     |   22 ++---
 arch/arm/mach-omap2/board-ldp.c          |   22 ++---
 arch/arm/mach-omap2/board-omap3beagle.c  |   25 ++---
 arch/arm/mach-omap2/board-omap3evm.c     |   70 +++++++-------
 arch/arm/mach-omap2/board-omap3stalker.c |   28 ++----
 arch/arm/mach-omap2/board-overo.c        |  149 ++++++++++++++++++------------
 arch/arm/mach-omap2/dss-common.c         |  125 ++++++++++++-------------
 14 files changed, 561 insertions(+), 411 deletions(-)

-- 
1.7.10.4


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

end of thread, other threads:[~2013-04-03  9:37 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 12:48 [PATCH 00/28] OMAP: DSS related board file changes Tomi Valkeinen
2013-03-28 12:48 ` [PATCH 01/28] ARM: OMAP: Remove unnecessary platform callbacks for VENC devices Tomi Valkeinen
2013-03-28 15:18   ` Igor Grinberg
2013-03-28 12:48 ` [PATCH 02/28] ARM: OMAP: don't use reset_gpio from omap4_panda_dvi_device Tomi Valkeinen
2013-03-28 12:48 ` [PATCH 03/28] ARM: OMAP: Overo: Kconfig option for the display options Tomi Valkeinen
2013-03-28 12:48 ` [PATCH 04/28] ARM: OMAP: 3430SDP: " Tomi Valkeinen
2013-03-28 12:48 ` [PATCH 05/28] ARM: OMAP: 4430SDP: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 06/28] ARM: OMAP: DEVKIT8000: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 07/28] ARM: OMAP: OMAP3EVM: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 08/28] ARM: OMAP: CM-T35: " Tomi Valkeinen
2013-03-28 16:09   ` Igor Grinberg
2013-03-28 16:53     ` Tony Lindgren
2013-03-28 17:12       ` Tomi Valkeinen
2013-03-28 21:28         ` Tony Lindgren
2013-03-29  4:27           ` Tomi Valkeinen
2013-03-29 15:47             ` Tony Lindgren
2013-03-28 17:02     ` Tomi Valkeinen
2013-03-31  9:17       ` Igor Grinberg
2013-04-02  8:07         ` Tomi Valkeinen
2013-04-02 11:20           ` Igor Grinberg
2013-03-28 12:49 ` [PATCH 09/28] ARM: OMAP: AM3517EVM: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 10/28] ARM: OMAP: Panda: use new TFP410 platform driver Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 11/28] ARM: OMAP: Panda & SDP: use new HDMI driver Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 12/28] ARM: OMAP: 4430SDP: use new Taal driver Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 13/28] ARM: OMAP: Beagle: use new TFP410 platform driver Tomi Valkeinen
2013-03-28 12:52   ` Peter Meerwald
2013-03-28 12:49 ` [PATCH 14/28] ARM: OMAP: Stalker: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 15/28] ARM: OMAP: OMAP3EVM: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 16/28] ARM: OMAP: IGEP0020: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 17/28] ARM: OMAP: Devkit8000: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 18/28] ARM: OMAP: CM-T35: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 19/28] ARM: OMAP: AM3517EVM: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 20/28] ARM: OMAP: 3430SDP: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 21/28] ARM: OMAP: Overo: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 22/28] ARM: OMAP: Overo: use new generic-dpi-panel " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 23/28] ARM: OMAP: LDP: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 24/28] ARM: OMAP: H4: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 25/28] ARM: OMAP: Devkit8000: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 26/28] ARM: OMAP: CM-T35: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 27/28] ARM: OMAP: AM3517EVM: " Tomi Valkeinen
2013-03-28 12:49 ` [PATCH 28/28] ARM: OMAP: 2430SDP: " Tomi Valkeinen
2013-03-28 15:31 ` [PATCH 00/28] OMAP: DSS related board file changes Igor Grinberg
2013-03-28 16:48   ` Tomi Valkeinen
2013-03-28 16:57     ` Tony Lindgren
2013-03-31  8:41       ` Igor Grinberg
2013-03-31  8:39     ` Igor Grinberg
2013-03-31 15:03       ` Greg Kroah-Hartman
2013-04-02  8:01       ` Tomi Valkeinen
2013-04-02  8:40         ` Igor Grinberg
2013-04-03  9:36 ` Tomi Valkeinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox