From patchwork Wed Jun 5 01:58:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Anderson X-Patchwork-Id: 2664211 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 9DCC0DF2A1 for ; Wed, 5 Jun 2013 01:59:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751480Ab3FEB7d (ORCPT ); Tue, 4 Jun 2013 21:59:33 -0400 Received: from mail-gh0-f202.google.com ([209.85.160.202]:60989 "EHLO mail-gh0-f202.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751458Ab3FEB7c (ORCPT ); Tue, 4 Jun 2013 21:59:32 -0400 Received: by mail-gh0-f202.google.com with SMTP id g24so43120ghb.3 for ; Tue, 04 Jun 2013 18:59:32 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=4Xgg9sr4jepFY/EmrDD1oU6TlIdMkHxvGy9sfoLtQ38=; b=Q8ptZkmKqD59uyhbEW1gnBUmbco+pgNao8/wEG58UTlacYN66rIyyrv0TCKARiH7F7 Q6n7Htyif80LwliqSxDTjR2AM42DqsLxXpGtOyDBA/tnc4CqzYRYO7kqKAXrP/GB8yzU aaWICLZXd0QggQYzVq+2tl4kR1lkmVjCgY7vS88aMGWQsM7omKHB97gBmCq24nDHPAFH Lp8BrAw9ilgSwnyplSQbhNBI51982edQw66n7Xd+b9q+68DQGgGUQX+nb5gxVOijJoUG qLZf1WO+OHKsiWdfKKHlmTBPsFBx7Ep+3TgWWl5X5PMcb71FWJ7MuBpgh62BoRdQqHxn IQAA== X-Received: by 10.236.134.14 with SMTP id r14mr15830642yhi.39.1370397572179; Tue, 04 Jun 2013 18:59:32 -0700 (PDT) Received: from corp2gmr1-2.hot.corp.google.com (corp2gmr1-2.hot.corp.google.com [172.24.189.93]) by gmr-mx.google.com with ESMTPS id o42si6533246yhe.5.2013.06.04.18.59.32 for (version=TLSv1.1 cipher=AES128-SHA bits=128/128); Tue, 04 Jun 2013 18:59:32 -0700 (PDT) Received: from tictac.mtv.corp.google.com (tictac.mtv.corp.google.com [172.22.162.34]) by corp2gmr1-2.hot.corp.google.com (Postfix) with ESMTP id 081B75A41AE; Tue, 4 Jun 2013 18:59:32 -0700 (PDT) Received: by tictac.mtv.corp.google.com (Postfix, from userid 121310) id A4FD180DED; Tue, 4 Jun 2013 18:59:31 -0700 (PDT) From: Doug Anderson To: Kukjin Kim , Olof Johansson Cc: Thomas Abraham , Simon Glass , linux-samsung-soc@vger.kernel.org, Tomasz Figa , Doug Anderson , Russell King , Ben Dooks , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] ARM: samsung: avoid racy early printk at bootup Date: Tue, 4 Jun 2013 18:58:59 -0700 Message-Id: <1370397539-21653-1-git-send-email-dianders@chromium.org> X-Mailer: git-send-email 1.8.3 X-Gm-Message-State: ALoCoQkYPWzMP8ZtZEwAebpW4WPtAmQmHV/I394rEOLG32/FQMMSO+f2j8AKeG4L5e4680vPvrokmC56s/c3TKtIqd/56nUUam25t6KC+ZXe9F3I7AcTOiu5gMmKYHKThQfM9Of8AHh9U88tHiYHZEdT0YHZI6U67lU4pgIHoswdwzwDRaft3gVGxOP/nJ3TkPRr5qDt+iiZbPO+MPL9Oz/GI5AiBBv91g== Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org At boot, we've got a stack trace that looks something like this (exynos5 as example) * exynos5_map_io * s3c_init_cpu * exynos_init_io * exynos5_dt_map_io * paging_init * setup_arch When paging_init() runs we'll lose any early MMU mappings that we might have had to allow us access to S3C_VA_UART. We won't add those mappings back in until after the SoC-specific map_io() function is called. However, we print the CPU ID _right before_ we call the SoC-specific function. Oops. Things happen to work all right most of the time because the mapping is sticking around in our TLB. ...but if we get really unlucky (like me!) or we put an explicit flush_tlb_all() at the start of exynos_init_io(), then things go boom. This patch moves the problematic printk() till after the cpu->map_io() call. It also switches it over to pr_info(). This patch _doesn't_ remove the questionable printks in the panic case, since we might get lucky and the TLB might still let us print. This patch also adds a few warnings to help others avoid similar headaches. Signed-off-by: Doug Anderson --- arch/arm/mach-exynos/common.c | 7 +++++++ arch/arm/plat-samsung/init.c | 8 +++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index 027c9e7..8b51b0d 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -386,6 +386,13 @@ int __init exynos_fdt_map_chipid(unsigned long node, const char *uname, void __init exynos_init_io(struct map_desc *mach_desc, int size) { + /* + * WARNING: use of printk in this function or its children can be + * deadly. We've switched over to new page tables but haven't yet + * added S3C_VA_UART into the mapping. You might get lucky and see a + * printout work, but if you call flush_tlb_all() it will fail reliably. + */ + #ifdef CONFIG_OF if (initial_boot_params) of_scan_flat_dt(exynos_fdt_map_chipid, NULL); diff --git a/arch/arm/plat-samsung/init.c b/arch/arm/plat-samsung/init.c index 79d10fc..494cfbb 100644 --- a/arch/arm/plat-samsung/init.c +++ b/arch/arm/plat-samsung/init.c @@ -49,18 +49,20 @@ void __init s3c_init_cpu(unsigned long idcode, cpu = s3c_lookup_cpu(idcode, cputab, cputab_size); if (cpu == NULL) { + /* Questionable printk; S3C_VA_UART not mapped yet! */ printk(KERN_ERR "Unknown CPU type 0x%08lx\n", idcode); panic("Unknown S3C24XX CPU"); } - - printk("CPU %s (id 0x%08lx)\n", cpu->name, idcode); - if (cpu->map_io == NULL || cpu->init == NULL) { + /* Questionable printk; S3C_VA_UART not mapped yet! */ printk(KERN_ERR "CPU %s support not enabled\n", cpu->name); panic("Unsupported Samsung CPU"); } cpu->map_io(); + + /* IMPORTANT: call this after cpu->map_io() so we can print reliably */ + pr_info("CPU %s (id 0x%08lx)\n", cpu->name, idcode); } /* s3c24xx_init_clocks