]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/platform/uv/tlb_uv.c
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / arch / x86 / platform / uv / tlb_uv.c
CommitLineData
1812924b
CW
1/*
2 * SGI UltraViolet TLB flush routines.
3 *
a26fd719 4 * (c) 2008-2014 Cliff Wickman <cpw@sgi.com>, SGI.
1812924b
CW
5 *
6 * This code is released under the GNU General Public License version 2 or
7 * later.
8 */
aef8f5b8 9#include <linux/seq_file.h>
1812924b 10#include <linux/proc_fs.h>
e8e5e8a8 11#include <linux/debugfs.h>
1812924b 12#include <linux/kernel.h>
5a0e3ad6 13#include <linux/slab.h>
ca444564 14#include <linux/delay.h>
1812924b 15
1812924b 16#include <asm/mmu_context.h>
bdbcdd48 17#include <asm/uv/uv.h>
1812924b 18#include <asm/uv/uv_mmrs.h>
b4c286e6 19#include <asm/uv/uv_hub.h>
1812924b 20#include <asm/uv/uv_bau.h>
7b6aa335 21#include <asm/apic.h>
b194b120 22#include <asm/tsc.h>
99dd8713 23#include <asm/irq_vectors.h>
b8f7fb13 24#include <asm/timer.h>
1812924b 25
8e3b21b6 26static struct bau_operations ops __ro_after_init;
4f059d51 27
12a6611f 28/* timeouts in nanoseconds (indexed by UVH_AGING_PRESCALE_SEL urgency7 30:28) */
b45e4c45 29static const int timeout_base_ns[] = {
12a6611f
CW
30 20,
31 160,
32 1280,
33 10240,
34 81920,
35 655360,
36 5242880,
37 167772160
38};
f073cc8f 39
12a6611f 40static int timeout_us;
1c532e00 41static bool nobau = true;
26ef8577 42static int nobau_perm;
12a6611f 43
e8e5e8a8 44/* tunables: */
f073cc8f
CW
45static int max_concurr = MAX_BAU_CONCURRENT;
46static int max_concurr_const = MAX_BAU_CONCURRENT;
47static int plugged_delay = PLUGGED_DELAY;
48static int plugsb4reset = PLUGSB4RESET;
8b6e511e 49static int giveup_limit = GIVEUP_LIMIT;
f073cc8f
CW
50static int timeoutsb4reset = TIMEOUTSB4RESET;
51static int ipi_reset_limit = IPI_RESET_LIMIT;
52static int complete_threshold = COMPLETE_THRESHOLD;
53static int congested_respns_us = CONGESTED_RESPONSE_US;
54static int congested_reps = CONGESTED_REPS;
8b6e511e 55static int disabled_period = DISABLED_PERIOD;
f073cc8f
CW
56
57static struct tunables tunables[] = {
67492c86
AB
58 {&max_concurr, MAX_BAU_CONCURRENT}, /* must be [0] */
59 {&plugged_delay, PLUGGED_DELAY},
60 {&plugsb4reset, PLUGSB4RESET},
61 {&timeoutsb4reset, TIMEOUTSB4RESET},
62 {&ipi_reset_limit, IPI_RESET_LIMIT},
63 {&complete_threshold, COMPLETE_THRESHOLD},
64 {&congested_respns_us, CONGESTED_RESPONSE_US},
65 {&congested_reps, CONGESTED_REPS},
66 {&disabled_period, DISABLED_PERIOD},
67 {&giveup_limit, GIVEUP_LIMIT}
f073cc8f
CW
68};
69
e8e5e8a8
CW
70static struct dentry *tunables_dir;
71static struct dentry *tunables_file;
b4c286e6 72
f073cc8f
CW
73/* these correspond to the statistics printed by ptc_seq_show() */
74static char *stat_description[] = {
75 "sent: number of shootdown messages sent",
76 "stime: time spent sending messages",
77 "numuvhubs: number of hubs targeted with shootdown",
78 "numuvhubs16: number times 16 or more hubs targeted",
79 "numuvhubs8: number times 8 or more hubs targeted",
80 "numuvhubs4: number times 4 or more hubs targeted",
81 "numuvhubs2: number times 2 or more hubs targeted",
82 "numuvhubs1: number times 1 hub targeted",
83 "numcpus: number of cpus targeted with shootdown",
84 "dto: number of destination timeouts",
85 "retries: destination timeout retries sent",
86 "rok: : destination timeouts successfully retried",
87 "resetp: ipi-style resource resets for plugs",
88 "resett: ipi-style resource resets for timeouts",
89 "giveup: fall-backs to ipi-style shootdowns",
90 "sto: number of source timeouts",
91 "bz: number of stay-busy's",
92 "throt: number times spun in throttle",
93 "swack: image of UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE",
94 "recv: shootdown messages received",
95 "rtime: time spent processing messages",
96 "all: shootdown all-tlb messages",
97 "one: shootdown one-tlb messages",
98 "mult: interrupts that found multiple messages",
99 "none: interrupts that found no messages",
100 "retry: number of retry messages processed",
101 "canc: number messages canceled by retries",
102 "nocan: number retries that found nothing to cancel",
103 "reset: number of ipi-style reset requests processed",
104 "rcan: number messages canceled by reset requests",
105 "disable: number times use of the BAU was disabled",
106 "enable: number times use of the BAU was re-enabled"
107};
108
1c532e00 109static int __init setup_bau(char *arg)
b8f7fb13 110{
1c532e00
AT
111 int result;
112
113 if (!arg)
114 return -EINVAL;
115
116 result = strtobool(arg, &nobau);
117 if (result)
118 return result;
119
120 /* we need to flip the logic here, so that bau=y sets nobau to false */
121 nobau = !nobau;
122
123 if (!nobau)
124 pr_info("UV BAU Enabled\n");
125 else
126 pr_info("UV BAU Disabled\n");
127
b8f7fb13
CW
128 return 0;
129}
1c532e00 130early_param("bau", setup_bau);
b4c286e6 131
b8f7fb13 132/* base pnode in this partition */
f073cc8f 133static int uv_base_pnode __read_mostly;
1812924b 134
dc163a41
IM
135static DEFINE_PER_CPU(struct ptc_stats, ptcstats);
136static DEFINE_PER_CPU(struct bau_control, bau_control);
b8f7fb13
CW
137static DEFINE_PER_CPU(cpumask_var_t, uv_flush_tlb_mask);
138
26ef8577
CW
139static void
140set_bau_on(void)
141{
142 int cpu;
143 struct bau_control *bcp;
144
145 if (nobau_perm) {
146 pr_info("BAU not initialized; cannot be turned on\n");
147 return;
148 }
1c532e00 149 nobau = false;
26ef8577
CW
150 for_each_present_cpu(cpu) {
151 bcp = &per_cpu(bau_control, cpu);
1c532e00 152 bcp->nobau = false;
26ef8577
CW
153 }
154 pr_info("BAU turned on\n");
155 return;
156}
157
158static void
159set_bau_off(void)
160{
161 int cpu;
162 struct bau_control *bcp;
163
1c532e00 164 nobau = true;
26ef8577
CW
165 for_each_present_cpu(cpu) {
166 bcp = &per_cpu(bau_control, cpu);
1c532e00 167 bcp->nobau = true;
26ef8577
CW
168 }
169 pr_info("BAU turned off\n");
170 return;
171}
172
9674f35b 173/*
b8f7fb13
CW
174 * Determine the first node on a uvhub. 'Nodes' are used for kernel
175 * memory allocation.
9674f35b 176 */
b8f7fb13 177static int __init uvhub_to_first_node(int uvhub)
9674f35b
CW
178{
179 int node, b;
180
181 for_each_online_node(node) {
182 b = uv_node_to_blade_id(node);
b8f7fb13 183 if (uvhub == b)
9674f35b
CW
184 return node;
185 }
b8f7fb13 186 return -1;
9674f35b
CW
187}
188
189/*
b8f7fb13 190 * Determine the apicid of the first cpu on a uvhub.
9674f35b 191 */
b8f7fb13 192static int __init uvhub_to_first_apicid(int uvhub)
9674f35b
CW
193{
194 int cpu;
195
196 for_each_present_cpu(cpu)
b8f7fb13 197 if (uvhub == uv_cpu_to_blade_id(cpu))
9674f35b
CW
198 return per_cpu(x86_cpu_to_apicid, cpu);
199 return -1;
200}
201
1812924b
CW
202/*
203 * Free a software acknowledge hardware resource by clearing its Pending
204 * bit. This will return a reply to the sender.
205 * If the message has timed out, a reply has already been sent by the
206 * hardware but the resource has not been released. In that case our
207 * clear of the Timeout bit (as well) will free the resource. No reply will
208 * be sent (the hardware will only do one reply per message).
209 */
c5d35d39
CW
210static void reply_to_message(struct msg_desc *mdp, struct bau_control *bcp,
211 int do_acknowledge)
1812924b 212{
b194b120 213 unsigned long dw;
f073cc8f 214 struct bau_pq_entry *msg;
1812924b 215
b8f7fb13 216 msg = mdp->msg;
c5d35d39 217 if (!msg->canceled && do_acknowledge) {
f073cc8f 218 dw = (msg->swack_vec << UV_SW_ACK_NPENDING) | msg->swack_vec;
21e3f12f 219 ops.write_l_sw_ack(dw);
b8f7fb13 220 }
1812924b 221 msg->replied_to = 1;
f073cc8f 222 msg->swack_vec = 0;
1812924b
CW
223}
224
225/*
b8f7fb13 226 * Process the receipt of a RETRY message
1812924b 227 */
f073cc8f
CW
228static void bau_process_retry_msg(struct msg_desc *mdp,
229 struct bau_control *bcp)
1812924b 230{
b8f7fb13
CW
231 int i;
232 int cancel_count = 0;
b8f7fb13
CW
233 unsigned long msg_res;
234 unsigned long mmr = 0;
f073cc8f
CW
235 struct bau_pq_entry *msg = mdp->msg;
236 struct bau_pq_entry *msg2;
237 struct ptc_stats *stat = bcp->statp;
1812924b 238
b8f7fb13
CW
239 stat->d_retries++;
240 /*
241 * cancel any message from msg+1 to the retry itself
242 */
243 for (msg2 = msg+1, i = 0; i < DEST_Q_SIZE; msg2++, i++) {
f073cc8f
CW
244 if (msg2 > mdp->queue_last)
245 msg2 = mdp->queue_first;
b8f7fb13
CW
246 if (msg2 == msg)
247 break;
248
f073cc8f 249 /* same conditions for cancellation as do_reset */
b8f7fb13 250 if ((msg2->replied_to == 0) && (msg2->canceled == 0) &&
f073cc8f
CW
251 (msg2->swack_vec) && ((msg2->swack_vec &
252 msg->swack_vec) == 0) &&
b8f7fb13
CW
253 (msg2->sending_cpu == msg->sending_cpu) &&
254 (msg2->msg_type != MSG_NOOP)) {
21e3f12f 255 mmr = ops.read_l_sw_ack();
f073cc8f 256 msg_res = msg2->swack_vec;
b8f7fb13
CW
257 /*
258 * This is a message retry; clear the resources held
259 * by the previous message only if they timed out.
260 * If it has not timed out we have an unexpected
261 * situation to report.
262 */
39847e7f 263 if (mmr & (msg_res << UV_SW_ACK_NPENDING)) {
f073cc8f 264 unsigned long mr;
b8f7fb13 265 /*
c5d35d39
CW
266 * Is the resource timed out?
267 * Make everyone ignore the cancelled message.
b8f7fb13
CW
268 */
269 msg2->canceled = 1;
270 stat->d_canceled++;
271 cancel_count++;
f073cc8f 272 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
21e3f12f 273 ops.write_l_sw_ack(mr);
39847e7f 274 }
b8f7fb13
CW
275 }
276 }
277 if (!cancel_count)
278 stat->d_nocanceled++;
279}
1812924b 280
b8f7fb13
CW
281/*
282 * Do all the things a cpu should do for a TLB shootdown message.
283 * Other cpu's may come here at the same time for this message.
284 */
c5d35d39
CW
285static void bau_process_message(struct msg_desc *mdp, struct bau_control *bcp,
286 int do_acknowledge)
b8f7fb13 287{
b8f7fb13 288 short socket_ack_count = 0;
f073cc8f
CW
289 short *sp;
290 struct atomic_short *asp;
291 struct ptc_stats *stat = bcp->statp;
292 struct bau_pq_entry *msg = mdp->msg;
b8f7fb13 293 struct bau_control *smaster = bcp->socket_master;
1812924b 294
b8f7fb13
CW
295 /*
296 * This must be a normal message, or retry of a normal message
297 */
1812924b
CW
298 if (msg->address == TLB_FLUSH_ALL) {
299 local_flush_tlb();
b8f7fb13 300 stat->d_alltlb++;
1812924b
CW
301 } else {
302 __flush_tlb_one(msg->address);
b8f7fb13 303 stat->d_onetlb++;
1812924b 304 }
b8f7fb13
CW
305 stat->d_requestee++;
306
307 /*
308 * One cpu on each uvhub has the additional job on a RETRY
309 * of releasing the resource held by the message that is
310 * being retried. That message is identified by sending
311 * cpu number.
312 */
313 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master)
f073cc8f 314 bau_process_retry_msg(mdp, bcp);
1812924b 315
b8f7fb13 316 /*
f073cc8f 317 * This is a swack message, so we have to reply to it.
b8f7fb13
CW
318 * Count each responding cpu on the socket. This avoids
319 * pinging the count's cache line back and forth between
320 * the sockets.
321 */
f073cc8f
CW
322 sp = &smaster->socket_acknowledge_count[mdp->msg_slot];
323 asp = (struct atomic_short *)sp;
324 socket_ack_count = atom_asr(1, asp);
b8f7fb13 325 if (socket_ack_count == bcp->cpus_in_socket) {
f073cc8f 326 int msg_ack_count;
b8f7fb13
CW
327 /*
328 * Both sockets dump their completed count total into
329 * the message's count.
330 */
8b6e511e 331 *sp = 0;
f073cc8f
CW
332 asp = (struct atomic_short *)&msg->acknowledge_count;
333 msg_ack_count = atom_asr(socket_ack_count, asp);
b8f7fb13
CW
334
335 if (msg_ack_count == bcp->cpus_in_uvhub) {
336 /*
337 * All cpus in uvhub saw it; reply
c5d35d39 338 * (unless we are in the UV2 workaround)
b8f7fb13 339 */
c5d35d39 340 reply_to_message(mdp, bcp, do_acknowledge);
b8f7fb13
CW
341 }
342 }
1812924b 343
b8f7fb13 344 return;
1812924b
CW
345}
346
347/*
485f07d3 348 * Determine the first cpu on a pnode.
b8f7fb13 349 */
485f07d3 350static int pnode_to_first_cpu(int pnode, struct bau_control *smaster)
b8f7fb13
CW
351{
352 int cpu;
485f07d3 353 struct hub_and_pnode *hpp;
354
355 for_each_present_cpu(cpu) {
356 hpp = &smaster->thp[cpu];
357 if (pnode == hpp->pnode)
b8f7fb13 358 return cpu;
485f07d3 359 }
b8f7fb13
CW
360 return -1;
361}
362
363/*
364 * Last resort when we get a large number of destination timeouts is
365 * to clear resources held by a given cpu.
366 * Do this with IPI so that all messages in the BAU message queue
f073cc8f 367 * can be identified by their nonzero swack_vec field.
1812924b 368 *
b8f7fb13
CW
369 * This is entered for a single cpu on the uvhub.
370 * The sender want's this uvhub to free a specific message's
f073cc8f 371 * swack resources.
1812924b 372 */
f073cc8f 373static void do_reset(void *ptr)
1812924b 374{
b4c286e6 375 int i;
f073cc8f
CW
376 struct bau_control *bcp = &per_cpu(bau_control, smp_processor_id());
377 struct reset_args *rap = (struct reset_args *)ptr;
378 struct bau_pq_entry *msg;
379 struct ptc_stats *stat = bcp->statp;
1812924b 380
b8f7fb13 381 stat->d_resets++;
b8f7fb13
CW
382 /*
383 * We're looking for the given sender, and
f073cc8f 384 * will free its swack resource.
b8f7fb13
CW
385 * If all cpu's finally responded after the timeout, its
386 * message 'replied_to' was set.
387 */
f073cc8f
CW
388 for (msg = bcp->queue_first, i = 0; i < DEST_Q_SIZE; msg++, i++) {
389 unsigned long msg_res;
390 /* do_reset: same conditions for cancellation as
391 bau_process_retry_msg() */
b8f7fb13
CW
392 if ((msg->replied_to == 0) &&
393 (msg->canceled == 0) &&
394 (msg->sending_cpu == rap->sender) &&
f073cc8f 395 (msg->swack_vec) &&
b8f7fb13 396 (msg->msg_type != MSG_NOOP)) {
f073cc8f
CW
397 unsigned long mmr;
398 unsigned long mr;
b8f7fb13
CW
399 /*
400 * make everyone else ignore this message
401 */
402 msg->canceled = 1;
b8f7fb13
CW
403 /*
404 * only reset the resource if it is still pending
405 */
21e3f12f 406 mmr = ops.read_l_sw_ack();
f073cc8f
CW
407 msg_res = msg->swack_vec;
408 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
b8f7fb13
CW
409 if (mmr & msg_res) {
410 stat->d_rcanceled++;
21e3f12f 411 ops.write_l_sw_ack(mr);
dc163a41 412 }
dc163a41
IM
413 }
414 }
b8f7fb13 415 return;
dc163a41
IM
416}
417
418/*
b8f7fb13
CW
419 * Use IPI to get all target uvhubs to release resources held by
420 * a given sending cpu number.
dc163a41 421 */
a456eaab 422static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp)
dc163a41 423{
485f07d3 424 int pnode;
425 int apnode;
f073cc8f 426 int maskbits;
485f07d3 427 int sender = bcp->cpu;
442d3924 428 cpumask_t *mask = bcp->uvhub_master->cpumask;
485f07d3 429 struct bau_control *smaster = bcp->socket_master;
b8f7fb13 430 struct reset_args reset_args;
dc163a41 431
b8f7fb13 432 reset_args.sender = sender;
020b37ac 433 cpumask_clear(mask);
b8f7fb13 434 /* find a single cpu for each uvhub in this distribution mask */
a456eaab 435 maskbits = sizeof(struct pnmask) * BITSPERBYTE;
485f07d3 436 /* each bit is a pnode relative to the partition base pnode */
437 for (pnode = 0; pnode < maskbits; pnode++) {
f073cc8f 438 int cpu;
485f07d3 439 if (!bau_uvhub_isset(pnode, distribution))
b194b120 440 continue;
485f07d3 441 apnode = pnode + bcp->partition_base_pnode;
442 cpu = pnode_to_first_cpu(apnode, smaster);
020b37ac 443 cpumask_set_cpu(cpu, mask);
1812924b 444 }
f073cc8f
CW
445
446 /* IPI all cpus; preemption is already disabled */
442d3924 447 smp_call_function_many(mask, do_reset, (void *)&reset_args, 1);
b8f7fb13
CW
448 return;
449}
450
20d1c86a
PZ
451/*
452 * Not to be confused with cycles_2_ns() from tsc.c; this gives a relative
453 * number, not an absolute. It converts a duration in cycles to a duration in
454 * ns.
455 */
456static inline unsigned long long cycles_2_ns(unsigned long long cyc)
b8f7fb13 457{
59eaef78 458 struct cyc2ns_data data;
b8f7fb13 459 unsigned long long ns;
f073cc8f 460
59eaef78
PZ
461 cyc2ns_read_begin(&data);
462 ns = mul_u64_u32_shr(cyc, data.cyc2ns_mul, data.cyc2ns_shift);
463 cyc2ns_read_end();
20d1c86a 464
20d1c86a
PZ
465 return ns;
466}
467
468/*
469 * The reverse of the above; converts a duration in ns to a duration in cycles.
a26fd719 470 */
20d1c86a
PZ
471static inline unsigned long long ns_2_cycles(unsigned long long ns)
472{
59eaef78 473 struct cyc2ns_data data;
20d1c86a
PZ
474 unsigned long long cyc;
475
59eaef78
PZ
476 cyc2ns_read_begin(&data);
477 cyc = (ns << data.cyc2ns_shift) / data.cyc2ns_mul;
478 cyc2ns_read_end();
20d1c86a 479
20d1c86a
PZ
480 return cyc;
481}
482
483static inline unsigned long cycles_2_us(unsigned long long cyc)
484{
485 return cycles_2_ns(cyc) / NSEC_PER_USEC;
486}
487
488static inline cycles_t sec_2_cycles(unsigned long sec)
489{
490 return ns_2_cycles(sec * NSEC_PER_SEC);
491}
492
493static inline unsigned long long usec_2_cycles(unsigned long usec)
494{
495 return ns_2_cycles(usec * NSEC_PER_USEC);
1812924b
CW
496}
497
b194b120 498/*
b8f7fb13
CW
499 * wait for all cpus on this hub to finish their sends and go quiet
500 * leaves uvhub_quiesce set so that no new broadcasts are started by
501 * bau_flush_send_and_wait()
502 */
f073cc8f 503static inline void quiesce_local_uvhub(struct bau_control *hmaster)
b8f7fb13 504{
f073cc8f 505 atom_asr(1, (struct atomic_short *)&hmaster->uvhub_quiesce);
b8f7fb13
CW
506}
507
508/*
509 * mark this quiet-requestor as done
510 */
f073cc8f 511static inline void end_uvhub_quiesce(struct bau_control *hmaster)
b8f7fb13 512{
f073cc8f
CW
513 atom_asr(-1, (struct atomic_short *)&hmaster->uvhub_quiesce);
514}
515
516static unsigned long uv1_read_status(unsigned long mmr_offset, int right_shift)
517{
518 unsigned long descriptor_status;
519
520 descriptor_status = uv_read_local_mmr(mmr_offset);
521 descriptor_status >>= right_shift;
522 descriptor_status &= UV_ACT_STATUS_MASK;
523 return descriptor_status;
b8f7fb13
CW
524}
525
526/*
527 * Wait for completion of a broadcast software ack message
528 * return COMPLETE, RETRY(PLUGGED or TIMEOUT) or GIVEUP
b194b120 529 */
2a919596 530static int uv1_wait_completion(struct bau_desc *bau_desc,
f073cc8f 531 struct bau_control *bcp, long try)
b194b120 532{
b194b120 533 unsigned long descriptor_status;
f073cc8f 534 cycles_t ttm;
dfeb28f0
AB
535 u64 mmr_offset = bcp->status_mmr;
536 int right_shift = bcp->status_index;
712157aa 537 struct ptc_stats *stat = bcp->statp;
b194b120 538
f073cc8f 539 descriptor_status = uv1_read_status(mmr_offset, right_shift);
b8f7fb13 540 /* spin on the status MMR, waiting for it to go idle */
f073cc8f 541 while ((descriptor_status != DS_IDLE)) {
b194b120 542 /*
2a919596
JS
543 * Our software ack messages may be blocked because
544 * there are no swack resources available. As long
545 * as none of them has timed out hardware will NACK
546 * our message and its state will stay IDLE.
b194b120 547 */
f073cc8f 548 if (descriptor_status == DS_SOURCE_TIMEOUT) {
b8f7fb13
CW
549 stat->s_stimeout++;
550 return FLUSH_GIVEUP;
f073cc8f 551 } else if (descriptor_status == DS_DESTINATION_TIMEOUT) {
2a919596 552 stat->s_dtimeout++;
f073cc8f 553 ttm = get_cycles();
2a919596
JS
554
555 /*
556 * Our retries may be blocked by all destination
557 * swack resources being consumed, and a timeout
558 * pending. In that case hardware returns the
559 * ERROR that looks like a destination timeout.
560 */
f073cc8f 561 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
2a919596
JS
562 bcp->conseccompletes = 0;
563 return FLUSH_RETRY_PLUGGED;
564 }
565
566 bcp->conseccompletes = 0;
567 return FLUSH_RETRY_TIMEOUT;
568 } else {
569 /*
570 * descriptor_status is still BUSY
571 */
572 cpu_relax();
573 }
f073cc8f 574 descriptor_status = uv1_read_status(mmr_offset, right_shift);
2a919596
JS
575 }
576 bcp->conseccompletes++;
577 return FLUSH_COMPLETE;
578}
579
f073cc8f 580/*
8b6e511e
CW
581 * UV2 could have an extra bit of status in the ACTIVATION_STATUS_2 register.
582 * But not currently used.
f073cc8f 583 */
a26fd719 584static unsigned long uv2_3_read_status(unsigned long offset, int rshft, int desc)
2a919596 585{
f148b41e 586 return ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1;
f073cc8f
CW
587}
588
c5d35d39
CW
589/*
590 * Entered when a bau descriptor has gone into a permanent busy wait because
591 * of a hardware bug.
592 * Workaround the bug.
593 */
5122daa0 594static int handle_uv2_busy(struct bau_control *bcp)
c5d35d39 595{
c5d35d39 596 struct ptc_stats *stat = bcp->statp;
c5d35d39
CW
597
598 stat->s_uv2_wars++;
8b6e511e
CW
599 bcp->busy = 1;
600 return FLUSH_GIVEUP;
c5d35d39
CW
601}
602
a26fd719 603static int uv2_3_wait_completion(struct bau_desc *bau_desc,
f073cc8f
CW
604 struct bau_control *bcp, long try)
605{
606 unsigned long descriptor_stat;
607 cycles_t ttm;
dfeb28f0
AB
608 u64 mmr_offset = bcp->status_mmr;
609 int right_shift = bcp->status_index;
8b6e511e 610 int desc = bcp->uvhub_cpu;
c5d35d39 611 long busy_reps = 0;
2a919596
JS
612 struct ptc_stats *stat = bcp->statp;
613
a26fd719 614 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
f073cc8f 615
2a919596 616 /* spin on the status MMR, waiting for it to go idle */
f073cc8f 617 while (descriptor_stat != UV2H_DESC_IDLE) {
8b6e511e
CW
618 if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT)) {
619 /*
620 * A h/w bug on the destination side may
621 * have prevented the message being marked
622 * pending, thus it doesn't get replied to
623 * and gets continually nacked until it times
624 * out with a SOURCE_TIMEOUT.
625 */
2a919596
JS
626 stat->s_stimeout++;
627 return FLUSH_GIVEUP;
f073cc8f 628 } else if (descriptor_stat == UV2H_DESC_DEST_TIMEOUT) {
8b6e511e
CW
629 ttm = get_cycles();
630
631 /*
632 * Our retries may be blocked by all destination
633 * swack resources being consumed, and a timeout
634 * pending. In that case hardware returns the
635 * ERROR that looks like a destination timeout.
636 * Without using the extended status we have to
637 * deduce from the short time that this was a
638 * strong nack.
639 */
640 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
641 bcp->conseccompletes = 0;
642 stat->s_plugged++;
643 /* FLUSH_RETRY_PLUGGED causes hang on boot */
644 return FLUSH_GIVEUP;
645 }
b8f7fb13 646 stat->s_dtimeout++;
b8f7fb13 647 bcp->conseccompletes = 0;
8b6e511e
CW
648 /* FLUSH_RETRY_TIMEOUT causes hang on boot */
649 return FLUSH_GIVEUP;
b8f7fb13 650 } else {
c5d35d39
CW
651 busy_reps++;
652 if (busy_reps > 1000000) {
653 /* not to hammer on the clock */
654 busy_reps = 0;
655 ttm = get_cycles();
a26fd719 656 if ((ttm - bcp->send_message) > bcp->timeout_interval)
c5d35d39 657 return handle_uv2_busy(bcp);
c5d35d39 658 }
b8f7fb13 659 /*
f073cc8f 660 * descriptor_stat is still BUSY
b8f7fb13
CW
661 */
662 cpu_relax();
b194b120 663 }
a26fd719 664 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
b194b120 665 }
b8f7fb13 666 bcp->conseccompletes++;
b194b120
CW
667 return FLUSH_COMPLETE;
668}
669
2f2a033f
AB
670/*
671 * Returns the status of current BAU message for cpu desc as a bit field
672 * [Error][Busy][Aux]
673 */
674static u64 read_status(u64 status_mmr, int index, int desc)
675{
676 u64 stat;
677
678 stat = ((read_lmmr(status_mmr) >> index) & UV_ACT_STATUS_MASK) << 1;
679 stat |= (read_lmmr(UVH_LB_BAU_SB_ACTIVATION_STATUS_2) >> desc) & 0x1;
680
681 return stat;
682}
683
684static int uv4_wait_completion(struct bau_desc *bau_desc,
685 struct bau_control *bcp, long try)
686{
687 struct ptc_stats *stat = bcp->statp;
688 u64 descriptor_stat;
689 u64 mmr = bcp->status_mmr;
690 int index = bcp->status_index;
691 int desc = bcp->uvhub_cpu;
692
693 descriptor_stat = read_status(mmr, index, desc);
694
695 /* spin on the status MMR, waiting for it to go idle */
696 while (descriptor_stat != UV2H_DESC_IDLE) {
697 switch (descriptor_stat) {
698 case UV2H_DESC_SOURCE_TIMEOUT:
699 stat->s_stimeout++;
700 return FLUSH_GIVEUP;
701
702 case UV2H_DESC_DEST_TIMEOUT:
703 stat->s_dtimeout++;
704 bcp->conseccompletes = 0;
705 return FLUSH_RETRY_TIMEOUT;
706
707 case UV2H_DESC_DEST_STRONG_NACK:
708 stat->s_plugged++;
709 bcp->conseccompletes = 0;
710 return FLUSH_RETRY_PLUGGED;
711
712 case UV2H_DESC_DEST_PUT_ERR:
713 bcp->conseccompletes = 0;
714 return FLUSH_GIVEUP;
715
716 default:
717 /* descriptor_stat is still BUSY */
718 cpu_relax();
719 }
720 descriptor_stat = read_status(mmr, index, desc);
721 }
722 bcp->conseccompletes++;
723 return FLUSH_COMPLETE;
724}
725
b8f7fb13 726/*
f073cc8f 727 * Our retries are blocked by all destination sw ack resources being
f6d8a566
CW
728 * in use, and a timeout is pending. In that case hardware immediately
729 * returns the ERROR that looks like a destination timeout.
730 */
f073cc8f
CW
731static void destination_plugged(struct bau_desc *bau_desc,
732 struct bau_control *bcp,
f6d8a566
CW
733 struct bau_control *hmaster, struct ptc_stats *stat)
734{
735 udelay(bcp->plugged_delay);
736 bcp->plugged_tries++;
f073cc8f 737
f6d8a566
CW
738 if (bcp->plugged_tries >= bcp->plugsb4reset) {
739 bcp->plugged_tries = 0;
f073cc8f 740
f6d8a566 741 quiesce_local_uvhub(hmaster);
f073cc8f 742
f6d8a566 743 spin_lock(&hmaster->queue_lock);
485f07d3 744 reset_with_ipi(&bau_desc->distribution, bcp);
f6d8a566 745 spin_unlock(&hmaster->queue_lock);
f073cc8f 746
f6d8a566 747 end_uvhub_quiesce(hmaster);
f073cc8f 748
f6d8a566
CW
749 bcp->ipi_attempts++;
750 stat->s_resets_plug++;
751 }
752}
753
f073cc8f
CW
754static void destination_timeout(struct bau_desc *bau_desc,
755 struct bau_control *bcp, struct bau_control *hmaster,
756 struct ptc_stats *stat)
f6d8a566 757{
f073cc8f 758 hmaster->max_concurr = 1;
f6d8a566
CW
759 bcp->timeout_tries++;
760 if (bcp->timeout_tries >= bcp->timeoutsb4reset) {
761 bcp->timeout_tries = 0;
f073cc8f 762
f6d8a566 763 quiesce_local_uvhub(hmaster);
f073cc8f 764
f6d8a566 765 spin_lock(&hmaster->queue_lock);
485f07d3 766 reset_with_ipi(&bau_desc->distribution, bcp);
f6d8a566 767 spin_unlock(&hmaster->queue_lock);
f073cc8f 768
f6d8a566 769 end_uvhub_quiesce(hmaster);
f073cc8f 770
f6d8a566
CW
771 bcp->ipi_attempts++;
772 stat->s_resets_timeout++;
773 }
774}
775
50fb55ac 776/*
8b6e511e
CW
777 * Stop all cpus on a uvhub from using the BAU for a period of time.
778 * This is reversed by check_enable.
50fb55ac 779 */
8b6e511e 780static void disable_for_period(struct bau_control *bcp, struct ptc_stats *stat)
50fb55ac 781{
8b6e511e
CW
782 int tcpu;
783 struct bau_control *tbcp;
784 struct bau_control *hmaster;
785 cycles_t tm1;
786
787 hmaster = bcp->uvhub_master;
788 spin_lock(&hmaster->disable_lock);
789 if (!bcp->baudisabled) {
50fb55ac 790 stat->s_bau_disabled++;
8b6e511e 791 tm1 = get_cycles();
50fb55ac
CW
792 for_each_present_cpu(tcpu) {
793 tbcp = &per_cpu(bau_control, tcpu);
8b6e511e
CW
794 if (tbcp->uvhub_master == hmaster) {
795 tbcp->baudisabled = 1;
796 tbcp->set_bau_on_time =
797 tm1 + bcp->disabled_period;
798 }
50fb55ac
CW
799 }
800 }
8b6e511e 801 spin_unlock(&hmaster->disable_lock);
50fb55ac
CW
802}
803
f073cc8f
CW
804static void count_max_concurr(int stat, struct bau_control *bcp,
805 struct bau_control *hmaster)
806{
807 bcp->plugged_tries = 0;
808 bcp->timeout_tries = 0;
809 if (stat != FLUSH_COMPLETE)
810 return;
811 if (bcp->conseccompletes <= bcp->complete_threshold)
812 return;
813 if (hmaster->max_concurr >= hmaster->max_concurr_const)
814 return;
815 hmaster->max_concurr++;
816}
817
818static void record_send_stats(cycles_t time1, cycles_t time2,
819 struct bau_control *bcp, struct ptc_stats *stat,
820 int completion_status, int try)
821{
822 cycles_t elapsed;
823
824 if (time2 > time1) {
825 elapsed = time2 - time1;
826 stat->s_time += elapsed;
827
828 if ((completion_status == FLUSH_COMPLETE) && (try == 1)) {
829 bcp->period_requests++;
830 bcp->period_time += elapsed;
dfc1ed1c 831 if ((elapsed > usec_2_cycles(bcp->cong_response_us)) &&
8b6e511e
CW
832 (bcp->period_requests > bcp->cong_reps) &&
833 ((bcp->period_time / bcp->period_requests) >
dfc1ed1c 834 usec_2_cycles(bcp->cong_response_us))) {
8b6e511e
CW
835 stat->s_congested++;
836 disable_for_period(bcp, stat);
837 }
f073cc8f
CW
838 }
839 } else
840 stat->s_requestor--;
841
842 if (completion_status == FLUSH_COMPLETE && try > 1)
843 stat->s_retriesok++;
8b6e511e 844 else if (completion_status == FLUSH_GIVEUP) {
f073cc8f 845 stat->s_giveup++;
8b6e511e
CW
846 if (get_cycles() > bcp->period_end)
847 bcp->period_giveups = 0;
848 bcp->period_giveups++;
849 if (bcp->period_giveups == 1)
850 bcp->period_end = get_cycles() + bcp->disabled_period;
851 if (bcp->period_giveups > bcp->giveup_limit) {
852 disable_for_period(bcp, stat);
853 stat->s_giveuplimit++;
854 }
855 }
f073cc8f
CW
856}
857
858/*
859 * Because of a uv1 hardware bug only a limited number of concurrent
860 * requests can be made.
861 */
862static void uv1_throttle(struct bau_control *hmaster, struct ptc_stats *stat)
863{
864 spinlock_t *lock = &hmaster->uvhub_lock;
865 atomic_t *v;
866
867 v = &hmaster->active_descriptor_count;
868 if (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr)) {
869 stat->s_throttles++;
870 do {
871 cpu_relax();
872 } while (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr));
873 }
874}
875
876/*
877 * Handle the completion status of a message send.
878 */
879static void handle_cmplt(int completion_status, struct bau_desc *bau_desc,
880 struct bau_control *bcp, struct bau_control *hmaster,
881 struct ptc_stats *stat)
882{
883 if (completion_status == FLUSH_RETRY_PLUGGED)
884 destination_plugged(bau_desc, bcp, hmaster, stat);
885 else if (completion_status == FLUSH_RETRY_TIMEOUT)
886 destination_timeout(bau_desc, bcp, hmaster, stat);
887}
888
889/*
b8f7fb13 890 * Send a broadcast and wait for it to complete.
b194b120 891 *
f6d8a566 892 * The flush_mask contains the cpus the broadcast is to be sent to including
b8f7fb13 893 * cpus that are on the local uvhub.
b194b120 894 *
450a007e
CW
895 * Returns 0 if all flushing represented in the mask was done.
896 * Returns 1 if it gives up entirely and the original cpu mask is to be
897 * returned to the kernel.
b194b120 898 */
5122daa0
CIK
899static int uv_flush_send_and_wait(struct cpumask *flush_mask,
900 struct bau_control *bcp,
901 struct bau_desc *bau_desc)
b194b120 902{
b8f7fb13 903 int seq_number = 0;
f073cc8f 904 int completion_stat = 0;
da87c937 905 int uv1 = 0;
b8f7fb13 906 long try = 0;
b4c286e6 907 unsigned long index;
b194b120
CW
908 cycles_t time1;
909 cycles_t time2;
712157aa 910 struct ptc_stats *stat = bcp->statp;
b8f7fb13 911 struct bau_control *hmaster = bcp->uvhub_master;
da87c937 912 struct uv1_bau_msg_header *uv1_hdr = NULL;
a26fd719 913 struct uv2_3_bau_msg_header *uv2_3_hdr = NULL;
b8f7fb13 914
491bd88c 915 if (bcp->uvhub_version == UV_BAU_V1) {
8b6e511e 916 uv1 = 1;
f073cc8f 917 uv1_throttle(hmaster, stat);
8b6e511e 918 }
f073cc8f 919
b8f7fb13
CW
920 while (hmaster->uvhub_quiesce)
921 cpu_relax();
b194b120 922
b194b120 923 time1 = get_cycles();
8b6e511e
CW
924 if (uv1)
925 uv1_hdr = &bau_desc->header.uv1_hdr;
926 else
a26fd719
CW
927 /* uv2 and uv3 */
928 uv2_3_hdr = &bau_desc->header.uv2_3_hdr;
8b6e511e 929
b194b120 930 do {
8b6e511e 931 if (try == 0) {
da87c937
CW
932 if (uv1)
933 uv1_hdr->msg_type = MSG_REGULAR;
934 else
a26fd719 935 uv2_3_hdr->msg_type = MSG_REGULAR;
b8f7fb13
CW
936 seq_number = bcp->message_number++;
937 } else {
da87c937
CW
938 if (uv1)
939 uv1_hdr->msg_type = MSG_RETRY;
940 else
a26fd719 941 uv2_3_hdr->msg_type = MSG_RETRY;
b8f7fb13
CW
942 stat->s_retry_messages++;
943 }
f073cc8f 944
da87c937
CW
945 if (uv1)
946 uv1_hdr->sequence = seq_number;
947 else
a26fd719 948 uv2_3_hdr->sequence = seq_number;
8b6e511e 949 index = (1UL << AS_PUSH_SHIFT) | bcp->uvhub_cpu;
b8f7fb13 950 bcp->send_message = get_cycles();
f073cc8f
CW
951
952 write_mmr_activation(index);
953
b8f7fb13 954 try++;
2620bbbf 955 completion_stat = ops.wait_completion(bau_desc, bcp, try);
f073cc8f
CW
956
957 handle_cmplt(completion_stat, bau_desc, bcp, hmaster, stat);
b8f7fb13 958
e8e5e8a8 959 if (bcp->ipi_attempts >= bcp->ipi_reset_limit) {
b8f7fb13 960 bcp->ipi_attempts = 0;
8b6e511e 961 stat->s_overipilimit++;
f073cc8f 962 completion_stat = FLUSH_GIVEUP;
b8f7fb13
CW
963 break;
964 }
965 cpu_relax();
f073cc8f
CW
966 } while ((completion_stat == FLUSH_RETRY_PLUGGED) ||
967 (completion_stat == FLUSH_RETRY_TIMEOUT));
968
b194b120 969 time2 = get_cycles();
f073cc8f
CW
970
971 count_max_concurr(completion_stat, bcp, hmaster);
972
b8f7fb13
CW
973 while (hmaster->uvhub_quiesce)
974 cpu_relax();
f073cc8f 975
b8f7fb13 976 atomic_dec(&hmaster->active_descriptor_count);
f073cc8f
CW
977
978 record_send_stats(time1, time2, bcp, stat, completion_stat, try);
979
980 if (completion_stat == FLUSH_GIVEUP)
c5d35d39 981 /* FLUSH_GIVEUP will fall back to using IPI's for tlb flush */
f073cc8f
CW
982 return 1;
983 return 0;
984}
985
986/*
8b6e511e
CW
987 * The BAU is disabled for this uvhub. When the disabled time period has
988 * expired re-enable it.
989 * Return 0 if it is re-enabled for all cpus on this uvhub.
f073cc8f
CW
990 */
991static int check_enable(struct bau_control *bcp, struct ptc_stats *stat)
992{
993 int tcpu;
994 struct bau_control *tbcp;
8b6e511e 995 struct bau_control *hmaster;
f073cc8f 996
8b6e511e
CW
997 hmaster = bcp->uvhub_master;
998 spin_lock(&hmaster->disable_lock);
999 if (bcp->baudisabled && (get_cycles() >= bcp->set_bau_on_time)) {
1000 stat->s_bau_reenabled++;
1001 for_each_present_cpu(tcpu) {
1002 tbcp = &per_cpu(bau_control, tcpu);
1003 if (tbcp->uvhub_master == hmaster) {
f073cc8f
CW
1004 tbcp->baudisabled = 0;
1005 tbcp->period_requests = 0;
1006 tbcp->period_time = 0;
8b6e511e 1007 tbcp->period_giveups = 0;
50fb55ac
CW
1008 }
1009 }
8b6e511e
CW
1010 spin_unlock(&hmaster->disable_lock);
1011 return 0;
f073cc8f 1012 }
8b6e511e 1013 spin_unlock(&hmaster->disable_lock);
f073cc8f
CW
1014 return -1;
1015}
1016
1017static void record_send_statistics(struct ptc_stats *stat, int locals, int hubs,
1018 int remotes, struct bau_desc *bau_desc)
1019{
1020 stat->s_requestor++;
1021 stat->s_ntargcpu += remotes + locals;
1022 stat->s_ntargremotes += remotes;
1023 stat->s_ntarglocals += locals;
1024
1025 /* uvhub statistics */
1026 hubs = bau_uvhub_weight(&bau_desc->distribution);
1027 if (locals) {
1028 stat->s_ntarglocaluvhub++;
1029 stat->s_ntargremoteuvhub += (hubs - 1);
e8e5e8a8 1030 } else
f073cc8f
CW
1031 stat->s_ntargremoteuvhub += hubs;
1032
1033 stat->s_ntarguvhub += hubs;
1034
1035 if (hubs >= 16)
1036 stat->s_ntarguvhub16++;
1037 else if (hubs >= 8)
1038 stat->s_ntarguvhub8++;
1039 else if (hubs >= 4)
1040 stat->s_ntarguvhub4++;
1041 else if (hubs >= 2)
1042 stat->s_ntarguvhub2++;
1043 else
1044 stat->s_ntarguvhub1++;
1045}
1046
1047/*
1048 * Translate a cpu mask to the uvhub distribution mask in the BAU
1049 * activation descriptor.
1050 */
1051static int set_distrib_bits(struct cpumask *flush_mask, struct bau_control *bcp,
1052 struct bau_desc *bau_desc, int *localsp, int *remotesp)
1053{
1054 int cpu;
1055 int pnode;
1056 int cnt = 0;
1057 struct hub_and_pnode *hpp;
1058
1059 for_each_cpu(cpu, flush_mask) {
1060 /*
1061 * The distribution vector is a bit map of pnodes, relative
1062 * to the partition base pnode (and the partition base nasid
1063 * in the header).
1064 * Translate cpu to pnode and hub using a local memory array.
1065 */
1066 hpp = &bcp->socket_master->thp[cpu];
1067 pnode = hpp->pnode - bcp->partition_base_pnode;
1068 bau_uvhub_set(pnode, &bau_desc->distribution);
1069 cnt++;
1070 if (hpp->uvhub == bcp->uvhub)
1071 (*localsp)++;
1072 else
1073 (*remotesp)++;
b194b120 1074 }
f073cc8f
CW
1075 if (!cnt)
1076 return 1;
450a007e 1077 return 0;
b194b120
CW
1078}
1079
f073cc8f
CW
1080/*
1081 * globally purge translation cache of a virtual address or all TLB's
bdbcdd48 1082 * @cpumask: mask of all cpu's in which the address is to be removed
1812924b 1083 * @mm: mm_struct containing virtual address range
57c4f430
AS
1084 * @start: start virtual address to be removed from TLB
1085 * @end: end virtual address to be remove from TLB
bdbcdd48 1086 * @cpu: the current cpu
1812924b
CW
1087 *
1088 * This is the entry point for initiating any UV global TLB shootdown.
1089 *
1090 * Purges the translation caches of all specified processors of the given
1091 * virtual address, or purges all TLB's on specified processors.
1092 *
bdbcdd48
TH
1093 * The caller has derived the cpumask from the mm_struct. This function
1094 * is called only if there are bits set in the mask. (e.g. flush_tlb_page())
1812924b 1095 *
b8f7fb13
CW
1096 * The cpumask is converted into a uvhubmask of the uvhubs containing
1097 * those cpus.
b194b120 1098 *
bdbcdd48
TH
1099 * Note that this function should be called with preemption disabled.
1100 *
1101 * Returns NULL if all remote flushing was done.
1102 * Returns pointer to cpumask if some remote flushing remains to be
1103 * done. The returned pointer is valid till preemption is re-enabled.
1812924b 1104 */
bdbcdd48 1105const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask,
a2055abe 1106 const struct flush_tlb_info *info)
1812924b 1107{
a2055abe 1108 unsigned int cpu = smp_processor_id();
e9be3644 1109 int locals = 0, remotes = 0, hubs = 0;
dc163a41 1110 struct bau_desc *bau_desc;
b8f7fb13
CW
1111 struct cpumask *flush_mask;
1112 struct ptc_stats *stat;
1113 struct bau_control *bcp;
e9be3644 1114 unsigned long descriptor_status, status, address;
bdbcdd48 1115
b8f7fb13 1116 bcp = &per_cpu(bau_control, cpu);
26ef8577
CW
1117
1118 if (bcp->nobau)
1119 return cpumask;
50fb55ac 1120
3eae49ca 1121 stat = bcp->statp;
1122 stat->s_enters++;
1123
8b6e511e
CW
1124 if (bcp->busy) {
1125 descriptor_status =
1126 read_lmmr(UVH_LB_BAU_SB_ACTIVATION_STATUS_0);
1127 status = ((descriptor_status >> (bcp->uvhub_cpu *
1128 UV_ACT_STATUS_SIZE)) & UV_ACT_STATUS_MASK) << 1;
1129 if (status == UV2H_DESC_BUSY)
1130 return cpumask;
1131 bcp->busy = 0;
1132 }
1133
50fb55ac
CW
1134 /* bau was disabled due to slow response */
1135 if (bcp->baudisabled) {
8b6e511e
CW
1136 if (check_enable(bcp, stat)) {
1137 stat->s_ipifordisabled++;
f073cc8f 1138 return cpumask;
8b6e511e 1139 }
50fb55ac 1140 }
e8e5e8a8 1141
b8f7fb13
CW
1142 /*
1143 * Each sending cpu has a per-cpu mask which it fills from the caller's
450a007e
CW
1144 * cpu mask. All cpus are converted to uvhubs and copied to the
1145 * activation descriptor.
b8f7fb13
CW
1146 */
1147 flush_mask = (struct cpumask *)per_cpu(uv_flush_tlb_mask, cpu);
450a007e 1148 /* don't actually do a shootdown of the local cpu */
b8f7fb13 1149 cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu));
f073cc8f 1150
020b37ac 1151 if (cpumask_test_cpu(cpu, cpumask))
450a007e 1152 stat->s_ntargself++;
1812924b 1153
b8f7fb13 1154 bau_desc = bcp->descriptor_base;
8b6e511e 1155 bau_desc += (ITEMS_PER_DESC * bcp->uvhub_cpu);
b8f7fb13 1156 bau_uvhubs_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
f073cc8f 1157 if (set_distrib_bits(flush_mask, bcp, bau_desc, &locals, &remotes))
450a007e 1158 return NULL;
450a007e 1159
f073cc8f 1160 record_send_statistics(stat, locals, hubs, remotes, bau_desc);
1812924b 1161
a2055abe
AL
1162 if (!info->end || (info->end - info->start) <= PAGE_SIZE)
1163 address = info->start;
57c4f430 1164 else
e9be3644
AB
1165 address = TLB_FLUSH_ALL;
1166
1167 switch (bcp->uvhub_version) {
1168 case UV_BAU_V1:
1169 case UV_BAU_V2:
1170 case UV_BAU_V3:
1171 bau_desc->payload.uv1_2_3.address = address;
1172 bau_desc->payload.uv1_2_3.sending_cpu = cpu;
1173 break;
1174 case UV_BAU_V4:
1175 bau_desc->payload.uv4.address = address;
1176 bau_desc->payload.uv4.sending_cpu = cpu;
1177 bau_desc->payload.uv4.qualifier = BAU_DESC_QUALIFIER;
1178 break;
1179 }
1180
b8f7fb13 1181 /*
450a007e
CW
1182 * uv_flush_send_and_wait returns 0 if all cpu's were messaged,
1183 * or 1 if it gave up and the original cpumask should be returned.
b8f7fb13 1184 */
8b6e511e 1185 if (!uv_flush_send_and_wait(flush_mask, bcp, bau_desc))
450a007e
CW
1186 return NULL;
1187 else
1188 return cpumask;
1812924b
CW
1189}
1190
c5d35d39 1191/*
8b6e511e
CW
1192 * Search the message queue for any 'other' unprocessed message with the
1193 * same software acknowledge resource bit vector as the 'msg' message.
c5d35d39 1194 */
5122daa0
CIK
1195static struct bau_pq_entry *find_another_by_swack(struct bau_pq_entry *msg,
1196 struct bau_control *bcp)
c5d35d39
CW
1197{
1198 struct bau_pq_entry *msg_next = msg + 1;
8b6e511e 1199 unsigned char swack_vec = msg->swack_vec;
c5d35d39
CW
1200
1201 if (msg_next > bcp->queue_last)
1202 msg_next = bcp->queue_first;
8b6e511e
CW
1203 while (msg_next != msg) {
1204 if ((msg_next->canceled == 0) && (msg_next->replied_to == 0) &&
1205 (msg_next->swack_vec == swack_vec))
c5d35d39
CW
1206 return msg_next;
1207 msg_next++;
1208 if (msg_next > bcp->queue_last)
1209 msg_next = bcp->queue_first;
1210 }
1211 return NULL;
1212}
1213
1214/*
1215 * UV2 needs to work around a bug in which an arriving message has not
1216 * set a bit in the UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE register.
1217 * Such a message must be ignored.
1218 */
b45e4c45 1219static void process_uv2_message(struct msg_desc *mdp, struct bau_control *bcp)
c5d35d39
CW
1220{
1221 unsigned long mmr_image;
1222 unsigned char swack_vec;
1223 struct bau_pq_entry *msg = mdp->msg;
1224 struct bau_pq_entry *other_msg;
1225
21e3f12f 1226 mmr_image = ops.read_l_sw_ack();
c5d35d39
CW
1227 swack_vec = msg->swack_vec;
1228
1229 if ((swack_vec & mmr_image) == 0) {
1230 /*
1231 * This message was assigned a swack resource, but no
1232 * reserved acknowlegment is pending.
1233 * The bug has prevented this message from setting the MMR.
c5d35d39 1234 */
c5d35d39 1235 /*
8b6e511e
CW
1236 * Some message has set the MMR 'pending' bit; it might have
1237 * been another message. Look for that message.
c5d35d39 1238 */
8b6e511e
CW
1239 other_msg = find_another_by_swack(msg, bcp);
1240 if (other_msg) {
1241 /*
1242 * There is another. Process this one but do not
1243 * ack it.
1244 */
1245 bau_process_message(mdp, bcp, 0);
1246 /*
1247 * Let the natural processing of that other message
1248 * acknowledge it. Don't get the processing of sw_ack's
1249 * out of order.
1250 */
1251 return;
1252 }
c5d35d39
CW
1253 }
1254
1255 /*
8b6e511e
CW
1256 * Either the MMR shows this one pending a reply or there is no
1257 * other message using this sw_ack, so it is safe to acknowledge it.
c5d35d39
CW
1258 */
1259 bau_process_message(mdp, bcp, 1);
1260
1261 return;
1262}
1263
1812924b
CW
1264/*
1265 * The BAU message interrupt comes here. (registered by set_intr_gate)
1266 * See entry_64.S
1267 *
1268 * We received a broadcast assist message.
1269 *
b8f7fb13 1270 * Interrupts are disabled; this interrupt could represent
1812924b
CW
1271 * the receipt of several messages.
1272 *
b8f7fb13
CW
1273 * All cores/threads on this hub get this interrupt.
1274 * The last one to see it does the software ack.
1812924b 1275 * (the resource will not be freed until noninterruptable cpus see this
b8f7fb13 1276 * interrupt; hardware may timeout the s/w ack and reply ERROR)
1812924b 1277 */
b194b120 1278void uv_bau_message_interrupt(struct pt_regs *regs)
1812924b 1279{
1812924b 1280 int count = 0;
b8f7fb13 1281 cycles_t time_start;
f073cc8f 1282 struct bau_pq_entry *msg;
b8f7fb13
CW
1283 struct bau_control *bcp;
1284 struct ptc_stats *stat;
1285 struct msg_desc msgdesc;
1286
88ed9dd7 1287 ack_APIC_irq();
b8f7fb13 1288 time_start = get_cycles();
f073cc8f 1289
b8f7fb13 1290 bcp = &per_cpu(bau_control, smp_processor_id());
712157aa 1291 stat = bcp->statp;
f073cc8f
CW
1292
1293 msgdesc.queue_first = bcp->queue_first;
1294 msgdesc.queue_last = bcp->queue_last;
1295
b8f7fb13 1296 msg = bcp->bau_msg_head;
f073cc8f 1297 while (msg->swack_vec) {
1812924b 1298 count++;
f073cc8f
CW
1299
1300 msgdesc.msg_slot = msg - msgdesc.queue_first;
b8f7fb13 1301 msgdesc.msg = msg;
491bd88c 1302 if (bcp->uvhub_version == UV_BAU_V2)
c5d35d39
CW
1303 process_uv2_message(&msgdesc, bcp);
1304 else
a26fd719 1305 /* no error workaround for uv1 or uv3 */
c5d35d39 1306 bau_process_message(&msgdesc, bcp, 1);
f073cc8f 1307
1812924b 1308 msg++;
f073cc8f
CW
1309 if (msg > msgdesc.queue_last)
1310 msg = msgdesc.queue_first;
b8f7fb13 1311 bcp->bau_msg_head = msg;
1812924b 1312 }
b8f7fb13 1313 stat->d_time += (get_cycles() - time_start);
1812924b 1314 if (!count)
b8f7fb13 1315 stat->d_nomsg++;
1812924b 1316 else if (count > 1)
b8f7fb13 1317 stat->d_multmsg++;
1812924b
CW
1318}
1319
c4c4688f 1320/*
f073cc8f 1321 * Each target uvhub (i.e. a uvhub that has cpu's) needs to have
c4c4688f
CW
1322 * shootdown message timeouts enabled. The timeout does not cause
1323 * an interrupt, but causes an error message to be returned to
1324 * the sender.
1325 */
f073cc8f 1326static void __init enable_timeouts(void)
1812924b 1327{
b8f7fb13
CW
1328 int uvhub;
1329 int nuvhubs;
1812924b 1330 int pnode;
c4c4688f 1331 unsigned long mmr_image;
1812924b 1332
b8f7fb13 1333 nuvhubs = uv_num_possible_blades();
1812924b 1334
b8f7fb13
CW
1335 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
1336 if (!uv_blade_nr_possible_cpus(uvhub))
1812924b 1337 continue;
c4c4688f 1338
b8f7fb13 1339 pnode = uv_blade_to_pnode(uvhub);
f073cc8f 1340 mmr_image = read_mmr_misc_control(pnode);
c4c4688f
CW
1341 /*
1342 * Set the timeout period and then lock it in, in three
1343 * steps; captures and locks in the period.
1344 *
1345 * To program the period, the SOFT_ACK_MODE must be off.
1346 */
f073cc8f
CW
1347 mmr_image &= ~(1L << SOFTACK_MSHIFT);
1348 write_mmr_misc_control(pnode, mmr_image);
c4c4688f
CW
1349 /*
1350 * Set the 4-bit period.
1351 */
f073cc8f
CW
1352 mmr_image &= ~((unsigned long)0xf << SOFTACK_PSHIFT);
1353 mmr_image |= (SOFTACK_TIMEOUT_PERIOD << SOFTACK_PSHIFT);
1354 write_mmr_misc_control(pnode, mmr_image);
c4c4688f 1355 /*
2a919596 1356 * UV1:
c4c4688f
CW
1357 * Subsequent reversals of the timebase bit (3) cause an
1358 * immediate timeout of one or all INTD resources as
1359 * indicated in bits 2:0 (7 causes all of them to timeout).
1360 */
f073cc8f 1361 mmr_image |= (1L << SOFTACK_MSHIFT);
2a919596 1362 if (is_uv2_hub()) {
a26fd719 1363 /* do not touch the legacy mode bit */
8b6e511e
CW
1364 /* hw bug workaround; do not use extended status */
1365 mmr_image &= ~(1L << UV2_EXT_SHFT);
a26fd719
CW
1366 } else if (is_uv3_hub()) {
1367 mmr_image &= ~(1L << PREFETCH_HINT_SHFT);
1368 mmr_image |= (1L << SB_STATUS_SHFT);
2a919596 1369 }
f073cc8f 1370 write_mmr_misc_control(pnode, mmr_image);
1812924b 1371 }
1812924b
CW
1372}
1373
f073cc8f 1374static void *ptc_seq_start(struct seq_file *file, loff_t *offset)
1812924b
CW
1375{
1376 if (*offset < num_possible_cpus())
1377 return offset;
1378 return NULL;
1379}
1380
f073cc8f 1381static void *ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
1812924b
CW
1382{
1383 (*offset)++;
1384 if (*offset < num_possible_cpus())
1385 return offset;
1386 return NULL;
1387}
1388
f073cc8f 1389static void ptc_seq_stop(struct seq_file *file, void *data)
1812924b
CW
1390{
1391}
1392
1393/*
f073cc8f 1394 * Display the statistics thru /proc/sgi_uv/ptc_statistics
b8f7fb13 1395 * 'data' points to the cpu number
f073cc8f 1396 * Note: see the descriptions in stat_description[].
1812924b 1397 */
f073cc8f 1398static int ptc_seq_show(struct seq_file *file, void *data)
1812924b
CW
1399{
1400 struct ptc_stats *stat;
26ef8577 1401 struct bau_control *bcp;
1812924b
CW
1402 int cpu;
1403
1404 cpu = *(loff_t *)data;
1812924b 1405 if (!cpu) {
3736708f
RV
1406 seq_puts(file,
1407 "# cpu bauoff sent stime self locals remotes ncpus localhub ");
1408 seq_puts(file, "remotehub numuvhubs numuvhubs16 numuvhubs8 ");
1409 seq_puts(file,
1410 "numuvhubs4 numuvhubs2 numuvhubs1 dto snacks retries ");
1411 seq_puts(file,
1412 "rok resetp resett giveup sto bz throt disable ");
1413 seq_puts(file,
1414 "enable wars warshw warwaits enters ipidis plugged ");
1415 seq_puts(file,
1416 "ipiover glim cong swack recv rtime all one mult ");
1417 seq_puts(file, "none retry canc nocan reset rcan\n");
1812924b
CW
1418 }
1419 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
26ef8577 1420 bcp = &per_cpu(bau_control, cpu);
fa2a79ce
JC
1421 if (bcp->nobau) {
1422 seq_printf(file, "cpu %d bau disabled\n", cpu);
1423 return 0;
1424 }
26ef8577 1425 stat = bcp->statp;
b8f7fb13
CW
1426 /* source side statistics */
1427 seq_printf(file,
8b6e511e 1428 "cpu %d %d %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
26ef8577
CW
1429 cpu, bcp->nobau, stat->s_requestor,
1430 cycles_2_us(stat->s_time),
450a007e
CW
1431 stat->s_ntargself, stat->s_ntarglocals,
1432 stat->s_ntargremotes, stat->s_ntargcpu,
1433 stat->s_ntarglocaluvhub, stat->s_ntargremoteuvhub,
1434 stat->s_ntarguvhub, stat->s_ntarguvhub16);
b54bd9be 1435 seq_printf(file, "%ld %ld %ld %ld %ld %ld ",
b8f7fb13
CW
1436 stat->s_ntarguvhub8, stat->s_ntarguvhub4,
1437 stat->s_ntarguvhub2, stat->s_ntarguvhub1,
b54bd9be 1438 stat->s_dtimeout, stat->s_strongnacks);
8b6e511e 1439 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld ",
b8f7fb13
CW
1440 stat->s_retry_messages, stat->s_retriesok,
1441 stat->s_resets_plug, stat->s_resets_timeout,
1442 stat->s_giveup, stat->s_stimeout,
8b6e511e
CW
1443 stat->s_busy, stat->s_throttles);
1444 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
1445 stat->s_bau_disabled, stat->s_bau_reenabled,
1446 stat->s_uv2_wars, stat->s_uv2_wars_hw,
1447 stat->s_uv2_war_waits, stat->s_enters,
1448 stat->s_ipifordisabled, stat->s_plugged,
1449 stat->s_overipilimit, stat->s_giveuplimit,
1450 stat->s_congested);
e8e5e8a8 1451
b8f7fb13
CW
1452 /* destination side statistics */
1453 seq_printf(file,
8b6e511e 1454 "%lx %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld\n",
21e3f12f 1455 ops.read_g_sw_ack(uv_cpu_to_pnode(cpu)),
b8f7fb13
CW
1456 stat->d_requestee, cycles_2_us(stat->d_time),
1457 stat->d_alltlb, stat->d_onetlb, stat->d_multmsg,
1458 stat->d_nomsg, stat->d_retries, stat->d_canceled,
1459 stat->d_nocanceled, stat->d_resets,
1460 stat->d_rcanceled);
1812924b 1461 }
1812924b
CW
1462 return 0;
1463}
1464
e8e5e8a8
CW
1465/*
1466 * Display the tunables thru debugfs
1467 */
1468static ssize_t tunables_read(struct file *file, char __user *userbuf,
f073cc8f 1469 size_t count, loff_t *ppos)
e8e5e8a8 1470{
b365a85c 1471 char *buf;
e8e5e8a8
CW
1472 int ret;
1473
8b6e511e
CW
1474 buf = kasprintf(GFP_KERNEL, "%s %s %s\n%d %d %d %d %d %d %d %d %d %d\n",
1475 "max_concur plugged_delay plugsb4reset timeoutsb4reset",
1476 "ipi_reset_limit complete_threshold congested_response_us",
1477 "congested_reps disabled_period giveup_limit",
f073cc8f 1478 max_concurr, plugged_delay, plugsb4reset,
e8e5e8a8 1479 timeoutsb4reset, ipi_reset_limit, complete_threshold,
8b6e511e
CW
1480 congested_respns_us, congested_reps, disabled_period,
1481 giveup_limit);
e8e5e8a8 1482
b365a85c
DC
1483 if (!buf)
1484 return -ENOMEM;
1485
1486 ret = simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
1487 kfree(buf);
1488 return ret;
e8e5e8a8
CW
1489}
1490
1812924b 1491/*
f073cc8f
CW
1492 * handle a write to /proc/sgi_uv/ptc_statistics
1493 * -1: reset the statistics
1812924b 1494 * 0: display meaning of the statistics
1812924b 1495 */
f073cc8f
CW
1496static ssize_t ptc_proc_write(struct file *file, const char __user *user,
1497 size_t count, loff_t *data)
1812924b 1498{
b8f7fb13 1499 int cpu;
f073cc8f
CW
1500 int i;
1501 int elements;
b8f7fb13 1502 long input_arg;
1812924b 1503 char optstr[64];
b8f7fb13 1504 struct ptc_stats *stat;
1812924b 1505
e7eb8726 1506 if (count == 0 || count > sizeof(optstr))
cef53278 1507 return -EINVAL;
1812924b
CW
1508 if (copy_from_user(optstr, user, count))
1509 return -EFAULT;
1510 optstr[count - 1] = '\0';
f073cc8f 1511
26ef8577
CW
1512 if (!strcmp(optstr, "on")) {
1513 set_bau_on();
1514 return count;
1515 } else if (!strcmp(optstr, "off")) {
1516 set_bau_off();
1517 return count;
1518 }
1519
164109e3 1520 if (kstrtol(optstr, 10, &input_arg) < 0) {
efa59ab3 1521 pr_debug("%s is invalid\n", optstr);
1812924b
CW
1522 return -EINVAL;
1523 }
1524
b8f7fb13 1525 if (input_arg == 0) {
64441745 1526 elements = ARRAY_SIZE(stat_description);
efa59ab3
AB
1527 pr_debug("# cpu: cpu number\n");
1528 pr_debug("Sender statistics:\n");
f073cc8f 1529 for (i = 0; i < elements; i++)
efa59ab3 1530 pr_debug("%s\n", stat_description[i]);
b8f7fb13
CW
1531 } else if (input_arg == -1) {
1532 for_each_present_cpu(cpu) {
1533 stat = &per_cpu(ptcstats, cpu);
1534 memset(stat, 0, sizeof(struct ptc_stats));
1535 }
e8e5e8a8
CW
1536 }
1537
1538 return count;
1539}
1540
1541static int local_atoi(const char *name)
1542{
1543 int val = 0;
1544
1545 for (;; name++) {
1546 switch (*name) {
1547 case '0' ... '9':
1548 val = 10*val+(*name-'0');
1549 break;
1550 default:
1551 return val;
b8f7fb13 1552 }
1812924b 1553 }
e8e5e8a8
CW
1554}
1555
1556/*
f073cc8f
CW
1557 * Parse the values written to /sys/kernel/debug/sgi_uv/bau_tunables.
1558 * Zero values reset them to defaults.
e8e5e8a8 1559 */
f073cc8f
CW
1560static int parse_tunables_write(struct bau_control *bcp, char *instr,
1561 int count)
e8e5e8a8 1562{
e8e5e8a8
CW
1563 char *p;
1564 char *q;
f073cc8f
CW
1565 int cnt = 0;
1566 int val;
64441745 1567 int e = ARRAY_SIZE(tunables);
e8e5e8a8 1568
e8e5e8a8
CW
1569 p = instr + strspn(instr, WHITESPACE);
1570 q = p;
1571 for (; *p; p = q + strspn(q, WHITESPACE)) {
1572 q = p + strcspn(p, WHITESPACE);
1573 cnt++;
1574 if (q == p)
1575 break;
1576 }
f073cc8f 1577 if (cnt != e) {
efa59ab3 1578 pr_info("bau tunable error: should be %d values\n", e);
e8e5e8a8
CW
1579 return -EINVAL;
1580 }
1581
1582 p = instr + strspn(instr, WHITESPACE);
1583 q = p;
1584 for (cnt = 0; *p; p = q + strspn(q, WHITESPACE), cnt++) {
1585 q = p + strcspn(p, WHITESPACE);
1586 val = local_atoi(p);
1587 switch (cnt) {
1588 case 0:
1589 if (val == 0) {
f073cc8f
CW
1590 max_concurr = MAX_BAU_CONCURRENT;
1591 max_concurr_const = MAX_BAU_CONCURRENT;
e8e5e8a8
CW
1592 continue;
1593 }
e8e5e8a8 1594 if (val < 1 || val > bcp->cpus_in_uvhub) {
efa59ab3 1595 pr_debug(
e8e5e8a8
CW
1596 "Error: BAU max concurrent %d is invalid\n",
1597 val);
1598 return -EINVAL;
1599 }
f073cc8f
CW
1600 max_concurr = val;
1601 max_concurr_const = val;
e8e5e8a8 1602 continue;
f073cc8f 1603 default:
e8e5e8a8 1604 if (val == 0)
f073cc8f 1605 *tunables[cnt].tunp = tunables[cnt].deflt;
e8e5e8a8 1606 else
f073cc8f 1607 *tunables[cnt].tunp = val;
e8e5e8a8
CW
1608 continue;
1609 }
1610 if (q == p)
1611 break;
1612 }
f073cc8f
CW
1613 return 0;
1614}
1615
1616/*
1617 * Handle a write to debugfs. (/sys/kernel/debug/sgi_uv/bau_tunables)
1618 */
1619static ssize_t tunables_write(struct file *file, const char __user *user,
1620 size_t count, loff_t *data)
1621{
1622 int cpu;
1623 int ret;
1624 char instr[100];
1625 struct bau_control *bcp;
1626
1627 if (count == 0 || count > sizeof(instr)-1)
1628 return -EINVAL;
1629 if (copy_from_user(instr, user, count))
1630 return -EFAULT;
1631
1632 instr[count] = '\0';
1633
00b30cf0 1634 cpu = get_cpu();
1635 bcp = &per_cpu(bau_control, cpu);
f073cc8f 1636 ret = parse_tunables_write(bcp, instr, count);
00b30cf0 1637 put_cpu();
f073cc8f
CW
1638 if (ret)
1639 return ret;
1640
e8e5e8a8
CW
1641 for_each_present_cpu(cpu) {
1642 bcp = &per_cpu(bau_control, cpu);
67492c86
AB
1643 bcp->max_concurr = max_concurr;
1644 bcp->max_concurr_const = max_concurr;
1645 bcp->plugged_delay = plugged_delay;
1646 bcp->plugsb4reset = plugsb4reset;
1647 bcp->timeoutsb4reset = timeoutsb4reset;
1648 bcp->ipi_reset_limit = ipi_reset_limit;
1649 bcp->complete_threshold = complete_threshold;
1650 bcp->cong_response_us = congested_respns_us;
1651 bcp->cong_reps = congested_reps;
1652 bcp->disabled_period = sec_2_cycles(disabled_period);
1653 bcp->giveup_limit = giveup_limit;
e8e5e8a8 1654 }
1812924b
CW
1655 return count;
1656}
1657
1658static const struct seq_operations uv_ptc_seq_ops = {
f073cc8f
CW
1659 .start = ptc_seq_start,
1660 .next = ptc_seq_next,
1661 .stop = ptc_seq_stop,
1662 .show = ptc_seq_show
1812924b
CW
1663};
1664
f073cc8f 1665static int ptc_proc_open(struct inode *inode, struct file *file)
1812924b
CW
1666{
1667 return seq_open(file, &uv_ptc_seq_ops);
1668}
1669
e8e5e8a8
CW
1670static int tunables_open(struct inode *inode, struct file *file)
1671{
1672 return 0;
1673}
1674
1812924b 1675static const struct file_operations proc_uv_ptc_operations = {
f073cc8f 1676 .open = ptc_proc_open,
b194b120 1677 .read = seq_read,
f073cc8f 1678 .write = ptc_proc_write,
b194b120
CW
1679 .llseek = seq_lseek,
1680 .release = seq_release,
1812924b
CW
1681};
1682
e8e5e8a8
CW
1683static const struct file_operations tunables_fops = {
1684 .open = tunables_open,
1685 .read = tunables_read,
1686 .write = tunables_write,
6038f373 1687 .llseek = default_llseek,
e8e5e8a8
CW
1688};
1689
b194b120 1690static int __init uv_ptc_init(void)
1812924b 1691{
b194b120 1692 struct proc_dir_entry *proc_uv_ptc;
1812924b
CW
1693
1694 if (!is_uv_system())
1695 return 0;
1696
10f02d11
AD
1697 proc_uv_ptc = proc_create(UV_PTC_BASENAME, 0444, NULL,
1698 &proc_uv_ptc_operations);
1812924b 1699 if (!proc_uv_ptc) {
efa59ab3 1700 pr_err("unable to create %s proc entry\n",
1812924b
CW
1701 UV_PTC_BASENAME);
1702 return -EINVAL;
1703 }
e8e5e8a8
CW
1704
1705 tunables_dir = debugfs_create_dir(UV_BAU_TUNABLES_DIR, NULL);
1706 if (!tunables_dir) {
efa59ab3 1707 pr_err("unable to create debugfs directory %s\n",
e8e5e8a8
CW
1708 UV_BAU_TUNABLES_DIR);
1709 return -EINVAL;
1710 }
1711 tunables_file = debugfs_create_file(UV_BAU_TUNABLES_FILE, 0600,
f073cc8f 1712 tunables_dir, NULL, &tunables_fops);
e8e5e8a8 1713 if (!tunables_file) {
efa59ab3 1714 pr_err("unable to create debugfs file %s\n",
e8e5e8a8
CW
1715 UV_BAU_TUNABLES_FILE);
1716 return -EINVAL;
1717 }
1812924b
CW
1718 return 0;
1719}
1720
1812924b 1721/*
77ed23f8 1722 * Initialize the sending side's sending buffers.
1812924b 1723 */
f073cc8f 1724static void activation_descriptor_init(int node, int pnode, int base_pnode)
1812924b
CW
1725{
1726 int i;
b8f7fb13 1727 int cpu;
da87c937 1728 int uv1 = 0;
6a469e46 1729 unsigned long gpa;
1812924b 1730 unsigned long m;
b194b120 1731 unsigned long n;
f073cc8f 1732 size_t dsize;
b8f7fb13
CW
1733 struct bau_desc *bau_desc;
1734 struct bau_desc *bd2;
da87c937 1735 struct uv1_bau_msg_header *uv1_hdr;
a26fd719 1736 struct uv2_3_bau_msg_header *uv2_3_hdr;
b8f7fb13 1737 struct bau_control *bcp;
b194b120 1738
0e2595cd 1739 /*
f073cc8f
CW
1740 * each bau_desc is 64 bytes; there are 8 (ITEMS_PER_DESC)
1741 * per cpu; and one per cpu on the uvhub (ADP_SZ)
0e2595cd 1742 */
f073cc8f
CW
1743 dsize = sizeof(struct bau_desc) * ADP_SZ * ITEMS_PER_DESC;
1744 bau_desc = kmalloc_node(dsize, GFP_KERNEL, node);
b8f7fb13 1745 BUG_ON(!bau_desc);
b4c286e6 1746
6a469e46
JS
1747 gpa = uv_gpa(bau_desc);
1748 n = uv_gpa_to_gnode(gpa);
21e3f12f 1749 m = ops.bau_gpa_to_offset(gpa);
da87c937
CW
1750 if (is_uv1_hub())
1751 uv1 = 1;
b4c286e6 1752
77ed23f8 1753 /* the 14-bit pnode */
f073cc8f 1754 write_mmr_descriptor_base(pnode, (n << UV_DESC_PSHIFT | m));
0e2595cd 1755 /*
f073cc8f 1756 * Initializing all 8 (ITEMS_PER_DESC) descriptors for each
0e2595cd 1757 * cpu even though we only use the first one; one descriptor can
b8f7fb13 1758 * describe a broadcast to 256 uv hubs.
0e2595cd 1759 */
f073cc8f 1760 for (i = 0, bd2 = bau_desc; i < (ADP_SZ * ITEMS_PER_DESC); i++, bd2++) {
b8f7fb13 1761 memset(bd2, 0, sizeof(struct bau_desc));
da87c937
CW
1762 if (uv1) {
1763 uv1_hdr = &bd2->header.uv1_hdr;
67492c86 1764 uv1_hdr->swack_flag = 1;
da87c937
CW
1765 /*
1766 * The base_dest_nasid set in the message header
1767 * is the nasid of the first uvhub in the partition.
1768 * The bit map will indicate destination pnode numbers
1769 * relative to that base. They may not be consecutive
1770 * if nasid striding is being used.
1771 */
1772 uv1_hdr->base_dest_nasid =
67492c86
AB
1773 UV_PNODE_TO_NASID(base_pnode);
1774 uv1_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1775 uv1_hdr->command = UV_NET_ENDPOINT_INTD;
1776 uv1_hdr->int_both = 1;
da87c937
CW
1777 /*
1778 * all others need to be set to zero:
1779 * fairness chaining multilevel count replied_to
1780 */
1781 } else {
8b6e511e 1782 /*
a26fd719 1783 * BIOS uses legacy mode, but uv2 and uv3 hardware always
8b6e511e
CW
1784 * uses native mode for selective broadcasts.
1785 */
a26fd719 1786 uv2_3_hdr = &bd2->header.uv2_3_hdr;
67492c86 1787 uv2_3_hdr->swack_flag = 1;
a26fd719 1788 uv2_3_hdr->base_dest_nasid =
67492c86
AB
1789 UV_PNODE_TO_NASID(base_pnode);
1790 uv2_3_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1791 uv2_3_hdr->command = UV_NET_ENDPOINT_INTD;
da87c937 1792 }
b194b120 1793 }
b8f7fb13
CW
1794 for_each_present_cpu(cpu) {
1795 if (pnode != uv_blade_to_pnode(uv_cpu_to_blade_id(cpu)))
1796 continue;
1797 bcp = &per_cpu(bau_control, cpu);
1798 bcp->descriptor_base = bau_desc;
1799 }
b194b120
CW
1800}
1801
1802/*
1803 * initialize the destination side's receiving buffers
b8f7fb13
CW
1804 * entered for each uvhub in the partition
1805 * - node is first node (kernel memory notion) on the uvhub
1806 * - pnode is the uvhub's physical identifier
b194b120 1807 */
f073cc8f 1808static void pq_init(int node, int pnode)
b194b120 1809{
b8f7fb13 1810 int cpu;
f073cc8f 1811 size_t plsize;
b4c286e6 1812 char *cp;
f073cc8f 1813 void *vp;
d2a57afa 1814 unsigned long gnode, first, last, tail;
f073cc8f 1815 struct bau_pq_entry *pqp;
b8f7fb13 1816 struct bau_control *bcp;
1812924b 1817
f073cc8f
CW
1818 plsize = (DEST_Q_SIZE + 1) * sizeof(struct bau_pq_entry);
1819 vp = kmalloc_node(plsize, GFP_KERNEL, node);
1820 pqp = (struct bau_pq_entry *)vp;
dc163a41 1821 BUG_ON(!pqp);
b4c286e6 1822
b194b120 1823 cp = (char *)pqp + 31;
f073cc8f 1824 pqp = (struct bau_pq_entry *)(((unsigned long)cp >> 5) << 5);
b8f7fb13
CW
1825
1826 for_each_present_cpu(cpu) {
1827 if (pnode != uv_cpu_to_pnode(cpu))
1828 continue;
1829 /* for every cpu on this pnode: */
1830 bcp = &per_cpu(bau_control, cpu);
f073cc8f
CW
1831 bcp->queue_first = pqp;
1832 bcp->bau_msg_head = pqp;
1833 bcp->queue_last = pqp + (DEST_Q_SIZE - 1);
b8f7fb13 1834 }
d2a57afa 1835
21e3f12f
AB
1836 first = ops.bau_gpa_to_offset(uv_gpa(pqp));
1837 last = ops.bau_gpa_to_offset(uv_gpa(pqp + (DEST_Q_SIZE - 1)));
d2a57afa 1838
4ea3c51d 1839 /*
6d78059b
AB
1840 * Pre UV4, the gnode is required to locate the payload queue
1841 * and the payload queue tail must be maintained by the kernel.
4ea3c51d 1842 */
6d78059b 1843 bcp = &per_cpu(bau_control, smp_processor_id());
491bd88c 1844 if (bcp->uvhub_version <= UV_BAU_V3) {
6d78059b
AB
1845 tail = first;
1846 gnode = uv_gpa_to_gnode(uv_gpa(pqp));
1847 first = (gnode << UV_PAYLOADQ_GNODE_SHIFT) | tail;
1848 write_mmr_payload_tail(pnode, tail);
1849 }
1850
21e3f12f
AB
1851 ops.write_payload_first(pnode, first);
1852 ops.write_payload_last(pnode, last);
f073cc8f 1853
b8f7fb13 1854 /* in effect, all msg_type's are set to MSG_NOOP */
f073cc8f 1855 memset(pqp, 0, sizeof(struct bau_pq_entry) * DEST_Q_SIZE);
b194b120 1856}
1812924b 1857
b194b120 1858/*
b8f7fb13 1859 * Initialization of each UV hub's structures
b194b120 1860 */
f073cc8f 1861static void __init init_uvhub(int uvhub, int vector, int base_pnode)
b194b120 1862{
9674f35b 1863 int node;
b194b120 1864 int pnode;
b194b120 1865 unsigned long apicid;
b8f7fb13
CW
1866
1867 node = uvhub_to_first_node(uvhub);
1868 pnode = uv_blade_to_pnode(uvhub);
f073cc8f
CW
1869
1870 activation_descriptor_init(node, pnode, base_pnode);
1871
1872 pq_init(node, pnode);
b194b120 1873 /*
77ed23f8
CW
1874 * The below initialization can't be in firmware because the
1875 * messaging IRQ will be determined by the OS.
b194b120 1876 */
8191c9f6 1877 apicid = uvhub_to_first_apicid(uvhub) | uv_apicid_hibits;
f073cc8f 1878 write_mmr_data_config(pnode, ((apicid << 32) | vector));
b8f7fb13
CW
1879}
1880
12a6611f
CW
1881/*
1882 * We will set BAU_MISC_CONTROL with a timeout period.
1883 * But the BIOS has set UVH_AGING_PRESCALE_SEL and UVH_TRANSACTION_TIMEOUT.
f073cc8f 1884 * So the destination timeout period has to be calculated from them.
12a6611f 1885 */
f073cc8f 1886static int calculate_destination_timeout(void)
12a6611f
CW
1887{
1888 unsigned long mmr_image;
1889 int mult1;
1890 int mult2;
1891 int index;
1892 int base;
1893 int ret;
1894 unsigned long ts_ns;
1895
2a919596 1896 if (is_uv1_hub()) {
f073cc8f 1897 mult1 = SOFTACK_TIMEOUT_PERIOD & BAU_MISC_CONTROL_MULT_MASK;
2a919596
JS
1898 mmr_image = uv_read_local_mmr(UVH_AGING_PRESCALE_SEL);
1899 index = (mmr_image >> BAU_URGENCY_7_SHIFT) & BAU_URGENCY_7_MASK;
1900 mmr_image = uv_read_local_mmr(UVH_TRANSACTION_TIMEOUT);
1901 mult2 = (mmr_image >> BAU_TRANS_SHIFT) & BAU_TRANS_MASK;
11cab711
CW
1902 ts_ns = timeout_base_ns[index];
1903 ts_ns *= (mult1 * mult2);
2a919596
JS
1904 ret = ts_ns / 1000;
1905 } else {
a26fd719 1906 /* same destination timeout for uv2 and uv3 */
d059f9fa
CW
1907 /* 4 bits 0/1 for 10/80us base, 3 bits of multiplier */
1908 mmr_image = uv_read_local_mmr(UVH_LB_BAU_MISC_CONTROL);
2a919596 1909 mmr_image = (mmr_image & UV_SA_MASK) >> UV_SA_SHFT;
f073cc8f 1910 if (mmr_image & (1L << UV2_ACK_UNITS_SHFT))
d059f9fa 1911 base = 80;
2a919596 1912 else
d059f9fa
CW
1913 base = 10;
1914 mult1 = mmr_image & UV2_ACK_MASK;
2a919596
JS
1915 ret = mult1 * base;
1916 }
12a6611f
CW
1917 return ret;
1918}
1919
f073cc8f
CW
1920static void __init init_per_cpu_tunables(void)
1921{
1922 int cpu;
1923 struct bau_control *bcp;
1924
1925 for_each_present_cpu(cpu) {
1926 bcp = &per_cpu(bau_control, cpu);
1927 bcp->baudisabled = 0;
26ef8577 1928 if (nobau)
1c532e00 1929 bcp->nobau = true;
f073cc8f
CW
1930 bcp->statp = &per_cpu(ptcstats, cpu);
1931 /* time interval to catch a hardware stay-busy bug */
1932 bcp->timeout_interval = usec_2_cycles(2*timeout_us);
1933 bcp->max_concurr = max_concurr;
1934 bcp->max_concurr_const = max_concurr;
1935 bcp->plugged_delay = plugged_delay;
1936 bcp->plugsb4reset = plugsb4reset;
1937 bcp->timeoutsb4reset = timeoutsb4reset;
1938 bcp->ipi_reset_limit = ipi_reset_limit;
1939 bcp->complete_threshold = complete_threshold;
1940 bcp->cong_response_us = congested_respns_us;
1941 bcp->cong_reps = congested_reps;
67492c86
AB
1942 bcp->disabled_period = sec_2_cycles(disabled_period);
1943 bcp->giveup_limit = giveup_limit;
d2ebc71d
CW
1944 spin_lock_init(&bcp->queue_lock);
1945 spin_lock_init(&bcp->uvhub_lock);
8b6e511e 1946 spin_lock_init(&bcp->disable_lock);
f073cc8f
CW
1947 }
1948}
1949
b8f7fb13 1950/*
f073cc8f 1951 * Scan all cpus to collect blade and socket summaries.
b8f7fb13 1952 */
f073cc8f
CW
1953static int __init get_cpu_topology(int base_pnode,
1954 struct uvhub_desc *uvhub_descs,
1955 unsigned char *uvhub_mask)
b8f7fb13 1956{
b8f7fb13
CW
1957 int cpu;
1958 int pnode;
1959 int uvhub;
f073cc8f 1960 int socket;
b8f7fb13
CW
1961 struct bau_control *bcp;
1962 struct uvhub_desc *bdp;
1963 struct socket_desc *sdp;
b8f7fb13 1964
b8f7fb13
CW
1965 for_each_present_cpu(cpu) {
1966 bcp = &per_cpu(bau_control, cpu);
f073cc8f 1967
b8f7fb13 1968 memset(bcp, 0, sizeof(struct bau_control));
f073cc8f 1969
b8f7fb13 1970 pnode = uv_cpu_hub_info(cpu)->pnode;
f073cc8f 1971 if ((pnode - base_pnode) >= UV_DISTRIBUTION_SIZE) {
efa59ab3 1972 pr_emerg(
77ed23f8 1973 "cpu %d pnode %d-%d beyond %d; BAU disabled\n",
f073cc8f 1974 cpu, pnode, base_pnode, UV_DISTRIBUTION_SIZE);
77ed23f8
CW
1975 return 1;
1976 }
f073cc8f 1977
77ed23f8 1978 bcp->osnode = cpu_to_node(cpu);
f073cc8f
CW
1979 bcp->partition_base_pnode = base_pnode;
1980
b8f7fb13 1981 uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
c4026cfd 1982 *(uvhub_mask + (uvhub/8)) |= (1 << (uvhub%8));
b8f7fb13 1983 bdp = &uvhub_descs[uvhub];
f073cc8f 1984
b8f7fb13
CW
1985 bdp->num_cpus++;
1986 bdp->uvhub = uvhub;
1987 bdp->pnode = pnode;
f073cc8f 1988
a8328ee5
CW
1989 /* kludge: 'assuming' one node per socket, and assuming that
1990 disabling a socket just leaves a gap in node numbers */
77ed23f8 1991 socket = bcp->osnode & 1;
a8328ee5 1992 bdp->socket_mask |= (1 << socket);
b8f7fb13
CW
1993 sdp = &bdp->socket[socket];
1994 sdp->cpu_number[sdp->num_cpus] = cpu;
1995 sdp->num_cpus++;
cfa60917 1996 if (sdp->num_cpus > MAX_CPUS_PER_SOCKET) {
efa59ab3 1997 pr_emerg("%d cpus per socket invalid\n",
f073cc8f 1998 sdp->num_cpus);
cfa60917
CW
1999 return 1;
2000 }
b8f7fb13 2001 }
f073cc8f
CW
2002 return 0;
2003}
2004
2005/*
2006 * Each socket is to get a local array of pnodes/hubs.
2007 */
2008static void make_per_cpu_thp(struct bau_control *smaster)
2009{
2010 int cpu;
2011 size_t hpsz = sizeof(struct hub_and_pnode) * num_possible_cpus();
2012
2013 smaster->thp = kmalloc_node(hpsz, GFP_KERNEL, smaster->osnode);
2014 memset(smaster->thp, 0, hpsz);
2015 for_each_present_cpu(cpu) {
2016 smaster->thp[cpu].pnode = uv_cpu_hub_info(cpu)->pnode;
2017 smaster->thp[cpu].uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
2018 }
2019}
2020
442d3924 2021/*
2022 * Each uvhub is to get a local cpumask.
2023 */
2024static void make_per_hub_cpumask(struct bau_control *hmaster)
2025{
2026 int sz = sizeof(cpumask_t);
2027
2028 hmaster->cpumask = kzalloc_node(sz, GFP_KERNEL, hmaster->osnode);
2029}
2030
f073cc8f
CW
2031/*
2032 * Initialize all the per_cpu information for the cpu's on a given socket,
2033 * given what has been gathered into the socket_desc struct.
2034 * And reports the chosen hub and socket masters back to the caller.
2035 */
2036static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp,
2037 struct bau_control **smasterp,
2038 struct bau_control **hmasterp)
2039{
dfeb28f0 2040 int i, cpu, uvhub_cpu;
f073cc8f
CW
2041 struct bau_control *bcp;
2042
2043 for (i = 0; i < sdp->num_cpus; i++) {
2044 cpu = sdp->cpu_number[i];
2045 bcp = &per_cpu(bau_control, cpu);
2046 bcp->cpu = cpu;
2047 if (i == 0) {
2048 *smasterp = bcp;
2049 if (!(*hmasterp))
2050 *hmasterp = bcp;
2051 }
2052 bcp->cpus_in_uvhub = bdp->num_cpus;
2053 bcp->cpus_in_socket = sdp->num_cpus;
2054 bcp->socket_master = *smasterp;
2055 bcp->uvhub = bdp->uvhub;
da87c937 2056 if (is_uv1_hub())
491bd88c 2057 bcp->uvhub_version = UV_BAU_V1;
da87c937 2058 else if (is_uv2_hub())
491bd88c 2059 bcp->uvhub_version = UV_BAU_V2;
a26fd719 2060 else if (is_uv3_hub())
491bd88c 2061 bcp->uvhub_version = UV_BAU_V3;
58d4ab46 2062 else if (is_uv4_hub())
491bd88c 2063 bcp->uvhub_version = UV_BAU_V4;
da87c937 2064 else {
58d4ab46 2065 pr_emerg("uvhub version not 1, 2, 3, or 4\n");
da87c937
CW
2066 return 1;
2067 }
f073cc8f 2068 bcp->uvhub_master = *hmasterp;
dfeb28f0
AB
2069 uvhub_cpu = uv_cpu_blade_processor_id(cpu);
2070 bcp->uvhub_cpu = uvhub_cpu;
2071
2072 /*
2073 * The ERROR and BUSY status registers are located pairwise over
2074 * the STATUS_0 and STATUS_1 mmrs; each an array[32] of 2 bits.
2075 */
2076 if (uvhub_cpu < UV_CPUS_PER_AS) {
2077 bcp->status_mmr = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
2078 bcp->status_index = uvhub_cpu * UV_ACT_STATUS_SIZE;
2079 } else {
2080 bcp->status_mmr = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
2081 bcp->status_index = (uvhub_cpu - UV_CPUS_PER_AS)
2082 * UV_ACT_STATUS_SIZE;
2083 }
5627a825 2084
f073cc8f 2085 if (bcp->uvhub_cpu >= MAX_CPUS_PER_UVHUB) {
efa59ab3 2086 pr_emerg("%d cpus per uvhub invalid\n",
f073cc8f
CW
2087 bcp->uvhub_cpu);
2088 return 1;
2089 }
2090 }
2091 return 0;
2092}
2093
2094/*
2095 * Summarize the blade and socket topology into the per_cpu structures.
2096 */
2097static int __init summarize_uvhub_sockets(int nuvhubs,
2098 struct uvhub_desc *uvhub_descs,
2099 unsigned char *uvhub_mask)
2100{
2101 int socket;
2102 int uvhub;
2103 unsigned short socket_mask;
2104
c4026cfd 2105 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
f073cc8f
CW
2106 struct uvhub_desc *bdp;
2107 struct bau_control *smaster = NULL;
2108 struct bau_control *hmaster = NULL;
2109
c4026cfd
CW
2110 if (!(*(uvhub_mask + (uvhub/8)) & (1 << (uvhub%8))))
2111 continue;
f073cc8f 2112
b8f7fb13 2113 bdp = &uvhub_descs[uvhub];
a8328ee5
CW
2114 socket_mask = bdp->socket_mask;
2115 socket = 0;
2116 while (socket_mask) {
f073cc8f
CW
2117 struct socket_desc *sdp;
2118 if ((socket_mask & 1)) {
2119 sdp = &bdp->socket[socket];
2120 if (scan_sock(sdp, bdp, &smaster, &hmaster))
cfa60917 2121 return 1;
9c9153db 2122 make_per_cpu_thp(smaster);
b8f7fb13
CW
2123 }
2124 socket++;
a8328ee5 2125 socket_mask = (socket_mask >> 1);
b8f7fb13 2126 }
442d3924 2127 make_per_hub_cpumask(hmaster);
b8f7fb13 2128 }
f073cc8f
CW
2129 return 0;
2130}
2131
2132/*
2133 * initialize the bau_control structure for each cpu
2134 */
2135static int __init init_per_cpu(int nuvhubs, int base_part_pnode)
2136{
2137 unsigned char *uvhub_mask;
2138 void *vp;
2139 struct uvhub_desc *uvhub_descs;
2140
e879c112
AB
2141 if (is_uv3_hub() || is_uv2_hub() || is_uv1_hub())
2142 timeout_us = calculate_destination_timeout();
f073cc8f
CW
2143
2144 vp = kmalloc(nuvhubs * sizeof(struct uvhub_desc), GFP_KERNEL);
2145 uvhub_descs = (struct uvhub_desc *)vp;
2146 memset(uvhub_descs, 0, nuvhubs * sizeof(struct uvhub_desc));
2147 uvhub_mask = kzalloc((nuvhubs+7)/8, GFP_KERNEL);
2148
2149 if (get_cpu_topology(base_part_pnode, uvhub_descs, uvhub_mask))
bbd270e6 2150 goto fail;
f073cc8f
CW
2151
2152 if (summarize_uvhub_sockets(nuvhubs, uvhub_descs, uvhub_mask))
bbd270e6 2153 goto fail;
f073cc8f 2154
b8f7fb13 2155 kfree(uvhub_descs);
c4026cfd 2156 kfree(uvhub_mask);
f073cc8f 2157 init_per_cpu_tunables();
cfa60917 2158 return 0;
bbd270e6 2159
2160fail:
2161 kfree(uvhub_descs);
2162 kfree(uvhub_mask);
2163 return 1;
b194b120
CW
2164}
2165
2620bbbf
AB
2166static const struct bau_operations uv1_bau_ops __initconst = {
2167 .bau_gpa_to_offset = uv_gpa_to_offset,
2168 .read_l_sw_ack = read_mmr_sw_ack,
2169 .read_g_sw_ack = read_gmmr_sw_ack,
2170 .write_l_sw_ack = write_mmr_sw_ack,
2171 .write_g_sw_ack = write_gmmr_sw_ack,
2172 .write_payload_first = write_mmr_payload_first,
2173 .write_payload_last = write_mmr_payload_last,
2174 .wait_completion = uv1_wait_completion,
2175};
2176
2177static const struct bau_operations uv2_3_bau_ops __initconst = {
8e3b21b6
AB
2178 .bau_gpa_to_offset = uv_gpa_to_offset,
2179 .read_l_sw_ack = read_mmr_sw_ack,
2180 .read_g_sw_ack = read_gmmr_sw_ack,
2181 .write_l_sw_ack = write_mmr_sw_ack,
2182 .write_g_sw_ack = write_gmmr_sw_ack,
2183 .write_payload_first = write_mmr_payload_first,
2184 .write_payload_last = write_mmr_payload_last,
2620bbbf 2185 .wait_completion = uv2_3_wait_completion,
8e3b21b6
AB
2186};
2187
2188static const struct bau_operations uv4_bau_ops __initconst = {
2189 .bau_gpa_to_offset = uv_gpa_to_soc_phys_ram,
2190 .read_l_sw_ack = read_mmr_proc_sw_ack,
2191 .read_g_sw_ack = read_gmmr_proc_sw_ack,
2192 .write_l_sw_ack = write_mmr_proc_sw_ack,
2193 .write_g_sw_ack = write_gmmr_proc_sw_ack,
2194 .write_payload_first = write_mmr_proc_payload_first,
2195 .write_payload_last = write_mmr_proc_payload_last,
2f2a033f 2196 .wait_completion = uv4_wait_completion,
8e3b21b6
AB
2197};
2198
b194b120
CW
2199/*
2200 * Initialization of BAU-related structures
2201 */
2202static int __init uv_bau_init(void)
2203{
b8f7fb13
CW
2204 int uvhub;
2205 int pnode;
2206 int nuvhubs;
2c74d666 2207 int cur_cpu;
f073cc8f 2208 int cpus;
b8f7fb13 2209 int vector;
f073cc8f 2210 cpumask_var_t *mask;
b194b120
CW
2211
2212 if (!is_uv_system())
2213 return 0;
1812924b 2214
4f059d51
AB
2215 if (is_uv4_hub())
2216 ops = uv4_bau_ops;
2217 else if (is_uv3_hub())
2620bbbf 2218 ops = uv2_3_bau_ops;
5e4f96fe 2219 else if (is_uv2_hub())
2620bbbf 2220 ops = uv2_3_bau_ops;
5e4f96fe 2221 else if (is_uv1_hub())
2620bbbf 2222 ops = uv1_bau_ops;
5e4f96fe 2223
2fe9a5c6
AB
2224 nuvhubs = uv_num_possible_blades();
2225 if (nuvhubs < 2) {
2226 pr_crit("UV: BAU disabled - insufficient hub count\n");
2227 goto err_bau_disable;
2228 }
2229
f073cc8f
CW
2230 for_each_possible_cpu(cur_cpu) {
2231 mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
2232 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
2233 }
76ba0ecd 2234
f073cc8f 2235 uv_base_pnode = 0x7fffffff;
77ed23f8 2236 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
f073cc8f
CW
2237 cpus = uv_blade_nr_possible_cpus(uvhub);
2238 if (cpus && (uv_blade_to_pnode(uvhub) < uv_base_pnode))
2239 uv_base_pnode = uv_blade_to_pnode(uvhub);
77ed23f8
CW
2240 }
2241
e879c112
AB
2242 /* software timeouts are not supported on UV4 */
2243 if (is_uv3_hub() || is_uv2_hub() || is_uv1_hub())
2244 enable_timeouts();
d059f9fa 2245
f073cc8f 2246 if (init_per_cpu(nuvhubs, uv_base_pnode)) {
2fe9a5c6
AB
2247 pr_crit("UV: BAU disabled - per CPU init failed\n");
2248 goto err_bau_disable;
77ed23f8 2249 }
b8f7fb13
CW
2250
2251 vector = UV_BAU_MESSAGE;
a26fd719 2252 for_each_possible_blade(uvhub) {
b8f7fb13 2253 if (uv_blade_nr_possible_cpus(uvhub))
f073cc8f 2254 init_uvhub(uvhub, vector, uv_base_pnode);
a26fd719 2255 }
b8f7fb13 2256
b8f7fb13
CW
2257 alloc_intr_gate(vector, uv_bau_message_intr1);
2258
2259 for_each_possible_blade(uvhub) {
93a7ca0c 2260 if (uv_blade_nr_possible_cpus(uvhub)) {
f073cc8f
CW
2261 unsigned long val;
2262 unsigned long mmr;
93a7ca0c
CW
2263 pnode = uv_blade_to_pnode(uvhub);
2264 /* INIT the bau */
f073cc8f
CW
2265 val = 1L << 63;
2266 write_gmmr_activation(pnode, val);
93a7ca0c 2267 mmr = 1; /* should be 1 to broadcast to both sockets */
da87c937
CW
2268 if (!is_uv1_hub())
2269 write_mmr_data_broadcast(pnode, mmr);
93a7ca0c 2270 }
b8f7fb13 2271 }
b4c286e6 2272
1812924b 2273 return 0;
2fe9a5c6
AB
2274
2275err_bau_disable:
2276
2277 for_each_possible_cpu(cur_cpu)
2278 free_cpumask_var(per_cpu(uv_flush_tlb_mask, cur_cpu));
2279
2280 set_bau_off();
2281 nobau_perm = 1;
2282
2283 return -EINVAL;
1812924b 2284}
b8f7fb13 2285core_initcall(uv_bau_init);
e8e5e8a8 2286fs_initcall(uv_ptc_init);