* linuxppc_2_4_devel patch for ppc_htab.c (/proc/sys/kernel/l2cr)
@ 2003-05-29 1:42 Mark A. Greer
0 siblings, 0 replies; only message in thread
From: Mark A. Greer @ 2003-05-29 1:42 UTC (permalink / raw)
To: linuxppc-dev
[-- Attachment #1: Type: text/plain, Size: 64 bytes --]
This patch adds 745x support to /proc/sys/kernel/l2cr.
Mark
--
[-- Attachment #2: l2cr.patch --]
[-- Type: text/plain, Size: 3020 bytes --]
===== arch/ppc/kernel/ppc_htab.c 1.31 vs edited =====
--- 1.31/arch/ppc/kernel/ppc_htab.c Thu Feb 27 12:40:15 2003
+++ edited/arch/ppc/kernel/ppc_htab.c Wed May 28 17:41:45 2003
@@ -441,18 +441,18 @@
}
}
+#define TMPBUFLEN 512
int proc_dol2crvec(ctl_table *table, int write, struct file *filp,
void *buffer, size_t *lenp)
{
int vleft, first=1, len, left, val;
- #define TMPBUFLEN 256
char buf[TMPBUFLEN], *p;
static const char *sizestrings[4] = {
"2MB", "256KB", "512KB", "1MB"
};
static const char *clockstrings[8] = {
- "clock disabled", "+1 clock", "+1.5 clock", "reserved(3)",
- "+2 clock", "+2.5 clock", "+3 clock", "reserved(7)"
+ "clock disabled", "+1 clock", "+1.5 clock", "+3.5 clock",
+ "+2 clock", "+2.5 clock", "+3 clock", "+4 clock"
};
static const char *typestrings[4] = {
"flow-through burst SRAM", "reserved SRAM",
@@ -508,21 +508,43 @@
*p++ = '\t';
val = _get_L2CR();
p += sprintf(p, "0x%08x: ", val);
- p += sprintf(p, " %s", (val >> 31) & 1 ? "enabled" :
+ p += sprintf(p, " L2 %s", (val >> 31) & 1 ? "enabled" :
"disabled");
p += sprintf(p, ", %sparity", (val>>30)&1 ? "" : "no ");
- p += sprintf(p, ", %s", sizestrings[(val >> 28) & 3]);
- p += sprintf(p, ", %s", clockstrings[(val >> 25) & 7]);
- p += sprintf(p, ", %s", typestrings[(val >> 23) & 2]);
- p += sprintf(p, "%s", (val>>22)&1 ? ", data only" : "");
- p += sprintf(p, "%s", (val>>20)&1 ? ", ZZ enabled": "");
- p += sprintf(p, ", %s", (val>>19)&1 ? "write-through" :
- "copy-back");
- p += sprintf(p, "%s", (val>>18)&1 ? ", testing" : "");
- p += sprintf(p, ", %sns hold",holdstrings[(val>>16)&3]);
- p += sprintf(p, "%s", (val>>15)&1 ? ", DLL slow" : "");
- p += sprintf(p, "%s", (val>>14)&1 ? ", diff clock" :"");
- p += sprintf(p, "%s", (val>>13)&1 ? ", DLL bypass" :"");
+
+ /* 75x & 74x0 have different L2CR than 745x */
+ if (!(cur_cpu_spec[0]->cpu_features &
+ CPU_FTR_SPEC7450)) {
+ p += sprintf(p, ", %s",
+ sizestrings[(val >> 28) & 3]);
+ p += sprintf(p, ", %s",
+ clockstrings[(val >> 25) & 7]);
+ p += sprintf(p, ", %s",
+ typestrings[(val >> 23) & 3]);
+ p += sprintf(p, "%s", (val>>22)&1 ?
+ ", data only" : "");
+ p += sprintf(p, "%s", (val>>20)&1 ?
+ ", ZZ enabled": "");
+ p += sprintf(p, ", %s", (val>>19)&1 ?
+ "write-through" : "copy-back");
+ p += sprintf(p, "%s", (val>>18)&1 ?
+ ", testing" : "");
+ p += sprintf(p, ", %sns hold",
+ holdstrings[(val>>16)&3]);
+ p += sprintf(p, "%s", (val>>15)&1 ?
+ ", DLL slow" : "");
+ p += sprintf(p, "%s", (val>>14)&1 ?
+ ", diff clock" :"");
+ p += sprintf(p, "%s", (val>>13)&1 ?
+ ", DLL bypass" :"");
+ } else { /* 745x */
+ p += sprintf(p, ", %sinstn only", (val>>20)&1 ?
+ "" : "no ");
+ p += sprintf(p, ", %sdata only", (val>>16)&1 ?
+ "" : "no ");
+ p += sprintf(p, ", %s replacement",
+ (val>>12)&1 ? "secondary" : "default");
+ }
p += sprintf(p,"\n");
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-05-29 1:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-29 1:42 linuxppc_2_4_devel patch for ppc_htab.c (/proc/sys/kernel/l2cr) Mark A. Greer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).