Symbol: scache_size
arch/mips/mm/c-r4k.c
111
static unsigned long scache_size __read_mostly;
arch/mips/mm/c-r4k.c
1433
scache_size = addr;
arch/mips/mm/c-r4k.c
1445
scache_size = 512*1024;
arch/mips/mm/c-r4k.c
1449
c->scache.waysize = scache_size / (c->scache.ways);
arch/mips/mm/c-r4k.c
1450
c->scache.sets = scache_size / (c->scache.linesz * c->scache.ways);
arch/mips/mm/c-r4k.c
1452
scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);
arch/mips/mm/c-r4k.c
1477
scache_size = c->scache.sets * c->scache.ways * c->scache.linesz;
arch/mips/mm/c-r4k.c
1480
c->scache.waysize = scache_size / c->scache.ways;
arch/mips/mm/c-r4k.c
1482
scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);
arch/mips/mm/c-r4k.c
1483
if (scache_size)
arch/mips/mm/c-r4k.c
1513
scache_size = 0x80000 << ((config & R10K_CONF_SS) >> 16);
arch/mips/mm/c-r4k.c
1552
scache_size = c->scache.ways * c->scache.sets * c->scache.linesz;
arch/mips/mm/c-r4k.c
1554
scache_size >> 10,
arch/mips/mm/c-r4k.c
1574
c->scache.waysize = scache_size / c->scache.ways;
arch/mips/mm/c-r4k.c
1576
c->scache.sets = scache_size / (c->scache.linesz * c->scache.ways);
arch/mips/mm/c-r4k.c
1579
scache_size >> 10, way_string[c->scache.ways], c->scache.linesz);
arch/mips/mm/c-r4k.c
326
if (scache_size == 0)
arch/mips/mm/c-r4k.c
344
if (scache_size == 0)
arch/mips/mm/c-r4k.c
756
if (size >= scache_size) {
arch/mips/mm/c-r4k.c
826
if (size >= scache_size) {
arch/mips/mm/sc-ip22.c
170
scache_size = size;
arch/mips/mm/sc-ip22.c
20
static unsigned long scache_size;
arch/mips/mm/sc-r5k.c
19
static unsigned long scache_size;
arch/mips/mm/sc-r5k.c
27
unsigned long end = start + scache_size;
arch/mips/mm/sc-r5k.c
42
if (size >= scache_size) {
arch/mips/mm/sc-r5k.c
86
scache_size = (512 * 1024) << ((config & R5K_CONF_SS) >> 20);
arch/mips/mm/sc-r5k.c
89
scache_size >> 10);
arch/mips/mm/sc-rm7k.c
142
for (i = 0; i < scache_size; i += sc_lsize)
arch/mips/mm/sc-rm7k.c
239
c->scache.waybit= __ffs(scache_size / c->scache.ways);
arch/mips/mm/sc-rm7k.c
240
c->scache.waysize = scache_size / c->scache.ways;
arch/mips/mm/sc-rm7k.c
241
c->scache.sets = scache_size / (c->scache.linesz * c->scache.ways);
arch/mips/mm/sc-rm7k.c
243
(scache_size >> 10), sc_lsize);