Revert "perf powerpc: Add data source encodings for power10 platform"

This was in a patchkit mixing up kernel with tools/ parts and I
mistakenly got it merged in the perf tools tree, revert it, it'll go via
the PowerPC kernel tree.

This reverts commit af2b24f2.

Cc: kajoljain <kjain@linux.ibm.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Link: http://lore.kernel.org/lkml/20220112171659.531d22ce@canb.auug.org.auSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 8de78328
...@@ -229,20 +229,6 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx) ...@@ -229,20 +229,6 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx)
ret = PH(LVL, L3); ret = PH(LVL, L3);
break; break;
case 4: case 4:
if (cpu_has_feature(CPU_FTR_ARCH_31)) {
ret = P(SNOOP, HIT);
if (sub_idx == 1)
ret |= PH(LVL, LOC_RAM) | LEVEL(RAM);
else if (sub_idx == 2 || sub_idx == 3)
ret |= P(LVL, HIT) | LEVEL(PMEM);
else if (sub_idx == 4)
ret |= PH(LVL, REM_RAM1) | REM | LEVEL(RAM) | P(HOPS, 2);
else if (sub_idx == 5 || sub_idx == 7)
ret |= P(LVL, HIT) | LEVEL(PMEM) | REM;
else if (sub_idx == 6)
ret |= PH(LVL, REM_RAM2) | REM | LEVEL(RAM) | P(HOPS, 3);
} else {
if (sub_idx <= 1) if (sub_idx <= 1)
ret = PH(LVL, LOC_RAM); ret = PH(LVL, LOC_RAM);
else if (sub_idx > 1 && sub_idx <= 2) else if (sub_idx > 1 && sub_idx <= 2)
...@@ -250,7 +236,6 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx) ...@@ -250,7 +236,6 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx)
else else
ret = PH(LVL, REM_RAM2); ret = PH(LVL, REM_RAM2);
ret |= P(SNOOP, HIT); ret |= P(SNOOP, HIT);
}
break; break;
case 5: case 5:
if (cpu_has_feature(CPU_FTR_ARCH_31)) { if (cpu_has_feature(CPU_FTR_ARCH_31)) {
...@@ -276,26 +261,11 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx) ...@@ -276,26 +261,11 @@ static inline u64 isa207_find_source(u64 idx, u32 sub_idx)
} }
break; break;
case 6: case 6:
if (cpu_has_feature(CPU_FTR_ARCH_31)) {
if (sub_idx == 0)
ret = PH(LVL, REM_CCE1) | LEVEL(ANY_CACHE) | REM |
P(SNOOP, HIT) | P(HOPS, 2);
else if (sub_idx == 1)
ret = PH(LVL, REM_CCE1) | LEVEL(ANY_CACHE) | REM |
P(SNOOP, HITM) | P(HOPS, 2);
else if (sub_idx == 2)
ret = PH(LVL, REM_CCE2) | LEVEL(ANY_CACHE) | REM |
P(SNOOP, HIT) | P(HOPS, 3);
else if (sub_idx == 3)
ret = PH(LVL, REM_CCE2) | LEVEL(ANY_CACHE) | REM |
P(SNOOP, HITM) | P(HOPS, 3);
} else {
ret = PH(LVL, REM_CCE2); ret = PH(LVL, REM_CCE2);
if (sub_idx == 0 || sub_idx == 2) if ((sub_idx == 0) || (sub_idx == 2))
ret |= P(SNOOP, HIT); ret |= P(SNOOP, HIT);
else if (sub_idx == 1 || sub_idx == 3) else if ((sub_idx == 1) || (sub_idx == 3))
ret |= P(SNOOP, HITM); ret |= P(SNOOP, HITM);
}
break; break;
case 7: case 7:
ret = PM(LVL, L1); ret = PM(LVL, L1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment