From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f41.google.com (mail-pb0-f41.google.com [209.85.160.41]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 3AEE7E0140A for ; Thu, 16 May 2013 06:39:56 -0700 (PDT) Received: by mail-pb0-f41.google.com with SMTP id xb12so2349169pbc.28 for ; Thu, 16 May 2013 06:39:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding:x-gm-message-state; bh=GbMZRJo9FLhDf+Uy6GSGi1HSY8U3vtezOpV/nHRCCUw=; b=VWK/tT55psp56AWDi80f8kzyDJ8xFG4AiV6YKo60/C/896iD3O9BWuNxwAWSRKvriL MrQRaSnt/jnt/Tz3/7fYiRwx0WDsaxVTfNY5ElXpT6lXkvMdvb1+sHzDAb+SNfOLzfOa 6oqgy1+Vlgb8zze5dfR95YqUSOvuBEBFsb7RqP55Q7U/H6yAdI7n2lcv212KApYQS55H jjD9T73fKzfxC02+gbKGfhG3XLHy+dsCQFYA8VGf4NVnTWFJjc+FMaqVA1e3AePWKSif QBK26/aggwKiov3pCdD2GKI9YFPrMBu0LFIx9i10YIGD67g/VosTbLngB1CDyshZg309 gMoQ== X-Received: by 10.66.119.49 with SMTP id kr17mr10664045pab.149.1368711596016; Thu, 16 May 2013 06:39:56 -0700 (PDT) Received: from [192.168.1.8] (ip98-167-230-131.ph.ph.cox.net. [98.167.230.131]) by mx.google.com with ESMTPSA id cd2sm6830093pbd.35.2013.05.16.06.39.51 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 16 May 2013 06:39:54 -0700 (PDT) Message-ID: <5194E1A5.8060708@boundarydevices.com> Date: Thu, 16 May 2013 06:39:49 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: "PAPARO Nino (MM)" References: <013101ce51b8$47b04610$d710d230$@vt.edu> <20130516091404.675499c0@e6520eb> In-Reply-To: X-Gm-Message-State: ALoCoQlkj7oEwK32wg8KSFeJ5HSKEVT7a7jbiJr1HThhMwWrmhzBcwtLN7htK7E6A52elXsp7uK1 Cc: "meta-freescale@yoctoproject.org" Subject: Re: resolution not changing X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 May 2013 13:39:56 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Nino, On 05/16/2013 05:58 AM, PAPARO Nino (MM) wrote: > Hi, > I'm having a similar issue with a 800x480 rgb screen, I'd like to change the colordepth to 24. > The uboot setting I'm using is: > > setenv bootargs $bootargs video=mxcfb0:dev=lcd,CLAA-WVGA,if=RGB666 > > and I tried setting it to: > > setenv bootargs $bootargs video=mxcfb0:dev=lcd,800x480,if=RGB24 > I think you want 800x480M@60 here instead of 800x480. > but this does'nt seem to work. > Any help would be appreciated. > > Nino > The "if=RGBx" parameter controls the output pixel format to match the display. It doesn't change the frame-buffer memory layout. For that, you want to use the 'bpp=N' flag. setenv bootargs $bootargs video=mxcfb0:dev=lcd,CLAA-WVGA,bpp=24,if=RGB666 You can verify this after boot by looking in /sys: # cat /sys/class/graphics/fb0/bits_per_pixel Regards, Eric