drm/amd/ras: Add umc v12_0 ras functions

Add umc v12_0 ras functions.

Signed-off-by: YiPeng Chai <YiPeng.Chai@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
YiPeng Chai 2025-03-17 17:27:44 +08:00 committed by Alex Deucher
parent df2d8574c5
commit 8bd7fe95a4
2 changed files with 825 additions and 0 deletions

View File

@ -0,0 +1,511 @@
// SPDX-License-Identifier: MIT
/*
* Copyright 2025 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "ras.h"
#include "ras_umc.h"
#include "ras_core_status.h"
#include "ras_umc_v12_0.h"
#define NumDieInterleaved 4
static const uint32_t umc_v12_0_channel_idx_tbl[]
[UMC_V12_0_UMC_INSTANCE_NUM][UMC_V12_0_CHANNEL_INSTANCE_NUM] = {
{{3, 7, 11, 15, 2, 6, 10, 14}, {1, 5, 9, 13, 0, 4, 8, 12},
{19, 23, 27, 31, 18, 22, 26, 30}, {17, 21, 25, 29, 16, 20, 24, 28}},
{{47, 43, 39, 35, 46, 42, 38, 34}, {45, 41, 37, 33, 44, 40, 36, 32},
{63, 59, 55, 51, 62, 58, 54, 50}, {61, 57, 53, 49, 60, 56, 52, 48}},
{{79, 75, 71, 67, 78, 74, 70, 66}, {77, 73, 69, 65, 76, 72, 68, 64},
{95, 91, 87, 83, 94, 90, 86, 82}, {93, 89, 85, 81, 92, 88, 84, 80}},
{{99, 103, 107, 111, 98, 102, 106, 110}, {97, 101, 105, 109, 96, 100, 104, 108},
{115, 119, 123, 127, 114, 118, 122, 126}, {113, 117, 121, 125, 112, 116, 120, 124}}
};
/* mapping of MCA error address to normalized address */
static const uint32_t umc_v12_0_ma2na_mapping[] = {
0, 5, 6, 8, 9, 14, 12, 13,
10, 11, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28,
24, 7, 29, 30,
};
static bool umc_v12_0_bit_wise_xor(uint32_t val)
{
bool result = 0;
int i;
for (i = 0; i < 32; i++)
result = result ^ ((val >> i) & 0x1);
return result;
}
static void __get_nps_pa_flip_bits(struct ras_core_context *ras_core,
enum umc_memory_partition_mode nps,
struct umc_flip_bits *flip_bits)
{
uint32_t vram_type = ras_core->ras_umc.umc_vram_type;
/* default setting */
flip_bits->flip_bits_in_pa[0] = UMC_V12_0_PA_C2_BIT;
flip_bits->flip_bits_in_pa[1] = UMC_V12_0_PA_C3_BIT;
flip_bits->flip_bits_in_pa[2] = UMC_V12_0_PA_C4_BIT;
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R13_BIT;
flip_bits->flip_row_bit = 13;
flip_bits->bit_num = 4;
flip_bits->r13_in_pa = UMC_V12_0_PA_R13_BIT;
if (nps == UMC_MEMORY_PARTITION_MODE_NPS2) {
flip_bits->flip_bits_in_pa[0] = UMC_V12_0_PA_CH5_BIT;
flip_bits->flip_bits_in_pa[1] = UMC_V12_0_PA_C2_BIT;
flip_bits->flip_bits_in_pa[2] = UMC_V12_0_PA_B1_BIT;
flip_bits->r13_in_pa = UMC_V12_0_PA_R12_BIT;
} else if (nps == UMC_MEMORY_PARTITION_MODE_NPS4) {
flip_bits->flip_bits_in_pa[0] = UMC_V12_0_PA_CH4_BIT;
flip_bits->flip_bits_in_pa[1] = UMC_V12_0_PA_CH5_BIT;
flip_bits->flip_bits_in_pa[2] = UMC_V12_0_PA_B0_BIT;
flip_bits->r13_in_pa = UMC_V12_0_PA_R11_BIT;
}
switch (vram_type) {
case UMC_VRAM_TYPE_HBM:
/* other nps modes are taken as nps1 */
if (nps == UMC_MEMORY_PARTITION_MODE_NPS2)
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R12_BIT;
else if (nps == UMC_MEMORY_PARTITION_MODE_NPS4)
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R11_BIT;
break;
case UMC_VRAM_TYPE_HBM3E:
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R12_BIT;
flip_bits->flip_row_bit = 12;
if (nps == UMC_MEMORY_PARTITION_MODE_NPS2)
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R11_BIT;
else if (nps == UMC_MEMORY_PARTITION_MODE_NPS4)
flip_bits->flip_bits_in_pa[3] = UMC_V12_0_PA_R10_BIT;
break;
default:
RAS_DEV_WARN(ras_core->dev,
"Unknown HBM type, set RAS retire flip bits to the value in NPS1 mode.\n");
break;
}
}
static uint64_t convert_nps_pa_to_row_pa(struct ras_core_context *ras_core,
uint64_t pa, enum umc_memory_partition_mode nps, bool zero_pfn_ok)
{
struct umc_flip_bits flip_bits = {0};
uint64_t row_pa;
int i;
__get_nps_pa_flip_bits(ras_core, nps, &flip_bits);
row_pa = pa;
/* clear loop bits in soc physical address */
for (i = 0; i < flip_bits.bit_num; i++)
row_pa &= ~BIT_ULL(flip_bits.flip_bits_in_pa[i]);
if (!zero_pfn_ok && !RAS_ADDR_TO_PFN(row_pa))
row_pa |= BIT_ULL(flip_bits.flip_bits_in_pa[2]);
return row_pa;
}
static int lookup_bad_pages_in_a_row(struct ras_core_context *ras_core,
struct eeprom_umc_record *record, uint32_t nps,
uint64_t *pfns, uint32_t num,
uint64_t seq_no, bool dump)
{
uint32_t col, col_lower, row, row_lower, idx, row_high;
uint64_t soc_pa, row_pa, column, err_addr;
uint64_t retired_addr = RAS_PFN_TO_ADDR(record->cur_nps_retired_row_pfn);
struct umc_flip_bits flip_bits = {0};
uint32_t retire_unit;
uint32_t i;
__get_nps_pa_flip_bits(ras_core, nps, &flip_bits);
row_pa = convert_nps_pa_to_row_pa(ras_core, retired_addr, nps, true);
err_addr = record->address;
/* get column bit 0 and 1 in mca address */
col_lower = (err_addr >> 1) & 0x3ULL;
/* MA_R13_BIT will be handled later */
row_lower = (err_addr >> UMC_V12_0_MCA_R0_BIT) & 0x1fffULL;
row_lower &= ~BIT_ULL(flip_bits.flip_row_bit);
if (ras_core->ras_gfx.gfx_ip_version >= IP_VERSION(9, 5, 0)) {
row_high = (row_pa >> flip_bits.r13_in_pa) & 0x3ULL;
/* it's 2.25GB in each channel, from MCA address to PA
* [R14 R13] is converted if the two bits value are 0x3,
* get them from PA instead of MCA address.
*/
row_lower |= (row_high << 13);
}
idx = 0;
row = 0;
retire_unit = 0x1 << flip_bits.bit_num;
/* loop for all possibilities of retire bits */
for (column = 0; column < retire_unit; column++) {
soc_pa = row_pa;
for (i = 0; i < flip_bits.bit_num; i++)
soc_pa |= (((column >> i) & 0x1ULL) << flip_bits.flip_bits_in_pa[i]);
col = ((column & 0x7) << 2) | col_lower;
/* add row bit 13 */
if (flip_bits.bit_num == UMC_PA_FLIP_BITS_NUM)
row = ((column >> 3) << flip_bits.flip_row_bit) | row_lower;
if (dump)
RAS_DEV_INFO(ras_core->dev,
"{%llu} Error Address(PA):0x%-10llx Row:0x%-4x Col:0x%-2x Bank:0x%x Channel:0x%x\n",
seq_no, soc_pa, row, col,
record->cur_nps_bank, record->mem_channel);
if (pfns && (idx < num))
pfns[idx++] = RAS_ADDR_TO_PFN(soc_pa);
}
return idx;
}
static int umc_v12_convert_ma_to_pa(struct ras_core_context *ras_core,
struct umc_mca_addr *addr_in, struct umc_phy_addr *addr_out,
uint32_t nps)
{
uint32_t i, na_shift;
uint64_t soc_pa, na, na_nps;
uint32_t bank_hash0, bank_hash1, bank_hash2, bank_hash3, col, row;
uint32_t bank0, bank1, bank2, bank3, bank;
uint32_t ch_inst = addr_in->ch_inst;
uint32_t umc_inst = addr_in->umc_inst;
uint32_t node_inst = addr_in->node_inst;
uint32_t socket_id = addr_in->socket_id;
uint32_t channel_index;
uint64_t err_addr = addr_in->err_addr;
if (node_inst != UMC_INV_AID_NODE) {
if (ch_inst >= UMC_V12_0_CHANNEL_INSTANCE_NUM ||
umc_inst >= UMC_V12_0_UMC_INSTANCE_NUM ||
node_inst >= UMC_V12_0_AID_NUM_MAX ||
socket_id >= UMC_V12_0_SOCKET_NUM_MAX)
return -EINVAL;
} else {
if (socket_id >= UMC_V12_0_SOCKET_NUM_MAX ||
ch_inst >= UMC_V12_0_TOTAL_CHANNEL_NUM)
return -EINVAL;
}
bank_hash0 = (err_addr >> UMC_V12_0_MCA_B0_BIT) & 0x1ULL;
bank_hash1 = (err_addr >> UMC_V12_0_MCA_B1_BIT) & 0x1ULL;
bank_hash2 = (err_addr >> UMC_V12_0_MCA_B2_BIT) & 0x1ULL;
bank_hash3 = (err_addr >> UMC_V12_0_MCA_B3_BIT) & 0x1ULL;
col = (err_addr >> 1) & 0x1fULL;
row = (err_addr >> 10) & 0x3fffULL;
/* apply bank hash algorithm */
bank0 =
bank_hash0 ^ (UMC_V12_0_XOR_EN0 &
(umc_v12_0_bit_wise_xor(col & UMC_V12_0_COL_XOR0) ^
(umc_v12_0_bit_wise_xor(row & UMC_V12_0_ROW_XOR0))));
bank1 =
bank_hash1 ^ (UMC_V12_0_XOR_EN1 &
(umc_v12_0_bit_wise_xor(col & UMC_V12_0_COL_XOR1) ^
(umc_v12_0_bit_wise_xor(row & UMC_V12_0_ROW_XOR1))));
bank2 =
bank_hash2 ^ (UMC_V12_0_XOR_EN2 &
(umc_v12_0_bit_wise_xor(col & UMC_V12_0_COL_XOR2) ^
(umc_v12_0_bit_wise_xor(row & UMC_V12_0_ROW_XOR2))));
bank3 =
bank_hash3 ^ (UMC_V12_0_XOR_EN3 &
(umc_v12_0_bit_wise_xor(col & UMC_V12_0_COL_XOR3) ^
(umc_v12_0_bit_wise_xor(row & UMC_V12_0_ROW_XOR3))));
bank = bank0 | (bank1 << 1) | (bank2 << 2) | (bank3 << 3);
err_addr &= ~0x3c0ULL;
err_addr |= (bank << UMC_V12_0_MCA_B0_BIT);
na_nps = 0x0;
/* convert mca error address to normalized address */
for (i = 1; i < ARRAY_SIZE(umc_v12_0_ma2na_mapping); i++)
na_nps |= ((err_addr >> i) & 0x1ULL) << umc_v12_0_ma2na_mapping[i];
if (nps == UMC_MEMORY_PARTITION_MODE_NPS1)
na_shift = 8;
else if (nps == UMC_MEMORY_PARTITION_MODE_NPS2)
na_shift = 9;
else if (nps == UMC_MEMORY_PARTITION_MODE_NPS4)
na_shift = 10;
else if (nps == UMC_MEMORY_PARTITION_MODE_NPS8)
na_shift = 11;
else
return -EINVAL;
na = ((na_nps >> na_shift) << 8) | (na_nps & 0xff);
if (node_inst != UMC_INV_AID_NODE)
channel_index =
umc_v12_0_channel_idx_tbl[node_inst][umc_inst][ch_inst];
else {
channel_index = ch_inst;
node_inst = channel_index /
(UMC_V12_0_UMC_INSTANCE_NUM * UMC_V12_0_CHANNEL_INSTANCE_NUM);
}
/* translate umc channel address to soc pa, 3 parts are included */
soc_pa = ADDR_OF_32KB_BLOCK(na) |
ADDR_OF_256B_BLOCK(channel_index) |
OFFSET_IN_256B_BLOCK(na);
/* calc channel hash based on absolute address */
soc_pa += socket_id * SOCKET_LFB_SIZE;
/* the umc channel bits are not original values, they are hashed */
UMC_V12_0_SET_CHANNEL_HASH(channel_index, soc_pa);
/* restore pa */
soc_pa -= socket_id * SOCKET_LFB_SIZE;
/* get some channel bits from na_nps directly and
* add nps section offset
*/
if (nps == UMC_MEMORY_PARTITION_MODE_NPS2) {
soc_pa &= ~(0x1ULL << UMC_V12_0_PA_CH5_BIT);
soc_pa |= ((na_nps & 0x100) << 5);
soc_pa += (node_inst >> 1) * (SOCKET_LFB_SIZE >> 1);
} else if (nps == UMC_MEMORY_PARTITION_MODE_NPS4) {
soc_pa &= ~(0x3ULL << UMC_V12_0_PA_CH4_BIT);
soc_pa |= ((na_nps & 0x300) << 4);
soc_pa += node_inst * (SOCKET_LFB_SIZE >> 2);
} else if (nps == UMC_MEMORY_PARTITION_MODE_NPS8) {
soc_pa &= ~(0x7ULL << UMC_V12_0_PA_CH4_BIT);
soc_pa |= ((na_nps & 0x700) << 4);
soc_pa += node_inst * (SOCKET_LFB_SIZE >> 2) +
(channel_index >> 4) * (SOCKET_LFB_SIZE >> 3);
}
addr_out->pa = soc_pa;
addr_out->bank = bank;
addr_out->channel_idx = channel_index;
return 0;
}
static int convert_ma_to_pa(struct ras_core_context *ras_core,
struct umc_mca_addr *addr_in, struct umc_phy_addr *addr_out,
uint32_t nps)
{
int ret;
if (ras_psp_check_supported_cmd(ras_core, RAS_TA_CMD_ID__QUERY_ADDRESS))
ret = ras_umc_psp_convert_ma_to_pa(ras_core,
addr_in, addr_out, nps);
else
ret = umc_v12_convert_ma_to_pa(ras_core,
addr_in, addr_out, nps);
return ret;
}
static int convert_bank_to_nps_addr(struct ras_core_context *ras_core,
struct ras_bank_ecc *bank, struct umc_phy_addr *pa_addr, uint32_t nps)
{
struct umc_mca_addr addr_in;
struct umc_phy_addr addr_out;
int ret;
memset(&addr_in, 0, sizeof(addr_in));
memset(&addr_out, 0, sizeof(addr_out));
addr_in.err_addr = ACA_ADDR_2_ERR_ADDR(bank->addr);
addr_in.ch_inst = ACA_IPID_2_UMC_CH(bank->ipid);
addr_in.umc_inst = ACA_IPID_2_UMC_INST(bank->ipid);
addr_in.node_inst = ACA_IPID_2_DIE_ID(bank->ipid);
addr_in.socket_id = ACA_IPID_2_SOCKET_ID(bank->ipid);
ret = convert_ma_to_pa(ras_core, &addr_in, &addr_out, nps);
if (!ret) {
pa_addr->pa =
convert_nps_pa_to_row_pa(ras_core, addr_out.pa, nps, false);
pa_addr->channel_idx = addr_out.channel_idx;
pa_addr->bank = addr_out.bank;
}
return ret;
}
static int umc_v12_0_bank_to_eeprom_record(struct ras_core_context *ras_core,
struct ras_bank_ecc *bank, struct eeprom_umc_record *record)
{
struct umc_phy_addr nps_addr;
int ret;
memset(&nps_addr, 0, sizeof(nps_addr));
ret = convert_bank_to_nps_addr(ras_core, bank,
&nps_addr, bank->nps);
if (ret)
return ret;
ras_umc_fill_eeprom_record(ras_core,
ACA_ADDR_2_ERR_ADDR(bank->addr), ACA_IPID_2_UMC_INST(bank->ipid),
&nps_addr, bank->nps, record);
lookup_bad_pages_in_a_row(ras_core, record,
bank->nps, NULL, 0, bank->seq_no, true);
return 0;
}
static int convert_eeprom_record_to_nps_addr(struct ras_core_context *ras_core,
struct eeprom_umc_record *record, uint64_t *pa, uint32_t nps)
{
struct device_system_info dev_info = {0};
struct umc_mca_addr addr_in;
struct umc_phy_addr addr_out;
int ret;
memset(&addr_in, 0, sizeof(addr_in));
memset(&addr_out, 0, sizeof(addr_out));
ras_core_get_device_system_info(ras_core, &dev_info);
addr_in.err_addr = record->address;
addr_in.ch_inst = record->mem_channel;
addr_in.umc_inst = record->mcumc_id;
addr_in.node_inst = UMC_INV_AID_NODE;
addr_in.socket_id = dev_info.socket_id;
ret = convert_ma_to_pa(ras_core, &addr_in, &addr_out, nps);
if (ret)
return ret;
*pa = convert_nps_pa_to_row_pa(ras_core, addr_out.pa, nps, false);
return 0;
}
static int umc_v12_0_eeprom_record_to_nps_record(struct ras_core_context *ras_core,
struct eeprom_umc_record *record, uint32_t nps)
{
uint64_t pa = 0;
int ret = 0;
if (nps == EEPROM_RECORD_UMC_NPS_MODE(record)) {
record->cur_nps_retired_row_pfn = EEPROM_RECORD_UMC_ADDR_PFN(record);
} else {
ret = convert_eeprom_record_to_nps_addr(ras_core,
record, &pa, nps);
if (!ret)
record->cur_nps_retired_row_pfn = RAS_ADDR_TO_PFN(pa);
}
record->cur_nps = nps;
return ret;
}
static int umc_v12_0_eeprom_record_to_nps_pages(struct ras_core_context *ras_core,
struct eeprom_umc_record *record, uint32_t nps,
uint64_t *pfns, uint32_t num)
{
return lookup_bad_pages_in_a_row(ras_core,
record, nps, pfns, num, 0, false);
}
static int umc_12_0_soc_pa_to_bank(struct ras_core_context *ras_core,
uint64_t soc_pa,
struct umc_bank_addr *bank_addr)
{
int channel_hashed = 0;
int channel_real = 0;
int channel_reversed = 0;
int i = 0;
bank_addr->stack_id = UMC_V12_0_SOC_PA_TO_SID(soc_pa);
bank_addr->bank_group = 0; /* This is a combination of SID & Bank. Needed?? */
bank_addr->bank = UMC_V12_0_SOC_PA_TO_BANK(soc_pa);
bank_addr->row = UMC_V12_0_SOC_PA_TO_ROW(soc_pa);
bank_addr->column = UMC_V12_0_SOC_PA_TO_COL(soc_pa);
/* Channel bits 4-6 are hashed. Bruteforce reverse the hash */
channel_hashed = (soc_pa >> UMC_V12_0_PA_CH4_BIT) & 0x7;
for (i = 0; i < 8; i++) {
channel_reversed = 0;
channel_reversed |= UMC_V12_0_CHANNEL_HASH_CH4((i << 4), soc_pa);
channel_reversed |= (UMC_V12_0_CHANNEL_HASH_CH5((i << 4), soc_pa) << 1);
channel_reversed |= (UMC_V12_0_CHANNEL_HASH_CH6((i << 4), soc_pa) << 2);
if (channel_reversed == channel_hashed)
channel_real = ((i << 4)) | ((soc_pa >> UMC_V12_0_PA_CH0_BIT) & 0xf);
}
bank_addr->channel = channel_real;
bank_addr->subchannel = UMC_V12_0_SOC_PA_TO_PC(soc_pa);
return 0;
}
static int umc_12_0_bank_to_soc_pa(struct ras_core_context *ras_core,
struct umc_bank_addr bank_addr,
uint64_t *soc_pa)
{
uint64_t na = 0;
uint64_t tmp_pa = 0;
*soc_pa = 0;
tmp_pa |= UMC_V12_0_SOC_SID_TO_PA(bank_addr.stack_id);
tmp_pa |= UMC_V12_0_SOC_BANK_TO_PA(bank_addr.bank);
tmp_pa |= UMC_V12_0_SOC_ROW_TO_PA(bank_addr.row);
tmp_pa |= UMC_V12_0_SOC_COL_TO_PA(bank_addr.column);
tmp_pa |= UMC_V12_0_SOC_CH_TO_PA(bank_addr.channel);
tmp_pa |= UMC_V12_0_SOC_PC_TO_PA(bank_addr.subchannel);
/* Get the NA */
na = ((tmp_pa >> UMC_V12_0_PA_C2_BIT) << UMC_V12_0_NA_C2_BIT);
na |= tmp_pa & 0xff;
/* translate umc channel address to soc pa, 3 parts are included */
tmp_pa = ADDR_OF_32KB_BLOCK(na) |
ADDR_OF_256B_BLOCK(bank_addr.channel) |
OFFSET_IN_256B_BLOCK(na);
/* the umc channel bits are not original values, they are hashed */
UMC_V12_0_SET_CHANNEL_HASH(bank_addr.channel, tmp_pa);
*soc_pa = tmp_pa;
return 0;
}
const struct ras_umc_ip_func ras_umc_func_v12_0 = {
.bank_to_eeprom_record = umc_v12_0_bank_to_eeprom_record,
.eeprom_record_to_nps_record = umc_v12_0_eeprom_record_to_nps_record,
.eeprom_record_to_nps_pages = umc_v12_0_eeprom_record_to_nps_pages,
.bank_to_soc_pa = umc_12_0_bank_to_soc_pa,
.soc_pa_to_bank = umc_12_0_soc_pa_to_bank,
};

View File

@ -0,0 +1,314 @@
/* SPDX-License-Identifier: MIT */
/*
* Copyright 2025 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef __RAS_UMC_V12_0_H__
#define __RAS_UMC_V12_0_H__
#include "ras.h"
/* MCA_UMC_UMC0_MCUMC_ADDRT0 */
#define MCA_UMC_UMC0_MCUMC_ADDRT0__ErrorAddr__SHIFT 0x0
#define MCA_UMC_UMC0_MCUMC_ADDRT0__Reserved__SHIFT 0x38
#define MCA_UMC_UMC0_MCUMC_ADDRT0__ErrorAddr_MASK 0x00FFFFFFFFFFFFFFL
#define MCA_UMC_UMC0_MCUMC_ADDRT0__Reserved_MASK 0xFF00000000000000L
/* MCMP1_IPIDT0 */
#define MCMP1_IPIDT0__InstanceIdLo__SHIFT 0x0
#define MCMP1_IPIDT0__HardwareID__SHIFT 0x20
#define MCMP1_IPIDT0__InstanceIdHi__SHIFT 0x2c
#define MCMP1_IPIDT0__McaType__SHIFT 0x30
#define MCMP1_IPIDT0__InstanceIdLo_MASK 0x00000000FFFFFFFFL
#define MCMP1_IPIDT0__HardwareID_MASK 0x00000FFF00000000L
#define MCMP1_IPIDT0__InstanceIdHi_MASK 0x0000F00000000000L
#define MCMP1_IPIDT0__McaType_MASK 0xFFFF000000000000L
/* number of umc channel instance with memory map register access */
#define UMC_V12_0_CHANNEL_INSTANCE_NUM 8
/* number of umc instance with memory map register access */
#define UMC_V12_0_UMC_INSTANCE_NUM 4
/* one piece of normalized address is mapped to 8 pieces of physical address */
#define UMC_V12_0_NA_MAP_PA_NUM 8
/* bank bits in MCA error address */
#define UMC_V12_0_MCA_B0_BIT 6
#define UMC_V12_0_MCA_B1_BIT 7
#define UMC_V12_0_MCA_B2_BIT 8
#define UMC_V12_0_MCA_B3_BIT 9
/* row bits in MCA address */
#define UMC_V12_0_MCA_R0_BIT 10
/* Stack ID bits in SOC physical address */
#define UMC_V12_0_PA_SID1_BIT 37
#define UMC_V12_0_PA_SID0_BIT 36
/* bank bits in SOC physical address */
#define UMC_V12_0_PA_B3_BIT 18
#define UMC_V12_0_PA_B2_BIT 17
#define UMC_V12_0_PA_B1_BIT 20
#define UMC_V12_0_PA_B0_BIT 19
/* row bits in SOC physical address */
#define UMC_V12_0_PA_R13_BIT 35
#define UMC_V12_0_PA_R12_BIT 34
#define UMC_V12_0_PA_R11_BIT 33
#define UMC_V12_0_PA_R10_BIT 32
#define UMC_V12_0_PA_R9_BIT 31
#define UMC_V12_0_PA_R8_BIT 30
#define UMC_V12_0_PA_R7_BIT 29
#define UMC_V12_0_PA_R6_BIT 28
#define UMC_V12_0_PA_R5_BIT 27
#define UMC_V12_0_PA_R4_BIT 26
#define UMC_V12_0_PA_R3_BIT 25
#define UMC_V12_0_PA_R2_BIT 24
#define UMC_V12_0_PA_R1_BIT 23
#define UMC_V12_0_PA_R0_BIT 22
/* column bits in SOC physical address */
#define UMC_V12_0_PA_C4_BIT 21
#define UMC_V12_0_PA_C3_BIT 16
#define UMC_V12_0_PA_C2_BIT 15
#define UMC_V12_0_PA_C1_BIT 6
#define UMC_V12_0_PA_C0_BIT 5
/* channel index bits in SOC physical address */
#define UMC_V12_0_PA_CH6_BIT 14
#define UMC_V12_0_PA_CH5_BIT 13
#define UMC_V12_0_PA_CH4_BIT 12
#define UMC_V12_0_PA_CH3_BIT 11
#define UMC_V12_0_PA_CH2_BIT 10
#define UMC_V12_0_PA_CH1_BIT 9
#define UMC_V12_0_PA_CH0_BIT 8
/* Pseudochannel index bits in SOC physical address */
#define UMC_V12_0_PA_PC0_BIT 7
#define UMC_V12_0_NA_C2_BIT 8
#define UMC_V12_0_SOC_PA_TO_SID(pa) \
((((pa >> UMC_V12_0_PA_SID0_BIT) & 0x1ULL) << 0ULL) | \
(((pa >> UMC_V12_0_PA_SID1_BIT) & 0x1ULL) << 1ULL))
#define UMC_V12_0_SOC_PA_TO_BANK(pa) \
((((pa >> UMC_V12_0_PA_B0_BIT) & 0x1ULL) << 0ULL) | \
(((pa >> UMC_V12_0_PA_B1_BIT) & 0x1ULL) << 1ULL) | \
(((pa >> UMC_V12_0_PA_B2_BIT) & 0x1ULL) << 2ULL) | \
(((pa >> UMC_V12_0_PA_B3_BIT) & 0x1ULL) << 3ULL))
#define UMC_V12_0_SOC_PA_TO_ROW(pa) \
((((pa >> UMC_V12_0_PA_R0_BIT) & 0x1ULL) << 0ULL) | \
(((pa >> UMC_V12_0_PA_R1_BIT) & 0x1ULL) << 1ULL) | \
(((pa >> UMC_V12_0_PA_R2_BIT) & 0x1ULL) << 2ULL) | \
(((pa >> UMC_V12_0_PA_R3_BIT) & 0x1ULL) << 3ULL) | \
(((pa >> UMC_V12_0_PA_R4_BIT) & 0x1ULL) << 4ULL) | \
(((pa >> UMC_V12_0_PA_R5_BIT) & 0x1ULL) << 5ULL) | \
(((pa >> UMC_V12_0_PA_R6_BIT) & 0x1ULL) << 6ULL) | \
(((pa >> UMC_V12_0_PA_R7_BIT) & 0x1ULL) << 7ULL) | \
(((pa >> UMC_V12_0_PA_R8_BIT) & 0x1ULL) << 8ULL) | \
(((pa >> UMC_V12_0_PA_R9_BIT) & 0x1ULL) << 9ULL) | \
(((pa >> UMC_V12_0_PA_R10_BIT) & 0x1ULL) << 10ULL) | \
(((pa >> UMC_V12_0_PA_R11_BIT) & 0x1ULL) << 11ULL) | \
(((pa >> UMC_V12_0_PA_R12_BIT) & 0x1ULL) << 12ULL) | \
(((pa >> UMC_V12_0_PA_R13_BIT) & 0x1ULL) << 13ULL))
#define UMC_V12_0_SOC_PA_TO_COL(pa) \
((((pa >> UMC_V12_0_PA_C0_BIT) & 0x1ULL) << 0ULL) | \
(((pa >> UMC_V12_0_PA_C1_BIT) & 0x1ULL) << 1ULL) | \
(((pa >> UMC_V12_0_PA_C2_BIT) & 0x1ULL) << 2ULL) | \
(((pa >> UMC_V12_0_PA_C3_BIT) & 0x1ULL) << 3ULL) | \
(((pa >> UMC_V12_0_PA_C4_BIT) & 0x1ULL) << 4ULL))
#define UMC_V12_0_SOC_PA_TO_CH(pa) \
((((pa >> UMC_V12_0_PA_CH0_BIT) & 0x1ULL) << 0ULL) | \
(((pa >> UMC_V12_0_PA_CH1_BIT) & 0x1ULL) << 1ULL) | \
(((pa >> UMC_V12_0_PA_CH2_BIT) & 0x1ULL) << 2ULL) | \
(((pa >> UMC_V12_0_PA_CH3_BIT) & 0x1ULL) << 3ULL) | \
(((pa >> UMC_V12_0_PA_CH4_BIT) & 0x1ULL) << 4ULL) | \
(((pa >> UMC_V12_0_PA_CH5_BIT) & 0x1ULL) << 5ULL) | \
(((pa >> UMC_V12_0_PA_CH6_BIT) & 0x1ULL) << 6ULL))
#define UMC_V12_0_SOC_PA_TO_PC(pa) (((pa >> UMC_V12_0_PA_PC0_BIT) & 0x1ULL) << 0ULL)
#define UMC_V12_0_SOC_SID_TO_PA(sid) \
((((sid >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_SID0_BIT) | \
(((sid >> 1ULL) & 0x1ULL) << UMC_V12_0_PA_SID1_BIT))
#define UMC_V12_0_SOC_BANK_TO_PA(bank) \
((((bank >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_B0_BIT) | \
(((bank >> 1ULL) & 0x1ULL) << UMC_V12_0_PA_B1_BIT) | \
(((bank >> 2ULL) & 0x1ULL) << UMC_V12_0_PA_B2_BIT) | \
(((bank >> 3ULL) & 0x1ULL) << UMC_V12_0_PA_B3_BIT))
#define UMC_V12_0_SOC_ROW_TO_PA(row) \
((((row >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_R0_BIT) | \
(((row >> 1ULL) & 0x1ULL) << UMC_V12_0_PA_R1_BIT) | \
(((row >> 2ULL) & 0x1ULL) << UMC_V12_0_PA_R2_BIT) | \
(((row >> 3ULL) & 0x1ULL) << UMC_V12_0_PA_R3_BIT) | \
(((row >> 4ULL) & 0x1ULL) << UMC_V12_0_PA_R4_BIT) | \
(((row >> 5ULL) & 0x1ULL) << UMC_V12_0_PA_R5_BIT) | \
(((row >> 6ULL) & 0x1ULL) << UMC_V12_0_PA_R6_BIT) | \
(((row >> 7ULL) & 0x1ULL) << UMC_V12_0_PA_R7_BIT) | \
(((row >> 8ULL) & 0x1ULL) << UMC_V12_0_PA_R8_BIT) | \
(((row >> 9ULL) & 0x1ULL) << UMC_V12_0_PA_R9_BIT) | \
(((row >> 10ULL) & 0x1ULL) << UMC_V12_0_PA_R10_BIT) | \
(((row >> 11ULL) & 0x1ULL) << UMC_V12_0_PA_R11_BIT) | \
(((row >> 12ULL) & 0x1ULL) << UMC_V12_0_PA_R12_BIT) | \
(((row >> 13ULL) & 0x1ULL) << UMC_V12_0_PA_R13_BIT))
#define UMC_V12_0_SOC_COL_TO_PA(col) \
((((col >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_C0_BIT) | \
(((col >> 1ULL) & 0x1ULL) << UMC_V12_0_PA_C1_BIT) | \
(((col >> 2ULL) & 0x1ULL) << UMC_V12_0_PA_C2_BIT) | \
(((col >> 3ULL) & 0x1ULL) << UMC_V12_0_PA_C3_BIT) | \
(((col >> 4ULL) & 0x1ULL) << UMC_V12_0_PA_C4_BIT))
#define UMC_V12_0_SOC_CH_TO_PA(ch) \
((((ch >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_CH0_BIT) | \
(((ch >> 1ULL) & 0x1ULL) << UMC_V12_0_PA_CH1_BIT) | \
(((ch >> 2ULL) & 0x1ULL) << UMC_V12_0_PA_CH2_BIT) | \
(((ch >> 3ULL) & 0x1ULL) << UMC_V12_0_PA_CH3_BIT) | \
(((ch >> 4ULL) & 0x1ULL) << UMC_V12_0_PA_CH4_BIT) | \
(((ch >> 5ULL) & 0x1ULL) << UMC_V12_0_PA_CH5_BIT) | \
(((ch >> 6ULL) & 0x1ULL) << UMC_V12_0_PA_CH6_BIT))
#define UMC_V12_0_SOC_PC_TO_PA(pc) (((pc >> 0ULL) & 0x1ULL) << UMC_V12_0_PA_PC0_BIT)
/* bank hash settings */
#define UMC_V12_0_XOR_EN0 1
#define UMC_V12_0_XOR_EN1 1
#define UMC_V12_0_XOR_EN2 1
#define UMC_V12_0_XOR_EN3 1
#define UMC_V12_0_COL_XOR0 0x0
#define UMC_V12_0_COL_XOR1 0x0
#define UMC_V12_0_COL_XOR2 0x800
#define UMC_V12_0_COL_XOR3 0x1000
#define UMC_V12_0_ROW_XOR0 0x11111
#define UMC_V12_0_ROW_XOR1 0x22222
#define UMC_V12_0_ROW_XOR2 0x4444
#define UMC_V12_0_ROW_XOR3 0x8888
/* channel hash settings */
#define UMC_V12_0_HASH_4K 0
#define UMC_V12_0_HASH_64K 1
#define UMC_V12_0_HASH_2M 1
#define UMC_V12_0_HASH_1G 1
#define UMC_V12_0_HASH_1T 1
/* XOR some bits of PA into CH4~CH6 bits (bits 12~14 of PA),
* hash bit is only effective when related setting is enabled
*/
#define UMC_V12_0_CHANNEL_HASH_CH4(channel_idx, pa) ((((channel_idx) >> 5) & 0x1) ^ \
(((pa) >> 20) & 0x1ULL & UMC_V12_0_HASH_64K) ^ \
(((pa) >> 27) & 0x1ULL & UMC_V12_0_HASH_2M) ^ \
(((pa) >> 34) & 0x1ULL & UMC_V12_0_HASH_1G) ^ \
(((pa) >> 41) & 0x1ULL & UMC_V12_0_HASH_1T))
#define UMC_V12_0_CHANNEL_HASH_CH5(channel_idx, pa) ((((channel_idx) >> 6) & 0x1) ^ \
(((pa) >> 21) & 0x1ULL & UMC_V12_0_HASH_64K) ^ \
(((pa) >> 28) & 0x1ULL & UMC_V12_0_HASH_2M) ^ \
(((pa) >> 35) & 0x1ULL & UMC_V12_0_HASH_1G) ^ \
(((pa) >> 42) & 0x1ULL & UMC_V12_0_HASH_1T))
#define UMC_V12_0_CHANNEL_HASH_CH6(channel_idx, pa) ((((channel_idx) >> 4) & 0x1) ^ \
(((pa) >> 19) & 0x1ULL & UMC_V12_0_HASH_64K) ^ \
(((pa) >> 26) & 0x1ULL & UMC_V12_0_HASH_2M) ^ \
(((pa) >> 33) & 0x1ULL & UMC_V12_0_HASH_1G) ^ \
(((pa) >> 40) & 0x1ULL & UMC_V12_0_HASH_1T) ^ \
(((pa) >> 47) & 0x1ULL & UMC_V12_0_HASH_1T))
#define UMC_V12_0_SET_CHANNEL_HASH(channel_idx, pa) do { \
(pa) &= ~(0x7ULL << UMC_V12_0_PA_CH4_BIT); \
(pa) |= (UMC_V12_0_CHANNEL_HASH_CH4(channel_idx, pa) << UMC_V12_0_PA_CH4_BIT); \
(pa) |= (UMC_V12_0_CHANNEL_HASH_CH5(channel_idx, pa) << UMC_V12_0_PA_CH5_BIT); \
(pa) |= (UMC_V12_0_CHANNEL_HASH_CH6(channel_idx, pa) << UMC_V12_0_PA_CH6_BIT); \
} while (0)
/*
* (addr / 256) * 4096, the higher 26 bits in ErrorAddr
* is the index of 4KB block
*/
#define ADDR_OF_4KB_BLOCK(addr) (((addr) & ~0xffULL) << 4)
/*
* (addr / 256) * 8192, the higher 26 bits in ErrorAddr
* is the index of 8KB block
*/
#define ADDR_OF_8KB_BLOCK(addr) (((addr) & ~0xffULL) << 5)
/*
* (addr / 256) * 32768, the higher 26 bits in ErrorAddr
* is the index of 8KB block
*/
#define ADDR_OF_32KB_BLOCK(addr) (((addr) & ~0xffULL) << 7)
/* channel index is the index of 256B block */
#define ADDR_OF_256B_BLOCK(channel_index) ((channel_index) << 8)
/* offset in 256B block */
#define OFFSET_IN_256B_BLOCK(addr) ((addr) & 0xffULL)
#define UMC_V12_ADDR_MASK_BAD_COLS(addr) \
((addr) & ~((0x3ULL << UMC_V12_0_PA_C2_BIT) | \
(0x1ULL << UMC_V12_0_PA_C4_BIT) | \
(0x1ULL << UMC_V12_0_PA_R13_BIT)))
#define ACA_IPID_HI_2_UMC_AID(_ipid_hi) (((_ipid_hi) >> 2) & 0x3)
#define ACA_IPID_LO_2_UMC_CH(_ipid_lo) \
(((((_ipid_lo) >> 20) & 0x1) * 4) + (((_ipid_lo) >> 12) & 0xF))
#define ACA_IPID_LO_2_UMC_INST(_ipid_lo) (((_ipid_lo) >> 21) & 0x7)
#define ACA_IPID_2_DIE_ID(ipid) ((REG_GET_FIELD(ipid, MCMP1_IPIDT0, InstanceIdHi) >> 2) & 0x03)
#define ACA_IPID_2_UMC_CH(ipid) \
(ACA_IPID_LO_2_UMC_CH(REG_GET_FIELD(ipid, MCMP1_IPIDT0, InstanceIdLo)))
#define ACA_IPID_2_UMC_INST(ipid) \
(ACA_IPID_LO_2_UMC_INST(REG_GET_FIELD(ipid, MCMP1_IPIDT0, InstanceIdLo)))
#define ACA_IPID_2_SOCKET_ID(ipid) \
(((REG_GET_FIELD(ipid, MCMP1_IPIDT0, InstanceIdLo) & 0x1) << 2) | \
(REG_GET_FIELD(ipid, MCMP1_IPIDT0, InstanceIdHi) & 0x03))
#define ACA_ADDR_2_ERR_ADDR(addr) \
REG_GET_FIELD(addr, MCA_UMC_UMC0_MCUMC_ADDRT0, ErrorAddr)
/* R13 bit shift should be considered, double the number */
#define UMC_V12_0_BAD_PAGE_NUM_PER_CHANNEL (UMC_V12_0_NA_MAP_PA_NUM * 2)
/* C2, C3, C4, R13, four MCA bits are looped in page retirement */
#define UMC_V12_0_RETIRE_LOOP_BITS 4
/* invalid node instance value */
#define UMC_INV_AID_NODE 0xffff
#define UMC_V12_0_AID_NUM_MAX 4
#define UMC_V12_0_SOCKET_NUM_MAX 8
#define UMC_V12_0_TOTAL_CHANNEL_NUM \
(UMC_V12_0_AID_NUM_MAX * UMC_V12_0_UMC_INSTANCE_NUM * UMC_V12_0_CHANNEL_INSTANCE_NUM)
/* one device has 192GB HBM */
#define SOCKET_LFB_SIZE 0x3000000000ULL
extern const struct ras_umc_ip_func ras_umc_func_v12_0;
int ras_umc_get_badpage_count(struct ras_core_context *ras_core);
int ras_umc_get_badpage_record(struct ras_core_context *ras_core, uint32_t index, void *record);
#endif