Blame view

arch/mips/kernel/smtc-proc.c 2 KB
41c594ab6   Ralf Baechle   [MIPS] MT: Improv...
1
2
3
4
5
6
7
8
9
10
11
12
  /*
   * /proc hooks for SMTC kernel
   * Copyright (C) 2005 Mips Technologies, Inc
   */
  
  #include <linux/kernel.h>
  #include <linux/sched.h>
  #include <linux/cpumask.h>
  #include <linux/interrupt.h>
  
  #include <asm/cpu.h>
  #include <asm/processor.h>
60063497a   Arun Sharma   atomic: use <linu...
13
  #include <linux/atomic.h>
41c594ab6   Ralf Baechle   [MIPS] MT: Improv...
14
15
16
  #include <asm/system.h>
  #include <asm/hardirq.h>
  #include <asm/mmu_context.h>
41c594ab6   Ralf Baechle   [MIPS] MT: Improv...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  #include <asm/mipsregs.h>
  #include <asm/cacheflush.h>
  #include <linux/proc_fs.h>
  
  #include <asm/smtc_proc.h>
  
  /*
   * /proc diagnostic and statistics hooks
   */
  
  /*
   * Statistics gathered
   */
  unsigned long selfipis[NR_CPUS];
  
  struct smtc_cpu_proc smtc_cpu_stats[NR_CPUS];
  
  static struct proc_dir_entry *smtc_stats;
  
  atomic_t smtc_fpu_recoveries;
  
  static int proc_read_smtc(char *page, char **start, off_t off,
                            int count, int *eof, void *data)
  {
  	int totalen = 0;
  	int len;
  	int i;
  	extern unsigned long ebase;
  
  	len = sprintf(page, "SMTC Status Word: 0x%08x
  ", smtc_status);
  	totalen += len;
  	page += len;
  	len = sprintf(page, "Config7: 0x%08x
  ", read_c0_config7());
  	totalen += len;
  	page += len;
  	len = sprintf(page, "EBASE: 0x%08lx
  ", ebase);
  	totalen += len;
  	page += len;
  	len = sprintf(page, "Counter Interrupts taken per CPU (TC)
  ");
  	totalen += len;
  	page += len;
  	for (i=0; i < NR_CPUS; i++) {
  		len = sprintf(page, "%d: %ld
  ", i, smtc_cpu_stats[i].timerints);
  		totalen += len;
  		page += len;
  	}
  	len = sprintf(page, "Self-IPIs by CPU:
  ");
  	totalen += len;
  	page += len;
  	for(i = 0; i < NR_CPUS; i++) {
  		len = sprintf(page, "%d: %ld
  ", i, smtc_cpu_stats[i].selfipis);
  		totalen += len;
  		page += len;
  	}
  	len = sprintf(page, "%d Recoveries of \"stolen\" FPU
  ",
  	              atomic_read(&smtc_fpu_recoveries));
  	totalen += len;
  	page += len;
  
  	return totalen;
  }
  
  void init_smtc_stats(void)
  {
  	int i;
  
  	for (i=0; i<NR_CPUS; i++) {
  		smtc_cpu_stats[i].timerints = 0;
  		smtc_cpu_stats[i].selfipis = 0;
  	}
  
  	atomic_set(&smtc_fpu_recoveries, 0);
  
  	smtc_stats = create_proc_read_entry("smtc", 0444, NULL,
  	                                    proc_read_smtc, NULL);
  }