Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753381AbaKGWK6 (ORCPT ); Fri, 7 Nov 2014 17:10:58 -0500 Received: from mail-bn1on0083.outbound.protection.outlook.com ([157.56.110.83]:21696 "EHLO na01-bn1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753191AbaKGWKz (ORCPT ); Fri, 7 Nov 2014 17:10:55 -0500 Message-ID: <545D438F.8040801@opensource.altera.com> Date: Fri, 7 Nov 2014 16:11:27 -0600 From: Thor Thayer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Dinh Nguyen , , , , , , , , , , CC: , , , , , Subject: Re: [PATCHv4 2/5] arm: socfpga: Enable OCRAM ECC on startup. References: <1415379263-12391-1-git-send-email-tthayer@opensource.altera.com> <1415379263-12391-3-git-send-email-tthayer@opensource.altera.com> <545D2C4A.6030401@opensource.altera.com> In-Reply-To: <545D2C4A.6030401@opensource.altera.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [64.129.157.38] X-ClientProxiedBy: CY1PR12CA0041.namprd12.prod.outlook.com (25.160.137.51) To BL2PR03MB113.namprd03.prod.outlook.com (10.255.230.12) X-MS-Exchange-Transport-FromEntityHeader: Hosted X-Microsoft-Antispam: UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:BL2PR03MB113; X-Exchange-Antispam-Report-Test: UriScan:; X-Forefront-PRVS: 03883BD916 X-Forefront-Antispam-Report: SFV:NSPM;SFS:(10009020)(6009001)(6049001)(51704005)(24454002)(199003)(377454003)(41574002)(189002)(22564002)(479174003)(20776003)(77096003)(65806001)(87976001)(102836001)(50466002)(42186005)(4396001)(21056001)(86362001)(575784001)(92566001)(92726001)(2201001)(62966003)(31966008)(101416001)(77156002)(19580405001)(15202345003)(33656002)(46102003)(64706001)(19580395003)(95666004)(97736003)(107046002)(106356001)(99396003)(120916001)(87266999)(122386002)(47776003)(23746002)(15975445006)(54356999)(80316001)(83506001)(50986999)(66066001)(76176999)(40100003)(59896002)(65956001)(65816999)(64126003)(105586002)(3076001)(921003)(1121002)(2004002)(217873001);DIR:OUT;SFP:1101;SCL:1;SRVR:BL2PR03MB113;H:[137.57.160.203];FPR:;MLV:sfv;PTR:InfoNoRecords;A:0;MX:1;LANG:en; X-OriginatorOrg: opensource.altera.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Dinh, On 11/07/2014 02:32 PM, Dinh Nguyen wrote: > Hi Thor, > > On 11/07/2014 10:54 AM, tthayer@opensource.altera.com wrote: >> From: Thor Thayer >> >> This patch enables the ECC for On-Chip RAM on machine >> startup. The ECC has to be enabled before data is >> is stored in memory otherwise the ECC will fail on >> reads. >> >> Signed-off-by: Thor Thayer >> --- >> v2: Split OCRAM ECC portion separately. Addition of iounmap() >> and reorganization of gen_pool_free. Remove defconfig from patch. >> >> v3/4: No change >> --- >> MAINTAINERS | 1 + >> arch/arm/mach-socfpga/Makefile | 1 + >> arch/arm/mach-socfpga/ocram.c | 90 +++++++++++++++++++++++++++++++++++++++ >> arch/arm/mach-socfpga/ocram.h | 28 ++++++++++++ >> arch/arm/mach-socfpga/socfpga.c | 8 ++++ >> 5 files changed, 128 insertions(+) >> create mode 100644 arch/arm/mach-socfpga/ocram.c >> create mode 100644 arch/arm/mach-socfpga/ocram.h >> >> diff --git a/MAINTAINERS b/MAINTAINERS >> index d0c7752..c6d390e 100644 >> --- a/MAINTAINERS >> +++ b/MAINTAINERS >> @@ -1408,6 +1408,7 @@ M: Thor Thayer >> S: Maintained >> F: drivers/edac/altera_edac. >> F: arch/arm/mach-socfpga/l2_cache.* >> +F: arch/arm/mach-socfpga/ocram.* > I think you can remove these entries for l2_cache.c and ocram.c since it > already falls under mach-socfpga/, which I already maintain. Thanks. I will remove them. >> >> ARM/STI ARCHITECTURE >> M: Srinivas Kandagatla >> diff --git a/arch/arm/mach-socfpga/Makefile b/arch/arm/mach-socfpga/Makefile >> index 142609e..1552ca5 100644 >> --- a/arch/arm/mach-socfpga/Makefile >> +++ b/arch/arm/mach-socfpga/Makefile >> @@ -5,3 +5,4 @@ >> obj-y := socfpga.o >> obj-$(CONFIG_SMP) += headsmp.o platsmp.o >> obj-$(CONFIG_EDAC_ALTERA_L2C) += l2_cache.o >> +obj-$(CONFIG_EDAC_ALTERA_OCRAM) += ocram.o >> diff --git a/arch/arm/mach-socfpga/ocram.c b/arch/arm/mach-socfpga/ocram.c >> new file mode 100644 >> index 0000000..9136009 >> --- /dev/null >> +++ b/arch/arm/mach-socfpga/ocram.c >> @@ -0,0 +1,90 @@ >> +/* >> + * Copyright Altera Corporation (C) 2014. All rights reserved. >> + * >> + * This program is free software; you can redistribute it and/or modify it >> + * under the terms and conditions of the GNU General Public License, >> + * version 2, as published by the Free Software Foundation. >> + * >> + * This program is distributed in the hope it will be useful, but WITHOUT >> + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or >> + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for >> + * more details. >> + * >> + * You should have received a copy of the GNU General Public License along with >> + * this program. If not, see . >> + */ >> +#include > Why clk-provider.h and not io.h? I will change to io.h. >> +#include >> +#include >> + >> +#include "ocram.h" >> + >> +void socfpga_init_ocram_ecc(void) >> +{ >> + struct device_node *np; >> + const __be32 *prop; >> + u32 ocr_edac_addr, iram_addr, len; >> + void __iomem *mapped_ocr_edac_addr; >> + size_t size; >> + struct gen_pool *gp; >> + >> + np = of_find_compatible_node(NULL, NULL, "altr,ocram-edac"); >> + if (!np) { >> + pr_err("SOCFPGA: Unable to find altr,ocram-edac in dtb\n"); >> + return; >> + } >> + >> + prop = of_get_property(np, "reg", &size); >> + ocr_edac_addr = be32_to_cpup(prop++); >> + len = be32_to_cpup(prop); > You should be checking for prop before calling be32_to_cpup. > >> + if (!prop || size < sizeof(*prop)) { > Then you don't need check for prop here. > >> + pr_err("SOCFPGA: Unable to find OCRAM ECC mapping in dtb\n"); >> + return; >> + } >> + >> + gp = of_get_named_gen_pool(np, "iram", 0); >> + if (!gp) { >> + pr_err("SOCFPGA: OCRAM cannot find gen pool\n"); >> + return; >> + } >> + >> + np = of_find_compatible_node(NULL, NULL, "mmio-sram"); >> + if (!np) { >> + pr_err("SOCFPGA: Unable to find mmio-sram in dtb\n"); >> + return; >> + } >> + /* Determine the OCRAM address and size */ >> + prop = of_get_property(np, "reg", &size); >> + iram_addr = be32_to_cpup(prop++); >> + len = be32_to_cpup(prop); > Same comment here for checking prop before calling be32_to_cpu. Good catch. Thanks. >> + >> + if (!prop || size < sizeof(*prop)) { >> + pr_err("SOCFPGA: Unable to find OCRAM mapping in dtb\n"); >> + return; >> + } >> + >> + iram_addr = gen_pool_alloc(gp, len); >> + if (iram_addr == 0) { >> + pr_err("SOCFPGA: cannot alloc from gen pool\n"); >> + return; >> + } >> + >> + memset((void *)iram_addr, 0, len); >> + >> + gen_pool_free(gp, iram_addr, len); >> + >> + mapped_ocr_edac_addr = ioremap(ocr_edac_addr, 4); >> + if (!mapped_ocr_edac_addr) { >> + pr_err("SOCFPGA: Unable to map OCRAM ecc regs.\n"); >> + return; >> + } >> + >> + /* Clear any pending OCRAM ECC interrupts, then enable ECC */ >> + writel(0x18, mapped_ocr_edac_addr); >> + writel(0x19, mapped_ocr_edac_addr); > Can you add a define for 0x18 and 0x19? What do these values mean? Sure. >> + >> + iounmap(mapped_ocr_edac_addr); >> + >> + pr_debug("SOCFPGA: Success Initializing OCRAM\n"); >> +} >> + >> diff --git a/arch/arm/mach-socfpga/ocram.h b/arch/arm/mach-socfpga/ocram.h >> new file mode 100644 >> index 0000000..f93cf84 >> --- /dev/null >> +++ b/arch/arm/mach-socfpga/ocram.h >> @@ -0,0 +1,28 @@ >> +/* >> + * Copyright Altera Corporation (C) 2014. All rights reserved. >> + * >> + * This program is free software; you can redistribute it and/or modify it >> + * under the terms and conditions of the GNU General Public License, >> + * version 2, as published by the Free Software Foundation. >> + * >> + * This program is distributed in the hope it will be useful, but WITHOUT >> + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or >> + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for >> + * more details. >> + * >> + * You should have received a copy of the GNU General Public License along with >> + * this program. If not, see . >> + */ >> + >> +#ifndef MACH_SOCFPGA_OCRAM_H >> +#define MACH_SOCFPGA_OCRAM_H >> + >> +#ifdef CONFIG_EDAC_ALTERA_OCRAM >> +void socfpga_init_ocram_ecc(void); >> +#else >> +inline void socfpga_init_ocram_ecc(void) >> +{ >> +} >> +#endif >> + >> +#endif /* #ifndef MACH_SOCFPGA_OCRAM_H */ >> diff --git a/arch/arm/mach-socfpga/socfpga.c b/arch/arm/mach-socfpga/socfpga.c >> index af6413a..fb41aca 100644 >> --- a/arch/arm/mach-socfpga/socfpga.c >> +++ b/arch/arm/mach-socfpga/socfpga.c >> @@ -101,6 +101,13 @@ static void socfpga_cyclone5_restart(enum reboot_mode mode, const char *cmd) >> writel(temp, rst_manager_base_addr + SOCFPGA_RSTMGR_CTRL); >> } >> >> +static void __init socfpga_cyclone5_init(void) >> +{ >> + of_platform_populate(NULL, of_default_bus_match_table, >> + NULL, NULL); >> + socfpga_init_ocram_ecc(); > Use IS_ENABLED() here, so you can remove the need to have ocram.h. You > can put the function declaration in core.h. > > Dinh I will make the changes. Thanks! > >> +} >> + >> static const char *altera_dt_match[] = { >> "altr,socfpga", >> NULL >> @@ -112,6 +119,7 @@ DT_MACHINE_START(SOCFPGA, "Altera SOCFPGA") >> .smp = smp_ops(socfpga_smp_ops), >> .map_io = socfpga_map_io, >> .init_irq = socfpga_init_irq, >> + .init_machine = socfpga_cyclone5_init, >> .restart = socfpga_cyclone5_restart, >> .dt_compat = altera_dt_match, >> MACHINE_END >> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/