lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 25 Jun 2014 16:22:14 -0500
From:	Thor Thayer <tthayer.linux@...il.com>
To:	Dinh Nguyen <dinh.linux@...il.com>
Cc:	Thor Thayer <tthayer@...era.com>,
	Rob Herring <robherring2@...il.com>, pawel.moll@....com,
	Mark Rutland <mark.rutland@....com>,
	ijc+devicetree@...lion.org.uk, Kumar Gala <galak@...eaurora.org>,
	Rob Landley <rob@...dley.net>, linux@....linux.org.uk,
	Dinh Nguyen <dinguyen@...era.com>, dougthompson@...ssion.com,
	Grant Likely <grant.likely@...aro.org>,
	Borislav Petkov <bp@...en8.de>,
	"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
	"linux-doc@...r.kernel.org" <linux-doc@...r.kernel.org>,
	linux-kernel <linux-kernel@...r.kernel.org>,
	linux-arm-kernel@...ts.infradead.org, linux-edac@...r.kernel.org
Subject: Re: [PATCHv7 3/3] edac: altera: Add EDAC support for Altera SoC SDRAM Controller.

Hi Dinh,

On Wed, Jun 25, 2014 at 4:12 PM, Dinh Nguyen <dinh.linux@...il.com> wrote:
> Hi Thor,
>
>
> On 06/25/2014 04:15 PM, tthayer@...era.com wrote:
>>
>> From: Thor Thayer <tthayer@...era.com>
>>
>> This patch adds support for the CycloneV and ArriaV SDRAM controllers.
>> Correction and reporting of SBEs, Panic on DBEs.
>>
>> Signed-off-by: Thor Thayer <tthayer@...era.com>
>> ---
>> v2: Use the SDRAM controller registers to calculate memory size
>>      instead of the Device Tree. Update To & Cc list. Add maintainer
>>      information.
>>
>> v3: EDAC driver cleanup based on comments from Mailing list.
>>
>> v4: Panic on DBE. Add macro around inject-error reads to prevent
>>      them from being optimized out. Remove of_match_ptr since this
>>      will always use Device Tree.
>>
>> v5: Addition of printk to trigger function to ensure read vars
>>      are not optimized out.
>>
>> v6: Changes to split out shared SDRAM controller reg (offset 0x00)
>>      as a syscon device and allocate ECC specific SDRAM registers
>>      to EDAC.
>>
>> v7: No change. Bump version for consistency.
>> ---
>>   drivers/edac/Kconfig       |    9 +
>>   drivers/edac/Makefile      |    2 +
>>   drivers/edac/altera_edac.c |  448
>> ++++++++++++++++++++++++++++++++++++++++++++
>>   3 files changed, 459 insertions(+)
>>   create mode 100644 drivers/edac/altera_edac.c
>>
>> diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
>> index 878f090..4f4d379 100644
>> --- a/drivers/edac/Kconfig
>> +++ b/drivers/edac/Kconfig
>> @@ -368,4 +368,13 @@ config EDAC_OCTEON_PCI
>>           Support for error detection and correction on the
>>           Cavium Octeon family of SOCs.
>>
>> +config EDAC_ALTERA_MC
>> +       bool "Altera SDRAM Memory Controller EDAC"
>> +       depends on EDAC_MM_EDAC && ARCH_SOCFPGA
>> +       help
>> +         Support for error detection and correction on the
>> +         Altera SDRAM memory controller. Note that the
>> +         preloader must initialize the SDRAM before loading
>> +         the kernel.
>> +
>>   endif # EDAC
>> diff --git a/drivers/edac/Makefile b/drivers/edac/Makefile
>> index 4154ed6..9741336 100644
>> --- a/drivers/edac/Makefile
>> +++ b/drivers/edac/Makefile
>> @@ -64,3 +64,5 @@ obj-$(CONFIG_EDAC_OCTEON_PC)          +=
>> octeon_edac-pc.o
>>   obj-$(CONFIG_EDAC_OCTEON_L2C)         += octeon_edac-l2c.o
>>   obj-$(CONFIG_EDAC_OCTEON_LMC)         += octeon_edac-lmc.o
>>   obj-$(CONFIG_EDAC_OCTEON_PCI)         += octeon_edac-pci.o
>> +
>> +obj-$(CONFIG_EDAC_ALTERA_MC)           += altera_edac.o
>> diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c
>> new file mode 100644
>> index 0000000..e3fcd27
>> --- /dev/null
>> +++ b/drivers/edac/altera_edac.c
>> @@ -0,0 +1,448 @@
>> +/*
>> + *  Copyright Altera Corporation (C) 2014. All rights reserved.
>> + *  Copyright 2011-2012 Calxeda, Inc.
>> + *
>> + * 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.
>> + *
>> + * This file is subject to the terms and conditions of the GNU General
>> Public
>> + * License.  See the file "COPYING" in the main directory of this archive
>> + * for more details.
>> +
>> + *
>> + * Adapted from the highbank_mc_edac driver
>> + *
>> + */
>> +#include <linux/types.h>
>> +#include <linux/kernel.h>
>> +#include <linux/ctype.h>
>> +#include <linux/edac.h>
>> +#include <linux/interrupt.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/of_platform.h>
>> +#include <linux/uaccess.h>
>> +#include <linux/mfd/syscon.h>
>> +#include <linux/regmap.h>
>>
>
> Did you miss my comment to put these headers in alpabetical order?
>
> Dinh

Yep, I missed your comment - looking at it now.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ