From patchwork Sun Jun 9 14:28:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Grazvydas Ignotas X-Patchwork-Id: 2694251 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 2F5CF3FC23 for ; Sun, 9 Jun 2013 14:28:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753030Ab3FIO2R (ORCPT ); Sun, 9 Jun 2013 10:28:17 -0400 Received: from mail-oa0-f43.google.com ([209.85.219.43]:59260 "EHLO mail-oa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752928Ab3FIO2R convert rfc822-to-8bit (ORCPT ); Sun, 9 Jun 2013 10:28:17 -0400 Received: by mail-oa0-f43.google.com with SMTP id i7so3383140oag.2 for ; Sun, 09 Jun 2013 07:28:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=A8w25p0/PsBBwJhCV5ADOhwxve1EmF6uGysjAtvTjGI=; b=FKUdR/udSsssUj9mQM5kxPRvFwr7Ev31ktnkidJwM8Hwi2jEoM/d4VOWRAwCggsGEm UmKPAEUM4m/LJRGUCnXhcMMiyhwffL/ooVoeZI9YtqV+bmBD3FEiP9r1/xIDV9kL53nN ahAbSlCbr2Ux140VkHFnifm7L9jSkwaZEisImfS5ngX69GECPJ+6zmKzgbus7gQd3USZ z0ltM42C1aXcfJdPa6/eEKd+eHyddZHFTTP2lc/z5RCNyMXY/bhzGo75rVuP+YSUhM86 eqGQw96ajs/fISaVfCSXW5YJSil6vP3o45zgfrhhUnB5l4mq84o3ldaEpBWAsSkB1Fp8 FtEA== MIME-Version: 1.0 X-Received: by 10.60.164.70 with SMTP id yo6mr5141063oeb.78.1370788096558; Sun, 09 Jun 2013 07:28:16 -0700 (PDT) Received: by 10.76.167.229 with HTTP; Sun, 9 Jun 2013 07:28:16 -0700 (PDT) In-Reply-To: <51AD99F5.7060506@ti.com> References: <51AD99F5.7060506@ti.com> Date: Sun, 9 Jun 2013 17:28:16 +0300 Message-ID: Subject: Re: Request for OMAPDSS testing From: Grazvydas Ignotas To: Tomi Valkeinen Cc: Aaro Koskinen , Igor Grinberg , Thomas Weber , Mike Rapoport , Steve Sakoman , linux-omap Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Hello, On Tue, Jun 4, 2013 at 10:40 AM, Tomi Valkeinen wrote: > I've made some big changes on the omapdss device model, which involves > converting all the panel drivers. I've got only a bunch of boards, so I > hope some of you can perhaps do some minimal tests on some other boards. Doesn't work on pandora (legacy boardfile boot): [ 1.418823] OMAP DSS rev 2.0 [ 1.447448] omapfb omapfb: no displays [ 1.454101] omapfb omapfb: failed to setup omapfb [ 1.459106] platform omapfb: Driver omapfb requests probe deferral ... [ 2.156860] panel-tpo-td043mtea1 spi1.1: failed to get LCD VCC regulator [ 2.164093] spi spi1.1: Driver panel-tpo-td043mtea1 requests probe deferral ... Needs this small patch: static struct regulator_consumer_supply pandora_usb_phy_supply[] = { With that it shows Tux and fb console fine, so with above hunk: Tested-by: Grazvydas Ignotas --- GraÅžvydas -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/arch/arm/mach-omap2/board-omap3pandora.c +++ b/arch/arm/mach-omap2/board-omap3pandora.c @@ -335,7 +338,7 @@ static struct regulator_consumer_supply pandora_vdds_supplies[] = { }; static struct regulator_consumer_supply pandora_vcc_lcd_supply[] = { - REGULATOR_SUPPLY("vcc", "display0"), + REGULATOR_SUPPLY("vcc", "spi1.1"), };