From patchwork Mon Jan 23 15:52:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 137390 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 8A3991007D1 for ; Tue, 24 Jan 2012 02:53:17 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A42F728154; Mon, 23 Jan 2012 16:53:13 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Fsbwg4hIIBBy; Mon, 23 Jan 2012 16:53:13 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2806428155; Mon, 23 Jan 2012 16:53:12 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6967728155 for ; Mon, 23 Jan 2012 16:53:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6pXMajE4dUTo for ; Mon, 23 Jan 2012 16:53:07 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-ee0-f44.google.com (mail-ee0-f44.google.com [74.125.83.44]) by theia.denx.de (Postfix) with ESMTPS id 3ABC828154 for ; Mon, 23 Jan 2012 16:53:05 +0100 (CET) Received: by eekc1 with SMTP id c1so1772415eek.3 for ; Mon, 23 Jan 2012 07:53:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=h2XLnc/+vuLQzNSeD7QdFxMq14g6RadqyMZTpBIK/6U=; b=XBX8DtFej5ftOLqd4JtumTHLNdr/3Jo/hpS+0TLDPUBEHIyR79jXjLDAhMQG7v49X1 vONqm1nYPNyGtadAphN9X9Ru2g87HEoT8IEQKVxdsy0bwZmmJ3+f6vZkLxC1wNN5ne1k 7Nca6xhGF5WisXiXc7La0197Sm+/66KkjjekE= MIME-Version: 1.0 Received: by 10.14.3.230 with SMTP id 78mr445039eeh.129.1327333979420; Mon, 23 Jan 2012 07:52:59 -0800 (PST) Received: by 10.213.7.9 with HTTP; Mon, 23 Jan 2012 07:52:59 -0800 (PST) In-Reply-To: <201201230521.42046.marek.vasut@gmail.com> References: <1327286288-2265-1-git-send-email-festevam@gmail.com> <201201230521.42046.marek.vasut@gmail.com> Date: Mon, 23 Jan 2012 13:52:59 -0200 Message-ID: From: Fabio Estevam To: Marek Vasut Cc: Fabio Estevam , u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH] mx28: Show CPU frequency X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de On 1/23/12, Marek Vasut wrote: > Just put it amongst the other frequencies displayed by the clock command. What about this? It will print a lot more info though. Regards, Fabio Estevam Acked-by: Marek Vasut --- a/arch/arm/cpu/arm926ejs/mx28/mx28.c +++ b/arch/arm/cpu/arm926ejs/mx28/mx28.c @@ -170,6 +170,7 @@ int arch_cpu_init(void) int print_cpuinfo(void) { printf("Freescale i.MX28 family\n"); + do_mx28_showclocks(); return 0; } #endif