Searched refs:pinf (Results 1 – 4 of 4) sorted by relevance
| /linux/drivers/edac/ |
| H A D | versalnet_edac.c | 269 union ecc_error_info pinf, in convert_to_physical() argument 279 row = pinf.rowhi << MC5_REGHI_ROW | pinf.row; in convert_to_physical() 331 pinf.col >>= 1; in convert_to_physical() 332 err_addr |= (pinf.col & 1) << col_bit_0; in convert_to_physical() 335 err_addr |= (pinf.col & 1) << cols.col1; in convert_to_physical() 336 pinf.col >>= 1; in convert_to_physical() 337 err_addr |= (pinf.col & 1) << cols.col2; in convert_to_physical() 338 pinf.col >>= 1; in convert_to_physical() 339 err_addr |= (pinf.col & 1) << cols.col3; in convert_to_physical() 340 pinf.col >>= 1; in convert_to_physical() [all …]
|
| H A D | zynqmp_edac.c | 160 struct ecc_error_info *pinf; in handle_error() local 163 pinf = &p->ceinfo; in handle_error() 166 "CE", pinf->addr, pinf->fault_hi, pinf->fault_lo); in handle_error() 171 pinf = &p->ueinfo; in handle_error() 174 "UE", pinf->addr, pinf->fault_hi, pinf->fault_lo); in handle_error()
|
| H A D | versal_edac.c | 365 static unsigned long convert_to_physical(struct edac_priv *priv, union ecc_error_info pinf) in convert_to_physical() argument 371 row = pinf.rowhi << 10 | pinf.row; in convert_to_physical() 378 err_addr |= (pinf.col & BIT(0)) << priv->col_bit[index]; in convert_to_physical() 379 pinf.col >>= 1; in convert_to_physical() 383 err_addr |= (pinf.bank & BIT(0)) << priv->bank_bit[index]; in convert_to_physical() 384 pinf.bank >>= 1; in convert_to_physical() 388 err_addr |= (pinf.group & BIT(0)) << priv->grp_bit[index]; in convert_to_physical() 389 pinf.group >>= 1; in convert_to_physical() 393 err_addr |= (pinf.rank & BIT(0)) << priv->rank_bit[index]; in convert_to_physical() 394 pinf.rank >>= 1; in convert_to_physical() [all …]
|
| H A D | synopsys_edac.c | 511 struct ecc_error_info *pinf; in handle_error() local 514 pinf = &p->ceinfo; in handle_error() 518 "CE", pinf->row, pinf->bank, in handle_error() 519 pinf->bankgrpnr, pinf->blknr, in handle_error() 520 pinf->bitpos, pinf->data); in handle_error() 524 "CE", pinf->row, pinf->bank, pinf->col, in handle_error() 525 pinf->bitpos, pinf->data); in handle_error() 534 pinf = &p->ueinfo; in handle_error() 538 "UE", pinf->row, pinf->bank, in handle_error() 539 pinf->bankgrpnr, pinf->blknr); in handle_error() [all …]
|