Comment 10 for bug 660811

Revision history for this message
Andy Doan (doanac) wrote :

Adding some details about where the Overo patches reside. Steve Sakoman hosts a git repository at:
  git://www.sakoman.com/git/linux-omap-2.6

He currently has a set of patches on the branch: omap-2.6.37

The main patch we are missing required for video support is:
  7afbd9f OMAP: DSS2: Add DSS2 support for Overo

Important note about commit 7afbd9f. His change includes
+static struct regulator_consumer_supply overo_vdds_dsi_supply =
+ REGULATOR_SUPPLY("vdds_dsi", "omapdss");
+

I noticed the default kernel config used by Linaro is set like this:
CONFIG_OMAP2_DSS_SDI=y
# CONFIG_OMAP2_DSS_DSI is not set

In order for video to work with the current Linaro defconfig we need an
SDI entry added like:
static struct regulator_consumer_supply overo_vdds_supplies[] = {
        REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
        REGULATOR_SUPPLY("vdds_sdi", "omapdss"), /*FIXES LINARO!*/
};

I sent this suggestion to Steve and he said he'd add this when he got a chance.