Lines Matching refs:size
43 static void rm7k_sc_wback_inv(unsigned long addr, unsigned long size)
47 pr_debug("rm7k_sc_wback_inv[%08lx,%08lx]", addr, size);
50 BUG_ON(size == 0);
52 blast_scache_range(addr, addr + size);
58 end = (addr + size - 1) & ~(tc_pagesize - 1);
67 static void rm7k_sc_inv(unsigned long addr, unsigned long size)
71 pr_debug("rm7k_sc_inv[%08lx,%08lx]", addr, size);
74 BUG_ON(size == 0);
76 blast_inv_scache_range(addr, addr + size);
82 end = (addr + size - 1) & ~(tc_pagesize - 1);
199 /* Fill size-multiple lines with a valid tag */
242 printk(KERN_INFO "Secondary cache size %dK, linesize %d bytes.\n",
261 * No efficient way to ask the hardware for the size of the tcache,
269 pr_info("Tertiary cache size %ldK.\n", (tcache_size >> 10));