dump_tlb.c (39fe5434cb9de5da40510028b17b96bc4eb312b3) | dump_tlb.c (542c1020ac1cbc2f50934086ad893384a2cbd233) |
---|---|
1/* 2 * Dump R4x00 TLB for debugging purposes. 3 * 4 * Copyright (C) 1994, 1995 by Waldorf Electronics, written by Ralf Baechle. 5 * Copyright (C) 1999 by Silicon Graphics, Inc. 6 */ 7#include <linux/kernel.h> 8#include <linux/mm.h> --- 11 unchanged lines hidden (view full) --- 20 case PM_64K: return "64kb"; 21 case PM_256K: return "256kb"; 22#ifndef CONFIG_CPU_VR41XX 23 case PM_1M: return "1Mb"; 24 case PM_4M: return "4Mb"; 25 case PM_16M: return "16Mb"; 26 case PM_64M: return "64Mb"; 27 case PM_256M: return "256Mb"; | 1/* 2 * Dump R4x00 TLB for debugging purposes. 3 * 4 * Copyright (C) 1994, 1995 by Waldorf Electronics, written by Ralf Baechle. 5 * Copyright (C) 1999 by Silicon Graphics, Inc. 6 */ 7#include <linux/kernel.h> 8#include <linux/mm.h> --- 11 unchanged lines hidden (view full) --- 20 case PM_64K: return "64kb"; 21 case PM_256K: return "256kb"; 22#ifndef CONFIG_CPU_VR41XX 23 case PM_1M: return "1Mb"; 24 case PM_4M: return "4Mb"; 25 case PM_16M: return "16Mb"; 26 case PM_64M: return "64Mb"; 27 case PM_256M: return "256Mb"; |
28 case PM_1G: return "1Gb"; |
|
28#endif 29 } 30 return ""; 31} 32 33#define BARRIER() \ 34 __asm__ __volatile__( \ 35 ".set\tnoreorder\n\t" \ --- 66 unchanged lines hidden --- | 29#endif 30 } 31 return ""; 32} 33 34#define BARRIER() \ 35 __asm__ __volatile__( \ 36 ".set\tnoreorder\n\t" \ --- 66 unchanged lines hidden --- |