RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / kernel / spinlock_test.c
blobda61134dfc539917bef64d5fbb2caf6ae9b2570a
1 #include <linux/init.h>
2 #include <linux/kthread.h>
3 #include <linux/hrtimer.h>
4 #include <linux/fs.h>
5 #include <linux/debugfs.h>
6 #include <linux/module.h>
7 #include <linux/spinlock.h>
10 static int ss_get(void *data, u64 *val)
12 ktime_t start, finish;
13 int loops;
14 int cont;
15 DEFINE_RAW_SPINLOCK(ss_spin);
17 loops = 1000000;
18 cont = 1;
20 start = ktime_get();
22 while (cont) {
23 raw_spin_lock(&ss_spin);
24 loops--;
25 if (loops == 0)
26 cont = 0;
27 raw_spin_unlock(&ss_spin);
30 finish = ktime_get();
32 *val = ktime_us_delta(finish, start);
34 return 0;
37 DEFINE_SIMPLE_ATTRIBUTE(fops_ss, ss_get, NULL, "%llu\n");
41 struct spin_multi_state {
42 raw_spinlock_t lock;
43 atomic_t start_wait;
44 atomic_t enter_wait;
45 atomic_t exit_wait;
46 int loops;
49 struct spin_multi_per_thread {
50 struct spin_multi_state *state;
51 ktime_t start;
54 static int multi_other(void *data)
56 int loops;
57 int cont;
58 struct spin_multi_per_thread *pt = data;
59 struct spin_multi_state *s = pt->state;
61 loops = s->loops;
62 cont = 1;
64 atomic_dec(&s->enter_wait);
66 while (atomic_read(&s->enter_wait))
67 ; /* spin */
69 pt->start = ktime_get();
71 atomic_dec(&s->start_wait);
73 while (atomic_read(&s->start_wait))
74 ; /* spin */
76 while (cont) {
77 raw_spin_lock(&s->lock);
78 loops--;
79 if (loops == 0)
80 cont = 0;
81 raw_spin_unlock(&s->lock);
84 atomic_dec(&s->exit_wait);
85 while (atomic_read(&s->exit_wait))
86 ; /* spin */
87 return 0;
90 static int multi_get(void *data, u64 *val)
92 ktime_t finish;
93 struct spin_multi_state ms;
94 struct spin_multi_per_thread t1, t2;
96 ms.lock = __RAW_SPIN_LOCK_UNLOCKED("multi_get");
97 ms.loops = 1000000;
99 atomic_set(&ms.start_wait, 2);
100 atomic_set(&ms.enter_wait, 2);
101 atomic_set(&ms.exit_wait, 2);
102 t1.state = &ms;
103 t2.state = &ms;
105 kthread_run(multi_other, &t2, "multi_get");
107 multi_other(&t1);
109 finish = ktime_get();
111 *val = ktime_us_delta(finish, t1.start);
113 return 0;
116 DEFINE_SIMPLE_ATTRIBUTE(fops_multi, multi_get, NULL, "%llu\n");
119 extern struct dentry *mips_debugfs_dir;
120 static int __init spinlock_test(void)
122 struct dentry *d;
124 if (!mips_debugfs_dir)
125 return -ENODEV;
127 d = debugfs_create_file("spin_single", S_IRUGO,
128 mips_debugfs_dir, NULL,
129 &fops_ss);
130 if (!d)
131 return -ENOMEM;
133 d = debugfs_create_file("spin_multi", S_IRUGO,
134 mips_debugfs_dir, NULL,
135 &fops_multi);
136 if (!d)
137 return -ENOMEM;
139 return 0;
141 device_initcall(spinlock_test);