brintos

brintos / linux-shallow public Read only

0
0
Text · 59.0 KiB · fd87f1b Raw
2042 lines · c
1// SPDX-License-Identifier: GPL-2.0-or-later2/*3 * APM X-Gene SoC EDAC (error detection and correction)4 *5 * Copyright (c) 2015, Applied Micro Circuits Corporation6 * Author: Feng Kan <fkan@apm.com>7 *         Loc Ho <lho@apm.com>8 */9 10#include <linux/ctype.h>11#include <linux/edac.h>12#include <linux/interrupt.h>13#include <linux/mfd/syscon.h>14#include <linux/module.h>15#include <linux/of.h>16#include <linux/of_address.h>17#include <linux/regmap.h>18 19#include "edac_module.h"20 21#define EDAC_MOD_STR			"xgene_edac"22 23/* Global error configuration status registers (CSR) */24#define PCPHPERRINTSTS			0x000025#define PCPHPERRINTMSK			0x000426#define  MCU_CTL_ERR_MASK		BIT(12)27#define  IOB_PA_ERR_MASK		BIT(11)28#define  IOB_BA_ERR_MASK		BIT(10)29#define  IOB_XGIC_ERR_MASK		BIT(9)30#define  IOB_RB_ERR_MASK		BIT(8)31#define  L3C_UNCORR_ERR_MASK		BIT(5)32#define  MCU_UNCORR_ERR_MASK		BIT(4)33#define  PMD3_MERR_MASK			BIT(3)34#define  PMD2_MERR_MASK			BIT(2)35#define  PMD1_MERR_MASK			BIT(1)36#define  PMD0_MERR_MASK			BIT(0)37#define PCPLPERRINTSTS			0x000838#define PCPLPERRINTMSK			0x000C39#define  CSW_SWITCH_TRACE_ERR_MASK	BIT(2)40#define  L3C_CORR_ERR_MASK		BIT(1)41#define  MCU_CORR_ERR_MASK		BIT(0)42#define MEMERRINTSTS			0x001043#define MEMERRINTMSK			0x001444 45struct xgene_edac {46	struct device		*dev;47	struct regmap		*csw_map;48	struct regmap		*mcba_map;49	struct regmap		*mcbb_map;50	struct regmap		*efuse_map;51	struct regmap		*rb_map;52	void __iomem		*pcp_csr;53	spinlock_t		lock;54	struct dentry           *dfs;55 56	struct list_head	mcus;57	struct list_head	pmds;58	struct list_head	l3s;59	struct list_head	socs;60 61	struct mutex		mc_lock;62	int			mc_active_mask;63	int			mc_registered_mask;64};65 66static void xgene_edac_pcp_rd(struct xgene_edac *edac, u32 reg, u32 *val)67{68	*val = readl(edac->pcp_csr + reg);69}70 71static void xgene_edac_pcp_clrbits(struct xgene_edac *edac, u32 reg,72				   u32 bits_mask)73{74	u32 val;75 76	spin_lock(&edac->lock);77	val = readl(edac->pcp_csr + reg);78	val &= ~bits_mask;79	writel(val, edac->pcp_csr + reg);80	spin_unlock(&edac->lock);81}82 83static void xgene_edac_pcp_setbits(struct xgene_edac *edac, u32 reg,84				   u32 bits_mask)85{86	u32 val;87 88	spin_lock(&edac->lock);89	val = readl(edac->pcp_csr + reg);90	val |= bits_mask;91	writel(val, edac->pcp_csr + reg);92	spin_unlock(&edac->lock);93}94 95/* Memory controller error CSR */96#define MCU_MAX_RANK			897#define MCU_RANK_STRIDE			0x4098 99#define MCUGECR				0x0110100#define  MCU_GECR_DEMANDUCINTREN_MASK	BIT(0)101#define  MCU_GECR_BACKUCINTREN_MASK	BIT(1)102#define  MCU_GECR_CINTREN_MASK		BIT(2)103#define  MUC_GECR_MCUADDRERREN_MASK	BIT(9)104#define MCUGESR				0x0114105#define  MCU_GESR_ADDRNOMATCH_ERR_MASK	BIT(7)106#define  MCU_GESR_ADDRMULTIMATCH_ERR_MASK	BIT(6)107#define  MCU_GESR_PHYP_ERR_MASK		BIT(3)108#define MCUESRR0			0x0314109#define  MCU_ESRR_MULTUCERR_MASK	BIT(3)110#define  MCU_ESRR_BACKUCERR_MASK	BIT(2)111#define  MCU_ESRR_DEMANDUCERR_MASK	BIT(1)112#define  MCU_ESRR_CERR_MASK		BIT(0)113#define MCUESRRA0			0x0318114#define MCUEBLRR0			0x031c115#define  MCU_EBLRR_ERRBANK_RD(src)	(((src) & 0x00000007) >> 0)116#define MCUERCRR0			0x0320117#define  MCU_ERCRR_ERRROW_RD(src)	(((src) & 0xFFFF0000) >> 16)118#define  MCU_ERCRR_ERRCOL_RD(src)	((src) & 0x00000FFF)119#define MCUSBECNT0			0x0324120#define MCU_SBECNT_COUNT(src)		((src) & 0xFFFF)121 122#define CSW_CSWCR			0x0000123#define  CSW_CSWCR_DUALMCB_MASK		BIT(0)124 125#define MCBADDRMR			0x0000126#define  MCBADDRMR_MCU_INTLV_MODE_MASK	BIT(3)127#define  MCBADDRMR_DUALMCU_MODE_MASK	BIT(2)128#define  MCBADDRMR_MCB_INTLV_MODE_MASK	BIT(1)129#define  MCBADDRMR_ADDRESS_MODE_MASK	BIT(0)130 131struct xgene_edac_mc_ctx {132	struct list_head	next;133	char			*name;134	struct mem_ctl_info	*mci;135	struct xgene_edac	*edac;136	void __iomem		*mcu_csr;137	u32			mcu_id;138};139 140static ssize_t xgene_edac_mc_err_inject_write(struct file *file,141					      const char __user *data,142					      size_t count, loff_t *ppos)143{144	struct mem_ctl_info *mci = file->private_data;145	struct xgene_edac_mc_ctx *ctx = mci->pvt_info;146	int i;147 148	for (i = 0; i < MCU_MAX_RANK; i++) {149		writel(MCU_ESRR_MULTUCERR_MASK | MCU_ESRR_BACKUCERR_MASK |150		       MCU_ESRR_DEMANDUCERR_MASK | MCU_ESRR_CERR_MASK,151		       ctx->mcu_csr + MCUESRRA0 + i * MCU_RANK_STRIDE);152	}153	return count;154}155 156static const struct file_operations xgene_edac_mc_debug_inject_fops = {157	.open = simple_open,158	.write = xgene_edac_mc_err_inject_write,159	.llseek = generic_file_llseek,160};161 162static void xgene_edac_mc_create_debugfs_node(struct mem_ctl_info *mci)163{164	if (!IS_ENABLED(CONFIG_EDAC_DEBUG))165		return;166 167	if (!mci->debugfs)168		return;169 170	edac_debugfs_create_file("inject_ctrl", S_IWUSR, mci->debugfs, mci,171				 &xgene_edac_mc_debug_inject_fops);172}173 174static void xgene_edac_mc_check(struct mem_ctl_info *mci)175{176	struct xgene_edac_mc_ctx *ctx = mci->pvt_info;177	unsigned int pcp_hp_stat;178	unsigned int pcp_lp_stat;179	u32 reg;180	u32 rank;181	u32 bank;182	u32 count;183	u32 col_row;184 185	xgene_edac_pcp_rd(ctx->edac, PCPHPERRINTSTS, &pcp_hp_stat);186	xgene_edac_pcp_rd(ctx->edac, PCPLPERRINTSTS, &pcp_lp_stat);187	if (!((MCU_UNCORR_ERR_MASK & pcp_hp_stat) ||188	      (MCU_CTL_ERR_MASK & pcp_hp_stat) ||189	      (MCU_CORR_ERR_MASK & pcp_lp_stat)))190		return;191 192	for (rank = 0; rank < MCU_MAX_RANK; rank++) {193		reg = readl(ctx->mcu_csr + MCUESRR0 + rank * MCU_RANK_STRIDE);194 195		/* Detect uncorrectable memory error */196		if (reg & (MCU_ESRR_DEMANDUCERR_MASK |197			   MCU_ESRR_BACKUCERR_MASK)) {198			/* Detected uncorrectable memory error */199			edac_mc_chipset_printk(mci, KERN_ERR, "X-Gene",200				"MCU uncorrectable error at rank %d\n", rank);201 202			edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci,203				1, 0, 0, 0, 0, 0, -1, mci->ctl_name, "");204		}205 206		/* Detect correctable memory error */207		if (reg & MCU_ESRR_CERR_MASK) {208			bank = readl(ctx->mcu_csr + MCUEBLRR0 +209				     rank * MCU_RANK_STRIDE);210			col_row = readl(ctx->mcu_csr + MCUERCRR0 +211					rank * MCU_RANK_STRIDE);212			count = readl(ctx->mcu_csr + MCUSBECNT0 +213				      rank * MCU_RANK_STRIDE);214			edac_mc_chipset_printk(mci, KERN_WARNING, "X-Gene",215				"MCU correctable error at rank %d bank %d column %d row %d count %d\n",216				rank, MCU_EBLRR_ERRBANK_RD(bank),217				MCU_ERCRR_ERRCOL_RD(col_row),218				MCU_ERCRR_ERRROW_RD(col_row),219				MCU_SBECNT_COUNT(count));220 221			edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci,222				1, 0, 0, 0, 0, 0, -1, mci->ctl_name, "");223		}224 225		/* Clear all error registers */226		writel(0x0, ctx->mcu_csr + MCUEBLRR0 + rank * MCU_RANK_STRIDE);227		writel(0x0, ctx->mcu_csr + MCUERCRR0 + rank * MCU_RANK_STRIDE);228		writel(0x0, ctx->mcu_csr + MCUSBECNT0 +229		       rank * MCU_RANK_STRIDE);230		writel(reg, ctx->mcu_csr + MCUESRR0 + rank * MCU_RANK_STRIDE);231	}232 233	/* Detect memory controller error */234	reg = readl(ctx->mcu_csr + MCUGESR);235	if (reg) {236		if (reg & MCU_GESR_ADDRNOMATCH_ERR_MASK)237			edac_mc_chipset_printk(mci, KERN_WARNING, "X-Gene",238				"MCU address miss-match error\n");239		if (reg & MCU_GESR_ADDRMULTIMATCH_ERR_MASK)240			edac_mc_chipset_printk(mci, KERN_WARNING, "X-Gene",241				"MCU address multi-match error\n");242 243		writel(reg, ctx->mcu_csr + MCUGESR);244	}245}246 247static void xgene_edac_mc_irq_ctl(struct mem_ctl_info *mci, bool enable)248{249	struct xgene_edac_mc_ctx *ctx = mci->pvt_info;250	unsigned int val;251 252	if (edac_op_state != EDAC_OPSTATE_INT)253		return;254 255	mutex_lock(&ctx->edac->mc_lock);256 257	/*258	 * As there is only single bit for enable error and interrupt mask,259	 * we must only enable top level interrupt after all MCUs are260	 * registered. Otherwise, if there is an error and the corresponding261	 * MCU has not registered, the interrupt will never get cleared. To262	 * determine all MCU have registered, we will keep track of active263	 * MCUs and registered MCUs.264	 */265	if (enable) {266		/* Set registered MCU bit */267		ctx->edac->mc_registered_mask |= 1 << ctx->mcu_id;268 269		/* Enable interrupt after all active MCU registered */270		if (ctx->edac->mc_registered_mask ==271		    ctx->edac->mc_active_mask) {272			/* Enable memory controller top level interrupt */273			xgene_edac_pcp_clrbits(ctx->edac, PCPHPERRINTMSK,274					       MCU_UNCORR_ERR_MASK |275					       MCU_CTL_ERR_MASK);276			xgene_edac_pcp_clrbits(ctx->edac, PCPLPERRINTMSK,277					       MCU_CORR_ERR_MASK);278		}279 280		/* Enable MCU interrupt and error reporting */281		val = readl(ctx->mcu_csr + MCUGECR);282		val |= MCU_GECR_DEMANDUCINTREN_MASK |283		       MCU_GECR_BACKUCINTREN_MASK |284		       MCU_GECR_CINTREN_MASK |285		       MUC_GECR_MCUADDRERREN_MASK;286		writel(val, ctx->mcu_csr + MCUGECR);287	} else {288		/* Disable MCU interrupt */289		val = readl(ctx->mcu_csr + MCUGECR);290		val &= ~(MCU_GECR_DEMANDUCINTREN_MASK |291			 MCU_GECR_BACKUCINTREN_MASK |292			 MCU_GECR_CINTREN_MASK |293			 MUC_GECR_MCUADDRERREN_MASK);294		writel(val, ctx->mcu_csr + MCUGECR);295 296		/* Disable memory controller top level interrupt */297		xgene_edac_pcp_setbits(ctx->edac, PCPHPERRINTMSK,298				       MCU_UNCORR_ERR_MASK | MCU_CTL_ERR_MASK);299		xgene_edac_pcp_setbits(ctx->edac, PCPLPERRINTMSK,300				       MCU_CORR_ERR_MASK);301 302		/* Clear registered MCU bit */303		ctx->edac->mc_registered_mask &= ~(1 << ctx->mcu_id);304	}305 306	mutex_unlock(&ctx->edac->mc_lock);307}308 309static int xgene_edac_mc_is_active(struct xgene_edac_mc_ctx *ctx, int mc_idx)310{311	unsigned int reg;312	u32 mcu_mask;313 314	if (regmap_read(ctx->edac->csw_map, CSW_CSWCR, &reg))315		return 0;316 317	if (reg & CSW_CSWCR_DUALMCB_MASK) {318		/*319		 * Dual MCB active - Determine if all 4 active or just MCU0320		 * and MCU2 active321		 */322		if (regmap_read(ctx->edac->mcbb_map, MCBADDRMR, &reg))323			return 0;324		mcu_mask = (reg & MCBADDRMR_DUALMCU_MODE_MASK) ? 0xF : 0x5;325	} else {326		/*327		 * Single MCB active - Determine if MCU0/MCU1 or just MCU0328		 * active329		 */330		if (regmap_read(ctx->edac->mcba_map, MCBADDRMR, &reg))331			return 0;332		mcu_mask = (reg & MCBADDRMR_DUALMCU_MODE_MASK) ? 0x3 : 0x1;333	}334 335	/* Save active MC mask if hasn't set already */336	if (!ctx->edac->mc_active_mask)337		ctx->edac->mc_active_mask = mcu_mask;338 339	return (mcu_mask & (1 << mc_idx)) ? 1 : 0;340}341 342static int xgene_edac_mc_add(struct xgene_edac *edac, struct device_node *np)343{344	struct mem_ctl_info *mci;345	struct edac_mc_layer layers[2];346	struct xgene_edac_mc_ctx tmp_ctx;347	struct xgene_edac_mc_ctx *ctx;348	struct resource res;349	int rc;350 351	memset(&tmp_ctx, 0, sizeof(tmp_ctx));352	tmp_ctx.edac = edac;353 354	if (!devres_open_group(edac->dev, xgene_edac_mc_add, GFP_KERNEL))355		return -ENOMEM;356 357	rc = of_address_to_resource(np, 0, &res);358	if (rc < 0) {359		dev_err(edac->dev, "no MCU resource address\n");360		goto err_group;361	}362	tmp_ctx.mcu_csr = devm_ioremap_resource(edac->dev, &res);363	if (IS_ERR(tmp_ctx.mcu_csr)) {364		dev_err(edac->dev, "unable to map MCU resource\n");365		rc = PTR_ERR(tmp_ctx.mcu_csr);366		goto err_group;367	}368 369	/* Ignore non-active MCU */370	if (of_property_read_u32(np, "memory-controller", &tmp_ctx.mcu_id)) {371		dev_err(edac->dev, "no memory-controller property\n");372		rc = -ENODEV;373		goto err_group;374	}375	if (!xgene_edac_mc_is_active(&tmp_ctx, tmp_ctx.mcu_id)) {376		rc = -ENODEV;377		goto err_group;378	}379 380	layers[0].type = EDAC_MC_LAYER_CHIP_SELECT;381	layers[0].size = 4;382	layers[0].is_virt_csrow = true;383	layers[1].type = EDAC_MC_LAYER_CHANNEL;384	layers[1].size = 2;385	layers[1].is_virt_csrow = false;386	mci = edac_mc_alloc(tmp_ctx.mcu_id, ARRAY_SIZE(layers), layers,387			    sizeof(*ctx));388	if (!mci) {389		rc = -ENOMEM;390		goto err_group;391	}392 393	ctx = mci->pvt_info;394	*ctx = tmp_ctx;		/* Copy over resource value */395	ctx->name = "xgene_edac_mc_err";396	ctx->mci = mci;397	mci->pdev = &mci->dev;398	mci->ctl_name = ctx->name;399	mci->dev_name = ctx->name;400 401	mci->mtype_cap = MEM_FLAG_RDDR | MEM_FLAG_RDDR2 | MEM_FLAG_RDDR3 |402			 MEM_FLAG_DDR | MEM_FLAG_DDR2 | MEM_FLAG_DDR3;403	mci->edac_ctl_cap = EDAC_FLAG_SECDED;404	mci->edac_cap = EDAC_FLAG_SECDED;405	mci->mod_name = EDAC_MOD_STR;406	mci->ctl_page_to_phys = NULL;407	mci->scrub_cap = SCRUB_FLAG_HW_SRC;408	mci->scrub_mode = SCRUB_HW_SRC;409 410	if (edac_op_state == EDAC_OPSTATE_POLL)411		mci->edac_check = xgene_edac_mc_check;412 413	if (edac_mc_add_mc(mci)) {414		dev_err(edac->dev, "edac_mc_add_mc failed\n");415		rc = -EINVAL;416		goto err_free;417	}418 419	xgene_edac_mc_create_debugfs_node(mci);420 421	list_add(&ctx->next, &edac->mcus);422 423	xgene_edac_mc_irq_ctl(mci, true);424 425	devres_remove_group(edac->dev, xgene_edac_mc_add);426 427	dev_info(edac->dev, "X-Gene EDAC MC registered\n");428	return 0;429 430err_free:431	edac_mc_free(mci);432err_group:433	devres_release_group(edac->dev, xgene_edac_mc_add);434	return rc;435}436 437static int xgene_edac_mc_remove(struct xgene_edac_mc_ctx *mcu)438{439	xgene_edac_mc_irq_ctl(mcu->mci, false);440	edac_mc_del_mc(&mcu->mci->dev);441	edac_mc_free(mcu->mci);442	return 0;443}444 445/* CPU L1/L2 error CSR */446#define MAX_CPU_PER_PMD				2447#define CPU_CSR_STRIDE				0x00100000448#define CPU_L2C_PAGE				0x000D0000449#define CPU_MEMERR_L2C_PAGE			0x000E0000450#define CPU_MEMERR_CPU_PAGE			0x000F0000451 452#define MEMERR_CPU_ICFECR_PAGE_OFFSET		0x0000453#define MEMERR_CPU_ICFESR_PAGE_OFFSET		0x0004454#define  MEMERR_CPU_ICFESR_ERRWAY_RD(src)	(((src) & 0xFF000000) >> 24)455#define  MEMERR_CPU_ICFESR_ERRINDEX_RD(src)	(((src) & 0x003F0000) >> 16)456#define  MEMERR_CPU_ICFESR_ERRINFO_RD(src)	(((src) & 0x0000FF00) >> 8)457#define  MEMERR_CPU_ICFESR_ERRTYPE_RD(src)	(((src) & 0x00000070) >> 4)458#define  MEMERR_CPU_ICFESR_MULTCERR_MASK	BIT(2)459#define  MEMERR_CPU_ICFESR_CERR_MASK		BIT(0)460#define MEMERR_CPU_LSUESR_PAGE_OFFSET		0x000c461#define  MEMERR_CPU_LSUESR_ERRWAY_RD(src)	(((src) & 0xFF000000) >> 24)462#define  MEMERR_CPU_LSUESR_ERRINDEX_RD(src)	(((src) & 0x003F0000) >> 16)463#define  MEMERR_CPU_LSUESR_ERRINFO_RD(src)	(((src) & 0x0000FF00) >> 8)464#define  MEMERR_CPU_LSUESR_ERRTYPE_RD(src)	(((src) & 0x00000070) >> 4)465#define  MEMERR_CPU_LSUESR_MULTCERR_MASK	BIT(2)466#define  MEMERR_CPU_LSUESR_CERR_MASK		BIT(0)467#define MEMERR_CPU_LSUECR_PAGE_OFFSET		0x0008468#define MEMERR_CPU_MMUECR_PAGE_OFFSET		0x0010469#define MEMERR_CPU_MMUESR_PAGE_OFFSET		0x0014470#define  MEMERR_CPU_MMUESR_ERRWAY_RD(src)	(((src) & 0xFF000000) >> 24)471#define  MEMERR_CPU_MMUESR_ERRINDEX_RD(src)	(((src) & 0x007F0000) >> 16)472#define  MEMERR_CPU_MMUESR_ERRINFO_RD(src)	(((src) & 0x0000FF00) >> 8)473#define  MEMERR_CPU_MMUESR_ERRREQSTR_LSU_MASK	BIT(7)474#define  MEMERR_CPU_MMUESR_ERRTYPE_RD(src)	(((src) & 0x00000070) >> 4)475#define  MEMERR_CPU_MMUESR_MULTCERR_MASK	BIT(2)476#define  MEMERR_CPU_MMUESR_CERR_MASK		BIT(0)477#define MEMERR_CPU_ICFESRA_PAGE_OFFSET		0x0804478#define MEMERR_CPU_LSUESRA_PAGE_OFFSET		0x080c479#define MEMERR_CPU_MMUESRA_PAGE_OFFSET		0x0814480 481#define MEMERR_L2C_L2ECR_PAGE_OFFSET		0x0000482#define MEMERR_L2C_L2ESR_PAGE_OFFSET		0x0004483#define  MEMERR_L2C_L2ESR_ERRSYN_RD(src)	(((src) & 0xFF000000) >> 24)484#define  MEMERR_L2C_L2ESR_ERRWAY_RD(src)	(((src) & 0x00FC0000) >> 18)485#define  MEMERR_L2C_L2ESR_ERRCPU_RD(src)	(((src) & 0x00020000) >> 17)486#define  MEMERR_L2C_L2ESR_ERRGROUP_RD(src)	(((src) & 0x0000E000) >> 13)487#define  MEMERR_L2C_L2ESR_ERRACTION_RD(src)	(((src) & 0x00001C00) >> 10)488#define  MEMERR_L2C_L2ESR_ERRTYPE_RD(src)	(((src) & 0x00000300) >> 8)489#define  MEMERR_L2C_L2ESR_MULTUCERR_MASK	BIT(3)490#define  MEMERR_L2C_L2ESR_MULTICERR_MASK	BIT(2)491#define  MEMERR_L2C_L2ESR_UCERR_MASK		BIT(1)492#define  MEMERR_L2C_L2ESR_ERR_MASK		BIT(0)493#define MEMERR_L2C_L2EALR_PAGE_OFFSET		0x0008494#define CPUX_L2C_L2RTOCR_PAGE_OFFSET		0x0010495#define MEMERR_L2C_L2EAHR_PAGE_OFFSET		0x000c496#define CPUX_L2C_L2RTOSR_PAGE_OFFSET		0x0014497#define  MEMERR_L2C_L2RTOSR_MULTERR_MASK	BIT(1)498#define  MEMERR_L2C_L2RTOSR_ERR_MASK		BIT(0)499#define CPUX_L2C_L2RTOALR_PAGE_OFFSET		0x0018500#define CPUX_L2C_L2RTOAHR_PAGE_OFFSET		0x001c501#define MEMERR_L2C_L2ESRA_PAGE_OFFSET		0x0804502 503/*504 * Processor Module Domain (PMD) context - Context for a pair of processors.505 * Each PMD consists of 2 CPUs and a shared L2 cache. Each CPU consists of506 * its own L1 cache.507 */508struct xgene_edac_pmd_ctx {509	struct list_head	next;510	struct device		ddev;511	char			*name;512	struct xgene_edac	*edac;513	struct edac_device_ctl_info *edac_dev;514	void __iomem		*pmd_csr;515	u32			pmd;516	int			version;517};518 519static void xgene_edac_pmd_l1_check(struct edac_device_ctl_info *edac_dev,520				    int cpu_idx)521{522	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;523	void __iomem *pg_f;524	u32 val;525 526	pg_f = ctx->pmd_csr + cpu_idx * CPU_CSR_STRIDE + CPU_MEMERR_CPU_PAGE;527 528	val = readl(pg_f + MEMERR_CPU_ICFESR_PAGE_OFFSET);529	if (!val)530		goto chk_lsu;531	dev_err(edac_dev->dev,532		"CPU%d L1 memory error ICF 0x%08X Way 0x%02X Index 0x%02X Info 0x%02X\n",533		ctx->pmd * MAX_CPU_PER_PMD + cpu_idx, val,534		MEMERR_CPU_ICFESR_ERRWAY_RD(val),535		MEMERR_CPU_ICFESR_ERRINDEX_RD(val),536		MEMERR_CPU_ICFESR_ERRINFO_RD(val));537	if (val & MEMERR_CPU_ICFESR_CERR_MASK)538		dev_err(edac_dev->dev, "One or more correctable error\n");539	if (val & MEMERR_CPU_ICFESR_MULTCERR_MASK)540		dev_err(edac_dev->dev, "Multiple correctable error\n");541	switch (MEMERR_CPU_ICFESR_ERRTYPE_RD(val)) {542	case 1:543		dev_err(edac_dev->dev, "L1 TLB multiple hit\n");544		break;545	case 2:546		dev_err(edac_dev->dev, "Way select multiple hit\n");547		break;548	case 3:549		dev_err(edac_dev->dev, "Physical tag parity error\n");550		break;551	case 4:552	case 5:553		dev_err(edac_dev->dev, "L1 data parity error\n");554		break;555	case 6:556		dev_err(edac_dev->dev, "L1 pre-decode parity error\n");557		break;558	}559 560	/* Clear any HW errors */561	writel(val, pg_f + MEMERR_CPU_ICFESR_PAGE_OFFSET);562 563	if (val & (MEMERR_CPU_ICFESR_CERR_MASK |564		   MEMERR_CPU_ICFESR_MULTCERR_MASK))565		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);566 567chk_lsu:568	val = readl(pg_f + MEMERR_CPU_LSUESR_PAGE_OFFSET);569	if (!val)570		goto chk_mmu;571	dev_err(edac_dev->dev,572		"CPU%d memory error LSU 0x%08X Way 0x%02X Index 0x%02X Info 0x%02X\n",573		ctx->pmd * MAX_CPU_PER_PMD + cpu_idx, val,574		MEMERR_CPU_LSUESR_ERRWAY_RD(val),575		MEMERR_CPU_LSUESR_ERRINDEX_RD(val),576		MEMERR_CPU_LSUESR_ERRINFO_RD(val));577	if (val & MEMERR_CPU_LSUESR_CERR_MASK)578		dev_err(edac_dev->dev, "One or more correctable error\n");579	if (val & MEMERR_CPU_LSUESR_MULTCERR_MASK)580		dev_err(edac_dev->dev, "Multiple correctable error\n");581	switch (MEMERR_CPU_LSUESR_ERRTYPE_RD(val)) {582	case 0:583		dev_err(edac_dev->dev, "Load tag error\n");584		break;585	case 1:586		dev_err(edac_dev->dev, "Load data error\n");587		break;588	case 2:589		dev_err(edac_dev->dev, "WSL multihit error\n");590		break;591	case 3:592		dev_err(edac_dev->dev, "Store tag error\n");593		break;594	case 4:595		dev_err(edac_dev->dev,596			"DTB multihit from load pipeline error\n");597		break;598	case 5:599		dev_err(edac_dev->dev,600			"DTB multihit from store pipeline error\n");601		break;602	}603 604	/* Clear any HW errors */605	writel(val, pg_f + MEMERR_CPU_LSUESR_PAGE_OFFSET);606 607	if (val & (MEMERR_CPU_LSUESR_CERR_MASK |608		   MEMERR_CPU_LSUESR_MULTCERR_MASK))609		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);610 611chk_mmu:612	val = readl(pg_f + MEMERR_CPU_MMUESR_PAGE_OFFSET);613	if (!val)614		return;615	dev_err(edac_dev->dev,616		"CPU%d memory error MMU 0x%08X Way 0x%02X Index 0x%02X Info 0x%02X %s\n",617		ctx->pmd * MAX_CPU_PER_PMD + cpu_idx, val,618		MEMERR_CPU_MMUESR_ERRWAY_RD(val),619		MEMERR_CPU_MMUESR_ERRINDEX_RD(val),620		MEMERR_CPU_MMUESR_ERRINFO_RD(val),621		val & MEMERR_CPU_MMUESR_ERRREQSTR_LSU_MASK ? "LSU" : "ICF");622	if (val & MEMERR_CPU_MMUESR_CERR_MASK)623		dev_err(edac_dev->dev, "One or more correctable error\n");624	if (val & MEMERR_CPU_MMUESR_MULTCERR_MASK)625		dev_err(edac_dev->dev, "Multiple correctable error\n");626	switch (MEMERR_CPU_MMUESR_ERRTYPE_RD(val)) {627	case 0:628		dev_err(edac_dev->dev, "Stage 1 UTB hit error\n");629		break;630	case 1:631		dev_err(edac_dev->dev, "Stage 1 UTB miss error\n");632		break;633	case 2:634		dev_err(edac_dev->dev, "Stage 1 UTB allocate error\n");635		break;636	case 3:637		dev_err(edac_dev->dev, "TMO operation single bank error\n");638		break;639	case 4:640		dev_err(edac_dev->dev, "Stage 2 UTB error\n");641		break;642	case 5:643		dev_err(edac_dev->dev, "Stage 2 UTB miss error\n");644		break;645	case 6:646		dev_err(edac_dev->dev, "Stage 2 UTB allocate error\n");647		break;648	case 7:649		dev_err(edac_dev->dev, "TMO operation multiple bank error\n");650		break;651	}652 653	/* Clear any HW errors */654	writel(val, pg_f + MEMERR_CPU_MMUESR_PAGE_OFFSET);655 656	edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);657}658 659static void xgene_edac_pmd_l2_check(struct edac_device_ctl_info *edac_dev)660{661	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;662	void __iomem *pg_d;663	void __iomem *pg_e;664	u32 val_hi;665	u32 val_lo;666	u32 val;667 668	/* Check L2 */669	pg_e = ctx->pmd_csr + CPU_MEMERR_L2C_PAGE;670	val = readl(pg_e + MEMERR_L2C_L2ESR_PAGE_OFFSET);671	if (!val)672		goto chk_l2c;673	val_lo = readl(pg_e + MEMERR_L2C_L2EALR_PAGE_OFFSET);674	val_hi = readl(pg_e + MEMERR_L2C_L2EAHR_PAGE_OFFSET);675	dev_err(edac_dev->dev,676		"PMD%d memory error L2C L2ESR 0x%08X @ 0x%08X.%08X\n",677		ctx->pmd, val, val_hi, val_lo);678	dev_err(edac_dev->dev,679		"ErrSyndrome 0x%02X ErrWay 0x%02X ErrCpu %d ErrGroup 0x%02X ErrAction 0x%02X\n",680		MEMERR_L2C_L2ESR_ERRSYN_RD(val),681		MEMERR_L2C_L2ESR_ERRWAY_RD(val),682		MEMERR_L2C_L2ESR_ERRCPU_RD(val),683		MEMERR_L2C_L2ESR_ERRGROUP_RD(val),684		MEMERR_L2C_L2ESR_ERRACTION_RD(val));685 686	if (val & MEMERR_L2C_L2ESR_ERR_MASK)687		dev_err(edac_dev->dev, "One or more correctable error\n");688	if (val & MEMERR_L2C_L2ESR_MULTICERR_MASK)689		dev_err(edac_dev->dev, "Multiple correctable error\n");690	if (val & MEMERR_L2C_L2ESR_UCERR_MASK)691		dev_err(edac_dev->dev, "One or more uncorrectable error\n");692	if (val & MEMERR_L2C_L2ESR_MULTUCERR_MASK)693		dev_err(edac_dev->dev, "Multiple uncorrectable error\n");694 695	switch (MEMERR_L2C_L2ESR_ERRTYPE_RD(val)) {696	case 0:697		dev_err(edac_dev->dev, "Outbound SDB parity error\n");698		break;699	case 1:700		dev_err(edac_dev->dev, "Inbound SDB parity error\n");701		break;702	case 2:703		dev_err(edac_dev->dev, "Tag ECC error\n");704		break;705	case 3:706		dev_err(edac_dev->dev, "Data ECC error\n");707		break;708	}709 710	/* Clear any HW errors */711	writel(val, pg_e + MEMERR_L2C_L2ESR_PAGE_OFFSET);712 713	if (val & (MEMERR_L2C_L2ESR_ERR_MASK |714		   MEMERR_L2C_L2ESR_MULTICERR_MASK))715		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);716	if (val & (MEMERR_L2C_L2ESR_UCERR_MASK |717		   MEMERR_L2C_L2ESR_MULTUCERR_MASK))718		edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);719 720chk_l2c:721	/* Check if any memory request timed out on L2 cache */722	pg_d = ctx->pmd_csr + CPU_L2C_PAGE;723	val = readl(pg_d + CPUX_L2C_L2RTOSR_PAGE_OFFSET);724	if (val) {725		val_lo = readl(pg_d + CPUX_L2C_L2RTOALR_PAGE_OFFSET);726		val_hi = readl(pg_d + CPUX_L2C_L2RTOAHR_PAGE_OFFSET);727		dev_err(edac_dev->dev,728			"PMD%d L2C error L2C RTOSR 0x%08X @ 0x%08X.%08X\n",729			ctx->pmd, val, val_hi, val_lo);730		writel(val, pg_d + CPUX_L2C_L2RTOSR_PAGE_OFFSET);731	}732}733 734static void xgene_edac_pmd_check(struct edac_device_ctl_info *edac_dev)735{736	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;737	unsigned int pcp_hp_stat;738	int i;739 740	xgene_edac_pcp_rd(ctx->edac, PCPHPERRINTSTS, &pcp_hp_stat);741	if (!((PMD0_MERR_MASK << ctx->pmd) & pcp_hp_stat))742		return;743 744	/* Check CPU L1 error */745	for (i = 0; i < MAX_CPU_PER_PMD; i++)746		xgene_edac_pmd_l1_check(edac_dev, i);747 748	/* Check CPU L2 error */749	xgene_edac_pmd_l2_check(edac_dev);750}751 752static void xgene_edac_pmd_cpu_hw_cfg(struct edac_device_ctl_info *edac_dev,753				      int cpu)754{755	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;756	void __iomem *pg_f = ctx->pmd_csr + cpu * CPU_CSR_STRIDE +757			     CPU_MEMERR_CPU_PAGE;758 759	/*760	 * Enable CPU memory error:761	 *  MEMERR_CPU_ICFESRA, MEMERR_CPU_LSUESRA, and MEMERR_CPU_MMUESRA762	 */763	writel(0x00000301, pg_f + MEMERR_CPU_ICFECR_PAGE_OFFSET);764	writel(0x00000301, pg_f + MEMERR_CPU_LSUECR_PAGE_OFFSET);765	writel(0x00000101, pg_f + MEMERR_CPU_MMUECR_PAGE_OFFSET);766}767 768static void xgene_edac_pmd_hw_cfg(struct edac_device_ctl_info *edac_dev)769{770	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;771	void __iomem *pg_d = ctx->pmd_csr + CPU_L2C_PAGE;772	void __iomem *pg_e = ctx->pmd_csr + CPU_MEMERR_L2C_PAGE;773 774	/* Enable PMD memory error - MEMERR_L2C_L2ECR and L2C_L2RTOCR */775	writel(0x00000703, pg_e + MEMERR_L2C_L2ECR_PAGE_OFFSET);776	/* Configure L2C HW request time out feature if supported */777	if (ctx->version > 1)778		writel(0x00000119, pg_d + CPUX_L2C_L2RTOCR_PAGE_OFFSET);779}780 781static void xgene_edac_pmd_hw_ctl(struct edac_device_ctl_info *edac_dev,782				  bool enable)783{784	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;785	int i;786 787	/* Enable PMD error interrupt */788	if (edac_dev->op_state == OP_RUNNING_INTERRUPT) {789		if (enable)790			xgene_edac_pcp_clrbits(ctx->edac, PCPHPERRINTMSK,791					       PMD0_MERR_MASK << ctx->pmd);792		else793			xgene_edac_pcp_setbits(ctx->edac, PCPHPERRINTMSK,794					       PMD0_MERR_MASK << ctx->pmd);795	}796 797	if (enable) {798		xgene_edac_pmd_hw_cfg(edac_dev);799 800		/* Two CPUs per a PMD */801		for (i = 0; i < MAX_CPU_PER_PMD; i++)802			xgene_edac_pmd_cpu_hw_cfg(edac_dev, i);803	}804}805 806static ssize_t xgene_edac_pmd_l1_inject_ctrl_write(struct file *file,807						   const char __user *data,808						   size_t count, loff_t *ppos)809{810	struct edac_device_ctl_info *edac_dev = file->private_data;811	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;812	void __iomem *cpux_pg_f;813	int i;814 815	for (i = 0; i < MAX_CPU_PER_PMD; i++) {816		cpux_pg_f = ctx->pmd_csr + i * CPU_CSR_STRIDE +817			    CPU_MEMERR_CPU_PAGE;818 819		writel(MEMERR_CPU_ICFESR_MULTCERR_MASK |820		       MEMERR_CPU_ICFESR_CERR_MASK,821		       cpux_pg_f + MEMERR_CPU_ICFESRA_PAGE_OFFSET);822		writel(MEMERR_CPU_LSUESR_MULTCERR_MASK |823		       MEMERR_CPU_LSUESR_CERR_MASK,824		       cpux_pg_f + MEMERR_CPU_LSUESRA_PAGE_OFFSET);825		writel(MEMERR_CPU_MMUESR_MULTCERR_MASK |826		       MEMERR_CPU_MMUESR_CERR_MASK,827		       cpux_pg_f + MEMERR_CPU_MMUESRA_PAGE_OFFSET);828	}829	return count;830}831 832static ssize_t xgene_edac_pmd_l2_inject_ctrl_write(struct file *file,833						   const char __user *data,834						   size_t count, loff_t *ppos)835{836	struct edac_device_ctl_info *edac_dev = file->private_data;837	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;838	void __iomem *pg_e = ctx->pmd_csr + CPU_MEMERR_L2C_PAGE;839 840	writel(MEMERR_L2C_L2ESR_MULTUCERR_MASK |841	       MEMERR_L2C_L2ESR_MULTICERR_MASK |842	       MEMERR_L2C_L2ESR_UCERR_MASK |843	       MEMERR_L2C_L2ESR_ERR_MASK,844	       pg_e + MEMERR_L2C_L2ESRA_PAGE_OFFSET);845	return count;846}847 848static const struct file_operations xgene_edac_pmd_debug_inject_fops[] = {849	{850	.open = simple_open,851	.write = xgene_edac_pmd_l1_inject_ctrl_write,852	.llseek = generic_file_llseek, },853	{854	.open = simple_open,855	.write = xgene_edac_pmd_l2_inject_ctrl_write,856	.llseek = generic_file_llseek, },857	{ }858};859 860static void861xgene_edac_pmd_create_debugfs_nodes(struct edac_device_ctl_info *edac_dev)862{863	struct xgene_edac_pmd_ctx *ctx = edac_dev->pvt_info;864	struct dentry *dbgfs_dir;865	char name[10];866 867	if (!IS_ENABLED(CONFIG_EDAC_DEBUG) || !ctx->edac->dfs)868		return;869 870	snprintf(name, sizeof(name), "PMD%d", ctx->pmd);871	dbgfs_dir = edac_debugfs_create_dir_at(name, ctx->edac->dfs);872	if (!dbgfs_dir)873		return;874 875	edac_debugfs_create_file("l1_inject_ctrl", S_IWUSR, dbgfs_dir, edac_dev,876				 &xgene_edac_pmd_debug_inject_fops[0]);877	edac_debugfs_create_file("l2_inject_ctrl", S_IWUSR, dbgfs_dir, edac_dev,878				 &xgene_edac_pmd_debug_inject_fops[1]);879}880 881static int xgene_edac_pmd_available(u32 efuse, int pmd)882{883	return (efuse & (1 << pmd)) ? 0 : 1;884}885 886static int xgene_edac_pmd_add(struct xgene_edac *edac, struct device_node *np,887			      int version)888{889	struct edac_device_ctl_info *edac_dev;890	struct xgene_edac_pmd_ctx *ctx;891	struct resource res;892	char edac_name[10];893	u32 pmd;894	int rc;895	u32 val;896 897	if (!devres_open_group(edac->dev, xgene_edac_pmd_add, GFP_KERNEL))898		return -ENOMEM;899 900	/* Determine if this PMD is disabled */901	if (of_property_read_u32(np, "pmd-controller", &pmd)) {902		dev_err(edac->dev, "no pmd-controller property\n");903		rc = -ENODEV;904		goto err_group;905	}906	rc = regmap_read(edac->efuse_map, 0, &val);907	if (rc)908		goto err_group;909	if (!xgene_edac_pmd_available(val, pmd)) {910		rc = -ENODEV;911		goto err_group;912	}913 914	snprintf(edac_name, sizeof(edac_name), "l2c%d", pmd);915	edac_dev = edac_device_alloc_ctl_info(sizeof(*ctx),916					      edac_name, 1, "l2c", 1, 2,917					      edac_device_alloc_index());918	if (!edac_dev) {919		rc = -ENOMEM;920		goto err_group;921	}922 923	ctx = edac_dev->pvt_info;924	ctx->name = "xgene_pmd_err";925	ctx->pmd = pmd;926	ctx->edac = edac;927	ctx->edac_dev = edac_dev;928	ctx->ddev = *edac->dev;929	ctx->version = version;930	edac_dev->dev = &ctx->ddev;931	edac_dev->ctl_name = ctx->name;932	edac_dev->dev_name = ctx->name;933	edac_dev->mod_name = EDAC_MOD_STR;934 935	rc = of_address_to_resource(np, 0, &res);936	if (rc < 0) {937		dev_err(edac->dev, "no PMD resource address\n");938		goto err_free;939	}940	ctx->pmd_csr = devm_ioremap_resource(edac->dev, &res);941	if (IS_ERR(ctx->pmd_csr)) {942		dev_err(edac->dev,943			"devm_ioremap_resource failed for PMD resource address\n");944		rc = PTR_ERR(ctx->pmd_csr);945		goto err_free;946	}947 948	if (edac_op_state == EDAC_OPSTATE_POLL)949		edac_dev->edac_check = xgene_edac_pmd_check;950 951	xgene_edac_pmd_create_debugfs_nodes(edac_dev);952 953	rc = edac_device_add_device(edac_dev);954	if (rc > 0) {955		dev_err(edac->dev, "edac_device_add_device failed\n");956		rc = -ENOMEM;957		goto err_free;958	}959 960	if (edac_op_state == EDAC_OPSTATE_INT)961		edac_dev->op_state = OP_RUNNING_INTERRUPT;962 963	list_add(&ctx->next, &edac->pmds);964 965	xgene_edac_pmd_hw_ctl(edac_dev, 1);966 967	devres_remove_group(edac->dev, xgene_edac_pmd_add);968 969	dev_info(edac->dev, "X-Gene EDAC PMD%d registered\n", ctx->pmd);970	return 0;971 972err_free:973	edac_device_free_ctl_info(edac_dev);974err_group:975	devres_release_group(edac->dev, xgene_edac_pmd_add);976	return rc;977}978 979static int xgene_edac_pmd_remove(struct xgene_edac_pmd_ctx *pmd)980{981	struct edac_device_ctl_info *edac_dev = pmd->edac_dev;982 983	xgene_edac_pmd_hw_ctl(edac_dev, 0);984	edac_device_del_device(edac_dev->dev);985	edac_device_free_ctl_info(edac_dev);986	return 0;987}988 989/* L3 Error device */990#define L3C_ESR				(0x0A * 4)991#define  L3C_ESR_DATATAG_MASK		BIT(9)992#define  L3C_ESR_MULTIHIT_MASK		BIT(8)993#define  L3C_ESR_UCEVICT_MASK		BIT(6)994#define  L3C_ESR_MULTIUCERR_MASK	BIT(5)995#define  L3C_ESR_MULTICERR_MASK		BIT(4)996#define  L3C_ESR_UCERR_MASK		BIT(3)997#define  L3C_ESR_CERR_MASK		BIT(2)998#define  L3C_ESR_UCERRINTR_MASK		BIT(1)999#define  L3C_ESR_CERRINTR_MASK		BIT(0)1000#define L3C_ECR				(0x0B * 4)1001#define  L3C_ECR_UCINTREN		BIT(3)1002#define  L3C_ECR_CINTREN		BIT(2)1003#define  L3C_UCERREN			BIT(1)1004#define  L3C_CERREN			BIT(0)1005#define L3C_ELR				(0x0C * 4)1006#define  L3C_ELR_ERRSYN(src)		((src & 0xFF800000) >> 23)1007#define  L3C_ELR_ERRWAY(src)		((src & 0x007E0000) >> 17)1008#define  L3C_ELR_AGENTID(src)		((src & 0x0001E000) >> 13)1009#define  L3C_ELR_ERRGRP(src)		((src & 0x00000F00) >> 8)1010#define  L3C_ELR_OPTYPE(src)		((src & 0x000000F0) >> 4)1011#define  L3C_ELR_PADDRHIGH(src)		(src & 0x0000000F)1012#define L3C_AELR			(0x0D * 4)1013#define L3C_BELR			(0x0E * 4)1014#define  L3C_BELR_BANK(src)		(src & 0x0000000F)1015 1016struct xgene_edac_dev_ctx {1017	struct list_head	next;1018	struct device		ddev;1019	char			*name;1020	struct xgene_edac	*edac;1021	struct edac_device_ctl_info *edac_dev;1022	int			edac_idx;1023	void __iomem		*dev_csr;1024	int			version;1025};1026 1027/*1028 * Version 1 of the L3 controller has broken single bit correctable logic for1029 * certain error syndromes. Log them as uncorrectable in that case.1030 */1031static bool xgene_edac_l3_promote_to_uc_err(u32 l3cesr, u32 l3celr)1032{1033	if (l3cesr & L3C_ESR_DATATAG_MASK) {1034		switch (L3C_ELR_ERRSYN(l3celr)) {1035		case 0x13C:1036		case 0x0B4:1037		case 0x007:1038		case 0x00D:1039		case 0x00E:1040		case 0x019:1041		case 0x01A:1042		case 0x01C:1043		case 0x04E:1044		case 0x041:1045			return true;1046		}1047	} else if (L3C_ELR_ERRWAY(l3celr) == 9)1048		return true;1049 1050	return false;1051}1052 1053static void xgene_edac_l3_check(struct edac_device_ctl_info *edac_dev)1054{1055	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1056	u32 l3cesr;1057	u32 l3celr;1058	u32 l3caelr;1059	u32 l3cbelr;1060 1061	l3cesr = readl(ctx->dev_csr + L3C_ESR);1062	if (!(l3cesr & (L3C_ESR_UCERR_MASK | L3C_ESR_CERR_MASK)))1063		return;1064 1065	if (l3cesr & L3C_ESR_UCERR_MASK)1066		dev_err(edac_dev->dev, "L3C uncorrectable error\n");1067	if (l3cesr & L3C_ESR_CERR_MASK)1068		dev_warn(edac_dev->dev, "L3C correctable error\n");1069 1070	l3celr = readl(ctx->dev_csr + L3C_ELR);1071	l3caelr = readl(ctx->dev_csr + L3C_AELR);1072	l3cbelr = readl(ctx->dev_csr + L3C_BELR);1073	if (l3cesr & L3C_ESR_MULTIHIT_MASK)1074		dev_err(edac_dev->dev, "L3C multiple hit error\n");1075	if (l3cesr & L3C_ESR_UCEVICT_MASK)1076		dev_err(edac_dev->dev,1077			"L3C dropped eviction of line with error\n");1078	if (l3cesr & L3C_ESR_MULTIUCERR_MASK)1079		dev_err(edac_dev->dev, "L3C multiple uncorrectable error\n");1080	if (l3cesr & L3C_ESR_DATATAG_MASK)1081		dev_err(edac_dev->dev,1082			"L3C data error syndrome 0x%X group 0x%X\n",1083			L3C_ELR_ERRSYN(l3celr), L3C_ELR_ERRGRP(l3celr));1084	else1085		dev_err(edac_dev->dev,1086			"L3C tag error syndrome 0x%X Way of Tag 0x%X Agent ID 0x%X Operation type 0x%X\n",1087			L3C_ELR_ERRSYN(l3celr), L3C_ELR_ERRWAY(l3celr),1088			L3C_ELR_AGENTID(l3celr), L3C_ELR_OPTYPE(l3celr));1089	/*1090	 * NOTE: Address [41:38] in L3C_ELR_PADDRHIGH(l3celr).1091	 *       Address [37:6] in l3caelr. Lower 6 bits are zero.1092	 */1093	dev_err(edac_dev->dev, "L3C error address 0x%08X.%08X bank %d\n",1094		L3C_ELR_PADDRHIGH(l3celr) << 6 | (l3caelr >> 26),1095		(l3caelr & 0x3FFFFFFF) << 6, L3C_BELR_BANK(l3cbelr));1096	dev_err(edac_dev->dev,1097		"L3C error status register value 0x%X\n", l3cesr);1098 1099	/* Clear L3C error interrupt */1100	writel(0, ctx->dev_csr + L3C_ESR);1101 1102	if (ctx->version <= 1 &&1103	    xgene_edac_l3_promote_to_uc_err(l3cesr, l3celr)) {1104		edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);1105		return;1106	}1107	if (l3cesr & L3C_ESR_CERR_MASK)1108		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);1109	if (l3cesr & L3C_ESR_UCERR_MASK)1110		edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);1111}1112 1113static void xgene_edac_l3_hw_init(struct edac_device_ctl_info *edac_dev,1114				  bool enable)1115{1116	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1117	u32 val;1118 1119	val = readl(ctx->dev_csr + L3C_ECR);1120	val |= L3C_UCERREN | L3C_CERREN;1121	/* On disable, we just disable interrupt but keep error enabled */1122	if (edac_dev->op_state == OP_RUNNING_INTERRUPT) {1123		if (enable)1124			val |= L3C_ECR_UCINTREN | L3C_ECR_CINTREN;1125		else1126			val &= ~(L3C_ECR_UCINTREN | L3C_ECR_CINTREN);1127	}1128	writel(val, ctx->dev_csr + L3C_ECR);1129 1130	if (edac_dev->op_state == OP_RUNNING_INTERRUPT) {1131		/* Enable/disable L3 error top level interrupt */1132		if (enable) {1133			xgene_edac_pcp_clrbits(ctx->edac, PCPHPERRINTMSK,1134					       L3C_UNCORR_ERR_MASK);1135			xgene_edac_pcp_clrbits(ctx->edac, PCPLPERRINTMSK,1136					       L3C_CORR_ERR_MASK);1137		} else {1138			xgene_edac_pcp_setbits(ctx->edac, PCPHPERRINTMSK,1139					       L3C_UNCORR_ERR_MASK);1140			xgene_edac_pcp_setbits(ctx->edac, PCPLPERRINTMSK,1141					       L3C_CORR_ERR_MASK);1142		}1143	}1144}1145 1146static ssize_t xgene_edac_l3_inject_ctrl_write(struct file *file,1147					       const char __user *data,1148					       size_t count, loff_t *ppos)1149{1150	struct edac_device_ctl_info *edac_dev = file->private_data;1151	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1152 1153	/* Generate all errors */1154	writel(0xFFFFFFFF, ctx->dev_csr + L3C_ESR);1155	return count;1156}1157 1158static const struct file_operations xgene_edac_l3_debug_inject_fops = {1159	.open = simple_open,1160	.write = xgene_edac_l3_inject_ctrl_write,1161	.llseek = generic_file_llseek1162};1163 1164static void1165xgene_edac_l3_create_debugfs_nodes(struct edac_device_ctl_info *edac_dev)1166{1167	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1168	struct dentry *dbgfs_dir;1169	char name[10];1170 1171	if (!IS_ENABLED(CONFIG_EDAC_DEBUG) || !ctx->edac->dfs)1172		return;1173 1174	snprintf(name, sizeof(name), "l3c%d", ctx->edac_idx);1175	dbgfs_dir = edac_debugfs_create_dir_at(name, ctx->edac->dfs);1176	if (!dbgfs_dir)1177		return;1178 1179	debugfs_create_file("l3_inject_ctrl", S_IWUSR, dbgfs_dir, edac_dev,1180			    &xgene_edac_l3_debug_inject_fops);1181}1182 1183static int xgene_edac_l3_add(struct xgene_edac *edac, struct device_node *np,1184			     int version)1185{1186	struct edac_device_ctl_info *edac_dev;1187	struct xgene_edac_dev_ctx *ctx;1188	struct resource res;1189	void __iomem *dev_csr;1190	int edac_idx;1191	int rc = 0;1192 1193	if (!devres_open_group(edac->dev, xgene_edac_l3_add, GFP_KERNEL))1194		return -ENOMEM;1195 1196	rc = of_address_to_resource(np, 0, &res);1197	if (rc < 0) {1198		dev_err(edac->dev, "no L3 resource address\n");1199		goto err_release_group;1200	}1201	dev_csr = devm_ioremap_resource(edac->dev, &res);1202	if (IS_ERR(dev_csr)) {1203		dev_err(edac->dev,1204			"devm_ioremap_resource failed for L3 resource address\n");1205		rc = PTR_ERR(dev_csr);1206		goto err_release_group;1207	}1208 1209	edac_idx = edac_device_alloc_index();1210	edac_dev = edac_device_alloc_ctl_info(sizeof(*ctx),1211					      "l3c", 1, "l3c", 1, 0, edac_idx);1212	if (!edac_dev) {1213		rc = -ENOMEM;1214		goto err_release_group;1215	}1216 1217	ctx = edac_dev->pvt_info;1218	ctx->dev_csr = dev_csr;1219	ctx->name = "xgene_l3_err";1220	ctx->edac_idx = edac_idx;1221	ctx->edac = edac;1222	ctx->edac_dev = edac_dev;1223	ctx->ddev = *edac->dev;1224	ctx->version = version;1225	edac_dev->dev = &ctx->ddev;1226	edac_dev->ctl_name = ctx->name;1227	edac_dev->dev_name = ctx->name;1228	edac_dev->mod_name = EDAC_MOD_STR;1229 1230	if (edac_op_state == EDAC_OPSTATE_POLL)1231		edac_dev->edac_check = xgene_edac_l3_check;1232 1233	xgene_edac_l3_create_debugfs_nodes(edac_dev);1234 1235	rc = edac_device_add_device(edac_dev);1236	if (rc > 0) {1237		dev_err(edac->dev, "failed edac_device_add_device()\n");1238		rc = -ENOMEM;1239		goto err_ctl_free;1240	}1241 1242	if (edac_op_state == EDAC_OPSTATE_INT)1243		edac_dev->op_state = OP_RUNNING_INTERRUPT;1244 1245	list_add(&ctx->next, &edac->l3s);1246 1247	xgene_edac_l3_hw_init(edac_dev, 1);1248 1249	devres_remove_group(edac->dev, xgene_edac_l3_add);1250 1251	dev_info(edac->dev, "X-Gene EDAC L3 registered\n");1252	return 0;1253 1254err_ctl_free:1255	edac_device_free_ctl_info(edac_dev);1256err_release_group:1257	devres_release_group(edac->dev, xgene_edac_l3_add);1258	return rc;1259}1260 1261static int xgene_edac_l3_remove(struct xgene_edac_dev_ctx *l3)1262{1263	struct edac_device_ctl_info *edac_dev = l3->edac_dev;1264 1265	xgene_edac_l3_hw_init(edac_dev, 0);1266	edac_device_del_device(l3->edac->dev);1267	edac_device_free_ctl_info(edac_dev);1268	return 0;1269}1270 1271/* SoC error device */1272#define IOBAXIS0TRANSERRINTSTS		0x00001273#define  IOBAXIS0_M_ILLEGAL_ACCESS_MASK	BIT(1)1274#define  IOBAXIS0_ILLEGAL_ACCESS_MASK	BIT(0)1275#define IOBAXIS0TRANSERRINTMSK		0x00041276#define IOBAXIS0TRANSERRREQINFOL	0x00081277#define IOBAXIS0TRANSERRREQINFOH	0x000c1278#define  REQTYPE_RD(src)		(((src) & BIT(0)))1279#define  ERRADDRH_RD(src)		(((src) & 0xffc00000) >> 22)1280#define IOBAXIS1TRANSERRINTSTS		0x00101281#define IOBAXIS1TRANSERRINTMSK		0x00141282#define IOBAXIS1TRANSERRREQINFOL	0x00181283#define IOBAXIS1TRANSERRREQINFOH	0x001c1284#define IOBPATRANSERRINTSTS		0x00201285#define  IOBPA_M_REQIDRAM_CORRUPT_MASK	BIT(7)1286#define  IOBPA_REQIDRAM_CORRUPT_MASK	BIT(6)1287#define  IOBPA_M_TRANS_CORRUPT_MASK	BIT(5)1288#define  IOBPA_TRANS_CORRUPT_MASK	BIT(4)1289#define  IOBPA_M_WDATA_CORRUPT_MASK	BIT(3)1290#define  IOBPA_WDATA_CORRUPT_MASK	BIT(2)1291#define  IOBPA_M_RDATA_CORRUPT_MASK	BIT(1)1292#define  IOBPA_RDATA_CORRUPT_MASK	BIT(0)1293#define IOBBATRANSERRINTSTS		0x00301294#define  M_ILLEGAL_ACCESS_MASK		BIT(15)1295#define  ILLEGAL_ACCESS_MASK		BIT(14)1296#define  M_WIDRAM_CORRUPT_MASK		BIT(13)1297#define  WIDRAM_CORRUPT_MASK		BIT(12)1298#define  M_RIDRAM_CORRUPT_MASK		BIT(11)1299#define  RIDRAM_CORRUPT_MASK		BIT(10)1300#define  M_TRANS_CORRUPT_MASK		BIT(9)1301#define  TRANS_CORRUPT_MASK		BIT(8)1302#define  M_WDATA_CORRUPT_MASK		BIT(7)1303#define  WDATA_CORRUPT_MASK		BIT(6)1304#define  M_RBM_POISONED_REQ_MASK	BIT(5)1305#define  RBM_POISONED_REQ_MASK		BIT(4)1306#define  M_XGIC_POISONED_REQ_MASK	BIT(3)1307#define  XGIC_POISONED_REQ_MASK		BIT(2)1308#define  M_WRERR_RESP_MASK		BIT(1)1309#define  WRERR_RESP_MASK		BIT(0)1310#define IOBBATRANSERRREQINFOL		0x00381311#define IOBBATRANSERRREQINFOH		0x003c1312#define  REQTYPE_F2_RD(src)		((src) & BIT(0))1313#define  ERRADDRH_F2_RD(src)		(((src) & 0xffc00000) >> 22)1314#define IOBBATRANSERRCSWREQID		0x00401315#define XGICTRANSERRINTSTS		0x00501316#define  M_WR_ACCESS_ERR_MASK		BIT(3)1317#define  WR_ACCESS_ERR_MASK		BIT(2)1318#define  M_RD_ACCESS_ERR_MASK		BIT(1)1319#define  RD_ACCESS_ERR_MASK		BIT(0)1320#define XGICTRANSERRINTMSK		0x00541321#define XGICTRANSERRREQINFO		0x00581322#define  REQTYPE_MASK			BIT(26)1323#define  ERRADDR_RD(src)		((src) & 0x03ffffff)1324#define GLBL_ERR_STS			0x08001325#define  MDED_ERR_MASK			BIT(3)1326#define  DED_ERR_MASK			BIT(2)1327#define  MSEC_ERR_MASK			BIT(1)1328#define  SEC_ERR_MASK			BIT(0)1329#define GLBL_SEC_ERRL			0x08101330#define GLBL_SEC_ERRH			0x08181331#define GLBL_MSEC_ERRL			0x08201332#define GLBL_MSEC_ERRH			0x08281333#define GLBL_DED_ERRL			0x08301334#define GLBL_DED_ERRLMASK		0x08341335#define GLBL_DED_ERRH			0x08381336#define GLBL_DED_ERRHMASK		0x083c1337#define GLBL_MDED_ERRL			0x08401338#define GLBL_MDED_ERRLMASK		0x08441339#define GLBL_MDED_ERRH			0x08481340#define GLBL_MDED_ERRHMASK		0x084c1341 1342/* IO Bus Registers */1343#define RBCSR				0x00001344#define STICKYERR_MASK			BIT(0)1345#define RBEIR				0x00081346#define AGENT_OFFLINE_ERR_MASK		BIT(30)1347#define UNIMPL_RBPAGE_ERR_MASK		BIT(29)1348#define WORD_ALIGNED_ERR_MASK		BIT(28)1349#define PAGE_ACCESS_ERR_MASK		BIT(27)1350#define WRITE_ACCESS_MASK		BIT(26)1351 1352static const char * const soc_mem_err_v1[] = {1353	"10GbE0",1354	"10GbE1",1355	"Security",1356	"SATA45",1357	"SATA23/ETH23",1358	"SATA01/ETH01",1359	"USB1",1360	"USB0",1361	"QML",1362	"QM0",1363	"QM1 (XGbE01)",1364	"PCIE4",1365	"PCIE3",1366	"PCIE2",1367	"PCIE1",1368	"PCIE0",1369	"CTX Manager",1370	"OCM",1371	"1GbE",1372	"CLE",1373	"AHBC",1374	"PktDMA",1375	"GFC",1376	"MSLIM",1377	"10GbE2",1378	"10GbE3",1379	"QM2 (XGbE23)",1380	"IOB",1381	"unknown",1382	"unknown",1383	"unknown",1384	"unknown",1385};1386 1387static void xgene_edac_iob_gic_report(struct edac_device_ctl_info *edac_dev)1388{1389	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1390	u32 err_addr_lo;1391	u32 err_addr_hi;1392	u32 reg;1393	u32 info;1394 1395	/* GIC transaction error interrupt */1396	reg = readl(ctx->dev_csr + XGICTRANSERRINTSTS);1397	if (!reg)1398		goto chk_iob_err;1399	dev_err(edac_dev->dev, "XGIC transaction error\n");1400	if (reg & RD_ACCESS_ERR_MASK)1401		dev_err(edac_dev->dev, "XGIC read size error\n");1402	if (reg & M_RD_ACCESS_ERR_MASK)1403		dev_err(edac_dev->dev, "Multiple XGIC read size error\n");1404	if (reg & WR_ACCESS_ERR_MASK)1405		dev_err(edac_dev->dev, "XGIC write size error\n");1406	if (reg & M_WR_ACCESS_ERR_MASK)1407		dev_err(edac_dev->dev, "Multiple XGIC write size error\n");1408	info = readl(ctx->dev_csr + XGICTRANSERRREQINFO);1409	dev_err(edac_dev->dev, "XGIC %s access @ 0x%08X (0x%08X)\n",1410		info & REQTYPE_MASK ? "read" : "write", ERRADDR_RD(info),1411		info);1412	writel(reg, ctx->dev_csr + XGICTRANSERRINTSTS);1413 1414chk_iob_err:1415	/* IOB memory error */1416	reg = readl(ctx->dev_csr + GLBL_ERR_STS);1417	if (!reg)1418		return;1419	if (reg & SEC_ERR_MASK) {1420		err_addr_lo = readl(ctx->dev_csr + GLBL_SEC_ERRL);1421		err_addr_hi = readl(ctx->dev_csr + GLBL_SEC_ERRH);1422		dev_err(edac_dev->dev,1423			"IOB single-bit correctable memory at 0x%08X.%08X error\n",1424			err_addr_lo, err_addr_hi);1425		writel(err_addr_lo, ctx->dev_csr + GLBL_SEC_ERRL);1426		writel(err_addr_hi, ctx->dev_csr + GLBL_SEC_ERRH);1427	}1428	if (reg & MSEC_ERR_MASK) {1429		err_addr_lo = readl(ctx->dev_csr + GLBL_MSEC_ERRL);1430		err_addr_hi = readl(ctx->dev_csr + GLBL_MSEC_ERRH);1431		dev_err(edac_dev->dev,1432			"IOB multiple single-bit correctable memory at 0x%08X.%08X error\n",1433			err_addr_lo, err_addr_hi);1434		writel(err_addr_lo, ctx->dev_csr + GLBL_MSEC_ERRL);1435		writel(err_addr_hi, ctx->dev_csr + GLBL_MSEC_ERRH);1436	}1437	if (reg & (SEC_ERR_MASK | MSEC_ERR_MASK))1438		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);1439 1440	if (reg & DED_ERR_MASK) {1441		err_addr_lo = readl(ctx->dev_csr + GLBL_DED_ERRL);1442		err_addr_hi = readl(ctx->dev_csr + GLBL_DED_ERRH);1443		dev_err(edac_dev->dev,1444			"IOB double-bit uncorrectable memory at 0x%08X.%08X error\n",1445			err_addr_lo, err_addr_hi);1446		writel(err_addr_lo, ctx->dev_csr + GLBL_DED_ERRL);1447		writel(err_addr_hi, ctx->dev_csr + GLBL_DED_ERRH);1448	}1449	if (reg & MDED_ERR_MASK) {1450		err_addr_lo = readl(ctx->dev_csr + GLBL_MDED_ERRL);1451		err_addr_hi = readl(ctx->dev_csr + GLBL_MDED_ERRH);1452		dev_err(edac_dev->dev,1453			"Multiple IOB double-bit uncorrectable memory at 0x%08X.%08X error\n",1454			err_addr_lo, err_addr_hi);1455		writel(err_addr_lo, ctx->dev_csr + GLBL_MDED_ERRL);1456		writel(err_addr_hi, ctx->dev_csr + GLBL_MDED_ERRH);1457	}1458	if (reg & (DED_ERR_MASK | MDED_ERR_MASK))1459		edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);1460}1461 1462static void xgene_edac_rb_report(struct edac_device_ctl_info *edac_dev)1463{1464	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1465	u32 err_addr_lo;1466	u32 err_addr_hi;1467	u32 reg;1468 1469	/* If the register bus resource isn't available, just skip it */1470	if (!ctx->edac->rb_map)1471		goto rb_skip;1472 1473	/*1474	 * Check RB access errors1475	 * 1. Out of range1476	 * 2. Un-implemented page1477	 * 3. Un-aligned access1478	 * 4. Offline slave IP1479	 */1480	if (regmap_read(ctx->edac->rb_map, RBCSR, &reg))1481		return;1482	if (reg & STICKYERR_MASK) {1483		bool write;1484 1485		dev_err(edac_dev->dev, "IOB bus access error(s)\n");1486		if (regmap_read(ctx->edac->rb_map, RBEIR, &reg))1487			return;1488		write = reg & WRITE_ACCESS_MASK ? 1 : 0;1489		if (reg & AGENT_OFFLINE_ERR_MASK)1490			dev_err(edac_dev->dev,1491				"IOB bus %s access to offline agent error\n",1492				write ? "write" : "read");1493		if (reg & UNIMPL_RBPAGE_ERR_MASK)1494			dev_err(edac_dev->dev,1495				"IOB bus %s access to unimplemented page error\n",1496				write ? "write" : "read");1497		if (reg & WORD_ALIGNED_ERR_MASK)1498			dev_err(edac_dev->dev,1499				"IOB bus %s word aligned access error\n",1500				write ? "write" : "read");1501		if (reg & PAGE_ACCESS_ERR_MASK)1502			dev_err(edac_dev->dev,1503				"IOB bus %s to page out of range access error\n",1504				write ? "write" : "read");1505		if (regmap_write(ctx->edac->rb_map, RBEIR, 0))1506			return;1507		if (regmap_write(ctx->edac->rb_map, RBCSR, 0))1508			return;1509	}1510rb_skip:1511 1512	/* IOB Bridge agent transaction error interrupt */1513	reg = readl(ctx->dev_csr + IOBBATRANSERRINTSTS);1514	if (!reg)1515		return;1516 1517	dev_err(edac_dev->dev, "IOB bridge agent (BA) transaction error\n");1518	if (reg & WRERR_RESP_MASK)1519		dev_err(edac_dev->dev, "IOB BA write response error\n");1520	if (reg & M_WRERR_RESP_MASK)1521		dev_err(edac_dev->dev,1522			"Multiple IOB BA write response error\n");1523	if (reg & XGIC_POISONED_REQ_MASK)1524		dev_err(edac_dev->dev, "IOB BA XGIC poisoned write error\n");1525	if (reg & M_XGIC_POISONED_REQ_MASK)1526		dev_err(edac_dev->dev,1527			"Multiple IOB BA XGIC poisoned write error\n");1528	if (reg & RBM_POISONED_REQ_MASK)1529		dev_err(edac_dev->dev, "IOB BA RBM poisoned write error\n");1530	if (reg & M_RBM_POISONED_REQ_MASK)1531		dev_err(edac_dev->dev,1532			"Multiple IOB BA RBM poisoned write error\n");1533	if (reg & WDATA_CORRUPT_MASK)1534		dev_err(edac_dev->dev, "IOB BA write error\n");1535	if (reg & M_WDATA_CORRUPT_MASK)1536		dev_err(edac_dev->dev, "Multiple IOB BA write error\n");1537	if (reg & TRANS_CORRUPT_MASK)1538		dev_err(edac_dev->dev, "IOB BA transaction error\n");1539	if (reg & M_TRANS_CORRUPT_MASK)1540		dev_err(edac_dev->dev, "Multiple IOB BA transaction error\n");1541	if (reg & RIDRAM_CORRUPT_MASK)1542		dev_err(edac_dev->dev,1543			"IOB BA RDIDRAM read transaction ID error\n");1544	if (reg & M_RIDRAM_CORRUPT_MASK)1545		dev_err(edac_dev->dev,1546			"Multiple IOB BA RDIDRAM read transaction ID error\n");1547	if (reg & WIDRAM_CORRUPT_MASK)1548		dev_err(edac_dev->dev,1549			"IOB BA RDIDRAM write transaction ID error\n");1550	if (reg & M_WIDRAM_CORRUPT_MASK)1551		dev_err(edac_dev->dev,1552			"Multiple IOB BA RDIDRAM write transaction ID error\n");1553	if (reg & ILLEGAL_ACCESS_MASK)1554		dev_err(edac_dev->dev,1555			"IOB BA XGIC/RB illegal access error\n");1556	if (reg & M_ILLEGAL_ACCESS_MASK)1557		dev_err(edac_dev->dev,1558			"Multiple IOB BA XGIC/RB illegal access error\n");1559 1560	err_addr_lo = readl(ctx->dev_csr + IOBBATRANSERRREQINFOL);1561	err_addr_hi = readl(ctx->dev_csr + IOBBATRANSERRREQINFOH);1562	dev_err(edac_dev->dev, "IOB BA %s access at 0x%02X.%08X (0x%08X)\n",1563		REQTYPE_F2_RD(err_addr_hi) ? "read" : "write",1564		ERRADDRH_F2_RD(err_addr_hi), err_addr_lo, err_addr_hi);1565	if (reg & WRERR_RESP_MASK)1566		dev_err(edac_dev->dev, "IOB BA requestor ID 0x%08X\n",1567			readl(ctx->dev_csr + IOBBATRANSERRCSWREQID));1568	writel(reg, ctx->dev_csr + IOBBATRANSERRINTSTS);1569}1570 1571static void xgene_edac_pa_report(struct edac_device_ctl_info *edac_dev)1572{1573	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1574	u32 err_addr_lo;1575	u32 err_addr_hi;1576	u32 reg;1577 1578	/* IOB Processing agent transaction error interrupt */1579	reg = readl(ctx->dev_csr + IOBPATRANSERRINTSTS);1580	if (!reg)1581		goto chk_iob_axi0;1582	dev_err(edac_dev->dev, "IOB processing agent (PA) transaction error\n");1583	if (reg & IOBPA_RDATA_CORRUPT_MASK)1584		dev_err(edac_dev->dev, "IOB PA read data RAM error\n");1585	if (reg & IOBPA_M_RDATA_CORRUPT_MASK)1586		dev_err(edac_dev->dev,1587			"Multiple IOB PA read data RAM error\n");1588	if (reg & IOBPA_WDATA_CORRUPT_MASK)1589		dev_err(edac_dev->dev, "IOB PA write data RAM error\n");1590	if (reg & IOBPA_M_WDATA_CORRUPT_MASK)1591		dev_err(edac_dev->dev,1592			"Multiple IOB PA write data RAM error\n");1593	if (reg & IOBPA_TRANS_CORRUPT_MASK)1594		dev_err(edac_dev->dev, "IOB PA transaction error\n");1595	if (reg & IOBPA_M_TRANS_CORRUPT_MASK)1596		dev_err(edac_dev->dev, "Multiple IOB PA transaction error\n");1597	if (reg & IOBPA_REQIDRAM_CORRUPT_MASK)1598		dev_err(edac_dev->dev, "IOB PA transaction ID RAM error\n");1599	if (reg & IOBPA_M_REQIDRAM_CORRUPT_MASK)1600		dev_err(edac_dev->dev,1601			"Multiple IOB PA transaction ID RAM error\n");1602	writel(reg, ctx->dev_csr + IOBPATRANSERRINTSTS);1603 1604chk_iob_axi0:1605	/* IOB AXI0 Error */1606	reg = readl(ctx->dev_csr + IOBAXIS0TRANSERRINTSTS);1607	if (!reg)1608		goto chk_iob_axi1;1609	err_addr_lo = readl(ctx->dev_csr + IOBAXIS0TRANSERRREQINFOL);1610	err_addr_hi = readl(ctx->dev_csr + IOBAXIS0TRANSERRREQINFOH);1611	dev_err(edac_dev->dev,1612		"%sAXI slave 0 illegal %s access @ 0x%02X.%08X (0x%08X)\n",1613		reg & IOBAXIS0_M_ILLEGAL_ACCESS_MASK ? "Multiple " : "",1614		REQTYPE_RD(err_addr_hi) ? "read" : "write",1615		ERRADDRH_RD(err_addr_hi), err_addr_lo, err_addr_hi);1616	writel(reg, ctx->dev_csr + IOBAXIS0TRANSERRINTSTS);1617 1618chk_iob_axi1:1619	/* IOB AXI1 Error */1620	reg = readl(ctx->dev_csr + IOBAXIS1TRANSERRINTSTS);1621	if (!reg)1622		return;1623	err_addr_lo = readl(ctx->dev_csr + IOBAXIS1TRANSERRREQINFOL);1624	err_addr_hi = readl(ctx->dev_csr + IOBAXIS1TRANSERRREQINFOH);1625	dev_err(edac_dev->dev,1626		"%sAXI slave 1 illegal %s access @ 0x%02X.%08X (0x%08X)\n",1627		reg & IOBAXIS0_M_ILLEGAL_ACCESS_MASK ? "Multiple " : "",1628		REQTYPE_RD(err_addr_hi) ? "read" : "write",1629		ERRADDRH_RD(err_addr_hi), err_addr_lo, err_addr_hi);1630	writel(reg, ctx->dev_csr + IOBAXIS1TRANSERRINTSTS);1631}1632 1633static void xgene_edac_soc_check(struct edac_device_ctl_info *edac_dev)1634{1635	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1636	const char * const *soc_mem_err = NULL;1637	u32 pcp_hp_stat;1638	u32 pcp_lp_stat;1639	u32 reg;1640	int i;1641 1642	xgene_edac_pcp_rd(ctx->edac, PCPHPERRINTSTS, &pcp_hp_stat);1643	xgene_edac_pcp_rd(ctx->edac, PCPLPERRINTSTS, &pcp_lp_stat);1644	xgene_edac_pcp_rd(ctx->edac, MEMERRINTSTS, &reg);1645	if (!((pcp_hp_stat & (IOB_PA_ERR_MASK | IOB_BA_ERR_MASK |1646			      IOB_XGIC_ERR_MASK | IOB_RB_ERR_MASK)) ||1647	      (pcp_lp_stat & CSW_SWITCH_TRACE_ERR_MASK) || reg))1648		return;1649 1650	if (pcp_hp_stat & IOB_XGIC_ERR_MASK)1651		xgene_edac_iob_gic_report(edac_dev);1652 1653	if (pcp_hp_stat & (IOB_RB_ERR_MASK | IOB_BA_ERR_MASK))1654		xgene_edac_rb_report(edac_dev);1655 1656	if (pcp_hp_stat & IOB_PA_ERR_MASK)1657		xgene_edac_pa_report(edac_dev);1658 1659	if (pcp_lp_stat & CSW_SWITCH_TRACE_ERR_MASK) {1660		dev_info(edac_dev->dev,1661			 "CSW switch trace correctable memory parity error\n");1662		edac_device_handle_ce(edac_dev, 0, 0, edac_dev->ctl_name);1663	}1664 1665	if (!reg)1666		return;1667	if (ctx->version == 1)1668		soc_mem_err = soc_mem_err_v1;1669	if (!soc_mem_err) {1670		dev_err(edac_dev->dev, "SoC memory parity error 0x%08X\n",1671			reg);1672		edac_device_handle_ue(edac_dev, 0, 0, edac_dev->ctl_name);1673		return;1674	}1675	for (i = 0; i < 31; i++) {1676		if (reg & (1 << i)) {1677			dev_err(edac_dev->dev, "%s memory parity error\n",1678				soc_mem_err[i]);1679			edac_device_handle_ue(edac_dev, 0, 0,1680					      edac_dev->ctl_name);1681		}1682	}1683}1684 1685static void xgene_edac_soc_hw_init(struct edac_device_ctl_info *edac_dev,1686				   bool enable)1687{1688	struct xgene_edac_dev_ctx *ctx = edac_dev->pvt_info;1689 1690	/* Enable SoC IP error interrupt */1691	if (edac_dev->op_state == OP_RUNNING_INTERRUPT) {1692		if (enable) {1693			xgene_edac_pcp_clrbits(ctx->edac, PCPHPERRINTMSK,1694					       IOB_PA_ERR_MASK |1695					       IOB_BA_ERR_MASK |1696					       IOB_XGIC_ERR_MASK |1697					       IOB_RB_ERR_MASK);1698			xgene_edac_pcp_clrbits(ctx->edac, PCPLPERRINTMSK,1699					       CSW_SWITCH_TRACE_ERR_MASK);1700		} else {1701			xgene_edac_pcp_setbits(ctx->edac, PCPHPERRINTMSK,1702					       IOB_PA_ERR_MASK |1703					       IOB_BA_ERR_MASK |1704					       IOB_XGIC_ERR_MASK |1705					       IOB_RB_ERR_MASK);1706			xgene_edac_pcp_setbits(ctx->edac, PCPLPERRINTMSK,1707					       CSW_SWITCH_TRACE_ERR_MASK);1708		}1709 1710		writel(enable ? 0x0 : 0xFFFFFFFF,1711		       ctx->dev_csr + IOBAXIS0TRANSERRINTMSK);1712		writel(enable ? 0x0 : 0xFFFFFFFF,1713		       ctx->dev_csr + IOBAXIS1TRANSERRINTMSK);1714		writel(enable ? 0x0 : 0xFFFFFFFF,1715		       ctx->dev_csr + XGICTRANSERRINTMSK);1716 1717		xgene_edac_pcp_setbits(ctx->edac, MEMERRINTMSK,1718				       enable ? 0x0 : 0xFFFFFFFF);1719	}1720}1721 1722static int xgene_edac_soc_add(struct xgene_edac *edac, struct device_node *np,1723			      int version)1724{1725	struct edac_device_ctl_info *edac_dev;1726	struct xgene_edac_dev_ctx *ctx;1727	void __iomem *dev_csr;1728	struct resource res;1729	int edac_idx;1730	int rc;1731 1732	if (!devres_open_group(edac->dev, xgene_edac_soc_add, GFP_KERNEL))1733		return -ENOMEM;1734 1735	rc = of_address_to_resource(np, 0, &res);1736	if (rc < 0) {1737		dev_err(edac->dev, "no SoC resource address\n");1738		goto err_release_group;1739	}1740	dev_csr = devm_ioremap_resource(edac->dev, &res);1741	if (IS_ERR(dev_csr)) {1742		dev_err(edac->dev,1743			"devm_ioremap_resource failed for soc resource address\n");1744		rc = PTR_ERR(dev_csr);1745		goto err_release_group;1746	}1747 1748	edac_idx = edac_device_alloc_index();1749	edac_dev = edac_device_alloc_ctl_info(sizeof(*ctx),1750					      "SOC", 1, "SOC", 1, 2, edac_idx);1751	if (!edac_dev) {1752		rc = -ENOMEM;1753		goto err_release_group;1754	}1755 1756	ctx = edac_dev->pvt_info;1757	ctx->dev_csr = dev_csr;1758	ctx->name = "xgene_soc_err";1759	ctx->edac_idx = edac_idx;1760	ctx->edac = edac;1761	ctx->edac_dev = edac_dev;1762	ctx->ddev = *edac->dev;1763	ctx->version = version;1764	edac_dev->dev = &ctx->ddev;1765	edac_dev->ctl_name = ctx->name;1766	edac_dev->dev_name = ctx->name;1767	edac_dev->mod_name = EDAC_MOD_STR;1768 1769	if (edac_op_state == EDAC_OPSTATE_POLL)1770		edac_dev->edac_check = xgene_edac_soc_check;1771 1772	rc = edac_device_add_device(edac_dev);1773	if (rc > 0) {1774		dev_err(edac->dev, "failed edac_device_add_device()\n");1775		rc = -ENOMEM;1776		goto err_ctl_free;1777	}1778 1779	if (edac_op_state == EDAC_OPSTATE_INT)1780		edac_dev->op_state = OP_RUNNING_INTERRUPT;1781 1782	list_add(&ctx->next, &edac->socs);1783 1784	xgene_edac_soc_hw_init(edac_dev, 1);1785 1786	devres_remove_group(edac->dev, xgene_edac_soc_add);1787 1788	dev_info(edac->dev, "X-Gene EDAC SoC registered\n");1789 1790	return 0;1791 1792err_ctl_free:1793	edac_device_free_ctl_info(edac_dev);1794err_release_group:1795	devres_release_group(edac->dev, xgene_edac_soc_add);1796	return rc;1797}1798 1799static int xgene_edac_soc_remove(struct xgene_edac_dev_ctx *soc)1800{1801	struct edac_device_ctl_info *edac_dev = soc->edac_dev;1802 1803	xgene_edac_soc_hw_init(edac_dev, 0);1804	edac_device_del_device(soc->edac->dev);1805	edac_device_free_ctl_info(edac_dev);1806	return 0;1807}1808 1809static irqreturn_t xgene_edac_isr(int irq, void *dev_id)1810{1811	struct xgene_edac *ctx = dev_id;1812	struct xgene_edac_pmd_ctx *pmd;1813	struct xgene_edac_dev_ctx *node;1814	unsigned int pcp_hp_stat;1815	unsigned int pcp_lp_stat;1816 1817	xgene_edac_pcp_rd(ctx, PCPHPERRINTSTS, &pcp_hp_stat);1818	xgene_edac_pcp_rd(ctx, PCPLPERRINTSTS, &pcp_lp_stat);1819	if ((MCU_UNCORR_ERR_MASK & pcp_hp_stat) ||1820	    (MCU_CTL_ERR_MASK & pcp_hp_stat) ||1821	    (MCU_CORR_ERR_MASK & pcp_lp_stat)) {1822		struct xgene_edac_mc_ctx *mcu;1823 1824		list_for_each_entry(mcu, &ctx->mcus, next)1825			xgene_edac_mc_check(mcu->mci);1826	}1827 1828	list_for_each_entry(pmd, &ctx->pmds, next) {1829		if ((PMD0_MERR_MASK << pmd->pmd) & pcp_hp_stat)1830			xgene_edac_pmd_check(pmd->edac_dev);1831	}1832 1833	list_for_each_entry(node, &ctx->l3s, next)1834		xgene_edac_l3_check(node->edac_dev);1835 1836	list_for_each_entry(node, &ctx->socs, next)1837		xgene_edac_soc_check(node->edac_dev);1838 1839	return IRQ_HANDLED;1840}1841 1842static int xgene_edac_probe(struct platform_device *pdev)1843{1844	struct xgene_edac *edac;1845	struct device_node *child;1846	struct resource *res;1847	int rc;1848 1849	edac = devm_kzalloc(&pdev->dev, sizeof(*edac), GFP_KERNEL);1850	if (!edac)1851		return -ENOMEM;1852 1853	edac->dev = &pdev->dev;1854	platform_set_drvdata(pdev, edac);1855	INIT_LIST_HEAD(&edac->mcus);1856	INIT_LIST_HEAD(&edac->pmds);1857	INIT_LIST_HEAD(&edac->l3s);1858	INIT_LIST_HEAD(&edac->socs);1859	spin_lock_init(&edac->lock);1860	mutex_init(&edac->mc_lock);1861 1862	edac->csw_map = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,1863							"regmap-csw");1864	if (IS_ERR(edac->csw_map)) {1865		dev_err(edac->dev, "unable to get syscon regmap csw\n");1866		rc = PTR_ERR(edac->csw_map);1867		goto out_err;1868	}1869 1870	edac->mcba_map = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,1871							 "regmap-mcba");1872	if (IS_ERR(edac->mcba_map)) {1873		dev_err(edac->dev, "unable to get syscon regmap mcba\n");1874		rc = PTR_ERR(edac->mcba_map);1875		goto out_err;1876	}1877 1878	edac->mcbb_map = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,1879							 "regmap-mcbb");1880	if (IS_ERR(edac->mcbb_map)) {1881		dev_err(edac->dev, "unable to get syscon regmap mcbb\n");1882		rc = PTR_ERR(edac->mcbb_map);1883		goto out_err;1884	}1885	edac->efuse_map = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,1886							  "regmap-efuse");1887	if (IS_ERR(edac->efuse_map)) {1888		dev_err(edac->dev, "unable to get syscon regmap efuse\n");1889		rc = PTR_ERR(edac->efuse_map);1890		goto out_err;1891	}1892 1893	/*1894	 * NOTE: The register bus resource is optional for compatibility1895	 * reason.1896	 */1897	edac->rb_map = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,1898						       "regmap-rb");1899	if (IS_ERR(edac->rb_map)) {1900		dev_warn(edac->dev, "missing syscon regmap rb\n");1901		edac->rb_map = NULL;1902	}1903 1904	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);1905	edac->pcp_csr = devm_ioremap_resource(&pdev->dev, res);1906	if (IS_ERR(edac->pcp_csr)) {1907		dev_err(&pdev->dev, "no PCP resource address\n");1908		rc = PTR_ERR(edac->pcp_csr);1909		goto out_err;1910	}1911 1912	if (edac_op_state == EDAC_OPSTATE_INT) {1913		int irq;1914		int i;1915 1916		for (i = 0; i < 3; i++) {1917			irq = platform_get_irq_optional(pdev, i);1918			if (irq < 0) {1919				dev_err(&pdev->dev, "No IRQ resource\n");1920				rc = irq;1921				goto out_err;1922			}1923			rc = devm_request_irq(&pdev->dev, irq,1924					      xgene_edac_isr, IRQF_SHARED,1925					      dev_name(&pdev->dev), edac);1926			if (rc) {1927				dev_err(&pdev->dev,1928					"Could not request IRQ %d\n", irq);1929				goto out_err;1930			}1931		}1932	}1933 1934	edac->dfs = edac_debugfs_create_dir(pdev->dev.kobj.name);1935 1936	for_each_child_of_node(pdev->dev.of_node, child) {1937		if (!of_device_is_available(child))1938			continue;1939		if (of_device_is_compatible(child, "apm,xgene-edac-mc"))1940			xgene_edac_mc_add(edac, child);1941		if (of_device_is_compatible(child, "apm,xgene-edac-pmd"))1942			xgene_edac_pmd_add(edac, child, 1);1943		if (of_device_is_compatible(child, "apm,xgene-edac-pmd-v2"))1944			xgene_edac_pmd_add(edac, child, 2);1945		if (of_device_is_compatible(child, "apm,xgene-edac-l3"))1946			xgene_edac_l3_add(edac, child, 1);1947		if (of_device_is_compatible(child, "apm,xgene-edac-l3-v2"))1948			xgene_edac_l3_add(edac, child, 2);1949		if (of_device_is_compatible(child, "apm,xgene-edac-soc"))1950			xgene_edac_soc_add(edac, child, 0);1951		if (of_device_is_compatible(child, "apm,xgene-edac-soc-v1"))1952			xgene_edac_soc_add(edac, child, 1);1953	}1954 1955	return 0;1956 1957out_err:1958	return rc;1959}1960 1961static void xgene_edac_remove(struct platform_device *pdev)1962{1963	struct xgene_edac *edac = dev_get_drvdata(&pdev->dev);1964	struct xgene_edac_mc_ctx *mcu;1965	struct xgene_edac_mc_ctx *temp_mcu;1966	struct xgene_edac_pmd_ctx *pmd;1967	struct xgene_edac_pmd_ctx *temp_pmd;1968	struct xgene_edac_dev_ctx *node;1969	struct xgene_edac_dev_ctx *temp_node;1970 1971	list_for_each_entry_safe(mcu, temp_mcu, &edac->mcus, next)1972		xgene_edac_mc_remove(mcu);1973 1974	list_for_each_entry_safe(pmd, temp_pmd, &edac->pmds, next)1975		xgene_edac_pmd_remove(pmd);1976 1977	list_for_each_entry_safe(node, temp_node, &edac->l3s, next)1978		xgene_edac_l3_remove(node);1979 1980	list_for_each_entry_safe(node, temp_node, &edac->socs, next)1981		xgene_edac_soc_remove(node);1982}1983 1984static const struct of_device_id xgene_edac_of_match[] = {1985	{ .compatible = "apm,xgene-edac" },1986	{},1987};1988MODULE_DEVICE_TABLE(of, xgene_edac_of_match);1989 1990static struct platform_driver xgene_edac_driver = {1991	.probe = xgene_edac_probe,1992	.remove_new = xgene_edac_remove,1993	.driver = {1994		.name = "xgene-edac",1995		.of_match_table = xgene_edac_of_match,1996	},1997};1998 1999static int __init xgene_edac_init(void)2000{2001	int rc;2002 2003	if (ghes_get_devices())2004		return -EBUSY;2005 2006	/* Make sure error reporting method is sane */2007	switch (edac_op_state) {2008	case EDAC_OPSTATE_POLL:2009	case EDAC_OPSTATE_INT:2010		break;2011	default:2012		edac_op_state = EDAC_OPSTATE_INT;2013		break;2014	}2015 2016	rc = platform_driver_register(&xgene_edac_driver);2017	if (rc) {2018		edac_printk(KERN_ERR, EDAC_MOD_STR,2019			    "EDAC fails to register\n");2020		goto reg_failed;2021	}2022 2023	return 0;2024 2025reg_failed:2026	return rc;2027}2028module_init(xgene_edac_init);2029 2030static void __exit xgene_edac_exit(void)2031{2032	platform_driver_unregister(&xgene_edac_driver);2033}2034module_exit(xgene_edac_exit);2035 2036MODULE_LICENSE("GPL");2037MODULE_AUTHOR("Feng Kan <fkan@apm.com>");2038MODULE_DESCRIPTION("APM X-Gene EDAC driver");2039module_param(edac_op_state, int, 0444);2040MODULE_PARM_DESC(edac_op_state,2041		 "EDAC error reporting state: 0=Poll, 2=Interrupt");2042