Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1705043
| From | Chris Packham <chris.packham@alliedtelesis.co.nz> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RESEND PATCH 4/4] EDAC: add support for reduced-width Armada-XP SDRAM |
| Date | 2017-08-07 03:50 +0200 |
| Message-ID | <ubFl8-1ES-15@gated-at.bofh.it> (permalink) |
| References | <ubFl7-1ES-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Some integrated Armada XP SoCs use a reduced pin count so the width of the SDRAM interface is smaller than the traditional discrete SoCs. This means that the definition of "full" and "half" width is further reduced. Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> --- drivers/edac/armada_xp_edac.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/edac/armada_xp_edac.c b/drivers/edac/armada_xp_edac.c index 68e88b180928..d8edcaac87c0 100644 --- a/drivers/edac/armada_xp_edac.c +++ b/drivers/edac/armada_xp_edac.c @@ -350,6 +350,9 @@ static int armada_xp_mc_edac_probe(struct platform_device *pdev) if (armada_xp_mc_edac_read_config(mci)) return -EINVAL; + if (of_property_read_bool(pdev->dev.of_node, "marvell,reduced-width")) + drvdata->width /= 2; + /* configure SBE threshold */ /* it seems that SBEs are not captured otherwise */ writel(1 << SDRAM_ERR_CTRL_ERR_THR_OFFSET, -- 2.13.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[RESEND PATCH 4/4] EDAC: add support for reduced-width Armada-XP SDRAM Chris Packham <chris.packham@alliedtelesis.co.nz> - 2017-08-07 03:50 +0200 Re: [RESEND PATCH 4/4] EDAC: add support for reduced-width Armada-XP SDRAM Borislav Petkov <bp@alien8.de> - 2017-08-11 11:20 +0200
csiph-web