blob: 933bea5a601d565b9affe8699a212b8275d789ad [file] [log] [blame]
Cliff Wickman18129242008-06-02 08:56:14 -05001/*
2 * SGI UltraViolet TLB flush routines.
3 *
Cliff Wickman8b6e5112012-06-22 08:14:59 -05004 * (c) 2008-2012 Cliff Wickman <cpw@sgi.com>, SGI.
Cliff Wickman18129242008-06-02 08:56:14 -05005 *
6 * This code is released under the GNU General Public License version 2 or
7 * later.
8 */
Jeremy Fitzhardingeaef8f5b2008-10-14 21:43:43 -07009#include <linux/seq_file.h>
Cliff Wickman18129242008-06-02 08:56:14 -050010#include <linux/proc_fs.h>
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050011#include <linux/debugfs.h>
Cliff Wickman18129242008-06-02 08:56:14 -050012#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jean Delvareca4445642011-03-25 15:20:14 +010014#include <linux/delay.h>
Cliff Wickman18129242008-06-02 08:56:14 -050015
Cliff Wickman18129242008-06-02 08:56:14 -050016#include <asm/mmu_context.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090017#include <asm/uv/uv.h>
Cliff Wickman18129242008-06-02 08:56:14 -050018#include <asm/uv/uv_mmrs.h>
Ingo Molnarb4c286e2008-06-18 14:28:19 +020019#include <asm/uv/uv_hub.h>
Cliff Wickman18129242008-06-02 08:56:14 -050020#include <asm/uv/uv_bau.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010021#include <asm/apic.h>
Ingo Molnarb4c286e2008-06-18 14:28:19 +020022#include <asm/idle.h>
Cliff Wickmanb194b122008-06-12 08:23:48 -050023#include <asm/tsc.h>
Cliff Wickman99dd8712008-08-19 12:51:59 -050024#include <asm/irq_vectors.h>
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050025#include <asm/timer.h>
Cliff Wickman18129242008-06-02 08:56:14 -050026
Cliff Wickman12a66112010-06-02 16:22:01 -050027/* timeouts in nanoseconds (indexed by UVH_AGING_PRESCALE_SEL urgency7 30:28) */
28static int timeout_base_ns[] = {
29 20,
30 160,
31 1280,
32 10240,
33 81920,
34 655360,
35 5242880,
36 167772160
37};
Cliff Wickmanf073cc82011-05-24 13:07:36 -050038
Cliff Wickman12a66112010-06-02 16:22:01 -050039static int timeout_us;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050040static int nobau;
Cliff Wickman26ef8572012-06-22 08:13:30 -050041static int nobau_perm;
Cliff Wickman50fb55a2010-06-02 16:22:02 -050042static cycles_t congested_cycles;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050043
44/* tunables: */
Cliff Wickmanf073cc82011-05-24 13:07:36 -050045static int max_concurr = MAX_BAU_CONCURRENT;
46static int max_concurr_const = MAX_BAU_CONCURRENT;
47static int plugged_delay = PLUGGED_DELAY;
48static int plugsb4reset = PLUGSB4RESET;
Cliff Wickman8b6e5112012-06-22 08:14:59 -050049static int giveup_limit = GIVEUP_LIMIT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -050050static 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;
Cliff Wickman8b6e5112012-06-22 08:14:59 -050055static int disabled_period = DISABLED_PERIOD;
Cliff Wickmanf073cc82011-05-24 13:07:36 -050056
57static struct tunables tunables[] = {
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},
Cliff Wickman8b6e5112012-06-22 08:14:59 -050066 {&disabled_period, DISABLED_PERIOD},
67 {&giveup_limit, GIVEUP_LIMIT}
Cliff Wickmanf073cc82011-05-24 13:07:36 -050068};
69
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050070static struct dentry *tunables_dir;
71static struct dentry *tunables_file;
72
Cliff Wickmanf073cc82011-05-24 13:07:36 -050073/* 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
109static int __init
110setup_nobau(char *arg)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500111{
112 nobau = 1;
113 return 0;
114}
115early_param("nobau", setup_nobau);
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200116
Cliff Wickman94ca8e42009-04-14 10:56:48 -0500117/* base pnode in this partition */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500118static int uv_base_pnode __read_mostly;
Cliff Wickman18129242008-06-02 08:56:14 -0500119
Ingo Molnardc163a42008-06-18 14:15:43 +0200120static DEFINE_PER_CPU(struct ptc_stats, ptcstats);
121static DEFINE_PER_CPU(struct bau_control, bau_control);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500122static DEFINE_PER_CPU(cpumask_var_t, uv_flush_tlb_mask);
123
Cliff Wickman26ef8572012-06-22 08:13:30 -0500124static void
125set_bau_on(void)
126{
127 int cpu;
128 struct bau_control *bcp;
129
130 if (nobau_perm) {
131 pr_info("BAU not initialized; cannot be turned on\n");
132 return;
133 }
134 nobau = 0;
135 for_each_present_cpu(cpu) {
136 bcp = &per_cpu(bau_control, cpu);
137 bcp->nobau = 0;
138 }
139 pr_info("BAU turned on\n");
140 return;
141}
142
143static void
144set_bau_off(void)
145{
146 int cpu;
147 struct bau_control *bcp;
148
149 nobau = 1;
150 for_each_present_cpu(cpu) {
151 bcp = &per_cpu(bau_control, cpu);
152 bcp->nobau = 1;
153 }
154 pr_info("BAU turned off\n");
155 return;
156}
157
Cliff Wickman18129242008-06-02 08:56:14 -0500158/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500159 * Determine the first node on a uvhub. 'Nodes' are used for kernel
160 * memory allocation.
Cliff Wickman9674f352009-04-03 08:34:05 -0500161 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500162static int __init uvhub_to_first_node(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500163{
164 int node, b;
165
166 for_each_online_node(node) {
167 b = uv_node_to_blade_id(node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500168 if (uvhub == b)
Cliff Wickman9674f352009-04-03 08:34:05 -0500169 return node;
170 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500171 return -1;
Cliff Wickman9674f352009-04-03 08:34:05 -0500172}
173
174/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500175 * Determine the apicid of the first cpu on a uvhub.
Cliff Wickman9674f352009-04-03 08:34:05 -0500176 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500177static int __init uvhub_to_first_apicid(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500178{
179 int cpu;
180
181 for_each_present_cpu(cpu)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500182 if (uvhub == uv_cpu_to_blade_id(cpu))
Cliff Wickman9674f352009-04-03 08:34:05 -0500183 return per_cpu(x86_cpu_to_apicid, cpu);
184 return -1;
185}
186
187/*
Cliff Wickman18129242008-06-02 08:56:14 -0500188 * Free a software acknowledge hardware resource by clearing its Pending
189 * bit. This will return a reply to the sender.
190 * If the message has timed out, a reply has already been sent by the
191 * hardware but the resource has not been released. In that case our
192 * clear of the Timeout bit (as well) will free the resource. No reply will
193 * be sent (the hardware will only do one reply per message).
194 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600195static void reply_to_message(struct msg_desc *mdp, struct bau_control *bcp,
196 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500197{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500198 unsigned long dw;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500199 struct bau_pq_entry *msg;
Cliff Wickman18129242008-06-02 08:56:14 -0500200
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500201 msg = mdp->msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600202 if (!msg->canceled && do_acknowledge) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500203 dw = (msg->swack_vec << UV_SW_ACK_NPENDING) | msg->swack_vec;
204 write_mmr_sw_ack(dw);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500205 }
Cliff Wickman18129242008-06-02 08:56:14 -0500206 msg->replied_to = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500207 msg->swack_vec = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500208}
209
210/*
211 * Process the receipt of a RETRY message
212 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500213static void bau_process_retry_msg(struct msg_desc *mdp,
214 struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500215{
216 int i;
217 int cancel_count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500218 unsigned long msg_res;
219 unsigned long mmr = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500220 struct bau_pq_entry *msg = mdp->msg;
221 struct bau_pq_entry *msg2;
222 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500223
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500224 stat->d_retries++;
225 /*
226 * cancel any message from msg+1 to the retry itself
227 */
228 for (msg2 = msg+1, i = 0; i < DEST_Q_SIZE; msg2++, i++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500229 if (msg2 > mdp->queue_last)
230 msg2 = mdp->queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500231 if (msg2 == msg)
232 break;
233
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500234 /* same conditions for cancellation as do_reset */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500235 if ((msg2->replied_to == 0) && (msg2->canceled == 0) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500236 (msg2->swack_vec) && ((msg2->swack_vec &
237 msg->swack_vec) == 0) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500238 (msg2->sending_cpu == msg->sending_cpu) &&
239 (msg2->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500240 mmr = read_mmr_sw_ack();
241 msg_res = msg2->swack_vec;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500242 /*
243 * This is a message retry; clear the resources held
244 * by the previous message only if they timed out.
245 * If it has not timed out we have an unexpected
246 * situation to report.
247 */
Cliff Wickman39847e72010-06-02 16:22:02 -0500248 if (mmr & (msg_res << UV_SW_ACK_NPENDING)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500249 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500250 /*
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600251 * Is the resource timed out?
252 * Make everyone ignore the cancelled message.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500253 */
254 msg2->canceled = 1;
255 stat->d_canceled++;
256 cancel_count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500257 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
258 write_mmr_sw_ack(mr);
Cliff Wickman39847e72010-06-02 16:22:02 -0500259 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500260 }
261 }
262 if (!cancel_count)
263 stat->d_nocanceled++;
Cliff Wickman18129242008-06-02 08:56:14 -0500264}
265
266/*
267 * Do all the things a cpu should do for a TLB shootdown message.
268 * Other cpu's may come here at the same time for this message.
269 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600270static void bau_process_message(struct msg_desc *mdp, struct bau_control *bcp,
271 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500272{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500273 short socket_ack_count = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500274 short *sp;
275 struct atomic_short *asp;
276 struct ptc_stats *stat = bcp->statp;
277 struct bau_pq_entry *msg = mdp->msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500278 struct bau_control *smaster = bcp->socket_master;
Cliff Wickman18129242008-06-02 08:56:14 -0500279
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500280 /*
281 * This must be a normal message, or retry of a normal message
282 */
Cliff Wickman18129242008-06-02 08:56:14 -0500283 if (msg->address == TLB_FLUSH_ALL) {
284 local_flush_tlb();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500285 stat->d_alltlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500286 } else {
287 __flush_tlb_one(msg->address);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500288 stat->d_onetlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500289 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500290 stat->d_requestee++;
Cliff Wickman18129242008-06-02 08:56:14 -0500291
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500292 /*
293 * One cpu on each uvhub has the additional job on a RETRY
294 * of releasing the resource held by the message that is
295 * being retried. That message is identified by sending
296 * cpu number.
297 */
298 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500299 bau_process_retry_msg(mdp, bcp);
Cliff Wickman18129242008-06-02 08:56:14 -0500300
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500301 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500302 * This is a swack message, so we have to reply to it.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500303 * Count each responding cpu on the socket. This avoids
304 * pinging the count's cache line back and forth between
305 * the sockets.
306 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500307 sp = &smaster->socket_acknowledge_count[mdp->msg_slot];
308 asp = (struct atomic_short *)sp;
309 socket_ack_count = atom_asr(1, asp);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500310 if (socket_ack_count == bcp->cpus_in_socket) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500311 int msg_ack_count;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500312 /*
313 * Both sockets dump their completed count total into
314 * the message's count.
315 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500316 *sp = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500317 asp = (struct atomic_short *)&msg->acknowledge_count;
318 msg_ack_count = atom_asr(socket_ack_count, asp);
Ingo Molnardc163a42008-06-18 14:15:43 +0200319
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500320 if (msg_ack_count == bcp->cpus_in_uvhub) {
321 /*
322 * All cpus in uvhub saw it; reply
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600323 * (unless we are in the UV2 workaround)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500324 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600325 reply_to_message(mdp, bcp, do_acknowledge);
Ingo Molnardc163a42008-06-18 14:15:43 +0200326 }
327 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500328
329 return;
Cliff Wickman18129242008-06-02 08:56:14 -0500330}
331
332/*
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500333 * Determine the first cpu on a pnode.
Cliff Wickman18129242008-06-02 08:56:14 -0500334 */
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500335static int pnode_to_first_cpu(int pnode, struct bau_control *smaster)
Cliff Wickman18129242008-06-02 08:56:14 -0500336{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500337 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500338 struct hub_and_pnode *hpp;
339
340 for_each_present_cpu(cpu) {
341 hpp = &smaster->thp[cpu];
342 if (pnode == hpp->pnode)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500343 return cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500344 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500345 return -1;
Cliff Wickman18129242008-06-02 08:56:14 -0500346}
347
Cliff Wickmanb194b122008-06-12 08:23:48 -0500348/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500349 * Last resort when we get a large number of destination timeouts is
350 * to clear resources held by a given cpu.
351 * Do this with IPI so that all messages in the BAU message queue
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500352 * can be identified by their nonzero swack_vec field.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500353 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500354 * This is entered for a single cpu on the uvhub.
355 * The sender want's this uvhub to free a specific message's
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500356 * swack resources.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500357 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500358static void do_reset(void *ptr)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500359{
360 int i;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500361 struct bau_control *bcp = &per_cpu(bau_control, smp_processor_id());
362 struct reset_args *rap = (struct reset_args *)ptr;
363 struct bau_pq_entry *msg;
364 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500365
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500366 stat->d_resets++;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500367 /*
368 * We're looking for the given sender, and
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500369 * will free its swack resource.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500370 * If all cpu's finally responded after the timeout, its
371 * message 'replied_to' was set.
372 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500373 for (msg = bcp->queue_first, i = 0; i < DEST_Q_SIZE; msg++, i++) {
374 unsigned long msg_res;
375 /* do_reset: same conditions for cancellation as
376 bau_process_retry_msg() */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500377 if ((msg->replied_to == 0) &&
378 (msg->canceled == 0) &&
379 (msg->sending_cpu == rap->sender) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500380 (msg->swack_vec) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500381 (msg->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500382 unsigned long mmr;
383 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500384 /*
385 * make everyone else ignore this message
386 */
387 msg->canceled = 1;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500388 /*
389 * only reset the resource if it is still pending
390 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500391 mmr = read_mmr_sw_ack();
392 msg_res = msg->swack_vec;
393 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500394 if (mmr & msg_res) {
395 stat->d_rcanceled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500396 write_mmr_sw_ack(mr);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500397 }
398 }
399 }
400 return;
401}
402
403/*
404 * Use IPI to get all target uvhubs to release resources held by
405 * a given sending cpu number.
406 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500407static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500408{
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500409 int pnode;
410 int apnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500411 int maskbits;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500412 int sender = bcp->cpu;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500413 cpumask_t *mask = bcp->uvhub_master->cpumask;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500414 struct bau_control *smaster = bcp->socket_master;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500415 struct reset_args reset_args;
416
417 reset_args.sender = sender;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500418 cpus_clear(*mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500419 /* find a single cpu for each uvhub in this distribution mask */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500420 maskbits = sizeof(struct pnmask) * BITSPERBYTE;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500421 /* each bit is a pnode relative to the partition base pnode */
422 for (pnode = 0; pnode < maskbits; pnode++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500423 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500424 if (!bau_uvhub_isset(pnode, distribution))
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500425 continue;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500426 apnode = pnode + bcp->partition_base_pnode;
427 cpu = pnode_to_first_cpu(apnode, smaster);
cpw@sgi.com442d3922011-06-21 07:21:31 -0500428 cpu_set(cpu, *mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500429 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500430
431 /* IPI all cpus; preemption is already disabled */
cpw@sgi.com442d3922011-06-21 07:21:31 -0500432 smp_call_function_many(mask, do_reset, (void *)&reset_args, 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500433 return;
434}
435
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500436static inline unsigned long cycles_2_us(unsigned long long cyc)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500437{
438 unsigned long long ns;
439 unsigned long us;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500440 int cpu = smp_processor_id();
441
442 ns = (cyc * per_cpu(cyc2ns, cpu)) >> CYC2NS_SCALE_FACTOR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500443 us = ns / 1000;
444 return us;
445}
446
447/*
448 * wait for all cpus on this hub to finish their sends and go quiet
449 * leaves uvhub_quiesce set so that no new broadcasts are started by
450 * bau_flush_send_and_wait()
451 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500452static inline void quiesce_local_uvhub(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500453{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500454 atom_asr(1, (struct atomic_short *)&hmaster->uvhub_quiesce);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500455}
456
457/*
458 * mark this quiet-requestor as done
459 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500460static inline void end_uvhub_quiesce(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500461{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500462 atom_asr(-1, (struct atomic_short *)&hmaster->uvhub_quiesce);
463}
464
465static unsigned long uv1_read_status(unsigned long mmr_offset, int right_shift)
466{
467 unsigned long descriptor_status;
468
469 descriptor_status = uv_read_local_mmr(mmr_offset);
470 descriptor_status >>= right_shift;
471 descriptor_status &= UV_ACT_STATUS_MASK;
472 return descriptor_status;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500473}
474
475/*
476 * Wait for completion of a broadcast software ack message
477 * return COMPLETE, RETRY(PLUGGED or TIMEOUT) or GIVEUP
Cliff Wickmanb194b122008-06-12 08:23:48 -0500478 */
Jack Steiner2a919592011-05-11 12:50:28 -0500479static int uv1_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500480 unsigned long mmr_offset, int right_shift,
481 struct bau_control *bcp, long try)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500482{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500483 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500484 cycles_t ttm;
Cliff Wickman712157a2010-06-02 16:22:02 -0500485 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500486
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500487 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500488 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500489 while ((descriptor_status != DS_IDLE)) {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500490 /*
Jack Steiner2a919592011-05-11 12:50:28 -0500491 * Our software ack messages may be blocked because
492 * there are no swack resources available. As long
493 * as none of them has timed out hardware will NACK
494 * our message and its state will stay IDLE.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500495 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500496 if (descriptor_status == DS_SOURCE_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500497 stat->s_stimeout++;
498 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500499 } else if (descriptor_status == DS_DESTINATION_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500500 stat->s_dtimeout++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500501 ttm = get_cycles();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500502
503 /*
504 * Our retries may be blocked by all destination
505 * swack resources being consumed, and a timeout
506 * pending. In that case hardware returns the
507 * ERROR that looks like a destination timeout.
508 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500509 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500510 bcp->conseccompletes = 0;
511 return FLUSH_RETRY_PLUGGED;
512 }
513
514 bcp->conseccompletes = 0;
515 return FLUSH_RETRY_TIMEOUT;
516 } else {
517 /*
518 * descriptor_status is still BUSY
519 */
520 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500521 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500522 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500523 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500524 bcp->conseccompletes++;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500525 return FLUSH_COMPLETE;
526}
527
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500528/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500529 * UV2 could have an extra bit of status in the ACTIVATION_STATUS_2 register.
530 * But not currently used.
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500531 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600532static unsigned long uv2_read_status(unsigned long offset, int rshft, int desc)
Jack Steiner2a919592011-05-11 12:50:28 -0500533{
534 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500535
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500536 descriptor_status =
537 ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500538 return descriptor_status;
539}
540
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600541/*
542 * Return whether the status of the descriptor that is normally used for this
543 * cpu (the one indexed by its hub-relative cpu number) is busy.
544 * The status of the original 32 descriptors is always reflected in the 64
545 * bits of UVH_LB_BAU_SB_ACTIVATION_STATUS_0.
546 * The bit provided by the activation_status_2 register is irrelevant to
547 * the status if it is only being tested for busy or not busy.
548 */
549int normal_busy(struct bau_control *bcp)
550{
551 int cpu = bcp->uvhub_cpu;
552 int mmr_offset;
553 int right_shift;
554
555 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
556 right_shift = cpu * UV_ACT_STATUS_SIZE;
557 return (((((read_lmmr(mmr_offset) >> right_shift) &
558 UV_ACT_STATUS_MASK)) << 1) == UV2H_DESC_BUSY);
559}
560
561/*
562 * Entered when a bau descriptor has gone into a permanent busy wait because
563 * of a hardware bug.
564 * Workaround the bug.
565 */
566int handle_uv2_busy(struct bau_control *bcp)
567{
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600568 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600569
570 stat->s_uv2_wars++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500571 bcp->busy = 1;
572 return FLUSH_GIVEUP;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600573}
574
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500575static int uv2_wait_completion(struct bau_desc *bau_desc,
576 unsigned long mmr_offset, int right_shift,
577 struct bau_control *bcp, long try)
578{
579 unsigned long descriptor_stat;
580 cycles_t ttm;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500581 int desc = bcp->uvhub_cpu;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600582 long busy_reps = 0;
Jack Steiner2a919592011-05-11 12:50:28 -0500583 struct ptc_stats *stat = bcp->statp;
584
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600585 descriptor_stat = uv2_read_status(mmr_offset, right_shift, desc);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500586
Jack Steiner2a919592011-05-11 12:50:28 -0500587 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500588 while (descriptor_stat != UV2H_DESC_IDLE) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500589 if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT)) {
590 /*
591 * A h/w bug on the destination side may
592 * have prevented the message being marked
593 * pending, thus it doesn't get replied to
594 * and gets continually nacked until it times
595 * out with a SOURCE_TIMEOUT.
596 */
Jack Steiner2a919592011-05-11 12:50:28 -0500597 stat->s_stimeout++;
598 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500599 } else if (descriptor_stat == UV2H_DESC_DEST_TIMEOUT) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500600 ttm = get_cycles();
601
602 /*
603 * Our retries may be blocked by all destination
604 * swack resources being consumed, and a timeout
605 * pending. In that case hardware returns the
606 * ERROR that looks like a destination timeout.
607 * Without using the extended status we have to
608 * deduce from the short time that this was a
609 * strong nack.
610 */
611 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
612 bcp->conseccompletes = 0;
613 stat->s_plugged++;
614 /* FLUSH_RETRY_PLUGGED causes hang on boot */
615 return FLUSH_GIVEUP;
616 }
Jack Steiner2a919592011-05-11 12:50:28 -0500617 stat->s_dtimeout++;
Jack Steiner2a919592011-05-11 12:50:28 -0500618 bcp->conseccompletes = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500619 /* FLUSH_RETRY_TIMEOUT causes hang on boot */
620 return FLUSH_GIVEUP;
Jack Steiner2a919592011-05-11 12:50:28 -0500621 } else {
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600622 busy_reps++;
623 if (busy_reps > 1000000) {
624 /* not to hammer on the clock */
625 busy_reps = 0;
626 ttm = get_cycles();
627 if ((ttm - bcp->send_message) >
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500628 bcp->timeout_interval)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600629 return handle_uv2_busy(bcp);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600630 }
Jack Steiner2a919592011-05-11 12:50:28 -0500631 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500632 * descriptor_stat is still BUSY
Jack Steiner2a919592011-05-11 12:50:28 -0500633 */
634 cpu_relax();
635 }
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600636 descriptor_stat = uv2_read_status(mmr_offset, right_shift,
637 desc);
Jack Steiner2a919592011-05-11 12:50:28 -0500638 }
639 bcp->conseccompletes++;
640 return FLUSH_COMPLETE;
641}
642
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500643/*
644 * There are 2 status registers; each and array[32] of 2 bits. Set up for
645 * which register to read and position in that register based on cpu in
646 * current hub.
647 */
648static int wait_completion(struct bau_desc *bau_desc,
649 struct bau_control *bcp, long try)
Jack Steiner2a919592011-05-11 12:50:28 -0500650{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500651 int right_shift;
652 unsigned long mmr_offset;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500653 int desc = bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500654
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600655 if (desc < UV_CPUS_PER_AS) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500656 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600657 right_shift = desc * UV_ACT_STATUS_SIZE;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500658 } else {
659 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600660 right_shift = ((desc - UV_CPUS_PER_AS) * UV_ACT_STATUS_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500661 }
662
Cliff Wickmanda87c932012-01-16 15:17:50 -0600663 if (bcp->uvhub_version == 1)
Jack Steiner2a919592011-05-11 12:50:28 -0500664 return uv1_wait_completion(bau_desc, mmr_offset, right_shift,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500665 bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500666 else
667 return uv2_wait_completion(bau_desc, mmr_offset, right_shift,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500668 bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500669}
670
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500671static inline cycles_t sec_2_cycles(unsigned long sec)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500672{
673 unsigned long ns;
674 cycles_t cyc;
675
676 ns = sec * 1000000000;
677 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
678 return cyc;
679}
680
681/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500682 * Our retries are blocked by all destination sw ack resources being
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500683 * in use, and a timeout is pending. In that case hardware immediately
684 * returns the ERROR that looks like a destination timeout.
685 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500686static void destination_plugged(struct bau_desc *bau_desc,
687 struct bau_control *bcp,
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500688 struct bau_control *hmaster, struct ptc_stats *stat)
689{
690 udelay(bcp->plugged_delay);
691 bcp->plugged_tries++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500692
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500693 if (bcp->plugged_tries >= bcp->plugsb4reset) {
694 bcp->plugged_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500695
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500696 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500697
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500698 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500699 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500700 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500701
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500702 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500703
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500704 bcp->ipi_attempts++;
705 stat->s_resets_plug++;
706 }
707}
708
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500709static void destination_timeout(struct bau_desc *bau_desc,
710 struct bau_control *bcp, struct bau_control *hmaster,
711 struct ptc_stats *stat)
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500712{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500713 hmaster->max_concurr = 1;
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500714 bcp->timeout_tries++;
715 if (bcp->timeout_tries >= bcp->timeoutsb4reset) {
716 bcp->timeout_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500717
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500718 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500719
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500720 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500721 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500722 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500723
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500724 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500725
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500726 bcp->ipi_attempts++;
727 stat->s_resets_timeout++;
728 }
729}
730
731/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500732 * Stop all cpus on a uvhub from using the BAU for a period of time.
733 * This is reversed by check_enable.
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500734 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500735static void disable_for_period(struct bau_control *bcp, struct ptc_stats *stat)
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500736{
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500737 int tcpu;
738 struct bau_control *tbcp;
739 struct bau_control *hmaster;
740 cycles_t tm1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500741
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500742 hmaster = bcp->uvhub_master;
743 spin_lock(&hmaster->disable_lock);
744 if (!bcp->baudisabled) {
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500745 stat->s_bau_disabled++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500746 tm1 = get_cycles();
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500747 for_each_present_cpu(tcpu) {
748 tbcp = &per_cpu(bau_control, tcpu);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500749 if (tbcp->uvhub_master == hmaster) {
750 tbcp->baudisabled = 1;
751 tbcp->set_bau_on_time =
752 tm1 + bcp->disabled_period;
753 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500754 }
755 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500756 spin_unlock(&hmaster->disable_lock);
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500757}
758
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500759static void count_max_concurr(int stat, struct bau_control *bcp,
760 struct bau_control *hmaster)
761{
762 bcp->plugged_tries = 0;
763 bcp->timeout_tries = 0;
764 if (stat != FLUSH_COMPLETE)
765 return;
766 if (bcp->conseccompletes <= bcp->complete_threshold)
767 return;
768 if (hmaster->max_concurr >= hmaster->max_concurr_const)
769 return;
770 hmaster->max_concurr++;
771}
772
773static void record_send_stats(cycles_t time1, cycles_t time2,
774 struct bau_control *bcp, struct ptc_stats *stat,
775 int completion_status, int try)
776{
777 cycles_t elapsed;
778
779 if (time2 > time1) {
780 elapsed = time2 - time1;
781 stat->s_time += elapsed;
782
783 if ((completion_status == FLUSH_COMPLETE) && (try == 1)) {
784 bcp->period_requests++;
785 bcp->period_time += elapsed;
786 if ((elapsed > congested_cycles) &&
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500787 (bcp->period_requests > bcp->cong_reps) &&
788 ((bcp->period_time / bcp->period_requests) >
789 congested_cycles)) {
790 stat->s_congested++;
791 disable_for_period(bcp, stat);
792 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500793 }
794 } else
795 stat->s_requestor--;
796
797 if (completion_status == FLUSH_COMPLETE && try > 1)
798 stat->s_retriesok++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500799 else if (completion_status == FLUSH_GIVEUP) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500800 stat->s_giveup++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500801 if (get_cycles() > bcp->period_end)
802 bcp->period_giveups = 0;
803 bcp->period_giveups++;
804 if (bcp->period_giveups == 1)
805 bcp->period_end = get_cycles() + bcp->disabled_period;
806 if (bcp->period_giveups > bcp->giveup_limit) {
807 disable_for_period(bcp, stat);
808 stat->s_giveuplimit++;
809 }
810 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500811}
812
813/*
814 * Because of a uv1 hardware bug only a limited number of concurrent
815 * requests can be made.
816 */
817static void uv1_throttle(struct bau_control *hmaster, struct ptc_stats *stat)
818{
819 spinlock_t *lock = &hmaster->uvhub_lock;
820 atomic_t *v;
821
822 v = &hmaster->active_descriptor_count;
823 if (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr)) {
824 stat->s_throttles++;
825 do {
826 cpu_relax();
827 } while (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr));
828 }
829}
830
831/*
832 * Handle the completion status of a message send.
833 */
834static void handle_cmplt(int completion_status, struct bau_desc *bau_desc,
835 struct bau_control *bcp, struct bau_control *hmaster,
836 struct ptc_stats *stat)
837{
838 if (completion_status == FLUSH_RETRY_PLUGGED)
839 destination_plugged(bau_desc, bcp, hmaster, stat);
840 else if (completion_status == FLUSH_RETRY_TIMEOUT)
841 destination_timeout(bau_desc, bcp, hmaster, stat);
842}
843
844/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500845 * Send a broadcast and wait for it to complete.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500846 *
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500847 * The flush_mask contains the cpus the broadcast is to be sent to including
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500848 * cpus that are on the local uvhub.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500849 *
Cliff Wickman450a0072010-06-02 16:22:02 -0500850 * Returns 0 if all flushing represented in the mask was done.
851 * Returns 1 if it gives up entirely and the original cpu mask is to be
852 * returned to the kernel.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500853 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500854int uv_flush_send_and_wait(struct cpumask *flush_mask, struct bau_control *bcp,
855 struct bau_desc *bau_desc)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500856{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500857 int seq_number = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500858 int completion_stat = 0;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600859 int uv1 = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500860 long try = 0;
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200861 unsigned long index;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500862 cycles_t time1;
863 cycles_t time2;
Cliff Wickman712157a2010-06-02 16:22:02 -0500864 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500865 struct bau_control *hmaster = bcp->uvhub_master;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600866 struct uv1_bau_msg_header *uv1_hdr = NULL;
867 struct uv2_bau_msg_header *uv2_hdr = NULL;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500868
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500869 if (bcp->uvhub_version == 1) {
870 uv1 = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500871 uv1_throttle(hmaster, stat);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500872 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500873
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500874 while (hmaster->uvhub_quiesce)
875 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500876
Cliff Wickmanb194b122008-06-12 08:23:48 -0500877 time1 = get_cycles();
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500878 if (uv1)
879 uv1_hdr = &bau_desc->header.uv1_hdr;
880 else
881 uv2_hdr = &bau_desc->header.uv2_hdr;
882
Cliff Wickmanb194b122008-06-12 08:23:48 -0500883 do {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500884 if (try == 0) {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600885 if (uv1)
886 uv1_hdr->msg_type = MSG_REGULAR;
887 else
888 uv2_hdr->msg_type = MSG_REGULAR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500889 seq_number = bcp->message_number++;
890 } else {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600891 if (uv1)
892 uv1_hdr->msg_type = MSG_RETRY;
893 else
894 uv2_hdr->msg_type = MSG_RETRY;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500895 stat->s_retry_messages++;
896 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500897
Cliff Wickmanda87c932012-01-16 15:17:50 -0600898 if (uv1)
899 uv1_hdr->sequence = seq_number;
900 else
901 uv2_hdr->sequence = seq_number;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500902 index = (1UL << AS_PUSH_SHIFT) | bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500903 bcp->send_message = get_cycles();
904
905 write_mmr_activation(index);
906
907 try++;
908 completion_stat = wait_completion(bau_desc, bcp, try);
909
910 handle_cmplt(completion_stat, bau_desc, bcp, hmaster, stat);
911
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500912 if (bcp->ipi_attempts >= bcp->ipi_reset_limit) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500913 bcp->ipi_attempts = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500914 stat->s_overipilimit++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500915 completion_stat = FLUSH_GIVEUP;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500916 break;
917 }
918 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500919 } while ((completion_stat == FLUSH_RETRY_PLUGGED) ||
920 (completion_stat == FLUSH_RETRY_TIMEOUT));
921
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500922 time2 = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500923
924 count_max_concurr(completion_stat, bcp, hmaster);
925
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500926 while (hmaster->uvhub_quiesce)
927 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500928
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500929 atomic_dec(&hmaster->active_descriptor_count);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500930
931 record_send_stats(time1, time2, bcp, stat, completion_stat, try);
932
933 if (completion_stat == FLUSH_GIVEUP)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600934 /* FLUSH_GIVEUP will fall back to using IPI's for tlb flush */
Cliff Wickman450a0072010-06-02 16:22:02 -0500935 return 1;
Cliff Wickman450a0072010-06-02 16:22:02 -0500936 return 0;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500937}
938
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500939/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500940 * The BAU is disabled for this uvhub. When the disabled time period has
941 * expired re-enable it.
942 * Return 0 if it is re-enabled for all cpus on this uvhub.
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500943 */
944static int check_enable(struct bau_control *bcp, struct ptc_stats *stat)
945{
946 int tcpu;
947 struct bau_control *tbcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500948 struct bau_control *hmaster;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500949
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500950 hmaster = bcp->uvhub_master;
951 spin_lock(&hmaster->disable_lock);
952 if (bcp->baudisabled && (get_cycles() >= bcp->set_bau_on_time)) {
953 stat->s_bau_reenabled++;
954 for_each_present_cpu(tcpu) {
955 tbcp = &per_cpu(bau_control, tcpu);
956 if (tbcp->uvhub_master == hmaster) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500957 tbcp->baudisabled = 0;
958 tbcp->period_requests = 0;
959 tbcp->period_time = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500960 tbcp->period_giveups = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500961 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500962 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500963 spin_unlock(&hmaster->disable_lock);
964 return 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500965 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500966 spin_unlock(&hmaster->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500967 return -1;
968}
969
970static void record_send_statistics(struct ptc_stats *stat, int locals, int hubs,
971 int remotes, struct bau_desc *bau_desc)
972{
973 stat->s_requestor++;
974 stat->s_ntargcpu += remotes + locals;
975 stat->s_ntargremotes += remotes;
976 stat->s_ntarglocals += locals;
977
978 /* uvhub statistics */
979 hubs = bau_uvhub_weight(&bau_desc->distribution);
980 if (locals) {
981 stat->s_ntarglocaluvhub++;
982 stat->s_ntargremoteuvhub += (hubs - 1);
983 } else
984 stat->s_ntargremoteuvhub += hubs;
985
986 stat->s_ntarguvhub += hubs;
987
988 if (hubs >= 16)
989 stat->s_ntarguvhub16++;
990 else if (hubs >= 8)
991 stat->s_ntarguvhub8++;
992 else if (hubs >= 4)
993 stat->s_ntarguvhub4++;
994 else if (hubs >= 2)
995 stat->s_ntarguvhub2++;
996 else
997 stat->s_ntarguvhub1++;
998}
999
1000/*
1001 * Translate a cpu mask to the uvhub distribution mask in the BAU
1002 * activation descriptor.
1003 */
1004static int set_distrib_bits(struct cpumask *flush_mask, struct bau_control *bcp,
1005 struct bau_desc *bau_desc, int *localsp, int *remotesp)
1006{
1007 int cpu;
1008 int pnode;
1009 int cnt = 0;
1010 struct hub_and_pnode *hpp;
1011
1012 for_each_cpu(cpu, flush_mask) {
1013 /*
1014 * The distribution vector is a bit map of pnodes, relative
1015 * to the partition base pnode (and the partition base nasid
1016 * in the header).
1017 * Translate cpu to pnode and hub using a local memory array.
1018 */
1019 hpp = &bcp->socket_master->thp[cpu];
1020 pnode = hpp->pnode - bcp->partition_base_pnode;
1021 bau_uvhub_set(pnode, &bau_desc->distribution);
1022 cnt++;
1023 if (hpp->uvhub == bcp->uvhub)
1024 (*localsp)++;
1025 else
1026 (*remotesp)++;
1027 }
1028 if (!cnt)
1029 return 1;
1030 return 0;
1031}
1032
1033/*
1034 * globally purge translation cache of a virtual address or all TLB's
Tejun Heobdbcdd42009-01-21 17:26:06 +09001035 * @cpumask: mask of all cpu's in which the address is to be removed
Cliff Wickman18129242008-06-02 08:56:14 -05001036 * @mm: mm_struct containing virtual address range
1037 * @va: virtual address to be removed (or TLB_FLUSH_ALL for all TLB's on cpu)
Tejun Heobdbcdd42009-01-21 17:26:06 +09001038 * @cpu: the current cpu
Cliff Wickman18129242008-06-02 08:56:14 -05001039 *
1040 * This is the entry point for initiating any UV global TLB shootdown.
1041 *
1042 * Purges the translation caches of all specified processors of the given
1043 * virtual address, or purges all TLB's on specified processors.
1044 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001045 * The caller has derived the cpumask from the mm_struct. This function
1046 * is called only if there are bits set in the mask. (e.g. flush_tlb_page())
Cliff Wickman18129242008-06-02 08:56:14 -05001047 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001048 * The cpumask is converted into a uvhubmask of the uvhubs containing
1049 * those cpus.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001050 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001051 * Note that this function should be called with preemption disabled.
1052 *
1053 * Returns NULL if all remote flushing was done.
1054 * Returns pointer to cpumask if some remote flushing remains to be
1055 * done. The returned pointer is valid till preemption is re-enabled.
Cliff Wickman18129242008-06-02 08:56:14 -05001056 */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001057const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask,
Alex Shie7b52ff2012-06-28 09:02:17 +08001058 struct mm_struct *mm, unsigned long start,
1059 unsigned end, unsigned int cpu)
Cliff Wickman18129242008-06-02 08:56:14 -05001060{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001061 int locals = 0;
Cliff Wickman450a0072010-06-02 16:22:02 -05001062 int remotes = 0;
1063 int hubs = 0;
Ingo Molnardc163a42008-06-18 14:15:43 +02001064 struct bau_desc *bau_desc;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001065 struct cpumask *flush_mask;
1066 struct ptc_stats *stat;
1067 struct bau_control *bcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001068 unsigned long descriptor_status;
1069 unsigned long status;
Cliff Wickman18129242008-06-02 08:56:14 -05001070
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001071 bcp = &per_cpu(bau_control, cpu);
Cliff Wickman712157a2010-06-02 16:22:02 -05001072 stat = bcp->statp;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001073 stat->s_enters++;
1074
1075 if (bcp->nobau)
1076 return cpumask;
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001077
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001078 if (bcp->busy) {
1079 descriptor_status =
1080 read_lmmr(UVH_LB_BAU_SB_ACTIVATION_STATUS_0);
1081 status = ((descriptor_status >> (bcp->uvhub_cpu *
1082 UV_ACT_STATUS_SIZE)) & UV_ACT_STATUS_MASK) << 1;
1083 if (status == UV2H_DESC_BUSY)
1084 return cpumask;
1085 bcp->busy = 0;
1086 }
1087
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001088 /* bau was disabled due to slow response */
1089 if (bcp->baudisabled) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001090 if (check_enable(bcp, stat)) {
1091 stat->s_ipifordisabled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001092 return cpumask;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001093 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001094 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001095
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001096 /*
1097 * Each sending cpu has a per-cpu mask which it fills from the caller's
Cliff Wickman450a0072010-06-02 16:22:02 -05001098 * cpu mask. All cpus are converted to uvhubs and copied to the
1099 * activation descriptor.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001100 */
1101 flush_mask = (struct cpumask *)per_cpu(uv_flush_tlb_mask, cpu);
Cliff Wickman450a0072010-06-02 16:22:02 -05001102 /* don't actually do a shootdown of the local cpu */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001103 cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001104
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001105 if (cpu_isset(cpu, *cpumask))
Cliff Wickman450a0072010-06-02 16:22:02 -05001106 stat->s_ntargself++;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001107
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001108 bau_desc = bcp->descriptor_base;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001109 bau_desc += (ITEMS_PER_DESC * bcp->uvhub_cpu);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001110 bau_uvhubs_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001111 if (set_distrib_bits(flush_mask, bcp, bau_desc, &locals, &remotes))
Cliff Wickman450a0072010-06-02 16:22:02 -05001112 return NULL;
Cliff Wickman450a0072010-06-02 16:22:02 -05001113
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001114 record_send_statistics(stat, locals, hubs, remotes, bau_desc);
Cliff Wickman18129242008-06-02 08:56:14 -05001115
Alex Shie7b52ff2012-06-28 09:02:17 +08001116 bau_desc->payload.address = start;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001117 bau_desc->payload.sending_cpu = cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001118 /*
Cliff Wickman450a0072010-06-02 16:22:02 -05001119 * uv_flush_send_and_wait returns 0 if all cpu's were messaged,
1120 * or 1 if it gave up and the original cpumask should be returned.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001121 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001122 if (!uv_flush_send_and_wait(flush_mask, bcp, bau_desc))
Cliff Wickman450a0072010-06-02 16:22:02 -05001123 return NULL;
1124 else
1125 return cpumask;
Cliff Wickman18129242008-06-02 08:56:14 -05001126}
1127
1128/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001129 * Search the message queue for any 'other' unprocessed message with the
1130 * same software acknowledge resource bit vector as the 'msg' message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001131 */
1132struct bau_pq_entry *find_another_by_swack(struct bau_pq_entry *msg,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001133 struct bau_control *bcp)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001134{
1135 struct bau_pq_entry *msg_next = msg + 1;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001136 unsigned char swack_vec = msg->swack_vec;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001137
1138 if (msg_next > bcp->queue_last)
1139 msg_next = bcp->queue_first;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001140 while (msg_next != msg) {
1141 if ((msg_next->canceled == 0) && (msg_next->replied_to == 0) &&
1142 (msg_next->swack_vec == swack_vec))
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001143 return msg_next;
1144 msg_next++;
1145 if (msg_next > bcp->queue_last)
1146 msg_next = bcp->queue_first;
1147 }
1148 return NULL;
1149}
1150
1151/*
1152 * UV2 needs to work around a bug in which an arriving message has not
1153 * set a bit in the UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE register.
1154 * Such a message must be ignored.
1155 */
1156void process_uv2_message(struct msg_desc *mdp, struct bau_control *bcp)
1157{
1158 unsigned long mmr_image;
1159 unsigned char swack_vec;
1160 struct bau_pq_entry *msg = mdp->msg;
1161 struct bau_pq_entry *other_msg;
1162
1163 mmr_image = read_mmr_sw_ack();
1164 swack_vec = msg->swack_vec;
1165
1166 if ((swack_vec & mmr_image) == 0) {
1167 /*
1168 * This message was assigned a swack resource, but no
1169 * reserved acknowlegment is pending.
1170 * The bug has prevented this message from setting the MMR.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001171 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001172 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001173 * Some message has set the MMR 'pending' bit; it might have
1174 * been another message. Look for that message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001175 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001176 other_msg = find_another_by_swack(msg, bcp);
1177 if (other_msg) {
1178 /*
1179 * There is another. Process this one but do not
1180 * ack it.
1181 */
1182 bau_process_message(mdp, bcp, 0);
1183 /*
1184 * Let the natural processing of that other message
1185 * acknowledge it. Don't get the processing of sw_ack's
1186 * out of order.
1187 */
1188 return;
1189 }
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001190 }
1191
1192 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001193 * Either the MMR shows this one pending a reply or there is no
1194 * other message using this sw_ack, so it is safe to acknowledge it.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001195 */
1196 bau_process_message(mdp, bcp, 1);
1197
1198 return;
1199}
1200
1201/*
Cliff Wickman18129242008-06-02 08:56:14 -05001202 * The BAU message interrupt comes here. (registered by set_intr_gate)
1203 * See entry_64.S
1204 *
1205 * We received a broadcast assist message.
1206 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001207 * Interrupts are disabled; this interrupt could represent
Cliff Wickman18129242008-06-02 08:56:14 -05001208 * the receipt of several messages.
1209 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001210 * All cores/threads on this hub get this interrupt.
1211 * The last one to see it does the software ack.
Cliff Wickman18129242008-06-02 08:56:14 -05001212 * (the resource will not be freed until noninterruptable cpus see this
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001213 * interrupt; hardware may timeout the s/w ack and reply ERROR)
Cliff Wickman18129242008-06-02 08:56:14 -05001214 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05001215void uv_bau_message_interrupt(struct pt_regs *regs)
Cliff Wickman18129242008-06-02 08:56:14 -05001216{
Cliff Wickman18129242008-06-02 08:56:14 -05001217 int count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001218 cycles_t time_start;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001219 struct bau_pq_entry *msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001220 struct bau_control *bcp;
1221 struct ptc_stats *stat;
1222 struct msg_desc msgdesc;
Cliff Wickman18129242008-06-02 08:56:14 -05001223
Cliff Wickman88ed9dd2012-01-16 15:21:46 -06001224 ack_APIC_irq();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001225 time_start = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001226
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001227 bcp = &per_cpu(bau_control, smp_processor_id());
Cliff Wickman712157a2010-06-02 16:22:02 -05001228 stat = bcp->statp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001229
1230 msgdesc.queue_first = bcp->queue_first;
1231 msgdesc.queue_last = bcp->queue_last;
1232
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001233 msg = bcp->bau_msg_head;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001234 while (msg->swack_vec) {
Cliff Wickman18129242008-06-02 08:56:14 -05001235 count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001236
1237 msgdesc.msg_slot = msg - msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001238 msgdesc.msg = msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001239 if (bcp->uvhub_version == 2)
1240 process_uv2_message(&msgdesc, bcp);
1241 else
1242 bau_process_message(&msgdesc, bcp, 1);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001243
Cliff Wickman18129242008-06-02 08:56:14 -05001244 msg++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001245 if (msg > msgdesc.queue_last)
1246 msg = msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001247 bcp->bau_msg_head = msg;
Cliff Wickman18129242008-06-02 08:56:14 -05001248 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001249 stat->d_time += (get_cycles() - time_start);
Cliff Wickman18129242008-06-02 08:56:14 -05001250 if (!count)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001251 stat->d_nomsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001252 else if (count > 1)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001253 stat->d_multmsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001254}
1255
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001256/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001257 * Each target uvhub (i.e. a uvhub that has cpu's) needs to have
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001258 * shootdown message timeouts enabled. The timeout does not cause
1259 * an interrupt, but causes an error message to be returned to
1260 * the sender.
1261 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001262static void __init enable_timeouts(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001263{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001264 int uvhub;
1265 int nuvhubs;
Cliff Wickman18129242008-06-02 08:56:14 -05001266 int pnode;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001267 unsigned long mmr_image;
Cliff Wickman18129242008-06-02 08:56:14 -05001268
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001269 nuvhubs = uv_num_possible_blades();
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001270
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001271 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
1272 if (!uv_blade_nr_possible_cpus(uvhub))
Cliff Wickman18129242008-06-02 08:56:14 -05001273 continue;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001274
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001275 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001276 mmr_image = read_mmr_misc_control(pnode);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001277 /*
1278 * Set the timeout period and then lock it in, in three
1279 * steps; captures and locks in the period.
1280 *
1281 * To program the period, the SOFT_ACK_MODE must be off.
1282 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001283 mmr_image &= ~(1L << SOFTACK_MSHIFT);
1284 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001285 /*
1286 * Set the 4-bit period.
1287 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001288 mmr_image &= ~((unsigned long)0xf << SOFTACK_PSHIFT);
1289 mmr_image |= (SOFTACK_TIMEOUT_PERIOD << SOFTACK_PSHIFT);
1290 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001291 /*
Jack Steiner2a919592011-05-11 12:50:28 -05001292 * UV1:
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001293 * Subsequent reversals of the timebase bit (3) cause an
1294 * immediate timeout of one or all INTD resources as
1295 * indicated in bits 2:0 (7 causes all of them to timeout).
1296 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001297 mmr_image |= (1L << SOFTACK_MSHIFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001298 if (is_uv2_hub()) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001299 /* hw bug workaround; do not use extended status */
1300 mmr_image &= ~(1L << UV2_EXT_SHFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001301 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001302 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickman18129242008-06-02 08:56:14 -05001303 }
Cliff Wickman18129242008-06-02 08:56:14 -05001304}
1305
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001306static void *ptc_seq_start(struct seq_file *file, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001307{
1308 if (*offset < num_possible_cpus())
1309 return offset;
1310 return NULL;
1311}
1312
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001313static void *ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001314{
1315 (*offset)++;
1316 if (*offset < num_possible_cpus())
1317 return offset;
1318 return NULL;
1319}
1320
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001321static void ptc_seq_stop(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001322{
1323}
1324
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001325static inline unsigned long long usec_2_cycles(unsigned long microsec)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001326{
1327 unsigned long ns;
1328 unsigned long long cyc;
1329
Cliff Wickman12a66112010-06-02 16:22:01 -05001330 ns = microsec * 1000;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001331 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
1332 return cyc;
1333}
1334
Cliff Wickman18129242008-06-02 08:56:14 -05001335/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001336 * Display the statistics thru /proc/sgi_uv/ptc_statistics
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001337 * 'data' points to the cpu number
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001338 * Note: see the descriptions in stat_description[].
Cliff Wickman18129242008-06-02 08:56:14 -05001339 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001340static int ptc_seq_show(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001341{
1342 struct ptc_stats *stat;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001343 struct bau_control *bcp;
Cliff Wickman18129242008-06-02 08:56:14 -05001344 int cpu;
1345
1346 cpu = *(loff_t *)data;
Cliff Wickman18129242008-06-02 08:56:14 -05001347 if (!cpu) {
1348 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001349 "# cpu bauoff sent stime self locals remotes ncpus localhub ");
Cliff Wickman18129242008-06-02 08:56:14 -05001350 seq_printf(file,
Cliff Wickman450a0072010-06-02 16:22:02 -05001351 "remotehub numuvhubs numuvhubs16 numuvhubs8 ");
1352 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001353 "numuvhubs4 numuvhubs2 numuvhubs1 dto snacks retries ");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001354 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001355 "rok resetp resett giveup sto bz throt disable ");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001356 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001357 "enable wars warshw warwaits enters ipidis plugged ");
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001358 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001359 "ipiover glim cong swack recv rtime all one mult ");
1360 seq_printf(file,
1361 "none retry canc nocan reset rcan\n");
Cliff Wickman18129242008-06-02 08:56:14 -05001362 }
1363 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05001364 bcp = &per_cpu(bau_control, cpu);
1365 stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001366 /* source side statistics */
1367 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001368 "cpu %d %d %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickman26ef8572012-06-22 08:13:30 -05001369 cpu, bcp->nobau, stat->s_requestor,
1370 cycles_2_us(stat->s_time),
Cliff Wickman450a0072010-06-02 16:22:02 -05001371 stat->s_ntargself, stat->s_ntarglocals,
1372 stat->s_ntargremotes, stat->s_ntargcpu,
1373 stat->s_ntarglocaluvhub, stat->s_ntargremoteuvhub,
1374 stat->s_ntarguvhub, stat->s_ntarguvhub16);
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001375 seq_printf(file, "%ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001376 stat->s_ntarguvhub8, stat->s_ntarguvhub4,
1377 stat->s_ntarguvhub2, stat->s_ntarguvhub1,
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001378 stat->s_dtimeout, stat->s_strongnacks);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001379 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001380 stat->s_retry_messages, stat->s_retriesok,
1381 stat->s_resets_plug, stat->s_resets_timeout,
1382 stat->s_giveup, stat->s_stimeout,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001383 stat->s_busy, stat->s_throttles);
1384 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
1385 stat->s_bau_disabled, stat->s_bau_reenabled,
1386 stat->s_uv2_wars, stat->s_uv2_wars_hw,
1387 stat->s_uv2_war_waits, stat->s_enters,
1388 stat->s_ipifordisabled, stat->s_plugged,
1389 stat->s_overipilimit, stat->s_giveuplimit,
1390 stat->s_congested);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001391
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001392 /* destination side statistics */
1393 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001394 "%lx %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001395 read_gmmr_sw_ack(uv_cpu_to_pnode(cpu)),
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001396 stat->d_requestee, cycles_2_us(stat->d_time),
1397 stat->d_alltlb, stat->d_onetlb, stat->d_multmsg,
1398 stat->d_nomsg, stat->d_retries, stat->d_canceled,
1399 stat->d_nocanceled, stat->d_resets,
1400 stat->d_rcanceled);
Cliff Wickman18129242008-06-02 08:56:14 -05001401 }
Cliff Wickman18129242008-06-02 08:56:14 -05001402 return 0;
1403}
1404
1405/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001406 * Display the tunables thru debugfs
1407 */
1408static ssize_t tunables_read(struct file *file, char __user *userbuf,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001409 size_t count, loff_t *ppos)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001410{
Dan Carpenterb365a852010-09-29 10:41:05 +02001411 char *buf;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001412 int ret;
1413
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001414 buf = kasprintf(GFP_KERNEL, "%s %s %s\n%d %d %d %d %d %d %d %d %d %d\n",
1415 "max_concur plugged_delay plugsb4reset timeoutsb4reset",
1416 "ipi_reset_limit complete_threshold congested_response_us",
1417 "congested_reps disabled_period giveup_limit",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001418 max_concurr, plugged_delay, plugsb4reset,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001419 timeoutsb4reset, ipi_reset_limit, complete_threshold,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001420 congested_respns_us, congested_reps, disabled_period,
1421 giveup_limit);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001422
Dan Carpenterb365a852010-09-29 10:41:05 +02001423 if (!buf)
1424 return -ENOMEM;
1425
1426 ret = simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
1427 kfree(buf);
1428 return ret;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001429}
1430
1431/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001432 * handle a write to /proc/sgi_uv/ptc_statistics
1433 * -1: reset the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001434 * 0: display meaning of the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001435 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001436static ssize_t ptc_proc_write(struct file *file, const char __user *user,
1437 size_t count, loff_t *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001438{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001439 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001440 int i;
1441 int elements;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001442 long input_arg;
Cliff Wickman18129242008-06-02 08:56:14 -05001443 char optstr[64];
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001444 struct ptc_stats *stat;
Cliff Wickman18129242008-06-02 08:56:14 -05001445
Cliff Wickmane7eb8722008-06-23 08:32:25 -05001446 if (count == 0 || count > sizeof(optstr))
Cliff Wickmancef53272008-06-19 11:16:24 -05001447 return -EINVAL;
Cliff Wickman18129242008-06-02 08:56:14 -05001448 if (copy_from_user(optstr, user, count))
1449 return -EFAULT;
1450 optstr[count - 1] = '\0';
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001451
Cliff Wickman26ef8572012-06-22 08:13:30 -05001452 if (!strcmp(optstr, "on")) {
1453 set_bau_on();
1454 return count;
1455 } else if (!strcmp(optstr, "off")) {
1456 set_bau_off();
1457 return count;
1458 }
1459
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001460 if (strict_strtol(optstr, 10, &input_arg) < 0) {
Cliff Wickman18129242008-06-02 08:56:14 -05001461 printk(KERN_DEBUG "%s is invalid\n", optstr);
1462 return -EINVAL;
1463 }
1464
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001465 if (input_arg == 0) {
Sasha Levin64441742012-12-20 14:11:34 -05001466 elements = ARRAY_SIZE(stat_description);
Cliff Wickman18129242008-06-02 08:56:14 -05001467 printk(KERN_DEBUG "# cpu: cpu number\n");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001468 printk(KERN_DEBUG "Sender statistics:\n");
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001469 for (i = 0; i < elements; i++)
1470 printk(KERN_DEBUG "%s\n", stat_description[i]);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001471 } else if (input_arg == -1) {
1472 for_each_present_cpu(cpu) {
1473 stat = &per_cpu(ptcstats, cpu);
1474 memset(stat, 0, sizeof(struct ptc_stats));
1475 }
Cliff Wickman18129242008-06-02 08:56:14 -05001476 }
1477
1478 return count;
1479}
1480
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001481static int local_atoi(const char *name)
1482{
1483 int val = 0;
1484
1485 for (;; name++) {
1486 switch (*name) {
1487 case '0' ... '9':
1488 val = 10*val+(*name-'0');
1489 break;
1490 default:
1491 return val;
1492 }
1493 }
1494}
1495
1496/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001497 * Parse the values written to /sys/kernel/debug/sgi_uv/bau_tunables.
1498 * Zero values reset them to defaults.
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001499 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001500static int parse_tunables_write(struct bau_control *bcp, char *instr,
1501 int count)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001502{
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001503 char *p;
1504 char *q;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001505 int cnt = 0;
1506 int val;
Sasha Levin64441742012-12-20 14:11:34 -05001507 int e = ARRAY_SIZE(tunables);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001508
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001509 p = instr + strspn(instr, WHITESPACE);
1510 q = p;
1511 for (; *p; p = q + strspn(q, WHITESPACE)) {
1512 q = p + strcspn(p, WHITESPACE);
1513 cnt++;
1514 if (q == p)
1515 break;
1516 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001517 if (cnt != e) {
1518 printk(KERN_INFO "bau tunable error: should be %d values\n", e);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001519 return -EINVAL;
1520 }
1521
1522 p = instr + strspn(instr, WHITESPACE);
1523 q = p;
1524 for (cnt = 0; *p; p = q + strspn(q, WHITESPACE), cnt++) {
1525 q = p + strcspn(p, WHITESPACE);
1526 val = local_atoi(p);
1527 switch (cnt) {
1528 case 0:
1529 if (val == 0) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001530 max_concurr = MAX_BAU_CONCURRENT;
1531 max_concurr_const = MAX_BAU_CONCURRENT;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001532 continue;
1533 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001534 if (val < 1 || val > bcp->cpus_in_uvhub) {
1535 printk(KERN_DEBUG
1536 "Error: BAU max concurrent %d is invalid\n",
1537 val);
1538 return -EINVAL;
1539 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001540 max_concurr = val;
1541 max_concurr_const = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001542 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001543 default:
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001544 if (val == 0)
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001545 *tunables[cnt].tunp = tunables[cnt].deflt;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001546 else
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001547 *tunables[cnt].tunp = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001548 continue;
1549 }
1550 if (q == p)
1551 break;
1552 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001553 return 0;
1554}
1555
1556/*
1557 * Handle a write to debugfs. (/sys/kernel/debug/sgi_uv/bau_tunables)
1558 */
1559static ssize_t tunables_write(struct file *file, const char __user *user,
1560 size_t count, loff_t *data)
1561{
1562 int cpu;
1563 int ret;
1564 char instr[100];
1565 struct bau_control *bcp;
1566
1567 if (count == 0 || count > sizeof(instr)-1)
1568 return -EINVAL;
1569 if (copy_from_user(instr, user, count))
1570 return -EFAULT;
1571
1572 instr[count] = '\0';
1573
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001574 cpu = get_cpu();
1575 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001576 ret = parse_tunables_write(bcp, instr, count);
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001577 put_cpu();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001578 if (ret)
1579 return ret;
1580
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001581 for_each_present_cpu(cpu) {
1582 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001583 bcp->max_concurr = max_concurr;
1584 bcp->max_concurr_const = max_concurr;
1585 bcp->plugged_delay = plugged_delay;
1586 bcp->plugsb4reset = plugsb4reset;
1587 bcp->timeoutsb4reset = timeoutsb4reset;
1588 bcp->ipi_reset_limit = ipi_reset_limit;
1589 bcp->complete_threshold = complete_threshold;
1590 bcp->cong_response_us = congested_respns_us;
1591 bcp->cong_reps = congested_reps;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001592 bcp->disabled_period = sec_2_cycles(disabled_period);
1593 bcp->giveup_limit = giveup_limit;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001594 }
1595 return count;
1596}
1597
Cliff Wickman18129242008-06-02 08:56:14 -05001598static const struct seq_operations uv_ptc_seq_ops = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001599 .start = ptc_seq_start,
1600 .next = ptc_seq_next,
1601 .stop = ptc_seq_stop,
1602 .show = ptc_seq_show
Cliff Wickman18129242008-06-02 08:56:14 -05001603};
1604
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001605static int ptc_proc_open(struct inode *inode, struct file *file)
Cliff Wickman18129242008-06-02 08:56:14 -05001606{
1607 return seq_open(file, &uv_ptc_seq_ops);
1608}
1609
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001610static int tunables_open(struct inode *inode, struct file *file)
1611{
1612 return 0;
1613}
1614
Cliff Wickman18129242008-06-02 08:56:14 -05001615static const struct file_operations proc_uv_ptc_operations = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001616 .open = ptc_proc_open,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001617 .read = seq_read,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001618 .write = ptc_proc_write,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001619 .llseek = seq_lseek,
1620 .release = seq_release,
Cliff Wickman18129242008-06-02 08:56:14 -05001621};
1622
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001623static const struct file_operations tunables_fops = {
1624 .open = tunables_open,
1625 .read = tunables_read,
1626 .write = tunables_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001627 .llseek = default_llseek,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001628};
1629
Cliff Wickmanb194b122008-06-12 08:23:48 -05001630static int __init uv_ptc_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001631{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001632 struct proc_dir_entry *proc_uv_ptc;
Cliff Wickman18129242008-06-02 08:56:14 -05001633
1634 if (!is_uv_system())
1635 return 0;
1636
Alexey Dobriyan10f02d112009-08-23 23:17:27 +04001637 proc_uv_ptc = proc_create(UV_PTC_BASENAME, 0444, NULL,
1638 &proc_uv_ptc_operations);
Cliff Wickman18129242008-06-02 08:56:14 -05001639 if (!proc_uv_ptc) {
1640 printk(KERN_ERR "unable to create %s proc entry\n",
1641 UV_PTC_BASENAME);
1642 return -EINVAL;
1643 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001644
1645 tunables_dir = debugfs_create_dir(UV_BAU_TUNABLES_DIR, NULL);
1646 if (!tunables_dir) {
1647 printk(KERN_ERR "unable to create debugfs directory %s\n",
1648 UV_BAU_TUNABLES_DIR);
1649 return -EINVAL;
1650 }
1651 tunables_file = debugfs_create_file(UV_BAU_TUNABLES_FILE, 0600,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001652 tunables_dir, NULL, &tunables_fops);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001653 if (!tunables_file) {
1654 printk(KERN_ERR "unable to create debugfs file %s\n",
1655 UV_BAU_TUNABLES_FILE);
1656 return -EINVAL;
1657 }
Cliff Wickman18129242008-06-02 08:56:14 -05001658 return 0;
1659}
1660
Cliff Wickmanb194b122008-06-12 08:23:48 -05001661/*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001662 * Initialize the sending side's sending buffers.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001663 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001664static void activation_descriptor_init(int node, int pnode, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001665{
1666 int i;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001667 int cpu;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001668 int uv1 = 0;
Jack Steiner6a469e42011-09-20 13:55:04 -07001669 unsigned long gpa;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001670 unsigned long m;
1671 unsigned long n;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001672 size_t dsize;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001673 struct bau_desc *bau_desc;
1674 struct bau_desc *bd2;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001675 struct uv1_bau_msg_header *uv1_hdr;
1676 struct uv2_bau_msg_header *uv2_hdr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001677 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001678
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001679 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001680 * each bau_desc is 64 bytes; there are 8 (ITEMS_PER_DESC)
1681 * per cpu; and one per cpu on the uvhub (ADP_SZ)
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001682 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001683 dsize = sizeof(struct bau_desc) * ADP_SZ * ITEMS_PER_DESC;
1684 bau_desc = kmalloc_node(dsize, GFP_KERNEL, node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001685 BUG_ON(!bau_desc);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001686
Jack Steiner6a469e42011-09-20 13:55:04 -07001687 gpa = uv_gpa(bau_desc);
1688 n = uv_gpa_to_gnode(gpa);
1689 m = uv_gpa_to_offset(gpa);
Cliff Wickmanda87c932012-01-16 15:17:50 -06001690 if (is_uv1_hub())
1691 uv1 = 1;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001692
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001693 /* the 14-bit pnode */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001694 write_mmr_descriptor_base(pnode, (n << UV_DESC_PSHIFT | m));
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001695 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001696 * Initializing all 8 (ITEMS_PER_DESC) descriptors for each
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001697 * cpu even though we only use the first one; one descriptor can
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001698 * describe a broadcast to 256 uv hubs.
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001699 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001700 for (i = 0, bd2 = bau_desc; i < (ADP_SZ * ITEMS_PER_DESC); i++, bd2++) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001701 memset(bd2, 0, sizeof(struct bau_desc));
Cliff Wickmanda87c932012-01-16 15:17:50 -06001702 if (uv1) {
1703 uv1_hdr = &bd2->header.uv1_hdr;
1704 uv1_hdr->swack_flag = 1;
1705 /*
1706 * The base_dest_nasid set in the message header
1707 * is the nasid of the first uvhub in the partition.
1708 * The bit map will indicate destination pnode numbers
1709 * relative to that base. They may not be consecutive
1710 * if nasid striding is being used.
1711 */
1712 uv1_hdr->base_dest_nasid =
1713 UV_PNODE_TO_NASID(base_pnode);
1714 uv1_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1715 uv1_hdr->command = UV_NET_ENDPOINT_INTD;
1716 uv1_hdr->int_both = 1;
1717 /*
1718 * all others need to be set to zero:
1719 * fairness chaining multilevel count replied_to
1720 */
1721 } else {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001722 /*
1723 * BIOS uses legacy mode, but UV2 hardware always
1724 * uses native mode for selective broadcasts.
1725 */
Cliff Wickmanda87c932012-01-16 15:17:50 -06001726 uv2_hdr = &bd2->header.uv2_hdr;
1727 uv2_hdr->swack_flag = 1;
1728 uv2_hdr->base_dest_nasid =
1729 UV_PNODE_TO_NASID(base_pnode);
1730 uv2_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1731 uv2_hdr->command = UV_NET_ENDPOINT_INTD;
1732 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001733 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001734 for_each_present_cpu(cpu) {
1735 if (pnode != uv_blade_to_pnode(uv_cpu_to_blade_id(cpu)))
1736 continue;
1737 bcp = &per_cpu(bau_control, cpu);
1738 bcp->descriptor_base = bau_desc;
1739 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001740}
1741
1742/*
1743 * initialize the destination side's receiving buffers
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001744 * entered for each uvhub in the partition
1745 * - node is first node (kernel memory notion) on the uvhub
1746 * - pnode is the uvhub's physical identifier
Cliff Wickmanb194b122008-06-12 08:23:48 -05001747 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001748static void pq_init(int node, int pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001749{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001750 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001751 size_t plsize;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001752 char *cp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001753 void *vp;
1754 unsigned long pn;
1755 unsigned long first;
1756 unsigned long pn_first;
1757 unsigned long last;
1758 struct bau_pq_entry *pqp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001759 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001760
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001761 plsize = (DEST_Q_SIZE + 1) * sizeof(struct bau_pq_entry);
1762 vp = kmalloc_node(plsize, GFP_KERNEL, node);
1763 pqp = (struct bau_pq_entry *)vp;
Ingo Molnardc163a42008-06-18 14:15:43 +02001764 BUG_ON(!pqp);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001765
Cliff Wickmanb194b122008-06-12 08:23:48 -05001766 cp = (char *)pqp + 31;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001767 pqp = (struct bau_pq_entry *)(((unsigned long)cp >> 5) << 5);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001768
1769 for_each_present_cpu(cpu) {
1770 if (pnode != uv_cpu_to_pnode(cpu))
1771 continue;
1772 /* for every cpu on this pnode: */
1773 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001774 bcp->queue_first = pqp;
1775 bcp->bau_msg_head = pqp;
1776 bcp->queue_last = pqp + (DEST_Q_SIZE - 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001777 }
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001778 /*
Jack Steiner6a469e42011-09-20 13:55:04 -07001779 * need the gnode of where the memory was really allocated
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001780 */
Jack Steiner6a469e42011-09-20 13:55:04 -07001781 pn = uv_gpa_to_gnode(uv_gpa(pqp));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001782 first = uv_physnodeaddr(pqp);
1783 pn_first = ((unsigned long)pn << UV_PAYLOADQ_PNODE_SHIFT) | first;
1784 last = uv_physnodeaddr(pqp + (DEST_Q_SIZE - 1));
1785 write_mmr_payload_first(pnode, pn_first);
1786 write_mmr_payload_tail(pnode, first);
1787 write_mmr_payload_last(pnode, last);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001788 write_gmmr_sw_ack(pnode, 0xffffUL);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001789
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001790 /* in effect, all msg_type's are set to MSG_NOOP */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001791 memset(pqp, 0, sizeof(struct bau_pq_entry) * DEST_Q_SIZE);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001792}
1793
1794/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001795 * Initialization of each UV hub's structures
Cliff Wickmanb194b122008-06-12 08:23:48 -05001796 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001797static void __init init_uvhub(int uvhub, int vector, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001798{
Cliff Wickman9674f352009-04-03 08:34:05 -05001799 int node;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001800 int pnode;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001801 unsigned long apicid;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001802
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001803 node = uvhub_to_first_node(uvhub);
1804 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001805
1806 activation_descriptor_init(node, pnode, base_pnode);
1807
1808 pq_init(node, pnode);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001809 /*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001810 * The below initialization can't be in firmware because the
1811 * messaging IRQ will be determined by the OS.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001812 */
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -06001813 apicid = uvhub_to_first_apicid(uvhub) | uv_apicid_hibits;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001814 write_mmr_data_config(pnode, ((apicid << 32) | vector));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001815}
1816
1817/*
Cliff Wickman12a66112010-06-02 16:22:01 -05001818 * We will set BAU_MISC_CONTROL with a timeout period.
1819 * But the BIOS has set UVH_AGING_PRESCALE_SEL and UVH_TRANSACTION_TIMEOUT.
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001820 * So the destination timeout period has to be calculated from them.
Cliff Wickman12a66112010-06-02 16:22:01 -05001821 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001822static int calculate_destination_timeout(void)
Cliff Wickman12a66112010-06-02 16:22:01 -05001823{
1824 unsigned long mmr_image;
1825 int mult1;
1826 int mult2;
1827 int index;
1828 int base;
1829 int ret;
1830 unsigned long ts_ns;
1831
Jack Steiner2a919592011-05-11 12:50:28 -05001832 if (is_uv1_hub()) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001833 mult1 = SOFTACK_TIMEOUT_PERIOD & BAU_MISC_CONTROL_MULT_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001834 mmr_image = uv_read_local_mmr(UVH_AGING_PRESCALE_SEL);
1835 index = (mmr_image >> BAU_URGENCY_7_SHIFT) & BAU_URGENCY_7_MASK;
1836 mmr_image = uv_read_local_mmr(UVH_TRANSACTION_TIMEOUT);
1837 mult2 = (mmr_image >> BAU_TRANS_SHIFT) & BAU_TRANS_MASK;
Cliff Wickman11cab712012-06-22 08:12:12 -05001838 ts_ns = timeout_base_ns[index];
1839 ts_ns *= (mult1 * mult2);
Jack Steiner2a919592011-05-11 12:50:28 -05001840 ret = ts_ns / 1000;
1841 } else {
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001842 /* 4 bits 0/1 for 10/80us base, 3 bits of multiplier */
1843 mmr_image = uv_read_local_mmr(UVH_LB_BAU_MISC_CONTROL);
Jack Steiner2a919592011-05-11 12:50:28 -05001844 mmr_image = (mmr_image & UV_SA_MASK) >> UV_SA_SHFT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001845 if (mmr_image & (1L << UV2_ACK_UNITS_SHFT))
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001846 base = 80;
Jack Steiner2a919592011-05-11 12:50:28 -05001847 else
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001848 base = 10;
1849 mult1 = mmr_image & UV2_ACK_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001850 ret = mult1 * base;
1851 }
Cliff Wickman12a66112010-06-02 16:22:01 -05001852 return ret;
1853}
1854
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001855static void __init init_per_cpu_tunables(void)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001856{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001857 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001858 struct bau_control *bcp;
1859
1860 for_each_present_cpu(cpu) {
1861 bcp = &per_cpu(bau_control, cpu);
1862 bcp->baudisabled = 0;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001863 if (nobau)
1864 bcp->nobau = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001865 bcp->statp = &per_cpu(ptcstats, cpu);
1866 /* time interval to catch a hardware stay-busy bug */
1867 bcp->timeout_interval = usec_2_cycles(2*timeout_us);
1868 bcp->max_concurr = max_concurr;
1869 bcp->max_concurr_const = max_concurr;
1870 bcp->plugged_delay = plugged_delay;
1871 bcp->plugsb4reset = plugsb4reset;
1872 bcp->timeoutsb4reset = timeoutsb4reset;
1873 bcp->ipi_reset_limit = ipi_reset_limit;
1874 bcp->complete_threshold = complete_threshold;
1875 bcp->cong_response_us = congested_respns_us;
1876 bcp->cong_reps = congested_reps;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001877 bcp->disabled_period = sec_2_cycles(disabled_period);
1878 bcp->giveup_limit = giveup_limit;
Cliff Wickmand2ebc712012-01-18 09:40:47 -06001879 spin_lock_init(&bcp->queue_lock);
1880 spin_lock_init(&bcp->uvhub_lock);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001881 spin_lock_init(&bcp->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001882 }
1883}
1884
1885/*
1886 * Scan all cpus to collect blade and socket summaries.
1887 */
1888static int __init get_cpu_topology(int base_pnode,
1889 struct uvhub_desc *uvhub_descs,
1890 unsigned char *uvhub_mask)
1891{
1892 int cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001893 int pnode;
1894 int uvhub;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001895 int socket;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001896 struct bau_control *bcp;
1897 struct uvhub_desc *bdp;
1898 struct socket_desc *sdp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001899
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001900 for_each_present_cpu(cpu) {
1901 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001902
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001903 memset(bcp, 0, sizeof(struct bau_control));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001904
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001905 pnode = uv_cpu_hub_info(cpu)->pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001906 if ((pnode - base_pnode) >= UV_DISTRIBUTION_SIZE) {
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001907 printk(KERN_EMERG
1908 "cpu %d pnode %d-%d beyond %d; BAU disabled\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001909 cpu, pnode, base_pnode, UV_DISTRIBUTION_SIZE);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001910 return 1;
1911 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001912
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001913 bcp->osnode = cpu_to_node(cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001914 bcp->partition_base_pnode = base_pnode;
1915
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001916 uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05001917 *(uvhub_mask + (uvhub/8)) |= (1 << (uvhub%8));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001918 bdp = &uvhub_descs[uvhub];
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001919
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001920 bdp->num_cpus++;
1921 bdp->uvhub = uvhub;
1922 bdp->pnode = pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001923
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001924 /* kludge: 'assuming' one node per socket, and assuming that
1925 disabling a socket just leaves a gap in node numbers */
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001926 socket = bcp->osnode & 1;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001927 bdp->socket_mask |= (1 << socket);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001928 sdp = &bdp->socket[socket];
1929 sdp->cpu_number[sdp->num_cpus] = cpu;
1930 sdp->num_cpus++;
Cliff Wickmancfa60912011-01-03 12:03:53 -06001931 if (sdp->num_cpus > MAX_CPUS_PER_SOCKET) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001932 printk(KERN_EMERG "%d cpus per socket invalid\n",
1933 sdp->num_cpus);
Cliff Wickmancfa60912011-01-03 12:03:53 -06001934 return 1;
1935 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001936 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001937 return 0;
1938}
1939
1940/*
1941 * Each socket is to get a local array of pnodes/hubs.
1942 */
1943static void make_per_cpu_thp(struct bau_control *smaster)
1944{
1945 int cpu;
1946 size_t hpsz = sizeof(struct hub_and_pnode) * num_possible_cpus();
1947
1948 smaster->thp = kmalloc_node(hpsz, GFP_KERNEL, smaster->osnode);
1949 memset(smaster->thp, 0, hpsz);
1950 for_each_present_cpu(cpu) {
1951 smaster->thp[cpu].pnode = uv_cpu_hub_info(cpu)->pnode;
1952 smaster->thp[cpu].uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
1953 }
1954}
1955
1956/*
cpw@sgi.com442d3922011-06-21 07:21:31 -05001957 * Each uvhub is to get a local cpumask.
1958 */
1959static void make_per_hub_cpumask(struct bau_control *hmaster)
1960{
1961 int sz = sizeof(cpumask_t);
1962
1963 hmaster->cpumask = kzalloc_node(sz, GFP_KERNEL, hmaster->osnode);
1964}
1965
1966/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001967 * Initialize all the per_cpu information for the cpu's on a given socket,
1968 * given what has been gathered into the socket_desc struct.
1969 * And reports the chosen hub and socket masters back to the caller.
1970 */
1971static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp,
1972 struct bau_control **smasterp,
1973 struct bau_control **hmasterp)
1974{
1975 int i;
1976 int cpu;
1977 struct bau_control *bcp;
1978
1979 for (i = 0; i < sdp->num_cpus; i++) {
1980 cpu = sdp->cpu_number[i];
1981 bcp = &per_cpu(bau_control, cpu);
1982 bcp->cpu = cpu;
1983 if (i == 0) {
1984 *smasterp = bcp;
1985 if (!(*hmasterp))
1986 *hmasterp = bcp;
1987 }
1988 bcp->cpus_in_uvhub = bdp->num_cpus;
1989 bcp->cpus_in_socket = sdp->num_cpus;
1990 bcp->socket_master = *smasterp;
1991 bcp->uvhub = bdp->uvhub;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001992 if (is_uv1_hub())
1993 bcp->uvhub_version = 1;
1994 else if (is_uv2_hub())
1995 bcp->uvhub_version = 2;
1996 else {
1997 printk(KERN_EMERG "uvhub version not 1 or 2\n");
1998 return 1;
1999 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002000 bcp->uvhub_master = *hmasterp;
2001 bcp->uvhub_cpu = uv_cpu_hub_info(cpu)->blade_processor_id;
2002 if (bcp->uvhub_cpu >= MAX_CPUS_PER_UVHUB) {
2003 printk(KERN_EMERG "%d cpus per uvhub invalid\n",
2004 bcp->uvhub_cpu);
2005 return 1;
2006 }
2007 }
2008 return 0;
2009}
2010
2011/*
2012 * Summarize the blade and socket topology into the per_cpu structures.
2013 */
2014static int __init summarize_uvhub_sockets(int nuvhubs,
2015 struct uvhub_desc *uvhub_descs,
2016 unsigned char *uvhub_mask)
2017{
2018 int socket;
2019 int uvhub;
2020 unsigned short socket_mask;
2021
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002022 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002023 struct uvhub_desc *bdp;
2024 struct bau_control *smaster = NULL;
2025 struct bau_control *hmaster = NULL;
2026
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002027 if (!(*(uvhub_mask + (uvhub/8)) & (1 << (uvhub%8))))
2028 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002029
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002030 bdp = &uvhub_descs[uvhub];
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002031 socket_mask = bdp->socket_mask;
2032 socket = 0;
2033 while (socket_mask) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002034 struct socket_desc *sdp;
2035 if ((socket_mask & 1)) {
2036 sdp = &bdp->socket[socket];
2037 if (scan_sock(sdp, bdp, &smaster, &hmaster))
Cliff Wickmancfa60912011-01-03 12:03:53 -06002038 return 1;
cpw@sgi.com9c9153d2011-06-21 07:21:28 -05002039 make_per_cpu_thp(smaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002040 }
2041 socket++;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002042 socket_mask = (socket_mask >> 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002043 }
cpw@sgi.com442d3922011-06-21 07:21:31 -05002044 make_per_hub_cpumask(hmaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002045 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002046 return 0;
2047}
2048
2049/*
2050 * initialize the bau_control structure for each cpu
2051 */
2052static int __init init_per_cpu(int nuvhubs, int base_part_pnode)
2053{
2054 unsigned char *uvhub_mask;
2055 void *vp;
2056 struct uvhub_desc *uvhub_descs;
2057
2058 timeout_us = calculate_destination_timeout();
2059
2060 vp = kmalloc(nuvhubs * sizeof(struct uvhub_desc), GFP_KERNEL);
2061 uvhub_descs = (struct uvhub_desc *)vp;
2062 memset(uvhub_descs, 0, nuvhubs * sizeof(struct uvhub_desc));
2063 uvhub_mask = kzalloc((nuvhubs+7)/8, GFP_KERNEL);
2064
2065 if (get_cpu_topology(base_part_pnode, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002066 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002067
2068 if (summarize_uvhub_sockets(nuvhubs, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002069 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002070
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002071 kfree(uvhub_descs);
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002072 kfree(uvhub_mask);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002073 init_per_cpu_tunables();
Cliff Wickmancfa60912011-01-03 12:03:53 -06002074 return 0;
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002075
2076fail:
2077 kfree(uvhub_descs);
2078 kfree(uvhub_mask);
2079 return 1;
Cliff Wickmanb194b122008-06-12 08:23:48 -05002080}
Cliff Wickman18129242008-06-02 08:56:14 -05002081
2082/*
2083 * Initialization of BAU-related structures
2084 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05002085static int __init uv_bau_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05002086{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002087 int uvhub;
2088 int pnode;
2089 int nuvhubs;
Rusty Russell2c74d662009-03-18 08:22:30 +10302090 int cur_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002091 int cpus;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002092 int vector;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002093 cpumask_var_t *mask;
Cliff Wickman18129242008-06-02 08:56:14 -05002094
2095 if (!is_uv_system())
2096 return 0;
2097
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002098 for_each_possible_cpu(cur_cpu) {
2099 mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
2100 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
2101 }
Rusty Russell76ba0ec2009-03-13 14:49:57 +10302102
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002103 nuvhubs = uv_num_possible_blades();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002104 congested_cycles = usec_2_cycles(congested_respns_us);
Cliff Wickman9674f352009-04-03 08:34:05 -05002105
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002106 uv_base_pnode = 0x7fffffff;
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002107 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002108 cpus = uv_blade_nr_possible_cpus(uvhub);
2109 if (cpus && (uv_blade_to_pnode(uvhub) < uv_base_pnode))
2110 uv_base_pnode = uv_blade_to_pnode(uvhub);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002111 }
2112
Cliff Wickmand059f9f2012-01-16 15:18:48 -06002113 enable_timeouts();
2114
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002115 if (init_per_cpu(nuvhubs, uv_base_pnode)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05002116 set_bau_off();
2117 nobau_perm = 1;
Cliff Wickmancfa60912011-01-03 12:03:53 -06002118 return 0;
2119 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002120
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002121 vector = UV_BAU_MESSAGE;
2122 for_each_possible_blade(uvhub)
2123 if (uv_blade_nr_possible_cpus(uvhub))
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002124 init_uvhub(uvhub, vector, uv_base_pnode);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002125
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002126 alloc_intr_gate(vector, uv_bau_message_intr1);
2127
2128 for_each_possible_blade(uvhub) {
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002129 if (uv_blade_nr_possible_cpus(uvhub)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002130 unsigned long val;
2131 unsigned long mmr;
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002132 pnode = uv_blade_to_pnode(uvhub);
2133 /* INIT the bau */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002134 val = 1L << 63;
2135 write_gmmr_activation(pnode, val);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002136 mmr = 1; /* should be 1 to broadcast to both sockets */
Cliff Wickmanda87c932012-01-16 15:17:50 -06002137 if (!is_uv1_hub())
2138 write_mmr_data_broadcast(pnode, mmr);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002139 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002140 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002141
Cliff Wickman18129242008-06-02 08:56:14 -05002142 return 0;
2143}
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002144core_initcall(uv_bau_init);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05002145fs_initcall(uv_ptc_init);