blob: f7bc6a6fbe494afce67aab61707d5172ddeddd74 [file] [log] [blame]
Cliff Wickman18129242008-06-02 08:56:14 -05001/*
2 * SGI UltraViolet TLB flush routines.
3 *
4 * (c) 2008 Cliff Wickman <cpw@sgi.com>, SGI.
5 *
6 * This code is released under the GNU General Public License version 2 or
7 * later.
8 */
9#include <linux/mc146818rtc.h>
10#include <linux/proc_fs.h>
11#include <linux/kernel.h>
12
Cliff Wickman18129242008-06-02 08:56:14 -050013#include <asm/mmu_context.h>
14#include <asm/idle.h>
15#include <asm/genapic.h>
16#include <asm/uv/uv_hub.h>
17#include <asm/uv/uv_mmrs.h>
18#include <asm/uv/uv_bau.h>
Cliff Wickmanb194b122008-06-12 08:23:48 -050019#include <asm/tsc.h>
Cliff Wickman18129242008-06-02 08:56:14 -050020
Cliff Wickmanb194b122008-06-12 08:23:48 -050021#include <mach_apic.h>
22
23static struct bau_control **uv_bau_table_bases __read_mostly;
24static int uv_bau_retry_limit __read_mostly;
25static int uv_nshift __read_mostly; /* position of pnode (which is nasid>>1) */
26static unsigned long uv_mmask __read_mostly;
Cliff Wickman18129242008-06-02 08:56:14 -050027
28char *status_table[] = {
29 "IDLE",
30 "ACTIVE",
31 "DESTINATION TIMEOUT",
32 "SOURCE TIMEOUT"
33};
34
35DEFINE_PER_CPU(struct ptc_stats, ptcstats);
36DEFINE_PER_CPU(struct bau_control, bau_control);
37
38/*
39 * Free a software acknowledge hardware resource by clearing its Pending
40 * bit. This will return a reply to the sender.
41 * If the message has timed out, a reply has already been sent by the
42 * hardware but the resource has not been released. In that case our
43 * clear of the Timeout bit (as well) will free the resource. No reply will
44 * be sent (the hardware will only do one reply per message).
45 */
Cliff Wickmanb194b122008-06-12 08:23:48 -050046static void uv_reply_to_message(int resource,
Cliff Wickman18129242008-06-02 08:56:14 -050047 struct bau_payload_queue_entry *msg,
48 struct bau_msg_status *msp)
49{
Cliff Wickmanb194b122008-06-12 08:23:48 -050050 unsigned long dw;
Cliff Wickman18129242008-06-02 08:56:14 -050051
Cliff Wickmanb194b122008-06-12 08:23:48 -050052 dw = (1 << (resource + UV_SW_ACK_NPENDING)) | (1 << resource);
Cliff Wickman18129242008-06-02 08:56:14 -050053 msg->replied_to = 1;
54 msg->sw_ack_vector = 0;
55 if (msp)
56 msp->seen_by.bits = 0;
Cliff Wickmanb194b122008-06-12 08:23:48 -050057 uv_write_local_mmr(UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE_ALIAS, dw);
Cliff Wickman18129242008-06-02 08:56:14 -050058 return;
59}
60
61/*
62 * Do all the things a cpu should do for a TLB shootdown message.
63 * Other cpu's may come here at the same time for this message.
64 */
Cliff Wickmanb194b122008-06-12 08:23:48 -050065static void uv_bau_process_message(struct bau_payload_queue_entry *msg,
Cliff Wickman18129242008-06-02 08:56:14 -050066 int msg_slot, int sw_ack_slot)
67{
68 int cpu;
69 unsigned long this_cpu_mask;
70 struct bau_msg_status *msp;
71
72 msp = __get_cpu_var(bau_control).msg_statuses + msg_slot;
73 cpu = uv_blade_processor_id();
74 msg->number_of_cpus =
75 uv_blade_nr_online_cpus(uv_node_to_blade_id(numa_node_id()));
76 this_cpu_mask = (unsigned long)1 << cpu;
77 if (msp->seen_by.bits & this_cpu_mask)
78 return;
79 atomic_or_long(&msp->seen_by.bits, this_cpu_mask);
80
81 if (msg->replied_to == 1)
82 return;
83
84 if (msg->address == TLB_FLUSH_ALL) {
85 local_flush_tlb();
86 __get_cpu_var(ptcstats).alltlb++;
87 } else {
88 __flush_tlb_one(msg->address);
89 __get_cpu_var(ptcstats).onetlb++;
90 }
91
92 __get_cpu_var(ptcstats).requestee++;
93
94 atomic_inc_short(&msg->acknowledge_count);
95 if (msg->number_of_cpus == msg->acknowledge_count)
96 uv_reply_to_message(sw_ack_slot, msg, msp);
97 return;
98}
99
100/*
101 * Examine the payload queue on all the distribution nodes to see
102 * which messages have not been seen, and which cpu(s) have not seen them.
103 *
104 * Returns the number of cpu's that have not responded.
105 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500106static int uv_examine_destinations(struct bau_target_nodemask *distribution)
Cliff Wickman18129242008-06-02 08:56:14 -0500107{
108 int sender;
109 int i;
110 int j;
111 int k;
112 int count = 0;
113 struct bau_control *bau_tablesp;
114 struct bau_payload_queue_entry *msg;
115 struct bau_msg_status *msp;
116
117 sender = smp_processor_id();
118 for (i = 0; i < (sizeof(struct bau_target_nodemask) * BITSPERBYTE);
119 i++) {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500120 if (!bau_node_isset(i, distribution))
121 continue;
122 bau_tablesp = uv_bau_table_bases[i];
123 for (msg = bau_tablesp->va_queue_first, j = 0;
124 j < DESTINATION_PAYLOAD_QUEUE_SIZE; msg++, j++) {
125 if ((msg->sending_cpu == sender) &&
126 (!msg->replied_to)) {
127 msp = bau_tablesp->msg_statuses + j;
128 printk(KERN_DEBUG
Cliff Wickman18129242008-06-02 08:56:14 -0500129 "blade %d: address:%#lx %d of %d, not cpu(s): ",
Cliff Wickmanb194b122008-06-12 08:23:48 -0500130 i, msg->address,
131 msg->acknowledge_count,
132 msg->number_of_cpus);
133 for (k = 0; k < msg->number_of_cpus;
134 k++) {
135 if (!((long)1 << k & msp->
136 seen_by.bits)) {
137 count++;
138 printk("%d ", k);
Cliff Wickman18129242008-06-02 08:56:14 -0500139 }
Cliff Wickman18129242008-06-02 08:56:14 -0500140 }
Cliff Wickmanb194b122008-06-12 08:23:48 -0500141 printk("\n");
Cliff Wickman18129242008-06-02 08:56:14 -0500142 }
143 }
144 }
145 return count;
146}
147
Cliff Wickmanb194b122008-06-12 08:23:48 -0500148/*
149 * wait for completion of a broadcast message
150 *
151 * return COMPLETE, RETRY or GIVEUP
152 */
153static int uv_wait_completion(struct bau_activation_descriptor *bau_desc,
154 unsigned long mmr_offset, int right_shift)
155{
156 int exams = 0;
157 long destination_timeouts = 0;
158 long source_timeouts = 0;
159 unsigned long descriptor_status;
160
161 while ((descriptor_status = (((unsigned long)
162 uv_read_local_mmr(mmr_offset) >>
163 right_shift) & UV_ACT_STATUS_MASK)) !=
164 DESC_STATUS_IDLE) {
165 if (descriptor_status == DESC_STATUS_SOURCE_TIMEOUT) {
166 source_timeouts++;
167 if (source_timeouts > SOURCE_TIMEOUT_LIMIT)
168 source_timeouts = 0;
169 __get_cpu_var(ptcstats).s_retry++;
170 return FLUSH_RETRY;
171 }
172 /*
173 * spin here looking for progress at the destinations
174 */
175 if (descriptor_status == DESC_STATUS_DESTINATION_TIMEOUT) {
176 destination_timeouts++;
177 if (destination_timeouts > DESTINATION_TIMEOUT_LIMIT) {
178 /*
179 * returns number of cpus not responding
180 */
181 if (uv_examine_destinations
182 (&bau_desc->distribution) == 0) {
183 __get_cpu_var(ptcstats).d_retry++;
184 return FLUSH_RETRY;
185 }
186 exams++;
187 if (exams >= uv_bau_retry_limit) {
188 printk(KERN_DEBUG
189 "uv_flush_tlb_others");
190 printk("giving up on cpu %d\n",
191 smp_processor_id());
192 return FLUSH_GIVEUP;
193 }
194 /*
195 * delays can hang the simulator
196 udelay(1000);
197 */
198 destination_timeouts = 0;
199 }
200 }
201 }
202 return FLUSH_COMPLETE;
203}
204
205/**
206 * uv_flush_send_and_wait
207 *
208 * Send a broadcast and wait for a broadcast message to complete.
209 *
210 * The cpumaskp mask contains the cpus the broadcast was sent to.
211 *
212 * Returns 1 if all remote flushing was done. The mask is zeroed.
213 * Returns 0 if some remote flushing remains to be done. The mask is left
214 * unchanged.
215 */
216int uv_flush_send_and_wait(int cpu, int this_blade,
217 struct bau_activation_descriptor *bau_desc, cpumask_t *cpumaskp)
218{
219 int completion_status = 0;
220 int right_shift;
221 int bit;
222 int blade;
223 int tries = 0;
224 unsigned long index;
225 unsigned long mmr_offset;
226 cycles_t time1;
227 cycles_t time2;
228
229 if (cpu < UV_CPUS_PER_ACT_STATUS) {
230 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
231 right_shift = cpu * UV_ACT_STATUS_SIZE;
232 } else {
233 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
234 right_shift =
235 ((cpu - UV_CPUS_PER_ACT_STATUS) * UV_ACT_STATUS_SIZE);
236 }
237 time1 = get_cycles();
238 do {
239 tries++;
240 index = ((unsigned long)
241 1 << UVH_LB_BAU_SB_ACTIVATION_CONTROL_PUSH_SHFT) | cpu;
242 uv_write_local_mmr(UVH_LB_BAU_SB_ACTIVATION_CONTROL, index);
243 completion_status = uv_wait_completion(bau_desc, mmr_offset,
244 right_shift);
245 } while (completion_status == FLUSH_RETRY);
246 time2 = get_cycles();
247 __get_cpu_var(ptcstats).sflush += (time2 - time1);
248 if (tries > 1)
249 __get_cpu_var(ptcstats).retriesok++;
250
251 if (completion_status == FLUSH_GIVEUP) {
252 /*
253 * Cause the caller to do an IPI-style TLB shootdown on
254 * the cpu's, all of which are still in the mask.
255 */
256 __get_cpu_var(ptcstats).ptc_i++;
257 return 0;
258 }
259
260 /*
261 * Success, so clear the remote cpu's from the mask so we don't
262 * use the IPI method of shootdown on them.
263 */
264 for_each_cpu_mask(bit, *cpumaskp) {
265 blade = uv_cpu_to_blade_id(bit);
266 if (blade == this_blade)
267 continue;
268 cpu_clear(bit, *cpumaskp);
269 }
270 if (!cpus_empty(*cpumaskp))
271 return 0;
272 return 1;
273}
274
Cliff Wickman18129242008-06-02 08:56:14 -0500275/**
276 * uv_flush_tlb_others - globally purge translation cache of a virtual
277 * address or all TLB's
278 * @cpumaskp: mask of all cpu's in which the address is to be removed
279 * @mm: mm_struct containing virtual address range
280 * @va: virtual address to be removed (or TLB_FLUSH_ALL for all TLB's on cpu)
281 *
282 * This is the entry point for initiating any UV global TLB shootdown.
283 *
284 * Purges the translation caches of all specified processors of the given
285 * virtual address, or purges all TLB's on specified processors.
286 *
287 * The caller has derived the cpumaskp from the mm_struct and has subtracted
288 * the local cpu from the mask. This function is called only if there
289 * are bits set in the mask. (e.g. flush_tlb_page())
290 *
291 * The cpumaskp is converted into a nodemask of the nodes containing
292 * the cpus.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500293 *
294 * Returns 1 if all remote flushing was done.
295 * Returns 0 if some remote flushing remains to be done.
Cliff Wickman18129242008-06-02 08:56:14 -0500296 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500297int uv_flush_tlb_others(cpumask_t *cpumaskp, struct mm_struct *mm,
298 unsigned long va)
Cliff Wickman18129242008-06-02 08:56:14 -0500299{
300 int i;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500301 int bit;
Cliff Wickman18129242008-06-02 08:56:14 -0500302 int blade;
303 int cpu;
Cliff Wickman18129242008-06-02 08:56:14 -0500304 int this_blade;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500305 int locals = 0;
Cliff Wickman18129242008-06-02 08:56:14 -0500306 struct bau_activation_descriptor *bau_desc;
Cliff Wickman18129242008-06-02 08:56:14 -0500307
308 cpu = uv_blade_processor_id();
309 this_blade = uv_numa_blade_id();
310 bau_desc = __get_cpu_var(bau_control).descriptor_base;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500311 bau_desc += UV_ITEMS_PER_DESCRIPTOR * cpu;
Cliff Wickman18129242008-06-02 08:56:14 -0500312
313 bau_nodes_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
314
315 i = 0;
316 for_each_cpu_mask(bit, *cpumaskp) {
317 blade = uv_cpu_to_blade_id(bit);
318 if (blade > (UV_DISTRIBUTION_SIZE - 1))
319 BUG();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500320 if (blade == this_blade) {
321 locals++;
Cliff Wickman18129242008-06-02 08:56:14 -0500322 continue;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500323 }
Cliff Wickman18129242008-06-02 08:56:14 -0500324 bau_node_set(blade, &bau_desc->distribution);
Cliff Wickman18129242008-06-02 08:56:14 -0500325 i++;
326 }
Cliff Wickmanb194b122008-06-12 08:23:48 -0500327 if (i == 0) {
328 /*
329 * no off_node flushing; return status for local node
330 */
331 if (locals)
332 return 0;
333 else
334 return 1;
335 }
Cliff Wickman18129242008-06-02 08:56:14 -0500336 __get_cpu_var(ptcstats).requestor++;
337 __get_cpu_var(ptcstats).ntargeted += i;
338
339 bau_desc->payload.address = va;
340 bau_desc->payload.sending_cpu = smp_processor_id();
341
Cliff Wickmanb194b122008-06-12 08:23:48 -0500342 return uv_flush_send_and_wait(cpu, this_blade, bau_desc, cpumaskp);
Cliff Wickman18129242008-06-02 08:56:14 -0500343}
344
345/*
346 * The BAU message interrupt comes here. (registered by set_intr_gate)
347 * See entry_64.S
348 *
349 * We received a broadcast assist message.
350 *
351 * Interrupts may have been disabled; this interrupt could represent
352 * the receipt of several messages.
353 *
354 * All cores/threads on this node get this interrupt.
355 * The last one to see it does the s/w ack.
356 * (the resource will not be freed until noninterruptable cpus see this
357 * interrupt; hardware will timeout the s/w ack and reply ERROR)
358 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500359void uv_bau_message_interrupt(struct pt_regs *regs)
Cliff Wickman18129242008-06-02 08:56:14 -0500360{
361 struct bau_payload_queue_entry *pqp;
362 struct bau_payload_queue_entry *msg;
363 struct pt_regs *old_regs = set_irq_regs(regs);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500364 cycles_t time1, time2;
Cliff Wickman18129242008-06-02 08:56:14 -0500365 int msg_slot;
366 int sw_ack_slot;
367 int fw;
368 int count = 0;
369 unsigned long local_pnode;
370
371 ack_APIC_irq();
372 exit_idle();
373 irq_enter();
374
Cliff Wickmanb194b122008-06-12 08:23:48 -0500375 time1 = get_cycles();
Cliff Wickman18129242008-06-02 08:56:14 -0500376
377 local_pnode = uv_blade_to_pnode(uv_numa_blade_id());
378
379 pqp = __get_cpu_var(bau_control).va_queue_first;
380 msg = __get_cpu_var(bau_control).bau_msg_head;
381 while (msg->sw_ack_vector) {
382 count++;
383 fw = msg->sw_ack_vector;
384 msg_slot = msg - pqp;
385 sw_ack_slot = ffs(fw) - 1;
386
387 uv_bau_process_message(msg, msg_slot, sw_ack_slot);
388
389 msg++;
390 if (msg > __get_cpu_var(bau_control).va_queue_last)
391 msg = __get_cpu_var(bau_control).va_queue_first;
392 __get_cpu_var(bau_control).bau_msg_head = msg;
393 }
394 if (!count)
395 __get_cpu_var(ptcstats).nomsg++;
396 else if (count > 1)
397 __get_cpu_var(ptcstats).multmsg++;
398
Cliff Wickmanb194b122008-06-12 08:23:48 -0500399 time2 = get_cycles();
400 __get_cpu_var(ptcstats).dflush += (time2 - time1);
Cliff Wickman18129242008-06-02 08:56:14 -0500401
402 irq_exit();
403 set_irq_regs(old_regs);
404 return;
405}
406
Cliff Wickmanb194b122008-06-12 08:23:48 -0500407static void uv_enable_timeouts(void)
Cliff Wickman18129242008-06-02 08:56:14 -0500408{
409 int i;
410 int blade;
411 int last_blade;
412 int pnode;
413 int cur_cpu = 0;
414 unsigned long apicid;
415
Cliff Wickman18129242008-06-02 08:56:14 -0500416 last_blade = -1;
417 for_each_online_node(i) {
418 blade = uv_node_to_blade_id(i);
419 if (blade == last_blade)
420 continue;
421 last_blade = blade;
422 apicid = per_cpu(x86_cpu_to_apicid, cur_cpu);
423 pnode = uv_blade_to_pnode(blade);
424 cur_cpu += uv_blade_nr_possible_cpus(i);
425 }
426 return;
427}
428
Cliff Wickmanb194b122008-06-12 08:23:48 -0500429static void *uv_ptc_seq_start(struct seq_file *file, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -0500430{
431 if (*offset < num_possible_cpus())
432 return offset;
433 return NULL;
434}
435
Cliff Wickmanb194b122008-06-12 08:23:48 -0500436static void *uv_ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -0500437{
438 (*offset)++;
439 if (*offset < num_possible_cpus())
440 return offset;
441 return NULL;
442}
443
Cliff Wickmanb194b122008-06-12 08:23:48 -0500444static void uv_ptc_seq_stop(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -0500445{
446}
447
448/*
449 * Display the statistics thru /proc
450 * data points to the cpu number
451 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500452static int uv_ptc_seq_show(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -0500453{
454 struct ptc_stats *stat;
455 int cpu;
456
457 cpu = *(loff_t *)data;
458
459 if (!cpu) {
460 seq_printf(file,
461 "# cpu requestor requestee one all sretry dretry ptc_i ");
462 seq_printf(file,
Cliff Wickmanb194b122008-06-12 08:23:48 -0500463 "sw_ack sflush dflush sok dnomsg dmult starget\n");
Cliff Wickman18129242008-06-02 08:56:14 -0500464 }
465 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
466 stat = &per_cpu(ptcstats, cpu);
467 seq_printf(file, "cpu %d %ld %ld %ld %ld %ld %ld %ld ",
468 cpu, stat->requestor,
469 stat->requestee, stat->onetlb, stat->alltlb,
470 stat->s_retry, stat->d_retry, stat->ptc_i);
471 seq_printf(file, "%lx %ld %ld %ld %ld %ld %ld\n",
472 uv_read_global_mmr64(uv_blade_to_pnode
473 (uv_cpu_to_blade_id(cpu)),
474 UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE),
Cliff Wickmanb194b122008-06-12 08:23:48 -0500475 stat->sflush, stat->dflush,
Cliff Wickman18129242008-06-02 08:56:14 -0500476 stat->retriesok, stat->nomsg,
477 stat->multmsg, stat->ntargeted);
478 }
479
480 return 0;
481}
482
483/*
484 * 0: display meaning of the statistics
485 * >0: retry limit
486 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500487static ssize_t uv_ptc_proc_write(struct file *file, const char __user *user,
Cliff Wickman18129242008-06-02 08:56:14 -0500488 size_t count, loff_t *data)
489{
490 long newmode;
491 char optstr[64];
492
493 if (copy_from_user(optstr, user, count))
494 return -EFAULT;
495 optstr[count - 1] = '\0';
496 if (strict_strtoul(optstr, 10, &newmode) < 0) {
497 printk(KERN_DEBUG "%s is invalid\n", optstr);
498 return -EINVAL;
499 }
500
501 if (newmode == 0) {
502 printk(KERN_DEBUG "# cpu: cpu number\n");
503 printk(KERN_DEBUG
504 "requestor: times this cpu was the flush requestor\n");
505 printk(KERN_DEBUG
506 "requestee: times this cpu was requested to flush its TLBs\n");
507 printk(KERN_DEBUG
508 "one: times requested to flush a single address\n");
509 printk(KERN_DEBUG
510 "all: times requested to flush all TLB's\n");
511 printk(KERN_DEBUG
512 "sretry: number of retries of source-side timeouts\n");
513 printk(KERN_DEBUG
514 "dretry: number of retries of destination-side timeouts\n");
515 printk(KERN_DEBUG
516 "ptc_i: times UV fell through to IPI-style flushes\n");
517 printk(KERN_DEBUG
518 "sw_ack: image of UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE\n");
519 printk(KERN_DEBUG
Cliff Wickmanb194b122008-06-12 08:23:48 -0500520 "sflush_us: cycles spent in uv_flush_tlb_others()\n");
Cliff Wickman18129242008-06-02 08:56:14 -0500521 printk(KERN_DEBUG
Cliff Wickmanb194b122008-06-12 08:23:48 -0500522 "dflush_us: cycles spent in handling flush requests\n");
Cliff Wickman18129242008-06-02 08:56:14 -0500523 printk(KERN_DEBUG "sok: successes on retry\n");
524 printk(KERN_DEBUG "dnomsg: interrupts with no message\n");
525 printk(KERN_DEBUG
526 "dmult: interrupts with multiple messages\n");
527 printk(KERN_DEBUG "starget: nodes targeted\n");
528 } else {
529 uv_bau_retry_limit = newmode;
530 printk(KERN_DEBUG "timeout retry limit:%d\n",
531 uv_bau_retry_limit);
532 }
533
534 return count;
535}
536
537static const struct seq_operations uv_ptc_seq_ops = {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500538 .start = uv_ptc_seq_start,
539 .next = uv_ptc_seq_next,
540 .stop = uv_ptc_seq_stop,
541 .show = uv_ptc_seq_show
Cliff Wickman18129242008-06-02 08:56:14 -0500542};
543
Cliff Wickmanb194b122008-06-12 08:23:48 -0500544static int uv_ptc_proc_open(struct inode *inode, struct file *file)
Cliff Wickman18129242008-06-02 08:56:14 -0500545{
546 return seq_open(file, &uv_ptc_seq_ops);
547}
548
549static const struct file_operations proc_uv_ptc_operations = {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500550 .open = uv_ptc_proc_open,
551 .read = seq_read,
552 .write = uv_ptc_proc_write,
553 .llseek = seq_lseek,
554 .release = seq_release,
Cliff Wickman18129242008-06-02 08:56:14 -0500555};
556
Cliff Wickmanb194b122008-06-12 08:23:48 -0500557static int __init uv_ptc_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -0500558{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500559 struct proc_dir_entry *proc_uv_ptc;
Cliff Wickman18129242008-06-02 08:56:14 -0500560
561 if (!is_uv_system())
562 return 0;
563
Cliff Wickmanb194b122008-06-12 08:23:48 -0500564 if (!proc_mkdir("sgi_uv", NULL))
Cliff Wickman18129242008-06-02 08:56:14 -0500565 return -EINVAL;
566
567 proc_uv_ptc = create_proc_entry(UV_PTC_BASENAME, 0444, NULL);
568 if (!proc_uv_ptc) {
569 printk(KERN_ERR "unable to create %s proc entry\n",
570 UV_PTC_BASENAME);
571 return -EINVAL;
572 }
573 proc_uv_ptc->proc_fops = &proc_uv_ptc_operations;
574 return 0;
575}
576
Cliff Wickmanb194b122008-06-12 08:23:48 -0500577/*
578 * begin the initialization of the per-blade control structures
579 */
580static struct bau_control * __init uv_table_bases_init(int blade, int node)
Cliff Wickman18129242008-06-02 08:56:14 -0500581{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500582 int i;
583 int *ip;
584 struct bau_msg_status *msp;
585 struct bau_control *bau_tablesp;
586
587 bau_tablesp =
588 kmalloc_node(sizeof(struct bau_control), GFP_KERNEL, node);
589 if (!bau_tablesp)
590 BUG();
591 bau_tablesp->msg_statuses =
592 kmalloc_node(sizeof(struct bau_msg_status) *
593 DESTINATION_PAYLOAD_QUEUE_SIZE, GFP_KERNEL, node);
594 if (!bau_tablesp->msg_statuses)
595 BUG();
596 for (i = 0, msp = bau_tablesp->msg_statuses;
597 i < DESTINATION_PAYLOAD_QUEUE_SIZE; i++, msp++) {
598 bau_cpubits_clear(&msp->seen_by, (int)
599 uv_blade_nr_possible_cpus(blade));
600 }
601 bau_tablesp->watching =
602 kmalloc_node(sizeof(int) * DESTINATION_NUM_RESOURCES,
603 GFP_KERNEL, node);
604 if (!bau_tablesp->watching)
605 BUG();
606 for (i = 0, ip = bau_tablesp->watching;
607 i < DESTINATION_PAYLOAD_QUEUE_SIZE; i++, ip++) {
608 *ip = 0;
609 }
610 uv_bau_table_bases[blade] = bau_tablesp;
611 return bau_tablesp;
Cliff Wickman18129242008-06-02 08:56:14 -0500612}
613
Cliff Wickmanb194b122008-06-12 08:23:48 -0500614/*
615 * finish the initialization of the per-blade control structures
616 */
617static void __init uv_table_bases_finish(int blade, int node, int cur_cpu,
618 struct bau_control *bau_tablesp,
619 struct bau_activation_descriptor *adp)
620{
621 int i;
622 struct bau_control *bcp;
623
624 for (i = cur_cpu; i < (cur_cpu + uv_blade_nr_possible_cpus(blade));
625 i++) {
626 bcp = (struct bau_control *)&per_cpu(bau_control, i);
627 bcp->bau_msg_head = bau_tablesp->va_queue_first;
628 bcp->va_queue_first = bau_tablesp->va_queue_first;
629 bcp->va_queue_last = bau_tablesp->va_queue_last;
630 bcp->watching = bau_tablesp->watching;
631 bcp->msg_statuses = bau_tablesp->msg_statuses;
632 bcp->descriptor_base = adp;
633 }
634}
635
636/*
637 * initialize the sending side's sending buffers
638 */
639static struct bau_activation_descriptor * __init
640uv_activation_descriptor_init(int node, int pnode)
641{
642 int i;
643 unsigned long pa;
644 unsigned long m;
645 unsigned long n;
646 unsigned long mmr_image;
647 struct bau_activation_descriptor *adp;
648 struct bau_activation_descriptor *ad2;
649
650 adp = (struct bau_activation_descriptor *)
651 kmalloc_node(16384, GFP_KERNEL, node);
652 if (!adp)
653 BUG();
654 pa = __pa((unsigned long)adp);
655 n = pa >> uv_nshift;
656 m = pa & uv_mmask;
657 mmr_image = uv_read_global_mmr64(pnode, UVH_LB_BAU_SB_DESCRIPTOR_BASE);
658 if (mmr_image)
659 uv_write_global_mmr64(pnode, (unsigned long)
660 UVH_LB_BAU_SB_DESCRIPTOR_BASE,
661 (n << UV_DESC_BASE_PNODE_SHIFT | m));
662 for (i = 0, ad2 = adp; i < UV_ACTIVATION_DESCRIPTOR_SIZE; i++, ad2++) {
663 memset(ad2, 0, sizeof(struct bau_activation_descriptor));
664 ad2->header.sw_ack_flag = 1;
665 ad2->header.base_dest_nodeid =
666 uv_blade_to_pnode(uv_cpu_to_blade_id(0));
667 ad2->header.command = UV_NET_ENDPOINT_INTD;
668 ad2->header.int_both = 1;
669 /*
670 * all others need to be set to zero:
671 * fairness chaining multilevel count replied_to
672 */
673 }
674 return adp;
675}
676
677/*
678 * initialize the destination side's receiving buffers
679 */
680static struct bau_payload_queue_entry * __init uv_payload_queue_init(int node,
681 int pnode, struct bau_control *bau_tablesp)
682{
683 char *cp;
684 struct bau_payload_queue_entry *pqp;
685
686 pqp = (struct bau_payload_queue_entry *)
687 kmalloc_node((DESTINATION_PAYLOAD_QUEUE_SIZE + 1) *
688 sizeof(struct bau_payload_queue_entry),
689 GFP_KERNEL, node);
690 if (!pqp)
691 BUG();
692 cp = (char *)pqp + 31;
693 pqp = (struct bau_payload_queue_entry *)(((unsigned long)cp >> 5) << 5);
694 bau_tablesp->va_queue_first = pqp;
695 uv_write_global_mmr64(pnode,
696 UVH_LB_BAU_INTD_PAYLOAD_QUEUE_FIRST,
697 ((unsigned long)pnode <<
698 UV_PAYLOADQ_PNODE_SHIFT) |
699 uv_physnodeaddr(pqp));
700 uv_write_global_mmr64(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_TAIL,
701 uv_physnodeaddr(pqp));
702 bau_tablesp->va_queue_last =
703 pqp + (DESTINATION_PAYLOAD_QUEUE_SIZE - 1);
704 uv_write_global_mmr64(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_LAST,
705 (unsigned long)
706 uv_physnodeaddr(bau_tablesp->va_queue_last));
707 memset(pqp, 0, sizeof(struct bau_payload_queue_entry) *
708 DESTINATION_PAYLOAD_QUEUE_SIZE);
709 return pqp;
710}
711
712/*
713 * Initialization of each UV blade's structures
714 */
715static int __init uv_init_blade(int blade, int node, int cur_cpu)
716{
717 int pnode;
718 unsigned long pa;
719 unsigned long apicid;
720 struct bau_activation_descriptor *adp;
721 struct bau_payload_queue_entry *pqp;
722 struct bau_control *bau_tablesp;
723
724 bau_tablesp = uv_table_bases_init(blade, node);
725 pnode = uv_blade_to_pnode(blade);
726 adp = uv_activation_descriptor_init(node, pnode);
727 pqp = uv_payload_queue_init(node, pnode, bau_tablesp);
728 uv_table_bases_finish(blade, node, cur_cpu, bau_tablesp, adp);
729 /*
730 * the below initialization can't be in firmware because the
731 * messaging IRQ will be determined by the OS
732 */
733 apicid = per_cpu(x86_cpu_to_apicid, cur_cpu);
734 pa = uv_read_global_mmr64(pnode, UVH_BAU_DATA_CONFIG);
735 if ((pa & 0xff) != UV_BAU_MESSAGE) {
736 uv_write_global_mmr64(pnode, UVH_BAU_DATA_CONFIG,
737 ((apicid << 32) | UV_BAU_MESSAGE));
738 }
739 return 0;
740}
Cliff Wickman18129242008-06-02 08:56:14 -0500741
742/*
743 * Initialization of BAU-related structures
744 */
Cliff Wickmanb194b122008-06-12 08:23:48 -0500745static int __init uv_bau_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -0500746{
Cliff Wickman18129242008-06-02 08:56:14 -0500747 int blade;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500748 int node;
Cliff Wickman18129242008-06-02 08:56:14 -0500749 int nblades;
Cliff Wickman18129242008-06-02 08:56:14 -0500750 int last_blade;
751 int cur_cpu = 0;
Cliff Wickman18129242008-06-02 08:56:14 -0500752
753 if (!is_uv_system())
754 return 0;
755
756 uv_bau_retry_limit = 1;
Cliff Wickman18129242008-06-02 08:56:14 -0500757 uv_nshift = uv_hub_info->n_val;
758 uv_mmask = ((unsigned long)1 << uv_hub_info->n_val) - 1;
759 nblades = 0;
760 last_blade = -1;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500761 for_each_online_node(node) {
762 blade = uv_node_to_blade_id(node);
Cliff Wickman18129242008-06-02 08:56:14 -0500763 if (blade == last_blade)
764 continue;
765 last_blade = blade;
766 nblades++;
767 }
Cliff Wickman18129242008-06-02 08:56:14 -0500768 uv_bau_table_bases = (struct bau_control **)
769 kmalloc(nblades * sizeof(struct bau_control *), GFP_KERNEL);
770 if (!uv_bau_table_bases)
771 BUG();
Cliff Wickman18129242008-06-02 08:56:14 -0500772 last_blade = -1;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500773 for_each_online_node(node) {
774 blade = uv_node_to_blade_id(node);
Cliff Wickman18129242008-06-02 08:56:14 -0500775 if (blade == last_blade)
776 continue;
777 last_blade = blade;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500778 uv_init_blade(blade, node, cur_cpu);
779 cur_cpu += uv_blade_nr_possible_cpus(blade);
Cliff Wickman18129242008-06-02 08:56:14 -0500780 }
Cliff Wickman18129242008-06-02 08:56:14 -0500781 set_intr_gate(UV_BAU_MESSAGE, uv_bau_message_intr1);
Cliff Wickman18129242008-06-02 08:56:14 -0500782 uv_enable_timeouts();
Cliff Wickman18129242008-06-02 08:56:14 -0500783 return 0;
784}
Cliff Wickman18129242008-06-02 08:56:14 -0500785__initcall(uv_bau_init);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500786__initcall(uv_ptc_init);