blob: 8462fd1583edb6afa9f1dcc5ac32301b1b8f448a [file] [log] [blame]
Cliff Wickman18129242008-06-02 08:56:14 -05001/*
2 * SGI UltraViolet TLB flush routines.
3 *
Cliff Wickmana26fd712014-05-14 16:15:47 -05004 * (c) 2008-2014 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;
Alex Thorlton1c532e02016-03-31 14:18:29 -050040static bool nobau = true;
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[] = {
Andrew Banman67492c82016-09-21 11:09:12 -050058 {&max_concurr, MAX_BAU_CONCURRENT}, /* must be [0] */
59 {&plugged_delay, PLUGGED_DELAY},
60 {&plugsb4reset, PLUGSB4RESET},
61 {&timeoutsb4reset, TIMEOUTSB4RESET},
62 {&ipi_reset_limit, IPI_RESET_LIMIT},
63 {&complete_threshold, COMPLETE_THRESHOLD},
64 {&congested_respns_us, CONGESTED_RESPONSE_US},
65 {&congested_reps, CONGESTED_REPS},
66 {&disabled_period, DISABLED_PERIOD},
67 {&giveup_limit, GIVEUP_LIMIT}
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
Alex Thorlton1c532e02016-03-31 14:18:29 -0500109static int __init setup_bau(char *arg)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500110{
Alex Thorlton1c532e02016-03-31 14:18:29 -0500111 int result;
112
113 if (!arg)
114 return -EINVAL;
115
116 result = strtobool(arg, &nobau);
117 if (result)
118 return result;
119
120 /* we need to flip the logic here, so that bau=y sets nobau to false */
121 nobau = !nobau;
122
123 if (!nobau)
124 pr_info("UV BAU Enabled\n");
125 else
126 pr_info("UV BAU Disabled\n");
127
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500128 return 0;
129}
Alex Thorlton1c532e02016-03-31 14:18:29 -0500130early_param("bau", setup_bau);
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200131
Cliff Wickman94ca8e42009-04-14 10:56:48 -0500132/* base pnode in this partition */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500133static int uv_base_pnode __read_mostly;
Cliff Wickman18129242008-06-02 08:56:14 -0500134
Ingo Molnardc163a42008-06-18 14:15:43 +0200135static DEFINE_PER_CPU(struct ptc_stats, ptcstats);
136static DEFINE_PER_CPU(struct bau_control, bau_control);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500137static DEFINE_PER_CPU(cpumask_var_t, uv_flush_tlb_mask);
138
Cliff Wickman26ef8572012-06-22 08:13:30 -0500139static void
140set_bau_on(void)
141{
142 int cpu;
143 struct bau_control *bcp;
144
145 if (nobau_perm) {
146 pr_info("BAU not initialized; cannot be turned on\n");
147 return;
148 }
Alex Thorlton1c532e02016-03-31 14:18:29 -0500149 nobau = false;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500150 for_each_present_cpu(cpu) {
151 bcp = &per_cpu(bau_control, cpu);
Alex Thorlton1c532e02016-03-31 14:18:29 -0500152 bcp->nobau = false;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500153 }
154 pr_info("BAU turned on\n");
155 return;
156}
157
158static void
159set_bau_off(void)
160{
161 int cpu;
162 struct bau_control *bcp;
163
Alex Thorlton1c532e02016-03-31 14:18:29 -0500164 nobau = true;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500165 for_each_present_cpu(cpu) {
166 bcp = &per_cpu(bau_control, cpu);
Alex Thorlton1c532e02016-03-31 14:18:29 -0500167 bcp->nobau = true;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500168 }
169 pr_info("BAU turned off\n");
170 return;
171}
172
Cliff Wickman18129242008-06-02 08:56:14 -0500173/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500174 * Determine the first node on a uvhub. 'Nodes' are used for kernel
175 * memory allocation.
Cliff Wickman9674f352009-04-03 08:34:05 -0500176 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500177static int __init uvhub_to_first_node(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500178{
179 int node, b;
180
181 for_each_online_node(node) {
182 b = uv_node_to_blade_id(node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500183 if (uvhub == b)
Cliff Wickman9674f352009-04-03 08:34:05 -0500184 return node;
185 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500186 return -1;
Cliff Wickman9674f352009-04-03 08:34:05 -0500187}
188
189/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500190 * Determine the apicid of the first cpu on a uvhub.
Cliff Wickman9674f352009-04-03 08:34:05 -0500191 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500192static int __init uvhub_to_first_apicid(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500193{
194 int cpu;
195
196 for_each_present_cpu(cpu)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500197 if (uvhub == uv_cpu_to_blade_id(cpu))
Cliff Wickman9674f352009-04-03 08:34:05 -0500198 return per_cpu(x86_cpu_to_apicid, cpu);
199 return -1;
200}
201
202/*
Cliff Wickman18129242008-06-02 08:56:14 -0500203 * Free a software acknowledge hardware resource by clearing its Pending
204 * bit. This will return a reply to the sender.
205 * If the message has timed out, a reply has already been sent by the
206 * hardware but the resource has not been released. In that case our
207 * clear of the Timeout bit (as well) will free the resource. No reply will
208 * be sent (the hardware will only do one reply per message).
209 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600210static void reply_to_message(struct msg_desc *mdp, struct bau_control *bcp,
211 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500212{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500213 unsigned long dw;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500214 struct bau_pq_entry *msg;
Cliff Wickman18129242008-06-02 08:56:14 -0500215
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500216 msg = mdp->msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600217 if (!msg->canceled && do_acknowledge) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500218 dw = (msg->swack_vec << UV_SW_ACK_NPENDING) | msg->swack_vec;
219 write_mmr_sw_ack(dw);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500220 }
Cliff Wickman18129242008-06-02 08:56:14 -0500221 msg->replied_to = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500222 msg->swack_vec = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500223}
224
225/*
226 * Process the receipt of a RETRY message
227 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500228static void bau_process_retry_msg(struct msg_desc *mdp,
229 struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500230{
231 int i;
232 int cancel_count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500233 unsigned long msg_res;
234 unsigned long mmr = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500235 struct bau_pq_entry *msg = mdp->msg;
236 struct bau_pq_entry *msg2;
237 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500238
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500239 stat->d_retries++;
240 /*
241 * cancel any message from msg+1 to the retry itself
242 */
243 for (msg2 = msg+1, i = 0; i < DEST_Q_SIZE; msg2++, i++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500244 if (msg2 > mdp->queue_last)
245 msg2 = mdp->queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500246 if (msg2 == msg)
247 break;
248
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500249 /* same conditions for cancellation as do_reset */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500250 if ((msg2->replied_to == 0) && (msg2->canceled == 0) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500251 (msg2->swack_vec) && ((msg2->swack_vec &
252 msg->swack_vec) == 0) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500253 (msg2->sending_cpu == msg->sending_cpu) &&
254 (msg2->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500255 mmr = read_mmr_sw_ack();
256 msg_res = msg2->swack_vec;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500257 /*
258 * This is a message retry; clear the resources held
259 * by the previous message only if they timed out.
260 * If it has not timed out we have an unexpected
261 * situation to report.
262 */
Cliff Wickman39847e72010-06-02 16:22:02 -0500263 if (mmr & (msg_res << UV_SW_ACK_NPENDING)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500264 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500265 /*
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600266 * Is the resource timed out?
267 * Make everyone ignore the cancelled message.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500268 */
269 msg2->canceled = 1;
270 stat->d_canceled++;
271 cancel_count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500272 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
273 write_mmr_sw_ack(mr);
Cliff Wickman39847e72010-06-02 16:22:02 -0500274 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500275 }
276 }
277 if (!cancel_count)
278 stat->d_nocanceled++;
Cliff Wickman18129242008-06-02 08:56:14 -0500279}
280
281/*
282 * Do all the things a cpu should do for a TLB shootdown message.
283 * Other cpu's may come here at the same time for this message.
284 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600285static void bau_process_message(struct msg_desc *mdp, struct bau_control *bcp,
286 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500287{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500288 short socket_ack_count = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500289 short *sp;
290 struct atomic_short *asp;
291 struct ptc_stats *stat = bcp->statp;
292 struct bau_pq_entry *msg = mdp->msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500293 struct bau_control *smaster = bcp->socket_master;
Cliff Wickman18129242008-06-02 08:56:14 -0500294
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500295 /*
296 * This must be a normal message, or retry of a normal message
297 */
Cliff Wickman18129242008-06-02 08:56:14 -0500298 if (msg->address == TLB_FLUSH_ALL) {
299 local_flush_tlb();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500300 stat->d_alltlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500301 } else {
302 __flush_tlb_one(msg->address);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500303 stat->d_onetlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500304 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500305 stat->d_requestee++;
Cliff Wickman18129242008-06-02 08:56:14 -0500306
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500307 /*
308 * One cpu on each uvhub has the additional job on a RETRY
309 * of releasing the resource held by the message that is
310 * being retried. That message is identified by sending
311 * cpu number.
312 */
313 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500314 bau_process_retry_msg(mdp, bcp);
Cliff Wickman18129242008-06-02 08:56:14 -0500315
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500316 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500317 * This is a swack message, so we have to reply to it.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500318 * Count each responding cpu on the socket. This avoids
319 * pinging the count's cache line back and forth between
320 * the sockets.
321 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500322 sp = &smaster->socket_acknowledge_count[mdp->msg_slot];
323 asp = (struct atomic_short *)sp;
324 socket_ack_count = atom_asr(1, asp);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500325 if (socket_ack_count == bcp->cpus_in_socket) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500326 int msg_ack_count;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500327 /*
328 * Both sockets dump their completed count total into
329 * the message's count.
330 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500331 *sp = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500332 asp = (struct atomic_short *)&msg->acknowledge_count;
333 msg_ack_count = atom_asr(socket_ack_count, asp);
Ingo Molnardc163a42008-06-18 14:15:43 +0200334
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500335 if (msg_ack_count == bcp->cpus_in_uvhub) {
336 /*
337 * All cpus in uvhub saw it; reply
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600338 * (unless we are in the UV2 workaround)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500339 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600340 reply_to_message(mdp, bcp, do_acknowledge);
Ingo Molnardc163a42008-06-18 14:15:43 +0200341 }
342 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500343
344 return;
Cliff Wickman18129242008-06-02 08:56:14 -0500345}
346
347/*
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500348 * Determine the first cpu on a pnode.
Cliff Wickman18129242008-06-02 08:56:14 -0500349 */
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500350static int pnode_to_first_cpu(int pnode, struct bau_control *smaster)
Cliff Wickman18129242008-06-02 08:56:14 -0500351{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500352 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500353 struct hub_and_pnode *hpp;
354
355 for_each_present_cpu(cpu) {
356 hpp = &smaster->thp[cpu];
357 if (pnode == hpp->pnode)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500358 return cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500359 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500360 return -1;
Cliff Wickman18129242008-06-02 08:56:14 -0500361}
362
Cliff Wickmanb194b122008-06-12 08:23:48 -0500363/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500364 * Last resort when we get a large number of destination timeouts is
365 * to clear resources held by a given cpu.
366 * Do this with IPI so that all messages in the BAU message queue
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500367 * can be identified by their nonzero swack_vec field.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500368 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500369 * This is entered for a single cpu on the uvhub.
370 * The sender want's this uvhub to free a specific message's
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500371 * swack resources.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500372 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500373static void do_reset(void *ptr)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500374{
375 int i;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500376 struct bau_control *bcp = &per_cpu(bau_control, smp_processor_id());
377 struct reset_args *rap = (struct reset_args *)ptr;
378 struct bau_pq_entry *msg;
379 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500380
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500381 stat->d_resets++;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500382 /*
383 * We're looking for the given sender, and
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500384 * will free its swack resource.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500385 * If all cpu's finally responded after the timeout, its
386 * message 'replied_to' was set.
387 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500388 for (msg = bcp->queue_first, i = 0; i < DEST_Q_SIZE; msg++, i++) {
389 unsigned long msg_res;
390 /* do_reset: same conditions for cancellation as
391 bau_process_retry_msg() */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500392 if ((msg->replied_to == 0) &&
393 (msg->canceled == 0) &&
394 (msg->sending_cpu == rap->sender) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500395 (msg->swack_vec) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500396 (msg->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500397 unsigned long mmr;
398 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500399 /*
400 * make everyone else ignore this message
401 */
402 msg->canceled = 1;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500403 /*
404 * only reset the resource if it is still pending
405 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500406 mmr = read_mmr_sw_ack();
407 msg_res = msg->swack_vec;
408 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500409 if (mmr & msg_res) {
410 stat->d_rcanceled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500411 write_mmr_sw_ack(mr);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500412 }
413 }
414 }
415 return;
416}
417
418/*
419 * Use IPI to get all target uvhubs to release resources held by
420 * a given sending cpu number.
421 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500422static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500423{
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500424 int pnode;
425 int apnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500426 int maskbits;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500427 int sender = bcp->cpu;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500428 cpumask_t *mask = bcp->uvhub_master->cpumask;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500429 struct bau_control *smaster = bcp->socket_master;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500430 struct reset_args reset_args;
431
432 reset_args.sender = sender;
Rusty Russell020b37a2015-03-02 22:05:49 +1030433 cpumask_clear(mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500434 /* find a single cpu for each uvhub in this distribution mask */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500435 maskbits = sizeof(struct pnmask) * BITSPERBYTE;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500436 /* each bit is a pnode relative to the partition base pnode */
437 for (pnode = 0; pnode < maskbits; pnode++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500438 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500439 if (!bau_uvhub_isset(pnode, distribution))
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500440 continue;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500441 apnode = pnode + bcp->partition_base_pnode;
442 cpu = pnode_to_first_cpu(apnode, smaster);
Rusty Russell020b37a2015-03-02 22:05:49 +1030443 cpumask_set_cpu(cpu, mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500444 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500445
446 /* IPI all cpus; preemption is already disabled */
cpw@sgi.com442d3922011-06-21 07:21:31 -0500447 smp_call_function_many(mask, do_reset, (void *)&reset_args, 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500448 return;
449}
450
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100451/*
452 * Not to be confused with cycles_2_ns() from tsc.c; this gives a relative
453 * number, not an absolute. It converts a duration in cycles to a duration in
454 * ns.
455 */
456static inline unsigned long long cycles_2_ns(unsigned long long cyc)
457{
458 struct cyc2ns_data *data = cyc2ns_read_begin();
459 unsigned long long ns;
460
461 ns = mul_u64_u32_shr(cyc, data->cyc2ns_mul, data->cyc2ns_shift);
462
463 cyc2ns_read_end(data);
464 return ns;
465}
466
467/*
468 * The reverse of the above; converts a duration in ns to a duration in cycles.
Cliff Wickmana26fd712014-05-14 16:15:47 -0500469 */
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100470static inline unsigned long long ns_2_cycles(unsigned long long ns)
471{
472 struct cyc2ns_data *data = cyc2ns_read_begin();
473 unsigned long long cyc;
474
475 cyc = (ns << data->cyc2ns_shift) / data->cyc2ns_mul;
476
477 cyc2ns_read_end(data);
478 return cyc;
479}
480
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500481static inline unsigned long cycles_2_us(unsigned long long cyc)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500482{
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100483 return cycles_2_ns(cyc) / NSEC_PER_USEC;
484}
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500485
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100486static inline cycles_t sec_2_cycles(unsigned long sec)
487{
488 return ns_2_cycles(sec * NSEC_PER_SEC);
489}
490
491static inline unsigned long long usec_2_cycles(unsigned long usec)
492{
493 return ns_2_cycles(usec * NSEC_PER_USEC);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500494}
495
496/*
497 * wait for all cpus on this hub to finish their sends and go quiet
498 * leaves uvhub_quiesce set so that no new broadcasts are started by
499 * bau_flush_send_and_wait()
500 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500501static inline void quiesce_local_uvhub(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500502{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500503 atom_asr(1, (struct atomic_short *)&hmaster->uvhub_quiesce);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500504}
505
506/*
507 * mark this quiet-requestor as done
508 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500509static inline void end_uvhub_quiesce(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500510{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500511 atom_asr(-1, (struct atomic_short *)&hmaster->uvhub_quiesce);
512}
513
514static unsigned long uv1_read_status(unsigned long mmr_offset, int right_shift)
515{
516 unsigned long descriptor_status;
517
518 descriptor_status = uv_read_local_mmr(mmr_offset);
519 descriptor_status >>= right_shift;
520 descriptor_status &= UV_ACT_STATUS_MASK;
521 return descriptor_status;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500522}
523
524/*
525 * Wait for completion of a broadcast software ack message
526 * return COMPLETE, RETRY(PLUGGED or TIMEOUT) or GIVEUP
Cliff Wickmanb194b122008-06-12 08:23:48 -0500527 */
Jack Steiner2a919592011-05-11 12:50:28 -0500528static int uv1_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500529 unsigned long mmr_offset, int right_shift,
530 struct bau_control *bcp, long try)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500531{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500532 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500533 cycles_t ttm;
Cliff Wickman712157a2010-06-02 16:22:02 -0500534 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500535
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500536 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500537 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500538 while ((descriptor_status != DS_IDLE)) {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500539 /*
Jack Steiner2a919592011-05-11 12:50:28 -0500540 * Our software ack messages may be blocked because
541 * there are no swack resources available. As long
542 * as none of them has timed out hardware will NACK
543 * our message and its state will stay IDLE.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500544 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500545 if (descriptor_status == DS_SOURCE_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500546 stat->s_stimeout++;
547 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500548 } else if (descriptor_status == DS_DESTINATION_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500549 stat->s_dtimeout++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500550 ttm = get_cycles();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500551
552 /*
553 * Our retries may be blocked by all destination
554 * swack resources being consumed, and a timeout
555 * pending. In that case hardware returns the
556 * ERROR that looks like a destination timeout.
557 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500558 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500559 bcp->conseccompletes = 0;
560 return FLUSH_RETRY_PLUGGED;
561 }
562
563 bcp->conseccompletes = 0;
564 return FLUSH_RETRY_TIMEOUT;
565 } else {
566 /*
567 * descriptor_status is still BUSY
568 */
569 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500570 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500571 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500572 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500573 bcp->conseccompletes++;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500574 return FLUSH_COMPLETE;
575}
576
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500577/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500578 * UV2 could have an extra bit of status in the ACTIVATION_STATUS_2 register.
579 * But not currently used.
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500580 */
Cliff Wickmana26fd712014-05-14 16:15:47 -0500581static unsigned long uv2_3_read_status(unsigned long offset, int rshft, int desc)
Jack Steiner2a919592011-05-11 12:50:28 -0500582{
583 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500584
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500585 descriptor_status =
586 ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500587 return descriptor_status;
588}
589
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600590/*
591 * Return whether the status of the descriptor that is normally used for this
592 * cpu (the one indexed by its hub-relative cpu number) is busy.
593 * The status of the original 32 descriptors is always reflected in the 64
594 * bits of UVH_LB_BAU_SB_ACTIVATION_STATUS_0.
595 * The bit provided by the activation_status_2 register is irrelevant to
596 * the status if it is only being tested for busy or not busy.
597 */
598int normal_busy(struct bau_control *bcp)
599{
600 int cpu = bcp->uvhub_cpu;
601 int mmr_offset;
602 int right_shift;
603
604 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
605 right_shift = cpu * UV_ACT_STATUS_SIZE;
606 return (((((read_lmmr(mmr_offset) >> right_shift) &
607 UV_ACT_STATUS_MASK)) << 1) == UV2H_DESC_BUSY);
608}
609
610/*
611 * Entered when a bau descriptor has gone into a permanent busy wait because
612 * of a hardware bug.
613 * Workaround the bug.
614 */
615int handle_uv2_busy(struct bau_control *bcp)
616{
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600617 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600618
619 stat->s_uv2_wars++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500620 bcp->busy = 1;
621 return FLUSH_GIVEUP;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600622}
623
Cliff Wickmana26fd712014-05-14 16:15:47 -0500624static int uv2_3_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500625 unsigned long mmr_offset, int right_shift,
626 struct bau_control *bcp, long try)
627{
628 unsigned long descriptor_stat;
629 cycles_t ttm;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500630 int desc = bcp->uvhub_cpu;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600631 long busy_reps = 0;
Jack Steiner2a919592011-05-11 12:50:28 -0500632 struct ptc_stats *stat = bcp->statp;
633
Cliff Wickmana26fd712014-05-14 16:15:47 -0500634 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500635
Jack Steiner2a919592011-05-11 12:50:28 -0500636 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500637 while (descriptor_stat != UV2H_DESC_IDLE) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500638 if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT)) {
639 /*
640 * A h/w bug on the destination side may
641 * have prevented the message being marked
642 * pending, thus it doesn't get replied to
643 * and gets continually nacked until it times
644 * out with a SOURCE_TIMEOUT.
645 */
Jack Steiner2a919592011-05-11 12:50:28 -0500646 stat->s_stimeout++;
647 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500648 } else if (descriptor_stat == UV2H_DESC_DEST_TIMEOUT) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500649 ttm = get_cycles();
650
651 /*
652 * Our retries may be blocked by all destination
653 * swack resources being consumed, and a timeout
654 * pending. In that case hardware returns the
655 * ERROR that looks like a destination timeout.
656 * Without using the extended status we have to
657 * deduce from the short time that this was a
658 * strong nack.
659 */
660 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
661 bcp->conseccompletes = 0;
662 stat->s_plugged++;
663 /* FLUSH_RETRY_PLUGGED causes hang on boot */
664 return FLUSH_GIVEUP;
665 }
Jack Steiner2a919592011-05-11 12:50:28 -0500666 stat->s_dtimeout++;
Jack Steiner2a919592011-05-11 12:50:28 -0500667 bcp->conseccompletes = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500668 /* FLUSH_RETRY_TIMEOUT causes hang on boot */
669 return FLUSH_GIVEUP;
Jack Steiner2a919592011-05-11 12:50:28 -0500670 } else {
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600671 busy_reps++;
672 if (busy_reps > 1000000) {
673 /* not to hammer on the clock */
674 busy_reps = 0;
675 ttm = get_cycles();
Cliff Wickmana26fd712014-05-14 16:15:47 -0500676 if ((ttm - bcp->send_message) > bcp->timeout_interval)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600677 return handle_uv2_busy(bcp);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600678 }
Jack Steiner2a919592011-05-11 12:50:28 -0500679 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500680 * descriptor_stat is still BUSY
Jack Steiner2a919592011-05-11 12:50:28 -0500681 */
682 cpu_relax();
683 }
Cliff Wickmana26fd712014-05-14 16:15:47 -0500684 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
Jack Steiner2a919592011-05-11 12:50:28 -0500685 }
686 bcp->conseccompletes++;
687 return FLUSH_COMPLETE;
688}
689
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500690/*
691 * There are 2 status registers; each and array[32] of 2 bits. Set up for
692 * which register to read and position in that register based on cpu in
693 * current hub.
694 */
Cliff Wickmana26fd712014-05-14 16:15:47 -0500695static int wait_completion(struct bau_desc *bau_desc, struct bau_control *bcp, long try)
Jack Steiner2a919592011-05-11 12:50:28 -0500696{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500697 int right_shift;
698 unsigned long mmr_offset;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500699 int desc = bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500700
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600701 if (desc < UV_CPUS_PER_AS) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500702 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600703 right_shift = desc * UV_ACT_STATUS_SIZE;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500704 } else {
705 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600706 right_shift = ((desc - UV_CPUS_PER_AS) * UV_ACT_STATUS_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500707 }
708
Cliff Wickmanda87c932012-01-16 15:17:50 -0600709 if (bcp->uvhub_version == 1)
Cliff Wickmana26fd712014-05-14 16:15:47 -0500710 return uv1_wait_completion(bau_desc, mmr_offset, right_shift, bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500711 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500712 return uv2_3_wait_completion(bau_desc, mmr_offset, right_shift, bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500713}
714
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500715/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500716 * Our retries are blocked by all destination sw ack resources being
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500717 * in use, and a timeout is pending. In that case hardware immediately
718 * returns the ERROR that looks like a destination timeout.
719 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500720static void destination_plugged(struct bau_desc *bau_desc,
721 struct bau_control *bcp,
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500722 struct bau_control *hmaster, struct ptc_stats *stat)
723{
724 udelay(bcp->plugged_delay);
725 bcp->plugged_tries++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500726
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500727 if (bcp->plugged_tries >= bcp->plugsb4reset) {
728 bcp->plugged_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500729
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500730 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500731
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500732 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500733 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500734 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500735
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500736 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500737
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500738 bcp->ipi_attempts++;
739 stat->s_resets_plug++;
740 }
741}
742
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500743static void destination_timeout(struct bau_desc *bau_desc,
744 struct bau_control *bcp, struct bau_control *hmaster,
745 struct ptc_stats *stat)
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500746{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500747 hmaster->max_concurr = 1;
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500748 bcp->timeout_tries++;
749 if (bcp->timeout_tries >= bcp->timeoutsb4reset) {
750 bcp->timeout_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500751
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500752 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500753
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500754 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500755 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500756 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500757
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500758 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500759
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500760 bcp->ipi_attempts++;
761 stat->s_resets_timeout++;
762 }
763}
764
765/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500766 * Stop all cpus on a uvhub from using the BAU for a period of time.
767 * This is reversed by check_enable.
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500768 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500769static void disable_for_period(struct bau_control *bcp, struct ptc_stats *stat)
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500770{
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500771 int tcpu;
772 struct bau_control *tbcp;
773 struct bau_control *hmaster;
774 cycles_t tm1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500775
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500776 hmaster = bcp->uvhub_master;
777 spin_lock(&hmaster->disable_lock);
778 if (!bcp->baudisabled) {
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500779 stat->s_bau_disabled++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500780 tm1 = get_cycles();
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500781 for_each_present_cpu(tcpu) {
782 tbcp = &per_cpu(bau_control, tcpu);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500783 if (tbcp->uvhub_master == hmaster) {
784 tbcp->baudisabled = 1;
785 tbcp->set_bau_on_time =
786 tm1 + bcp->disabled_period;
787 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500788 }
789 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500790 spin_unlock(&hmaster->disable_lock);
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500791}
792
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500793static void count_max_concurr(int stat, struct bau_control *bcp,
794 struct bau_control *hmaster)
795{
796 bcp->plugged_tries = 0;
797 bcp->timeout_tries = 0;
798 if (stat != FLUSH_COMPLETE)
799 return;
800 if (bcp->conseccompletes <= bcp->complete_threshold)
801 return;
802 if (hmaster->max_concurr >= hmaster->max_concurr_const)
803 return;
804 hmaster->max_concurr++;
805}
806
807static void record_send_stats(cycles_t time1, cycles_t time2,
808 struct bau_control *bcp, struct ptc_stats *stat,
809 int completion_status, int try)
810{
811 cycles_t elapsed;
812
813 if (time2 > time1) {
814 elapsed = time2 - time1;
815 stat->s_time += elapsed;
816
817 if ((completion_status == FLUSH_COMPLETE) && (try == 1)) {
818 bcp->period_requests++;
819 bcp->period_time += elapsed;
820 if ((elapsed > congested_cycles) &&
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500821 (bcp->period_requests > bcp->cong_reps) &&
822 ((bcp->period_time / bcp->period_requests) >
823 congested_cycles)) {
824 stat->s_congested++;
825 disable_for_period(bcp, stat);
826 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500827 }
828 } else
829 stat->s_requestor--;
830
831 if (completion_status == FLUSH_COMPLETE && try > 1)
832 stat->s_retriesok++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500833 else if (completion_status == FLUSH_GIVEUP) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500834 stat->s_giveup++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500835 if (get_cycles() > bcp->period_end)
836 bcp->period_giveups = 0;
837 bcp->period_giveups++;
838 if (bcp->period_giveups == 1)
839 bcp->period_end = get_cycles() + bcp->disabled_period;
840 if (bcp->period_giveups > bcp->giveup_limit) {
841 disable_for_period(bcp, stat);
842 stat->s_giveuplimit++;
843 }
844 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500845}
846
847/*
848 * Because of a uv1 hardware bug only a limited number of concurrent
849 * requests can be made.
850 */
851static void uv1_throttle(struct bau_control *hmaster, struct ptc_stats *stat)
852{
853 spinlock_t *lock = &hmaster->uvhub_lock;
854 atomic_t *v;
855
856 v = &hmaster->active_descriptor_count;
857 if (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr)) {
858 stat->s_throttles++;
859 do {
860 cpu_relax();
861 } while (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr));
862 }
863}
864
865/*
866 * Handle the completion status of a message send.
867 */
868static void handle_cmplt(int completion_status, struct bau_desc *bau_desc,
869 struct bau_control *bcp, struct bau_control *hmaster,
870 struct ptc_stats *stat)
871{
872 if (completion_status == FLUSH_RETRY_PLUGGED)
873 destination_plugged(bau_desc, bcp, hmaster, stat);
874 else if (completion_status == FLUSH_RETRY_TIMEOUT)
875 destination_timeout(bau_desc, bcp, hmaster, stat);
876}
877
878/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500879 * Send a broadcast and wait for it to complete.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500880 *
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500881 * The flush_mask contains the cpus the broadcast is to be sent to including
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500882 * cpus that are on the local uvhub.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500883 *
Cliff Wickman450a0072010-06-02 16:22:02 -0500884 * Returns 0 if all flushing represented in the mask was done.
885 * Returns 1 if it gives up entirely and the original cpu mask is to be
886 * returned to the kernel.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500887 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500888int uv_flush_send_and_wait(struct cpumask *flush_mask, struct bau_control *bcp,
889 struct bau_desc *bau_desc)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500890{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500891 int seq_number = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500892 int completion_stat = 0;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600893 int uv1 = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500894 long try = 0;
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200895 unsigned long index;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500896 cycles_t time1;
897 cycles_t time2;
Cliff Wickman712157a2010-06-02 16:22:02 -0500898 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500899 struct bau_control *hmaster = bcp->uvhub_master;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600900 struct uv1_bau_msg_header *uv1_hdr = NULL;
Cliff Wickmana26fd712014-05-14 16:15:47 -0500901 struct uv2_3_bau_msg_header *uv2_3_hdr = NULL;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500902
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500903 if (bcp->uvhub_version == 1) {
904 uv1 = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500905 uv1_throttle(hmaster, stat);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500906 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500907
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500908 while (hmaster->uvhub_quiesce)
909 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500910
Cliff Wickmanb194b122008-06-12 08:23:48 -0500911 time1 = get_cycles();
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500912 if (uv1)
913 uv1_hdr = &bau_desc->header.uv1_hdr;
914 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500915 /* uv2 and uv3 */
916 uv2_3_hdr = &bau_desc->header.uv2_3_hdr;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500917
Cliff Wickmanb194b122008-06-12 08:23:48 -0500918 do {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500919 if (try == 0) {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600920 if (uv1)
921 uv1_hdr->msg_type = MSG_REGULAR;
922 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500923 uv2_3_hdr->msg_type = MSG_REGULAR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500924 seq_number = bcp->message_number++;
925 } else {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600926 if (uv1)
927 uv1_hdr->msg_type = MSG_RETRY;
928 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500929 uv2_3_hdr->msg_type = MSG_RETRY;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500930 stat->s_retry_messages++;
931 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500932
Cliff Wickmanda87c932012-01-16 15:17:50 -0600933 if (uv1)
934 uv1_hdr->sequence = seq_number;
935 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500936 uv2_3_hdr->sequence = seq_number;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500937 index = (1UL << AS_PUSH_SHIFT) | bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500938 bcp->send_message = get_cycles();
939
940 write_mmr_activation(index);
941
942 try++;
943 completion_stat = wait_completion(bau_desc, bcp, try);
944
945 handle_cmplt(completion_stat, bau_desc, bcp, hmaster, stat);
946
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500947 if (bcp->ipi_attempts >= bcp->ipi_reset_limit) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500948 bcp->ipi_attempts = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500949 stat->s_overipilimit++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500950 completion_stat = FLUSH_GIVEUP;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500951 break;
952 }
953 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500954 } while ((completion_stat == FLUSH_RETRY_PLUGGED) ||
955 (completion_stat == FLUSH_RETRY_TIMEOUT));
956
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500957 time2 = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500958
959 count_max_concurr(completion_stat, bcp, hmaster);
960
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500961 while (hmaster->uvhub_quiesce)
962 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500963
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500964 atomic_dec(&hmaster->active_descriptor_count);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500965
966 record_send_stats(time1, time2, bcp, stat, completion_stat, try);
967
968 if (completion_stat == FLUSH_GIVEUP)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600969 /* FLUSH_GIVEUP will fall back to using IPI's for tlb flush */
Cliff Wickman450a0072010-06-02 16:22:02 -0500970 return 1;
Cliff Wickman450a0072010-06-02 16:22:02 -0500971 return 0;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500972}
973
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500974/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500975 * The BAU is disabled for this uvhub. When the disabled time period has
976 * expired re-enable it.
977 * Return 0 if it is re-enabled for all cpus on this uvhub.
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500978 */
979static int check_enable(struct bau_control *bcp, struct ptc_stats *stat)
980{
981 int tcpu;
982 struct bau_control *tbcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500983 struct bau_control *hmaster;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500984
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500985 hmaster = bcp->uvhub_master;
986 spin_lock(&hmaster->disable_lock);
987 if (bcp->baudisabled && (get_cycles() >= bcp->set_bau_on_time)) {
988 stat->s_bau_reenabled++;
989 for_each_present_cpu(tcpu) {
990 tbcp = &per_cpu(bau_control, tcpu);
991 if (tbcp->uvhub_master == hmaster) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500992 tbcp->baudisabled = 0;
993 tbcp->period_requests = 0;
994 tbcp->period_time = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500995 tbcp->period_giveups = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500996 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500997 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500998 spin_unlock(&hmaster->disable_lock);
999 return 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001000 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001001 spin_unlock(&hmaster->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001002 return -1;
1003}
1004
1005static void record_send_statistics(struct ptc_stats *stat, int locals, int hubs,
1006 int remotes, struct bau_desc *bau_desc)
1007{
1008 stat->s_requestor++;
1009 stat->s_ntargcpu += remotes + locals;
1010 stat->s_ntargremotes += remotes;
1011 stat->s_ntarglocals += locals;
1012
1013 /* uvhub statistics */
1014 hubs = bau_uvhub_weight(&bau_desc->distribution);
1015 if (locals) {
1016 stat->s_ntarglocaluvhub++;
1017 stat->s_ntargremoteuvhub += (hubs - 1);
1018 } else
1019 stat->s_ntargremoteuvhub += hubs;
1020
1021 stat->s_ntarguvhub += hubs;
1022
1023 if (hubs >= 16)
1024 stat->s_ntarguvhub16++;
1025 else if (hubs >= 8)
1026 stat->s_ntarguvhub8++;
1027 else if (hubs >= 4)
1028 stat->s_ntarguvhub4++;
1029 else if (hubs >= 2)
1030 stat->s_ntarguvhub2++;
1031 else
1032 stat->s_ntarguvhub1++;
1033}
1034
1035/*
1036 * Translate a cpu mask to the uvhub distribution mask in the BAU
1037 * activation descriptor.
1038 */
1039static int set_distrib_bits(struct cpumask *flush_mask, struct bau_control *bcp,
1040 struct bau_desc *bau_desc, int *localsp, int *remotesp)
1041{
1042 int cpu;
1043 int pnode;
1044 int cnt = 0;
1045 struct hub_and_pnode *hpp;
1046
1047 for_each_cpu(cpu, flush_mask) {
1048 /*
1049 * The distribution vector is a bit map of pnodes, relative
1050 * to the partition base pnode (and the partition base nasid
1051 * in the header).
1052 * Translate cpu to pnode and hub using a local memory array.
1053 */
1054 hpp = &bcp->socket_master->thp[cpu];
1055 pnode = hpp->pnode - bcp->partition_base_pnode;
1056 bau_uvhub_set(pnode, &bau_desc->distribution);
1057 cnt++;
1058 if (hpp->uvhub == bcp->uvhub)
1059 (*localsp)++;
1060 else
1061 (*remotesp)++;
1062 }
1063 if (!cnt)
1064 return 1;
1065 return 0;
1066}
1067
1068/*
1069 * globally purge translation cache of a virtual address or all TLB's
Tejun Heobdbcdd42009-01-21 17:26:06 +09001070 * @cpumask: mask of all cpu's in which the address is to be removed
Cliff Wickman18129242008-06-02 08:56:14 -05001071 * @mm: mm_struct containing virtual address range
Alex Shi57c4f432012-12-18 12:22:14 -08001072 * @start: start virtual address to be removed from TLB
1073 * @end: end virtual address to be remove from TLB
Tejun Heobdbcdd42009-01-21 17:26:06 +09001074 * @cpu: the current cpu
Cliff Wickman18129242008-06-02 08:56:14 -05001075 *
1076 * This is the entry point for initiating any UV global TLB shootdown.
1077 *
1078 * Purges the translation caches of all specified processors of the given
1079 * virtual address, or purges all TLB's on specified processors.
1080 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001081 * The caller has derived the cpumask from the mm_struct. This function
1082 * is called only if there are bits set in the mask. (e.g. flush_tlb_page())
Cliff Wickman18129242008-06-02 08:56:14 -05001083 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001084 * The cpumask is converted into a uvhubmask of the uvhubs containing
1085 * those cpus.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001086 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001087 * Note that this function should be called with preemption disabled.
1088 *
1089 * Returns NULL if all remote flushing was done.
1090 * Returns pointer to cpumask if some remote flushing remains to be
1091 * done. The returned pointer is valid till preemption is re-enabled.
Cliff Wickman18129242008-06-02 08:56:14 -05001092 */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001093const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask,
Cliff Wickmana26fd712014-05-14 16:15:47 -05001094 struct mm_struct *mm,
1095 unsigned long start,
1096 unsigned long end,
1097 unsigned int cpu)
Cliff Wickman18129242008-06-02 08:56:14 -05001098{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001099 int locals = 0;
Cliff Wickman450a0072010-06-02 16:22:02 -05001100 int remotes = 0;
1101 int hubs = 0;
Ingo Molnardc163a42008-06-18 14:15:43 +02001102 struct bau_desc *bau_desc;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001103 struct cpumask *flush_mask;
1104 struct ptc_stats *stat;
1105 struct bau_control *bcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001106 unsigned long descriptor_status;
1107 unsigned long status;
Cliff Wickman18129242008-06-02 08:56:14 -05001108
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001109 bcp = &per_cpu(bau_control, cpu);
Cliff Wickman26ef8572012-06-22 08:13:30 -05001110
1111 if (bcp->nobau)
1112 return cpumask;
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001113
cpw3eae49c2013-12-03 17:15:30 -06001114 stat = bcp->statp;
1115 stat->s_enters++;
1116
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001117 if (bcp->busy) {
1118 descriptor_status =
1119 read_lmmr(UVH_LB_BAU_SB_ACTIVATION_STATUS_0);
1120 status = ((descriptor_status >> (bcp->uvhub_cpu *
1121 UV_ACT_STATUS_SIZE)) & UV_ACT_STATUS_MASK) << 1;
1122 if (status == UV2H_DESC_BUSY)
1123 return cpumask;
1124 bcp->busy = 0;
1125 }
1126
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001127 /* bau was disabled due to slow response */
1128 if (bcp->baudisabled) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001129 if (check_enable(bcp, stat)) {
1130 stat->s_ipifordisabled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001131 return cpumask;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001132 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001133 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001134
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001135 /*
1136 * Each sending cpu has a per-cpu mask which it fills from the caller's
Cliff Wickman450a0072010-06-02 16:22:02 -05001137 * cpu mask. All cpus are converted to uvhubs and copied to the
1138 * activation descriptor.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001139 */
1140 flush_mask = (struct cpumask *)per_cpu(uv_flush_tlb_mask, cpu);
Cliff Wickman450a0072010-06-02 16:22:02 -05001141 /* don't actually do a shootdown of the local cpu */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001142 cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001143
Rusty Russell020b37a2015-03-02 22:05:49 +10301144 if (cpumask_test_cpu(cpu, cpumask))
Cliff Wickman450a0072010-06-02 16:22:02 -05001145 stat->s_ntargself++;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001146
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001147 bau_desc = bcp->descriptor_base;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001148 bau_desc += (ITEMS_PER_DESC * bcp->uvhub_cpu);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001149 bau_uvhubs_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001150 if (set_distrib_bits(flush_mask, bcp, bau_desc, &locals, &remotes))
Cliff Wickman450a0072010-06-02 16:22:02 -05001151 return NULL;
Cliff Wickman450a0072010-06-02 16:22:02 -05001152
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001153 record_send_statistics(stat, locals, hubs, remotes, bau_desc);
Cliff Wickman18129242008-06-02 08:56:14 -05001154
Alex Shi57c4f432012-12-18 12:22:14 -08001155 if (!end || (end - start) <= PAGE_SIZE)
1156 bau_desc->payload.address = start;
1157 else
1158 bau_desc->payload.address = TLB_FLUSH_ALL;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001159 bau_desc->payload.sending_cpu = cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001160 /*
Cliff Wickman450a0072010-06-02 16:22:02 -05001161 * uv_flush_send_and_wait returns 0 if all cpu's were messaged,
1162 * or 1 if it gave up and the original cpumask should be returned.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001163 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001164 if (!uv_flush_send_and_wait(flush_mask, bcp, bau_desc))
Cliff Wickman450a0072010-06-02 16:22:02 -05001165 return NULL;
1166 else
1167 return cpumask;
Cliff Wickman18129242008-06-02 08:56:14 -05001168}
1169
1170/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001171 * Search the message queue for any 'other' unprocessed message with the
1172 * same software acknowledge resource bit vector as the 'msg' message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001173 */
1174struct bau_pq_entry *find_another_by_swack(struct bau_pq_entry *msg,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001175 struct bau_control *bcp)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001176{
1177 struct bau_pq_entry *msg_next = msg + 1;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001178 unsigned char swack_vec = msg->swack_vec;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001179
1180 if (msg_next > bcp->queue_last)
1181 msg_next = bcp->queue_first;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001182 while (msg_next != msg) {
1183 if ((msg_next->canceled == 0) && (msg_next->replied_to == 0) &&
1184 (msg_next->swack_vec == swack_vec))
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001185 return msg_next;
1186 msg_next++;
1187 if (msg_next > bcp->queue_last)
1188 msg_next = bcp->queue_first;
1189 }
1190 return NULL;
1191}
1192
1193/*
1194 * UV2 needs to work around a bug in which an arriving message has not
1195 * set a bit in the UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE register.
1196 * Such a message must be ignored.
1197 */
1198void process_uv2_message(struct msg_desc *mdp, struct bau_control *bcp)
1199{
1200 unsigned long mmr_image;
1201 unsigned char swack_vec;
1202 struct bau_pq_entry *msg = mdp->msg;
1203 struct bau_pq_entry *other_msg;
1204
1205 mmr_image = read_mmr_sw_ack();
1206 swack_vec = msg->swack_vec;
1207
1208 if ((swack_vec & mmr_image) == 0) {
1209 /*
1210 * This message was assigned a swack resource, but no
1211 * reserved acknowlegment is pending.
1212 * The bug has prevented this message from setting the MMR.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001213 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001214 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001215 * Some message has set the MMR 'pending' bit; it might have
1216 * been another message. Look for that message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001217 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001218 other_msg = find_another_by_swack(msg, bcp);
1219 if (other_msg) {
1220 /*
1221 * There is another. Process this one but do not
1222 * ack it.
1223 */
1224 bau_process_message(mdp, bcp, 0);
1225 /*
1226 * Let the natural processing of that other message
1227 * acknowledge it. Don't get the processing of sw_ack's
1228 * out of order.
1229 */
1230 return;
1231 }
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001232 }
1233
1234 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001235 * Either the MMR shows this one pending a reply or there is no
1236 * other message using this sw_ack, so it is safe to acknowledge it.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001237 */
1238 bau_process_message(mdp, bcp, 1);
1239
1240 return;
1241}
1242
1243/*
Cliff Wickman18129242008-06-02 08:56:14 -05001244 * The BAU message interrupt comes here. (registered by set_intr_gate)
1245 * See entry_64.S
1246 *
1247 * We received a broadcast assist message.
1248 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001249 * Interrupts are disabled; this interrupt could represent
Cliff Wickman18129242008-06-02 08:56:14 -05001250 * the receipt of several messages.
1251 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001252 * All cores/threads on this hub get this interrupt.
1253 * The last one to see it does the software ack.
Cliff Wickman18129242008-06-02 08:56:14 -05001254 * (the resource will not be freed until noninterruptable cpus see this
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001255 * interrupt; hardware may timeout the s/w ack and reply ERROR)
Cliff Wickman18129242008-06-02 08:56:14 -05001256 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05001257void uv_bau_message_interrupt(struct pt_regs *regs)
Cliff Wickman18129242008-06-02 08:56:14 -05001258{
Cliff Wickman18129242008-06-02 08:56:14 -05001259 int count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001260 cycles_t time_start;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001261 struct bau_pq_entry *msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001262 struct bau_control *bcp;
1263 struct ptc_stats *stat;
1264 struct msg_desc msgdesc;
Cliff Wickman18129242008-06-02 08:56:14 -05001265
Cliff Wickman88ed9dd2012-01-16 15:21:46 -06001266 ack_APIC_irq();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001267 time_start = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001268
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001269 bcp = &per_cpu(bau_control, smp_processor_id());
Cliff Wickman712157a2010-06-02 16:22:02 -05001270 stat = bcp->statp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001271
1272 msgdesc.queue_first = bcp->queue_first;
1273 msgdesc.queue_last = bcp->queue_last;
1274
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001275 msg = bcp->bau_msg_head;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001276 while (msg->swack_vec) {
Cliff Wickman18129242008-06-02 08:56:14 -05001277 count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001278
1279 msgdesc.msg_slot = msg - msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001280 msgdesc.msg = msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001281 if (bcp->uvhub_version == 2)
1282 process_uv2_message(&msgdesc, bcp);
1283 else
Cliff Wickmana26fd712014-05-14 16:15:47 -05001284 /* no error workaround for uv1 or uv3 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001285 bau_process_message(&msgdesc, bcp, 1);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001286
Cliff Wickman18129242008-06-02 08:56:14 -05001287 msg++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001288 if (msg > msgdesc.queue_last)
1289 msg = msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001290 bcp->bau_msg_head = msg;
Cliff Wickman18129242008-06-02 08:56:14 -05001291 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001292 stat->d_time += (get_cycles() - time_start);
Cliff Wickman18129242008-06-02 08:56:14 -05001293 if (!count)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001294 stat->d_nomsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001295 else if (count > 1)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001296 stat->d_multmsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001297}
1298
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001299/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001300 * Each target uvhub (i.e. a uvhub that has cpu's) needs to have
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001301 * shootdown message timeouts enabled. The timeout does not cause
1302 * an interrupt, but causes an error message to be returned to
1303 * the sender.
1304 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001305static void __init enable_timeouts(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001306{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001307 int uvhub;
1308 int nuvhubs;
Cliff Wickman18129242008-06-02 08:56:14 -05001309 int pnode;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001310 unsigned long mmr_image;
Cliff Wickman18129242008-06-02 08:56:14 -05001311
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001312 nuvhubs = uv_num_possible_blades();
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001313
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001314 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
1315 if (!uv_blade_nr_possible_cpus(uvhub))
Cliff Wickman18129242008-06-02 08:56:14 -05001316 continue;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001317
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001318 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001319 mmr_image = read_mmr_misc_control(pnode);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001320 /*
1321 * Set the timeout period and then lock it in, in three
1322 * steps; captures and locks in the period.
1323 *
1324 * To program the period, the SOFT_ACK_MODE must be off.
1325 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001326 mmr_image &= ~(1L << SOFTACK_MSHIFT);
1327 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001328 /*
1329 * Set the 4-bit period.
1330 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001331 mmr_image &= ~((unsigned long)0xf << SOFTACK_PSHIFT);
1332 mmr_image |= (SOFTACK_TIMEOUT_PERIOD << SOFTACK_PSHIFT);
1333 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001334 /*
Jack Steiner2a919592011-05-11 12:50:28 -05001335 * UV1:
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001336 * Subsequent reversals of the timebase bit (3) cause an
1337 * immediate timeout of one or all INTD resources as
1338 * indicated in bits 2:0 (7 causes all of them to timeout).
1339 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001340 mmr_image |= (1L << SOFTACK_MSHIFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001341 if (is_uv2_hub()) {
Cliff Wickmana26fd712014-05-14 16:15:47 -05001342 /* do not touch the legacy mode bit */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001343 /* hw bug workaround; do not use extended status */
1344 mmr_image &= ~(1L << UV2_EXT_SHFT);
Cliff Wickmana26fd712014-05-14 16:15:47 -05001345 } else if (is_uv3_hub()) {
1346 mmr_image &= ~(1L << PREFETCH_HINT_SHFT);
1347 mmr_image |= (1L << SB_STATUS_SHFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001348 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001349 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickman18129242008-06-02 08:56:14 -05001350 }
Cliff Wickman18129242008-06-02 08:56:14 -05001351}
1352
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001353static void *ptc_seq_start(struct seq_file *file, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001354{
1355 if (*offset < num_possible_cpus())
1356 return offset;
1357 return NULL;
1358}
1359
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001360static void *ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001361{
1362 (*offset)++;
1363 if (*offset < num_possible_cpus())
1364 return offset;
1365 return NULL;
1366}
1367
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001368static void ptc_seq_stop(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001369{
1370}
1371
1372/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001373 * Display the statistics thru /proc/sgi_uv/ptc_statistics
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001374 * 'data' points to the cpu number
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001375 * Note: see the descriptions in stat_description[].
Cliff Wickman18129242008-06-02 08:56:14 -05001376 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001377static int ptc_seq_show(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001378{
1379 struct ptc_stats *stat;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001380 struct bau_control *bcp;
Cliff Wickman18129242008-06-02 08:56:14 -05001381 int cpu;
1382
1383 cpu = *(loff_t *)data;
Cliff Wickman18129242008-06-02 08:56:14 -05001384 if (!cpu) {
Rasmus Villemoes37367082014-11-28 22:03:41 +01001385 seq_puts(file,
1386 "# cpu bauoff sent stime self locals remotes ncpus localhub ");
1387 seq_puts(file, "remotehub numuvhubs numuvhubs16 numuvhubs8 ");
1388 seq_puts(file,
1389 "numuvhubs4 numuvhubs2 numuvhubs1 dto snacks retries ");
1390 seq_puts(file,
1391 "rok resetp resett giveup sto bz throt disable ");
1392 seq_puts(file,
1393 "enable wars warshw warwaits enters ipidis plugged ");
1394 seq_puts(file,
1395 "ipiover glim cong swack recv rtime all one mult ");
1396 seq_puts(file, "none retry canc nocan reset rcan\n");
Cliff Wickman18129242008-06-02 08:56:14 -05001397 }
1398 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05001399 bcp = &per_cpu(bau_control, cpu);
James Custerfa2a79ce2014-11-02 12:16:39 -06001400 if (bcp->nobau) {
1401 seq_printf(file, "cpu %d bau disabled\n", cpu);
1402 return 0;
1403 }
Cliff Wickman26ef8572012-06-22 08:13:30 -05001404 stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001405 /* source side statistics */
1406 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001407 "cpu %d %d %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickman26ef8572012-06-22 08:13:30 -05001408 cpu, bcp->nobau, stat->s_requestor,
1409 cycles_2_us(stat->s_time),
Cliff Wickman450a0072010-06-02 16:22:02 -05001410 stat->s_ntargself, stat->s_ntarglocals,
1411 stat->s_ntargremotes, stat->s_ntargcpu,
1412 stat->s_ntarglocaluvhub, stat->s_ntargremoteuvhub,
1413 stat->s_ntarguvhub, stat->s_ntarguvhub16);
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001414 seq_printf(file, "%ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001415 stat->s_ntarguvhub8, stat->s_ntarguvhub4,
1416 stat->s_ntarguvhub2, stat->s_ntarguvhub1,
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001417 stat->s_dtimeout, stat->s_strongnacks);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001418 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001419 stat->s_retry_messages, stat->s_retriesok,
1420 stat->s_resets_plug, stat->s_resets_timeout,
1421 stat->s_giveup, stat->s_stimeout,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001422 stat->s_busy, stat->s_throttles);
1423 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
1424 stat->s_bau_disabled, stat->s_bau_reenabled,
1425 stat->s_uv2_wars, stat->s_uv2_wars_hw,
1426 stat->s_uv2_war_waits, stat->s_enters,
1427 stat->s_ipifordisabled, stat->s_plugged,
1428 stat->s_overipilimit, stat->s_giveuplimit,
1429 stat->s_congested);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001430
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001431 /* destination side statistics */
1432 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001433 "%lx %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001434 read_gmmr_sw_ack(uv_cpu_to_pnode(cpu)),
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001435 stat->d_requestee, cycles_2_us(stat->d_time),
1436 stat->d_alltlb, stat->d_onetlb, stat->d_multmsg,
1437 stat->d_nomsg, stat->d_retries, stat->d_canceled,
1438 stat->d_nocanceled, stat->d_resets,
1439 stat->d_rcanceled);
Cliff Wickman18129242008-06-02 08:56:14 -05001440 }
Cliff Wickman18129242008-06-02 08:56:14 -05001441 return 0;
1442}
1443
1444/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001445 * Display the tunables thru debugfs
1446 */
1447static ssize_t tunables_read(struct file *file, char __user *userbuf,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001448 size_t count, loff_t *ppos)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001449{
Dan Carpenterb365a852010-09-29 10:41:05 +02001450 char *buf;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001451 int ret;
1452
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001453 buf = kasprintf(GFP_KERNEL, "%s %s %s\n%d %d %d %d %d %d %d %d %d %d\n",
1454 "max_concur plugged_delay plugsb4reset timeoutsb4reset",
1455 "ipi_reset_limit complete_threshold congested_response_us",
1456 "congested_reps disabled_period giveup_limit",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001457 max_concurr, plugged_delay, plugsb4reset,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001458 timeoutsb4reset, ipi_reset_limit, complete_threshold,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001459 congested_respns_us, congested_reps, disabled_period,
1460 giveup_limit);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001461
Dan Carpenterb365a852010-09-29 10:41:05 +02001462 if (!buf)
1463 return -ENOMEM;
1464
1465 ret = simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
1466 kfree(buf);
1467 return ret;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001468}
1469
1470/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001471 * handle a write to /proc/sgi_uv/ptc_statistics
1472 * -1: reset the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001473 * 0: display meaning of the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001474 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001475static ssize_t ptc_proc_write(struct file *file, const char __user *user,
1476 size_t count, loff_t *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001477{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001478 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001479 int i;
1480 int elements;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001481 long input_arg;
Cliff Wickman18129242008-06-02 08:56:14 -05001482 char optstr[64];
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001483 struct ptc_stats *stat;
Cliff Wickman18129242008-06-02 08:56:14 -05001484
Cliff Wickmane7eb8722008-06-23 08:32:25 -05001485 if (count == 0 || count > sizeof(optstr))
Cliff Wickmancef53272008-06-19 11:16:24 -05001486 return -EINVAL;
Cliff Wickman18129242008-06-02 08:56:14 -05001487 if (copy_from_user(optstr, user, count))
1488 return -EFAULT;
1489 optstr[count - 1] = '\0';
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001490
Cliff Wickman26ef8572012-06-22 08:13:30 -05001491 if (!strcmp(optstr, "on")) {
1492 set_bau_on();
1493 return count;
1494 } else if (!strcmp(optstr, "off")) {
1495 set_bau_off();
1496 return count;
1497 }
1498
Daniel Walter164109e2014-08-08 14:24:03 -07001499 if (kstrtol(optstr, 10, &input_arg) < 0) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001500 pr_debug("%s is invalid\n", optstr);
Cliff Wickman18129242008-06-02 08:56:14 -05001501 return -EINVAL;
1502 }
1503
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001504 if (input_arg == 0) {
Sasha Levin64441742012-12-20 14:11:34 -05001505 elements = ARRAY_SIZE(stat_description);
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001506 pr_debug("# cpu: cpu number\n");
1507 pr_debug("Sender statistics:\n");
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001508 for (i = 0; i < elements; i++)
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001509 pr_debug("%s\n", stat_description[i]);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001510 } else if (input_arg == -1) {
1511 for_each_present_cpu(cpu) {
1512 stat = &per_cpu(ptcstats, cpu);
1513 memset(stat, 0, sizeof(struct ptc_stats));
1514 }
Cliff Wickman18129242008-06-02 08:56:14 -05001515 }
1516
1517 return count;
1518}
1519
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001520static int local_atoi(const char *name)
1521{
1522 int val = 0;
1523
1524 for (;; name++) {
1525 switch (*name) {
1526 case '0' ... '9':
1527 val = 10*val+(*name-'0');
1528 break;
1529 default:
1530 return val;
1531 }
1532 }
1533}
1534
1535/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001536 * Parse the values written to /sys/kernel/debug/sgi_uv/bau_tunables.
1537 * Zero values reset them to defaults.
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001538 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001539static int parse_tunables_write(struct bau_control *bcp, char *instr,
1540 int count)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001541{
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001542 char *p;
1543 char *q;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001544 int cnt = 0;
1545 int val;
Sasha Levin64441742012-12-20 14:11:34 -05001546 int e = ARRAY_SIZE(tunables);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001547
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001548 p = instr + strspn(instr, WHITESPACE);
1549 q = p;
1550 for (; *p; p = q + strspn(q, WHITESPACE)) {
1551 q = p + strcspn(p, WHITESPACE);
1552 cnt++;
1553 if (q == p)
1554 break;
1555 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001556 if (cnt != e) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001557 pr_info("bau tunable error: should be %d values\n", e);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001558 return -EINVAL;
1559 }
1560
1561 p = instr + strspn(instr, WHITESPACE);
1562 q = p;
1563 for (cnt = 0; *p; p = q + strspn(q, WHITESPACE), cnt++) {
1564 q = p + strcspn(p, WHITESPACE);
1565 val = local_atoi(p);
1566 switch (cnt) {
1567 case 0:
1568 if (val == 0) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001569 max_concurr = MAX_BAU_CONCURRENT;
1570 max_concurr_const = MAX_BAU_CONCURRENT;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001571 continue;
1572 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001573 if (val < 1 || val > bcp->cpus_in_uvhub) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001574 pr_debug(
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001575 "Error: BAU max concurrent %d is invalid\n",
1576 val);
1577 return -EINVAL;
1578 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001579 max_concurr = val;
1580 max_concurr_const = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001581 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001582 default:
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001583 if (val == 0)
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001584 *tunables[cnt].tunp = tunables[cnt].deflt;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001585 else
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001586 *tunables[cnt].tunp = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001587 continue;
1588 }
1589 if (q == p)
1590 break;
1591 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001592 return 0;
1593}
1594
1595/*
1596 * Handle a write to debugfs. (/sys/kernel/debug/sgi_uv/bau_tunables)
1597 */
1598static ssize_t tunables_write(struct file *file, const char __user *user,
1599 size_t count, loff_t *data)
1600{
1601 int cpu;
1602 int ret;
1603 char instr[100];
1604 struct bau_control *bcp;
1605
1606 if (count == 0 || count > sizeof(instr)-1)
1607 return -EINVAL;
1608 if (copy_from_user(instr, user, count))
1609 return -EFAULT;
1610
1611 instr[count] = '\0';
1612
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001613 cpu = get_cpu();
1614 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001615 ret = parse_tunables_write(bcp, instr, count);
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001616 put_cpu();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001617 if (ret)
1618 return ret;
1619
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001620 for_each_present_cpu(cpu) {
1621 bcp = &per_cpu(bau_control, cpu);
Andrew Banman67492c82016-09-21 11:09:12 -05001622 bcp->max_concurr = max_concurr;
1623 bcp->max_concurr_const = max_concurr;
1624 bcp->plugged_delay = plugged_delay;
1625 bcp->plugsb4reset = plugsb4reset;
1626 bcp->timeoutsb4reset = timeoutsb4reset;
1627 bcp->ipi_reset_limit = ipi_reset_limit;
1628 bcp->complete_threshold = complete_threshold;
1629 bcp->cong_response_us = congested_respns_us;
1630 bcp->cong_reps = congested_reps;
1631 bcp->disabled_period = sec_2_cycles(disabled_period);
1632 bcp->giveup_limit = giveup_limit;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001633 }
1634 return count;
1635}
1636
Cliff Wickman18129242008-06-02 08:56:14 -05001637static const struct seq_operations uv_ptc_seq_ops = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001638 .start = ptc_seq_start,
1639 .next = ptc_seq_next,
1640 .stop = ptc_seq_stop,
1641 .show = ptc_seq_show
Cliff Wickman18129242008-06-02 08:56:14 -05001642};
1643
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001644static int ptc_proc_open(struct inode *inode, struct file *file)
Cliff Wickman18129242008-06-02 08:56:14 -05001645{
1646 return seq_open(file, &uv_ptc_seq_ops);
1647}
1648
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001649static int tunables_open(struct inode *inode, struct file *file)
1650{
1651 return 0;
1652}
1653
Cliff Wickman18129242008-06-02 08:56:14 -05001654static const struct file_operations proc_uv_ptc_operations = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001655 .open = ptc_proc_open,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001656 .read = seq_read,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001657 .write = ptc_proc_write,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001658 .llseek = seq_lseek,
1659 .release = seq_release,
Cliff Wickman18129242008-06-02 08:56:14 -05001660};
1661
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001662static const struct file_operations tunables_fops = {
1663 .open = tunables_open,
1664 .read = tunables_read,
1665 .write = tunables_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001666 .llseek = default_llseek,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001667};
1668
Cliff Wickmanb194b122008-06-12 08:23:48 -05001669static int __init uv_ptc_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001670{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001671 struct proc_dir_entry *proc_uv_ptc;
Cliff Wickman18129242008-06-02 08:56:14 -05001672
1673 if (!is_uv_system())
1674 return 0;
1675
Alexey Dobriyan10f02d112009-08-23 23:17:27 +04001676 proc_uv_ptc = proc_create(UV_PTC_BASENAME, 0444, NULL,
1677 &proc_uv_ptc_operations);
Cliff Wickman18129242008-06-02 08:56:14 -05001678 if (!proc_uv_ptc) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001679 pr_err("unable to create %s proc entry\n",
Cliff Wickman18129242008-06-02 08:56:14 -05001680 UV_PTC_BASENAME);
1681 return -EINVAL;
1682 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001683
1684 tunables_dir = debugfs_create_dir(UV_BAU_TUNABLES_DIR, NULL);
1685 if (!tunables_dir) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001686 pr_err("unable to create debugfs directory %s\n",
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001687 UV_BAU_TUNABLES_DIR);
1688 return -EINVAL;
1689 }
1690 tunables_file = debugfs_create_file(UV_BAU_TUNABLES_FILE, 0600,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001691 tunables_dir, NULL, &tunables_fops);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001692 if (!tunables_file) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001693 pr_err("unable to create debugfs file %s\n",
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001694 UV_BAU_TUNABLES_FILE);
1695 return -EINVAL;
1696 }
Cliff Wickman18129242008-06-02 08:56:14 -05001697 return 0;
1698}
1699
Cliff Wickmanb194b122008-06-12 08:23:48 -05001700/*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001701 * Initialize the sending side's sending buffers.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001702 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001703static void activation_descriptor_init(int node, int pnode, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001704{
1705 int i;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001706 int cpu;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001707 int uv1 = 0;
Jack Steiner6a469e42011-09-20 13:55:04 -07001708 unsigned long gpa;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001709 unsigned long m;
1710 unsigned long n;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001711 size_t dsize;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001712 struct bau_desc *bau_desc;
1713 struct bau_desc *bd2;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001714 struct uv1_bau_msg_header *uv1_hdr;
Cliff Wickmana26fd712014-05-14 16:15:47 -05001715 struct uv2_3_bau_msg_header *uv2_3_hdr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001716 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001717
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001718 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001719 * each bau_desc is 64 bytes; there are 8 (ITEMS_PER_DESC)
1720 * per cpu; and one per cpu on the uvhub (ADP_SZ)
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001721 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001722 dsize = sizeof(struct bau_desc) * ADP_SZ * ITEMS_PER_DESC;
1723 bau_desc = kmalloc_node(dsize, GFP_KERNEL, node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001724 BUG_ON(!bau_desc);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001725
Jack Steiner6a469e42011-09-20 13:55:04 -07001726 gpa = uv_gpa(bau_desc);
1727 n = uv_gpa_to_gnode(gpa);
1728 m = uv_gpa_to_offset(gpa);
Cliff Wickmanda87c932012-01-16 15:17:50 -06001729 if (is_uv1_hub())
1730 uv1 = 1;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001731
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001732 /* the 14-bit pnode */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001733 write_mmr_descriptor_base(pnode, (n << UV_DESC_PSHIFT | m));
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001734 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001735 * Initializing all 8 (ITEMS_PER_DESC) descriptors for each
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001736 * cpu even though we only use the first one; one descriptor can
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001737 * describe a broadcast to 256 uv hubs.
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001738 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001739 for (i = 0, bd2 = bau_desc; i < (ADP_SZ * ITEMS_PER_DESC); i++, bd2++) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001740 memset(bd2, 0, sizeof(struct bau_desc));
Cliff Wickmanda87c932012-01-16 15:17:50 -06001741 if (uv1) {
1742 uv1_hdr = &bd2->header.uv1_hdr;
Andrew Banman67492c82016-09-21 11:09:12 -05001743 uv1_hdr->swack_flag = 1;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001744 /*
1745 * The base_dest_nasid set in the message header
1746 * is the nasid of the first uvhub in the partition.
1747 * The bit map will indicate destination pnode numbers
1748 * relative to that base. They may not be consecutive
1749 * if nasid striding is being used.
1750 */
1751 uv1_hdr->base_dest_nasid =
Andrew Banman67492c82016-09-21 11:09:12 -05001752 UV_PNODE_TO_NASID(base_pnode);
1753 uv1_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1754 uv1_hdr->command = UV_NET_ENDPOINT_INTD;
1755 uv1_hdr->int_both = 1;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001756 /*
1757 * all others need to be set to zero:
1758 * fairness chaining multilevel count replied_to
1759 */
1760 } else {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001761 /*
Cliff Wickmana26fd712014-05-14 16:15:47 -05001762 * BIOS uses legacy mode, but uv2 and uv3 hardware always
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001763 * uses native mode for selective broadcasts.
1764 */
Cliff Wickmana26fd712014-05-14 16:15:47 -05001765 uv2_3_hdr = &bd2->header.uv2_3_hdr;
Andrew Banman67492c82016-09-21 11:09:12 -05001766 uv2_3_hdr->swack_flag = 1;
Cliff Wickmana26fd712014-05-14 16:15:47 -05001767 uv2_3_hdr->base_dest_nasid =
Andrew Banman67492c82016-09-21 11:09:12 -05001768 UV_PNODE_TO_NASID(base_pnode);
1769 uv2_3_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1770 uv2_3_hdr->command = UV_NET_ENDPOINT_INTD;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001771 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001772 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001773 for_each_present_cpu(cpu) {
1774 if (pnode != uv_blade_to_pnode(uv_cpu_to_blade_id(cpu)))
1775 continue;
1776 bcp = &per_cpu(bau_control, cpu);
1777 bcp->descriptor_base = bau_desc;
1778 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001779}
1780
1781/*
1782 * initialize the destination side's receiving buffers
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001783 * entered for each uvhub in the partition
1784 * - node is first node (kernel memory notion) on the uvhub
1785 * - pnode is the uvhub's physical identifier
Cliff Wickmanb194b122008-06-12 08:23:48 -05001786 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001787static void pq_init(int node, int pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001788{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001789 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001790 size_t plsize;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001791 char *cp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001792 void *vp;
1793 unsigned long pn;
1794 unsigned long first;
1795 unsigned long pn_first;
1796 unsigned long last;
1797 struct bau_pq_entry *pqp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001798 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001799
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001800 plsize = (DEST_Q_SIZE + 1) * sizeof(struct bau_pq_entry);
1801 vp = kmalloc_node(plsize, GFP_KERNEL, node);
1802 pqp = (struct bau_pq_entry *)vp;
Ingo Molnardc163a42008-06-18 14:15:43 +02001803 BUG_ON(!pqp);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001804
Cliff Wickmanb194b122008-06-12 08:23:48 -05001805 cp = (char *)pqp + 31;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001806 pqp = (struct bau_pq_entry *)(((unsigned long)cp >> 5) << 5);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001807
1808 for_each_present_cpu(cpu) {
1809 if (pnode != uv_cpu_to_pnode(cpu))
1810 continue;
1811 /* for every cpu on this pnode: */
1812 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001813 bcp->queue_first = pqp;
1814 bcp->bau_msg_head = pqp;
1815 bcp->queue_last = pqp + (DEST_Q_SIZE - 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001816 }
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001817 /*
Jack Steiner6a469e42011-09-20 13:55:04 -07001818 * need the gnode of where the memory was really allocated
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001819 */
Jack Steiner6a469e42011-09-20 13:55:04 -07001820 pn = uv_gpa_to_gnode(uv_gpa(pqp));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001821 first = uv_physnodeaddr(pqp);
1822 pn_first = ((unsigned long)pn << UV_PAYLOADQ_PNODE_SHIFT) | first;
1823 last = uv_physnodeaddr(pqp + (DEST_Q_SIZE - 1));
1824 write_mmr_payload_first(pnode, pn_first);
1825 write_mmr_payload_tail(pnode, first);
1826 write_mmr_payload_last(pnode, last);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001827 write_gmmr_sw_ack(pnode, 0xffffUL);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001828
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001829 /* in effect, all msg_type's are set to MSG_NOOP */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001830 memset(pqp, 0, sizeof(struct bau_pq_entry) * DEST_Q_SIZE);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001831}
1832
1833/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001834 * Initialization of each UV hub's structures
Cliff Wickmanb194b122008-06-12 08:23:48 -05001835 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001836static void __init init_uvhub(int uvhub, int vector, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001837{
Cliff Wickman9674f352009-04-03 08:34:05 -05001838 int node;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001839 int pnode;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001840 unsigned long apicid;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001841
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001842 node = uvhub_to_first_node(uvhub);
1843 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001844
1845 activation_descriptor_init(node, pnode, base_pnode);
1846
1847 pq_init(node, pnode);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001848 /*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001849 * The below initialization can't be in firmware because the
1850 * messaging IRQ will be determined by the OS.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001851 */
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -06001852 apicid = uvhub_to_first_apicid(uvhub) | uv_apicid_hibits;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001853 write_mmr_data_config(pnode, ((apicid << 32) | vector));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001854}
1855
1856/*
Cliff Wickman12a66112010-06-02 16:22:01 -05001857 * We will set BAU_MISC_CONTROL with a timeout period.
1858 * But the BIOS has set UVH_AGING_PRESCALE_SEL and UVH_TRANSACTION_TIMEOUT.
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001859 * So the destination timeout period has to be calculated from them.
Cliff Wickman12a66112010-06-02 16:22:01 -05001860 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001861static int calculate_destination_timeout(void)
Cliff Wickman12a66112010-06-02 16:22:01 -05001862{
1863 unsigned long mmr_image;
1864 int mult1;
1865 int mult2;
1866 int index;
1867 int base;
1868 int ret;
1869 unsigned long ts_ns;
1870
Jack Steiner2a919592011-05-11 12:50:28 -05001871 if (is_uv1_hub()) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001872 mult1 = SOFTACK_TIMEOUT_PERIOD & BAU_MISC_CONTROL_MULT_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001873 mmr_image = uv_read_local_mmr(UVH_AGING_PRESCALE_SEL);
1874 index = (mmr_image >> BAU_URGENCY_7_SHIFT) & BAU_URGENCY_7_MASK;
1875 mmr_image = uv_read_local_mmr(UVH_TRANSACTION_TIMEOUT);
1876 mult2 = (mmr_image >> BAU_TRANS_SHIFT) & BAU_TRANS_MASK;
Cliff Wickman11cab712012-06-22 08:12:12 -05001877 ts_ns = timeout_base_ns[index];
1878 ts_ns *= (mult1 * mult2);
Jack Steiner2a919592011-05-11 12:50:28 -05001879 ret = ts_ns / 1000;
1880 } else {
Cliff Wickmana26fd712014-05-14 16:15:47 -05001881 /* same destination timeout for uv2 and uv3 */
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001882 /* 4 bits 0/1 for 10/80us base, 3 bits of multiplier */
1883 mmr_image = uv_read_local_mmr(UVH_LB_BAU_MISC_CONTROL);
Jack Steiner2a919592011-05-11 12:50:28 -05001884 mmr_image = (mmr_image & UV_SA_MASK) >> UV_SA_SHFT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001885 if (mmr_image & (1L << UV2_ACK_UNITS_SHFT))
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001886 base = 80;
Jack Steiner2a919592011-05-11 12:50:28 -05001887 else
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001888 base = 10;
1889 mult1 = mmr_image & UV2_ACK_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001890 ret = mult1 * base;
1891 }
Cliff Wickman12a66112010-06-02 16:22:01 -05001892 return ret;
1893}
1894
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001895static void __init init_per_cpu_tunables(void)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001896{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001897 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001898 struct bau_control *bcp;
1899
1900 for_each_present_cpu(cpu) {
1901 bcp = &per_cpu(bau_control, cpu);
1902 bcp->baudisabled = 0;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001903 if (nobau)
Alex Thorlton1c532e02016-03-31 14:18:29 -05001904 bcp->nobau = true;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001905 bcp->statp = &per_cpu(ptcstats, cpu);
1906 /* time interval to catch a hardware stay-busy bug */
1907 bcp->timeout_interval = usec_2_cycles(2*timeout_us);
1908 bcp->max_concurr = max_concurr;
1909 bcp->max_concurr_const = max_concurr;
1910 bcp->plugged_delay = plugged_delay;
1911 bcp->plugsb4reset = plugsb4reset;
1912 bcp->timeoutsb4reset = timeoutsb4reset;
1913 bcp->ipi_reset_limit = ipi_reset_limit;
1914 bcp->complete_threshold = complete_threshold;
1915 bcp->cong_response_us = congested_respns_us;
1916 bcp->cong_reps = congested_reps;
Andrew Banman67492c82016-09-21 11:09:12 -05001917 bcp->disabled_period = sec_2_cycles(disabled_period);
1918 bcp->giveup_limit = giveup_limit;
Cliff Wickmand2ebc712012-01-18 09:40:47 -06001919 spin_lock_init(&bcp->queue_lock);
1920 spin_lock_init(&bcp->uvhub_lock);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001921 spin_lock_init(&bcp->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001922 }
1923}
1924
1925/*
1926 * Scan all cpus to collect blade and socket summaries.
1927 */
1928static int __init get_cpu_topology(int base_pnode,
1929 struct uvhub_desc *uvhub_descs,
1930 unsigned char *uvhub_mask)
1931{
1932 int cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001933 int pnode;
1934 int uvhub;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001935 int socket;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001936 struct bau_control *bcp;
1937 struct uvhub_desc *bdp;
1938 struct socket_desc *sdp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001939
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001940 for_each_present_cpu(cpu) {
1941 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001942
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001943 memset(bcp, 0, sizeof(struct bau_control));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001944
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001945 pnode = uv_cpu_hub_info(cpu)->pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001946 if ((pnode - base_pnode) >= UV_DISTRIBUTION_SIZE) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001947 pr_emerg(
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001948 "cpu %d pnode %d-%d beyond %d; BAU disabled\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001949 cpu, pnode, base_pnode, UV_DISTRIBUTION_SIZE);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001950 return 1;
1951 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001952
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001953 bcp->osnode = cpu_to_node(cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001954 bcp->partition_base_pnode = base_pnode;
1955
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001956 uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05001957 *(uvhub_mask + (uvhub/8)) |= (1 << (uvhub%8));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001958 bdp = &uvhub_descs[uvhub];
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001959
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001960 bdp->num_cpus++;
1961 bdp->uvhub = uvhub;
1962 bdp->pnode = pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001963
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001964 /* kludge: 'assuming' one node per socket, and assuming that
1965 disabling a socket just leaves a gap in node numbers */
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001966 socket = bcp->osnode & 1;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001967 bdp->socket_mask |= (1 << socket);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001968 sdp = &bdp->socket[socket];
1969 sdp->cpu_number[sdp->num_cpus] = cpu;
1970 sdp->num_cpus++;
Cliff Wickmancfa60912011-01-03 12:03:53 -06001971 if (sdp->num_cpus > MAX_CPUS_PER_SOCKET) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001972 pr_emerg("%d cpus per socket invalid\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001973 sdp->num_cpus);
Cliff Wickmancfa60912011-01-03 12:03:53 -06001974 return 1;
1975 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001976 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001977 return 0;
1978}
1979
1980/*
1981 * Each socket is to get a local array of pnodes/hubs.
1982 */
1983static void make_per_cpu_thp(struct bau_control *smaster)
1984{
1985 int cpu;
1986 size_t hpsz = sizeof(struct hub_and_pnode) * num_possible_cpus();
1987
1988 smaster->thp = kmalloc_node(hpsz, GFP_KERNEL, smaster->osnode);
1989 memset(smaster->thp, 0, hpsz);
1990 for_each_present_cpu(cpu) {
1991 smaster->thp[cpu].pnode = uv_cpu_hub_info(cpu)->pnode;
1992 smaster->thp[cpu].uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
1993 }
1994}
1995
1996/*
cpw@sgi.com442d3922011-06-21 07:21:31 -05001997 * Each uvhub is to get a local cpumask.
1998 */
1999static void make_per_hub_cpumask(struct bau_control *hmaster)
2000{
2001 int sz = sizeof(cpumask_t);
2002
2003 hmaster->cpumask = kzalloc_node(sz, GFP_KERNEL, hmaster->osnode);
2004}
2005
2006/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002007 * Initialize all the per_cpu information for the cpu's on a given socket,
2008 * given what has been gathered into the socket_desc struct.
2009 * And reports the chosen hub and socket masters back to the caller.
2010 */
2011static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp,
2012 struct bau_control **smasterp,
2013 struct bau_control **hmasterp)
2014{
2015 int i;
2016 int cpu;
2017 struct bau_control *bcp;
2018
2019 for (i = 0; i < sdp->num_cpus; i++) {
2020 cpu = sdp->cpu_number[i];
2021 bcp = &per_cpu(bau_control, cpu);
2022 bcp->cpu = cpu;
2023 if (i == 0) {
2024 *smasterp = bcp;
2025 if (!(*hmasterp))
2026 *hmasterp = bcp;
2027 }
2028 bcp->cpus_in_uvhub = bdp->num_cpus;
2029 bcp->cpus_in_socket = sdp->num_cpus;
2030 bcp->socket_master = *smasterp;
2031 bcp->uvhub = bdp->uvhub;
Cliff Wickmanda87c932012-01-16 15:17:50 -06002032 if (is_uv1_hub())
2033 bcp->uvhub_version = 1;
2034 else if (is_uv2_hub())
2035 bcp->uvhub_version = 2;
Cliff Wickmana26fd712014-05-14 16:15:47 -05002036 else if (is_uv3_hub())
2037 bcp->uvhub_version = 3;
Cliff Wickmanda87c932012-01-16 15:17:50 -06002038 else {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05002039 pr_emerg("uvhub version not 1, 2, or 3\n");
Cliff Wickmanda87c932012-01-16 15:17:50 -06002040 return 1;
2041 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002042 bcp->uvhub_master = *hmasterp;
Mike Travis5627a8252016-04-29 16:54:14 -05002043 bcp->uvhub_cpu = uv_cpu_blade_processor_id(cpu);
2044
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002045 if (bcp->uvhub_cpu >= MAX_CPUS_PER_UVHUB) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05002046 pr_emerg("%d cpus per uvhub invalid\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002047 bcp->uvhub_cpu);
2048 return 1;
2049 }
2050 }
2051 return 0;
2052}
2053
2054/*
2055 * Summarize the blade and socket topology into the per_cpu structures.
2056 */
2057static int __init summarize_uvhub_sockets(int nuvhubs,
2058 struct uvhub_desc *uvhub_descs,
2059 unsigned char *uvhub_mask)
2060{
2061 int socket;
2062 int uvhub;
2063 unsigned short socket_mask;
2064
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002065 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002066 struct uvhub_desc *bdp;
2067 struct bau_control *smaster = NULL;
2068 struct bau_control *hmaster = NULL;
2069
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002070 if (!(*(uvhub_mask + (uvhub/8)) & (1 << (uvhub%8))))
2071 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002072
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002073 bdp = &uvhub_descs[uvhub];
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002074 socket_mask = bdp->socket_mask;
2075 socket = 0;
2076 while (socket_mask) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002077 struct socket_desc *sdp;
2078 if ((socket_mask & 1)) {
2079 sdp = &bdp->socket[socket];
2080 if (scan_sock(sdp, bdp, &smaster, &hmaster))
Cliff Wickmancfa60912011-01-03 12:03:53 -06002081 return 1;
cpw@sgi.com9c9153d2011-06-21 07:21:28 -05002082 make_per_cpu_thp(smaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002083 }
2084 socket++;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002085 socket_mask = (socket_mask >> 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002086 }
cpw@sgi.com442d3922011-06-21 07:21:31 -05002087 make_per_hub_cpumask(hmaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002088 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002089 return 0;
2090}
2091
2092/*
2093 * initialize the bau_control structure for each cpu
2094 */
2095static int __init init_per_cpu(int nuvhubs, int base_part_pnode)
2096{
2097 unsigned char *uvhub_mask;
2098 void *vp;
2099 struct uvhub_desc *uvhub_descs;
2100
2101 timeout_us = calculate_destination_timeout();
2102
2103 vp = kmalloc(nuvhubs * sizeof(struct uvhub_desc), GFP_KERNEL);
2104 uvhub_descs = (struct uvhub_desc *)vp;
2105 memset(uvhub_descs, 0, nuvhubs * sizeof(struct uvhub_desc));
2106 uvhub_mask = kzalloc((nuvhubs+7)/8, GFP_KERNEL);
2107
2108 if (get_cpu_topology(base_part_pnode, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002109 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002110
2111 if (summarize_uvhub_sockets(nuvhubs, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002112 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002113
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002114 kfree(uvhub_descs);
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002115 kfree(uvhub_mask);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002116 init_per_cpu_tunables();
Cliff Wickmancfa60912011-01-03 12:03:53 -06002117 return 0;
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002118
2119fail:
2120 kfree(uvhub_descs);
2121 kfree(uvhub_mask);
2122 return 1;
Cliff Wickmanb194b122008-06-12 08:23:48 -05002123}
Cliff Wickman18129242008-06-02 08:56:14 -05002124
2125/*
2126 * Initialization of BAU-related structures
2127 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05002128static int __init uv_bau_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05002129{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002130 int uvhub;
2131 int pnode;
2132 int nuvhubs;
Rusty Russell2c74d662009-03-18 08:22:30 +10302133 int cur_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002134 int cpus;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002135 int vector;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002136 cpumask_var_t *mask;
Cliff Wickman18129242008-06-02 08:56:14 -05002137
2138 if (!is_uv_system())
2139 return 0;
2140
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002141 for_each_possible_cpu(cur_cpu) {
2142 mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
2143 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
2144 }
Rusty Russell76ba0ec2009-03-13 14:49:57 +10302145
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002146 nuvhubs = uv_num_possible_blades();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002147 congested_cycles = usec_2_cycles(congested_respns_us);
Cliff Wickman9674f352009-04-03 08:34:05 -05002148
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002149 uv_base_pnode = 0x7fffffff;
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002150 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002151 cpus = uv_blade_nr_possible_cpus(uvhub);
2152 if (cpus && (uv_blade_to_pnode(uvhub) < uv_base_pnode))
2153 uv_base_pnode = uv_blade_to_pnode(uvhub);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002154 }
2155
Cliff Wickmand059f9f2012-01-16 15:18:48 -06002156 enable_timeouts();
2157
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002158 if (init_per_cpu(nuvhubs, uv_base_pnode)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05002159 set_bau_off();
2160 nobau_perm = 1;
Cliff Wickmancfa60912011-01-03 12:03:53 -06002161 return 0;
2162 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002163
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002164 vector = UV_BAU_MESSAGE;
Cliff Wickmana26fd712014-05-14 16:15:47 -05002165 for_each_possible_blade(uvhub) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002166 if (uv_blade_nr_possible_cpus(uvhub))
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002167 init_uvhub(uvhub, vector, uv_base_pnode);
Cliff Wickmana26fd712014-05-14 16:15:47 -05002168 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002169
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002170 alloc_intr_gate(vector, uv_bau_message_intr1);
2171
2172 for_each_possible_blade(uvhub) {
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002173 if (uv_blade_nr_possible_cpus(uvhub)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002174 unsigned long val;
2175 unsigned long mmr;
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002176 pnode = uv_blade_to_pnode(uvhub);
2177 /* INIT the bau */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002178 val = 1L << 63;
2179 write_gmmr_activation(pnode, val);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002180 mmr = 1; /* should be 1 to broadcast to both sockets */
Cliff Wickmanda87c932012-01-16 15:17:50 -06002181 if (!is_uv1_hub())
2182 write_mmr_data_broadcast(pnode, mmr);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002183 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002184 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002185
Cliff Wickman18129242008-06-02 08:56:14 -05002186 return 0;
2187}
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002188core_initcall(uv_bau_init);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05002189fs_initcall(uv_ptc_init);