From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755231Ab3GATwA (ORCPT ); Mon, 1 Jul 2013 15:52:00 -0400 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:60844 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754776Ab3GATv6 (ORCPT ); Mon, 1 Jul 2013 15:51:58 -0400 Date: Mon, 1 Jul 2013 21:51:56 +0200 From: Pavel Machek To: Sergei Shtylyov Cc: Tony Lindgren , linux-omap@vger.kernel.org, pali.rohar@gmail.com, kernel list , linux-arm-kernel , Aaro Koskinen Subject: Re: [PATCH] N900: fix operation on emulator Message-ID: <20130701195147.GA22174@amd.pavel.ucw.cz> References: <20130613142809.GA3775@amd.pavel.ucw.cz> <20130613145724.GH8164@atomide.com> <20130613155240.GB3775@amd.pavel.ucw.cz> <20130613161418.GJ8164@atomide.com> <20130613230808.GA14876@amd.pavel.ucw.cz> <20130614055629.GM8164@atomide.com> <20130614212816.GA31768@atrey.karlin.mff.cuni.cz> <20130617111031.GQ20992@atomide.com> <20130701140315.GA15318@amd.pavel.ucw.cz> <51D1C8DD.6040409@cogentembedded.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <51D1C8DD.6040409@cogentembedded.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon 2013-07-01 22:22:21, Sergei Shtylyov wrote: > Hello. > > On 07/01/2013 06:03 PM, Pavel Machek wrote: > > >Errata workarounds for N900 hardware actually break operation on > >emulator. Fix it. > > >This approach was suggested by Pali Rohár > >(thanks!). > > >(Also explain what "sleep_ind" led actually does). > > Looks like unrelated change and probably worth another patch? Separate patch for adding single-line comment? > >--- a/arch/arm/mach-omap2/board-rx51.c > >+++ b/arch/arm/mach-omap2/board-rx51.c > >@@ -33,9 +33,12 @@ > > #include "pm.h" > > #include "sdram-nokia.h" > > #include "board-rx51-secure.h" > >+#include "soc.h" > > > > #define RX51_GPIO_SLEEP_IND 162 > > > >+/* This lights up left part of keyboard */ > >+ > > static struct gpio_led gpio_leds[] = { ... > > #ifdef CONFIG_ARM_ERRATA_430973 > >- printk(KERN_INFO "RX-51: Enabling ARM errata 430973 workaround.\n"); > >- /* set IBE to 1 */ > >- rx51_secure_update_aux_cr(1 << 6, 0); > >+ if (omap_type() == OMAP2_DEVICE_TYPE_SEC) { > >+ printk(KERN_INFO "RX-51: Enabling ARM errata 430973 workaround.\n"); > > How about pr_info() instead? Would not that be unrelated change and worth of separate patch? :-). Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: pavel@ucw.cz (Pavel Machek) Date: Mon, 1 Jul 2013 21:51:56 +0200 Subject: [PATCH] N900: fix operation on emulator In-Reply-To: <51D1C8DD.6040409@cogentembedded.com> References: <20130613142809.GA3775@amd.pavel.ucw.cz> <20130613145724.GH8164@atomide.com> <20130613155240.GB3775@amd.pavel.ucw.cz> <20130613161418.GJ8164@atomide.com> <20130613230808.GA14876@amd.pavel.ucw.cz> <20130614055629.GM8164@atomide.com> <20130614212816.GA31768@atrey.karlin.mff.cuni.cz> <20130617111031.GQ20992@atomide.com> <20130701140315.GA15318@amd.pavel.ucw.cz> <51D1C8DD.6040409@cogentembedded.com> Message-ID: <20130701195147.GA22174@amd.pavel.ucw.cz> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon 2013-07-01 22:22:21, Sergei Shtylyov wrote: > Hello. > > On 07/01/2013 06:03 PM, Pavel Machek wrote: > > >Errata workarounds for N900 hardware actually break operation on > >emulator. Fix it. > > >This approach was suggested by Pali Roh?r > >(thanks!). > > >(Also explain what "sleep_ind" led actually does). > > Looks like unrelated change and probably worth another patch? Separate patch for adding single-line comment? > >--- a/arch/arm/mach-omap2/board-rx51.c > >+++ b/arch/arm/mach-omap2/board-rx51.c > >@@ -33,9 +33,12 @@ > > #include "pm.h" > > #include "sdram-nokia.h" > > #include "board-rx51-secure.h" > >+#include "soc.h" > > > > #define RX51_GPIO_SLEEP_IND 162 > > > >+/* This lights up left part of keyboard */ > >+ > > static struct gpio_led gpio_leds[] = { ... > > #ifdef CONFIG_ARM_ERRATA_430973 > >- printk(KERN_INFO "RX-51: Enabling ARM errata 430973 workaround.\n"); > >- /* set IBE to 1 */ > >- rx51_secure_update_aux_cr(1 << 6, 0); > >+ if (omap_type() == OMAP2_DEVICE_TYPE_SEC) { > >+ printk(KERN_INFO "RX-51: Enabling ARM errata 430973 workaround.\n"); > > How about pr_info() instead? Would not that be unrelated change and worth of separate patch? :-). Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html