blob: 56c5a3a3884a831e9dee9c2ac277411ecb4db84f [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
Andrew Banman5e4f96f2016-09-21 11:09:16 -050027static struct bau_operations ops;
28
29static struct bau_operations uv123_bau_ops = {
30 .bau_gpa_to_offset = uv_gpa_to_offset,
31 .read_l_sw_ack = read_mmr_sw_ack,
32 .read_g_sw_ack = read_gmmr_sw_ack,
33 .write_l_sw_ack = write_mmr_sw_ack,
34 .write_g_sw_ack = write_gmmr_sw_ack,
35 .write_payload_first = write_mmr_payload_first,
36 .write_payload_last = write_mmr_payload_last,
37};
38
Andrew Banman4f059d52016-09-21 11:09:21 -050039static struct bau_operations uv4_bau_ops = {
40 .bau_gpa_to_offset = uv_gpa_to_soc_phys_ram,
41 .read_l_sw_ack = read_mmr_proc_sw_ack,
42 .read_g_sw_ack = read_gmmr_proc_sw_ack,
43 .write_l_sw_ack = write_mmr_proc_sw_ack,
44 .write_g_sw_ack = write_gmmr_proc_sw_ack,
45 .write_payload_first = write_mmr_proc_payload_first,
46 .write_payload_last = write_mmr_proc_payload_last,
47};
48
49
Cliff Wickman12a66112010-06-02 16:22:01 -050050/* timeouts in nanoseconds (indexed by UVH_AGING_PRESCALE_SEL urgency7 30:28) */
51static int timeout_base_ns[] = {
52 20,
53 160,
54 1280,
55 10240,
56 81920,
57 655360,
58 5242880,
59 167772160
60};
Cliff Wickmanf073cc82011-05-24 13:07:36 -050061
Cliff Wickman12a66112010-06-02 16:22:01 -050062static int timeout_us;
Alex Thorlton1c532e02016-03-31 14:18:29 -050063static bool nobau = true;
Cliff Wickman26ef8572012-06-22 08:13:30 -050064static int nobau_perm;
Cliff Wickman50fb55a2010-06-02 16:22:02 -050065static cycles_t congested_cycles;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050066
67/* tunables: */
Cliff Wickmanf073cc82011-05-24 13:07:36 -050068static int max_concurr = MAX_BAU_CONCURRENT;
69static int max_concurr_const = MAX_BAU_CONCURRENT;
70static int plugged_delay = PLUGGED_DELAY;
71static int plugsb4reset = PLUGSB4RESET;
Cliff Wickman8b6e5112012-06-22 08:14:59 -050072static int giveup_limit = GIVEUP_LIMIT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -050073static int timeoutsb4reset = TIMEOUTSB4RESET;
74static int ipi_reset_limit = IPI_RESET_LIMIT;
75static int complete_threshold = COMPLETE_THRESHOLD;
76static int congested_respns_us = CONGESTED_RESPONSE_US;
77static int congested_reps = CONGESTED_REPS;
Cliff Wickman8b6e5112012-06-22 08:14:59 -050078static int disabled_period = DISABLED_PERIOD;
Cliff Wickmanf073cc82011-05-24 13:07:36 -050079
80static struct tunables tunables[] = {
Andrew Banman67492c82016-09-21 11:09:12 -050081 {&max_concurr, MAX_BAU_CONCURRENT}, /* must be [0] */
82 {&plugged_delay, PLUGGED_DELAY},
83 {&plugsb4reset, PLUGSB4RESET},
84 {&timeoutsb4reset, TIMEOUTSB4RESET},
85 {&ipi_reset_limit, IPI_RESET_LIMIT},
86 {&complete_threshold, COMPLETE_THRESHOLD},
87 {&congested_respns_us, CONGESTED_RESPONSE_US},
88 {&congested_reps, CONGESTED_REPS},
89 {&disabled_period, DISABLED_PERIOD},
90 {&giveup_limit, GIVEUP_LIMIT}
Cliff Wickmanf073cc82011-05-24 13:07:36 -050091};
92
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050093static struct dentry *tunables_dir;
94static struct dentry *tunables_file;
95
Cliff Wickmanf073cc82011-05-24 13:07:36 -050096/* these correspond to the statistics printed by ptc_seq_show() */
97static char *stat_description[] = {
98 "sent: number of shootdown messages sent",
99 "stime: time spent sending messages",
100 "numuvhubs: number of hubs targeted with shootdown",
101 "numuvhubs16: number times 16 or more hubs targeted",
102 "numuvhubs8: number times 8 or more hubs targeted",
103 "numuvhubs4: number times 4 or more hubs targeted",
104 "numuvhubs2: number times 2 or more hubs targeted",
105 "numuvhubs1: number times 1 hub targeted",
106 "numcpus: number of cpus targeted with shootdown",
107 "dto: number of destination timeouts",
108 "retries: destination timeout retries sent",
109 "rok: : destination timeouts successfully retried",
110 "resetp: ipi-style resource resets for plugs",
111 "resett: ipi-style resource resets for timeouts",
112 "giveup: fall-backs to ipi-style shootdowns",
113 "sto: number of source timeouts",
114 "bz: number of stay-busy's",
115 "throt: number times spun in throttle",
116 "swack: image of UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE",
117 "recv: shootdown messages received",
118 "rtime: time spent processing messages",
119 "all: shootdown all-tlb messages",
120 "one: shootdown one-tlb messages",
121 "mult: interrupts that found multiple messages",
122 "none: interrupts that found no messages",
123 "retry: number of retry messages processed",
124 "canc: number messages canceled by retries",
125 "nocan: number retries that found nothing to cancel",
126 "reset: number of ipi-style reset requests processed",
127 "rcan: number messages canceled by reset requests",
128 "disable: number times use of the BAU was disabled",
129 "enable: number times use of the BAU was re-enabled"
130};
131
Alex Thorlton1c532e02016-03-31 14:18:29 -0500132static int __init setup_bau(char *arg)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500133{
Alex Thorlton1c532e02016-03-31 14:18:29 -0500134 int result;
135
136 if (!arg)
137 return -EINVAL;
138
139 result = strtobool(arg, &nobau);
140 if (result)
141 return result;
142
143 /* we need to flip the logic here, so that bau=y sets nobau to false */
144 nobau = !nobau;
145
146 if (!nobau)
147 pr_info("UV BAU Enabled\n");
148 else
149 pr_info("UV BAU Disabled\n");
150
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500151 return 0;
152}
Alex Thorlton1c532e02016-03-31 14:18:29 -0500153early_param("bau", setup_bau);
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200154
Cliff Wickman94ca8e42009-04-14 10:56:48 -0500155/* base pnode in this partition */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500156static int uv_base_pnode __read_mostly;
Cliff Wickman18129242008-06-02 08:56:14 -0500157
Ingo Molnardc163a42008-06-18 14:15:43 +0200158static DEFINE_PER_CPU(struct ptc_stats, ptcstats);
159static DEFINE_PER_CPU(struct bau_control, bau_control);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500160static DEFINE_PER_CPU(cpumask_var_t, uv_flush_tlb_mask);
161
Cliff Wickman26ef8572012-06-22 08:13:30 -0500162static void
163set_bau_on(void)
164{
165 int cpu;
166 struct bau_control *bcp;
167
168 if (nobau_perm) {
169 pr_info("BAU not initialized; cannot be turned on\n");
170 return;
171 }
Alex Thorlton1c532e02016-03-31 14:18:29 -0500172 nobau = false;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500173 for_each_present_cpu(cpu) {
174 bcp = &per_cpu(bau_control, cpu);
Alex Thorlton1c532e02016-03-31 14:18:29 -0500175 bcp->nobau = false;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500176 }
177 pr_info("BAU turned on\n");
178 return;
179}
180
181static void
182set_bau_off(void)
183{
184 int cpu;
185 struct bau_control *bcp;
186
Alex Thorlton1c532e02016-03-31 14:18:29 -0500187 nobau = true;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500188 for_each_present_cpu(cpu) {
189 bcp = &per_cpu(bau_control, cpu);
Alex Thorlton1c532e02016-03-31 14:18:29 -0500190 bcp->nobau = true;
Cliff Wickman26ef8572012-06-22 08:13:30 -0500191 }
192 pr_info("BAU turned off\n");
193 return;
194}
195
Cliff Wickman18129242008-06-02 08:56:14 -0500196/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500197 * Determine the first node on a uvhub. 'Nodes' are used for kernel
198 * memory allocation.
Cliff Wickman9674f352009-04-03 08:34:05 -0500199 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500200static int __init uvhub_to_first_node(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500201{
202 int node, b;
203
204 for_each_online_node(node) {
205 b = uv_node_to_blade_id(node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500206 if (uvhub == b)
Cliff Wickman9674f352009-04-03 08:34:05 -0500207 return node;
208 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500209 return -1;
Cliff Wickman9674f352009-04-03 08:34:05 -0500210}
211
212/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500213 * Determine the apicid of the first cpu on a uvhub.
Cliff Wickman9674f352009-04-03 08:34:05 -0500214 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500215static int __init uvhub_to_first_apicid(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500216{
217 int cpu;
218
219 for_each_present_cpu(cpu)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500220 if (uvhub == uv_cpu_to_blade_id(cpu))
Cliff Wickman9674f352009-04-03 08:34:05 -0500221 return per_cpu(x86_cpu_to_apicid, cpu);
222 return -1;
223}
224
225/*
Cliff Wickman18129242008-06-02 08:56:14 -0500226 * Free a software acknowledge hardware resource by clearing its Pending
227 * bit. This will return a reply to the sender.
228 * If the message has timed out, a reply has already been sent by the
229 * hardware but the resource has not been released. In that case our
230 * clear of the Timeout bit (as well) will free the resource. No reply will
231 * be sent (the hardware will only do one reply per message).
232 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600233static void reply_to_message(struct msg_desc *mdp, struct bau_control *bcp,
234 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500235{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500236 unsigned long dw;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500237 struct bau_pq_entry *msg;
Cliff Wickman18129242008-06-02 08:56:14 -0500238
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500239 msg = mdp->msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600240 if (!msg->canceled && do_acknowledge) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500241 dw = (msg->swack_vec << UV_SW_ACK_NPENDING) | msg->swack_vec;
Andrew Banman21e3f122016-09-21 11:09:17 -0500242 ops.write_l_sw_ack(dw);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500243 }
Cliff Wickman18129242008-06-02 08:56:14 -0500244 msg->replied_to = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500245 msg->swack_vec = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500246}
247
248/*
249 * Process the receipt of a RETRY message
250 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500251static void bau_process_retry_msg(struct msg_desc *mdp,
252 struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500253{
254 int i;
255 int cancel_count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500256 unsigned long msg_res;
257 unsigned long mmr = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500258 struct bau_pq_entry *msg = mdp->msg;
259 struct bau_pq_entry *msg2;
260 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500261
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500262 stat->d_retries++;
263 /*
264 * cancel any message from msg+1 to the retry itself
265 */
266 for (msg2 = msg+1, i = 0; i < DEST_Q_SIZE; msg2++, i++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500267 if (msg2 > mdp->queue_last)
268 msg2 = mdp->queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500269 if (msg2 == msg)
270 break;
271
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500272 /* same conditions for cancellation as do_reset */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500273 if ((msg2->replied_to == 0) && (msg2->canceled == 0) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500274 (msg2->swack_vec) && ((msg2->swack_vec &
275 msg->swack_vec) == 0) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500276 (msg2->sending_cpu == msg->sending_cpu) &&
277 (msg2->msg_type != MSG_NOOP)) {
Andrew Banman21e3f122016-09-21 11:09:17 -0500278 mmr = ops.read_l_sw_ack();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500279 msg_res = msg2->swack_vec;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500280 /*
281 * This is a message retry; clear the resources held
282 * by the previous message only if they timed out.
283 * If it has not timed out we have an unexpected
284 * situation to report.
285 */
Cliff Wickman39847e72010-06-02 16:22:02 -0500286 if (mmr & (msg_res << UV_SW_ACK_NPENDING)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500287 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500288 /*
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600289 * Is the resource timed out?
290 * Make everyone ignore the cancelled message.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500291 */
292 msg2->canceled = 1;
293 stat->d_canceled++;
294 cancel_count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500295 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
Andrew Banman21e3f122016-09-21 11:09:17 -0500296 ops.write_l_sw_ack(mr);
Cliff Wickman39847e72010-06-02 16:22:02 -0500297 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500298 }
299 }
300 if (!cancel_count)
301 stat->d_nocanceled++;
Cliff Wickman18129242008-06-02 08:56:14 -0500302}
303
304/*
305 * Do all the things a cpu should do for a TLB shootdown message.
306 * Other cpu's may come here at the same time for this message.
307 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600308static void bau_process_message(struct msg_desc *mdp, struct bau_control *bcp,
309 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500310{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500311 short socket_ack_count = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500312 short *sp;
313 struct atomic_short *asp;
314 struct ptc_stats *stat = bcp->statp;
315 struct bau_pq_entry *msg = mdp->msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500316 struct bau_control *smaster = bcp->socket_master;
Cliff Wickman18129242008-06-02 08:56:14 -0500317
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500318 /*
319 * This must be a normal message, or retry of a normal message
320 */
Cliff Wickman18129242008-06-02 08:56:14 -0500321 if (msg->address == TLB_FLUSH_ALL) {
322 local_flush_tlb();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500323 stat->d_alltlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500324 } else {
325 __flush_tlb_one(msg->address);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500326 stat->d_onetlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500327 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500328 stat->d_requestee++;
Cliff Wickman18129242008-06-02 08:56:14 -0500329
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500330 /*
331 * One cpu on each uvhub has the additional job on a RETRY
332 * of releasing the resource held by the message that is
333 * being retried. That message is identified by sending
334 * cpu number.
335 */
336 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500337 bau_process_retry_msg(mdp, bcp);
Cliff Wickman18129242008-06-02 08:56:14 -0500338
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500339 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500340 * This is a swack message, so we have to reply to it.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500341 * Count each responding cpu on the socket. This avoids
342 * pinging the count's cache line back and forth between
343 * the sockets.
344 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500345 sp = &smaster->socket_acknowledge_count[mdp->msg_slot];
346 asp = (struct atomic_short *)sp;
347 socket_ack_count = atom_asr(1, asp);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500348 if (socket_ack_count == bcp->cpus_in_socket) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500349 int msg_ack_count;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500350 /*
351 * Both sockets dump their completed count total into
352 * the message's count.
353 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500354 *sp = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500355 asp = (struct atomic_short *)&msg->acknowledge_count;
356 msg_ack_count = atom_asr(socket_ack_count, asp);
Ingo Molnardc163a42008-06-18 14:15:43 +0200357
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500358 if (msg_ack_count == bcp->cpus_in_uvhub) {
359 /*
360 * All cpus in uvhub saw it; reply
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600361 * (unless we are in the UV2 workaround)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500362 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600363 reply_to_message(mdp, bcp, do_acknowledge);
Ingo Molnardc163a42008-06-18 14:15:43 +0200364 }
365 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500366
367 return;
Cliff Wickman18129242008-06-02 08:56:14 -0500368}
369
370/*
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500371 * Determine the first cpu on a pnode.
Cliff Wickman18129242008-06-02 08:56:14 -0500372 */
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500373static int pnode_to_first_cpu(int pnode, struct bau_control *smaster)
Cliff Wickman18129242008-06-02 08:56:14 -0500374{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500375 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500376 struct hub_and_pnode *hpp;
377
378 for_each_present_cpu(cpu) {
379 hpp = &smaster->thp[cpu];
380 if (pnode == hpp->pnode)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500381 return cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500382 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500383 return -1;
Cliff Wickman18129242008-06-02 08:56:14 -0500384}
385
Cliff Wickmanb194b122008-06-12 08:23:48 -0500386/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500387 * Last resort when we get a large number of destination timeouts is
388 * to clear resources held by a given cpu.
389 * Do this with IPI so that all messages in the BAU message queue
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500390 * can be identified by their nonzero swack_vec field.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500391 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500392 * This is entered for a single cpu on the uvhub.
393 * The sender want's this uvhub to free a specific message's
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500394 * swack resources.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500395 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500396static void do_reset(void *ptr)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500397{
398 int i;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500399 struct bau_control *bcp = &per_cpu(bau_control, smp_processor_id());
400 struct reset_args *rap = (struct reset_args *)ptr;
401 struct bau_pq_entry *msg;
402 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500403
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500404 stat->d_resets++;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500405 /*
406 * We're looking for the given sender, and
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500407 * will free its swack resource.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500408 * If all cpu's finally responded after the timeout, its
409 * message 'replied_to' was set.
410 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500411 for (msg = bcp->queue_first, i = 0; i < DEST_Q_SIZE; msg++, i++) {
412 unsigned long msg_res;
413 /* do_reset: same conditions for cancellation as
414 bau_process_retry_msg() */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500415 if ((msg->replied_to == 0) &&
416 (msg->canceled == 0) &&
417 (msg->sending_cpu == rap->sender) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500418 (msg->swack_vec) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500419 (msg->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500420 unsigned long mmr;
421 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500422 /*
423 * make everyone else ignore this message
424 */
425 msg->canceled = 1;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500426 /*
427 * only reset the resource if it is still pending
428 */
Andrew Banman21e3f122016-09-21 11:09:17 -0500429 mmr = ops.read_l_sw_ack();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500430 msg_res = msg->swack_vec;
431 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500432 if (mmr & msg_res) {
433 stat->d_rcanceled++;
Andrew Banman21e3f122016-09-21 11:09:17 -0500434 ops.write_l_sw_ack(mr);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500435 }
436 }
437 }
438 return;
439}
440
441/*
442 * Use IPI to get all target uvhubs to release resources held by
443 * a given sending cpu number.
444 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500445static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500446{
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500447 int pnode;
448 int apnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500449 int maskbits;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500450 int sender = bcp->cpu;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500451 cpumask_t *mask = bcp->uvhub_master->cpumask;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500452 struct bau_control *smaster = bcp->socket_master;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500453 struct reset_args reset_args;
454
455 reset_args.sender = sender;
Rusty Russell020b37a2015-03-02 22:05:49 +1030456 cpumask_clear(mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500457 /* find a single cpu for each uvhub in this distribution mask */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500458 maskbits = sizeof(struct pnmask) * BITSPERBYTE;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500459 /* each bit is a pnode relative to the partition base pnode */
460 for (pnode = 0; pnode < maskbits; pnode++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500461 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500462 if (!bau_uvhub_isset(pnode, distribution))
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500463 continue;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500464 apnode = pnode + bcp->partition_base_pnode;
465 cpu = pnode_to_first_cpu(apnode, smaster);
Rusty Russell020b37a2015-03-02 22:05:49 +1030466 cpumask_set_cpu(cpu, mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500467 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500468
469 /* IPI all cpus; preemption is already disabled */
cpw@sgi.com442d3922011-06-21 07:21:31 -0500470 smp_call_function_many(mask, do_reset, (void *)&reset_args, 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500471 return;
472}
473
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100474/*
475 * Not to be confused with cycles_2_ns() from tsc.c; this gives a relative
476 * number, not an absolute. It converts a duration in cycles to a duration in
477 * ns.
478 */
479static inline unsigned long long cycles_2_ns(unsigned long long cyc)
480{
481 struct cyc2ns_data *data = cyc2ns_read_begin();
482 unsigned long long ns;
483
484 ns = mul_u64_u32_shr(cyc, data->cyc2ns_mul, data->cyc2ns_shift);
485
486 cyc2ns_read_end(data);
487 return ns;
488}
489
490/*
491 * The reverse of the above; converts a duration in ns to a duration in cycles.
Cliff Wickmana26fd712014-05-14 16:15:47 -0500492 */
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100493static inline unsigned long long ns_2_cycles(unsigned long long ns)
494{
495 struct cyc2ns_data *data = cyc2ns_read_begin();
496 unsigned long long cyc;
497
498 cyc = (ns << data->cyc2ns_shift) / data->cyc2ns_mul;
499
500 cyc2ns_read_end(data);
501 return cyc;
502}
503
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500504static inline unsigned long cycles_2_us(unsigned long long cyc)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500505{
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100506 return cycles_2_ns(cyc) / NSEC_PER_USEC;
507}
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500508
Peter Zijlstra20d1c862013-11-29 15:40:29 +0100509static inline cycles_t sec_2_cycles(unsigned long sec)
510{
511 return ns_2_cycles(sec * NSEC_PER_SEC);
512}
513
514static inline unsigned long long usec_2_cycles(unsigned long usec)
515{
516 return ns_2_cycles(usec * NSEC_PER_USEC);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500517}
518
519/*
520 * wait for all cpus on this hub to finish their sends and go quiet
521 * leaves uvhub_quiesce set so that no new broadcasts are started by
522 * bau_flush_send_and_wait()
523 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500524static inline void quiesce_local_uvhub(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500525{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500526 atom_asr(1, (struct atomic_short *)&hmaster->uvhub_quiesce);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500527}
528
529/*
530 * mark this quiet-requestor as done
531 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500532static inline void end_uvhub_quiesce(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500533{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500534 atom_asr(-1, (struct atomic_short *)&hmaster->uvhub_quiesce);
535}
536
537static unsigned long uv1_read_status(unsigned long mmr_offset, int right_shift)
538{
539 unsigned long descriptor_status;
540
541 descriptor_status = uv_read_local_mmr(mmr_offset);
542 descriptor_status >>= right_shift;
543 descriptor_status &= UV_ACT_STATUS_MASK;
544 return descriptor_status;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500545}
546
547/*
548 * Wait for completion of a broadcast software ack message
549 * return COMPLETE, RETRY(PLUGGED or TIMEOUT) or GIVEUP
Cliff Wickmanb194b122008-06-12 08:23:48 -0500550 */
Jack Steiner2a919592011-05-11 12:50:28 -0500551static int uv1_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500552 unsigned long mmr_offset, int right_shift,
553 struct bau_control *bcp, long try)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500554{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500555 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500556 cycles_t ttm;
Cliff Wickman712157a2010-06-02 16:22:02 -0500557 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500558
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500559 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500560 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500561 while ((descriptor_status != DS_IDLE)) {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500562 /*
Jack Steiner2a919592011-05-11 12:50:28 -0500563 * Our software ack messages may be blocked because
564 * there are no swack resources available. As long
565 * as none of them has timed out hardware will NACK
566 * our message and its state will stay IDLE.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500567 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500568 if (descriptor_status == DS_SOURCE_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500569 stat->s_stimeout++;
570 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500571 } else if (descriptor_status == DS_DESTINATION_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500572 stat->s_dtimeout++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500573 ttm = get_cycles();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500574
575 /*
576 * Our retries may be blocked by all destination
577 * swack resources being consumed, and a timeout
578 * pending. In that case hardware returns the
579 * ERROR that looks like a destination timeout.
580 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500581 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500582 bcp->conseccompletes = 0;
583 return FLUSH_RETRY_PLUGGED;
584 }
585
586 bcp->conseccompletes = 0;
587 return FLUSH_RETRY_TIMEOUT;
588 } else {
589 /*
590 * descriptor_status is still BUSY
591 */
592 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500593 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500594 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500595 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500596 bcp->conseccompletes++;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500597 return FLUSH_COMPLETE;
598}
599
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500600/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500601 * UV2 could have an extra bit of status in the ACTIVATION_STATUS_2 register.
602 * But not currently used.
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500603 */
Cliff Wickmana26fd712014-05-14 16:15:47 -0500604static unsigned long uv2_3_read_status(unsigned long offset, int rshft, int desc)
Jack Steiner2a919592011-05-11 12:50:28 -0500605{
606 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500607
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500608 descriptor_status =
609 ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK) << 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500610 return descriptor_status;
611}
612
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600613/*
614 * Return whether the status of the descriptor that is normally used for this
615 * cpu (the one indexed by its hub-relative cpu number) is busy.
616 * The status of the original 32 descriptors is always reflected in the 64
617 * bits of UVH_LB_BAU_SB_ACTIVATION_STATUS_0.
618 * The bit provided by the activation_status_2 register is irrelevant to
619 * the status if it is only being tested for busy or not busy.
620 */
621int normal_busy(struct bau_control *bcp)
622{
623 int cpu = bcp->uvhub_cpu;
624 int mmr_offset;
625 int right_shift;
626
627 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
628 right_shift = cpu * UV_ACT_STATUS_SIZE;
629 return (((((read_lmmr(mmr_offset) >> right_shift) &
630 UV_ACT_STATUS_MASK)) << 1) == UV2H_DESC_BUSY);
631}
632
633/*
634 * Entered when a bau descriptor has gone into a permanent busy wait because
635 * of a hardware bug.
636 * Workaround the bug.
637 */
638int handle_uv2_busy(struct bau_control *bcp)
639{
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600640 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600641
642 stat->s_uv2_wars++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500643 bcp->busy = 1;
644 return FLUSH_GIVEUP;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600645}
646
Cliff Wickmana26fd712014-05-14 16:15:47 -0500647static int uv2_3_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500648 unsigned long mmr_offset, int right_shift,
649 struct bau_control *bcp, long try)
650{
651 unsigned long descriptor_stat;
652 cycles_t ttm;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500653 int desc = bcp->uvhub_cpu;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600654 long busy_reps = 0;
Jack Steiner2a919592011-05-11 12:50:28 -0500655 struct ptc_stats *stat = bcp->statp;
656
Cliff Wickmana26fd712014-05-14 16:15:47 -0500657 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500658
Jack Steiner2a919592011-05-11 12:50:28 -0500659 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500660 while (descriptor_stat != UV2H_DESC_IDLE) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500661 if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT)) {
662 /*
663 * A h/w bug on the destination side may
664 * have prevented the message being marked
665 * pending, thus it doesn't get replied to
666 * and gets continually nacked until it times
667 * out with a SOURCE_TIMEOUT.
668 */
Jack Steiner2a919592011-05-11 12:50:28 -0500669 stat->s_stimeout++;
670 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500671 } else if (descriptor_stat == UV2H_DESC_DEST_TIMEOUT) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500672 ttm = get_cycles();
673
674 /*
675 * Our retries may be blocked by all destination
676 * swack resources being consumed, and a timeout
677 * pending. In that case hardware returns the
678 * ERROR that looks like a destination timeout.
679 * Without using the extended status we have to
680 * deduce from the short time that this was a
681 * strong nack.
682 */
683 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
684 bcp->conseccompletes = 0;
685 stat->s_plugged++;
686 /* FLUSH_RETRY_PLUGGED causes hang on boot */
687 return FLUSH_GIVEUP;
688 }
Jack Steiner2a919592011-05-11 12:50:28 -0500689 stat->s_dtimeout++;
Jack Steiner2a919592011-05-11 12:50:28 -0500690 bcp->conseccompletes = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500691 /* FLUSH_RETRY_TIMEOUT causes hang on boot */
692 return FLUSH_GIVEUP;
Jack Steiner2a919592011-05-11 12:50:28 -0500693 } else {
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600694 busy_reps++;
695 if (busy_reps > 1000000) {
696 /* not to hammer on the clock */
697 busy_reps = 0;
698 ttm = get_cycles();
Cliff Wickmana26fd712014-05-14 16:15:47 -0500699 if ((ttm - bcp->send_message) > bcp->timeout_interval)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600700 return handle_uv2_busy(bcp);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600701 }
Jack Steiner2a919592011-05-11 12:50:28 -0500702 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500703 * descriptor_stat is still BUSY
Jack Steiner2a919592011-05-11 12:50:28 -0500704 */
705 cpu_relax();
706 }
Cliff Wickmana26fd712014-05-14 16:15:47 -0500707 descriptor_stat = uv2_3_read_status(mmr_offset, right_shift, desc);
Jack Steiner2a919592011-05-11 12:50:28 -0500708 }
709 bcp->conseccompletes++;
710 return FLUSH_COMPLETE;
711}
712
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500713/*
714 * There are 2 status registers; each and array[32] of 2 bits. Set up for
715 * which register to read and position in that register based on cpu in
716 * current hub.
717 */
Cliff Wickmana26fd712014-05-14 16:15:47 -0500718static int wait_completion(struct bau_desc *bau_desc, struct bau_control *bcp, long try)
Jack Steiner2a919592011-05-11 12:50:28 -0500719{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500720 int right_shift;
721 unsigned long mmr_offset;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500722 int desc = bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500723
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600724 if (desc < UV_CPUS_PER_AS) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500725 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600726 right_shift = desc * UV_ACT_STATUS_SIZE;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500727 } else {
728 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600729 right_shift = ((desc - UV_CPUS_PER_AS) * UV_ACT_STATUS_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500730 }
731
Cliff Wickmanda87c932012-01-16 15:17:50 -0600732 if (bcp->uvhub_version == 1)
Cliff Wickmana26fd712014-05-14 16:15:47 -0500733 return uv1_wait_completion(bau_desc, mmr_offset, right_shift, bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500734 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500735 return uv2_3_wait_completion(bau_desc, mmr_offset, right_shift, bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500736}
737
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500738/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500739 * Our retries are blocked by all destination sw ack resources being
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500740 * in use, and a timeout is pending. In that case hardware immediately
741 * returns the ERROR that looks like a destination timeout.
742 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500743static void destination_plugged(struct bau_desc *bau_desc,
744 struct bau_control *bcp,
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500745 struct bau_control *hmaster, struct ptc_stats *stat)
746{
747 udelay(bcp->plugged_delay);
748 bcp->plugged_tries++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500749
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500750 if (bcp->plugged_tries >= bcp->plugsb4reset) {
751 bcp->plugged_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500752
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500753 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500754
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500755 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500756 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500757 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500758
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500759 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500760
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500761 bcp->ipi_attempts++;
762 stat->s_resets_plug++;
763 }
764}
765
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500766static void destination_timeout(struct bau_desc *bau_desc,
767 struct bau_control *bcp, struct bau_control *hmaster,
768 struct ptc_stats *stat)
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500769{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500770 hmaster->max_concurr = 1;
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500771 bcp->timeout_tries++;
772 if (bcp->timeout_tries >= bcp->timeoutsb4reset) {
773 bcp->timeout_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500774
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500775 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500776
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500777 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500778 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500779 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500780
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500781 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500782
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500783 bcp->ipi_attempts++;
784 stat->s_resets_timeout++;
785 }
786}
787
788/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500789 * Stop all cpus on a uvhub from using the BAU for a period of time.
790 * This is reversed by check_enable.
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500791 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500792static void disable_for_period(struct bau_control *bcp, struct ptc_stats *stat)
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500793{
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500794 int tcpu;
795 struct bau_control *tbcp;
796 struct bau_control *hmaster;
797 cycles_t tm1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500798
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500799 hmaster = bcp->uvhub_master;
800 spin_lock(&hmaster->disable_lock);
801 if (!bcp->baudisabled) {
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500802 stat->s_bau_disabled++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500803 tm1 = get_cycles();
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500804 for_each_present_cpu(tcpu) {
805 tbcp = &per_cpu(bau_control, tcpu);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500806 if (tbcp->uvhub_master == hmaster) {
807 tbcp->baudisabled = 1;
808 tbcp->set_bau_on_time =
809 tm1 + bcp->disabled_period;
810 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500811 }
812 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500813 spin_unlock(&hmaster->disable_lock);
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500814}
815
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500816static void count_max_concurr(int stat, struct bau_control *bcp,
817 struct bau_control *hmaster)
818{
819 bcp->plugged_tries = 0;
820 bcp->timeout_tries = 0;
821 if (stat != FLUSH_COMPLETE)
822 return;
823 if (bcp->conseccompletes <= bcp->complete_threshold)
824 return;
825 if (hmaster->max_concurr >= hmaster->max_concurr_const)
826 return;
827 hmaster->max_concurr++;
828}
829
830static void record_send_stats(cycles_t time1, cycles_t time2,
831 struct bau_control *bcp, struct ptc_stats *stat,
832 int completion_status, int try)
833{
834 cycles_t elapsed;
835
836 if (time2 > time1) {
837 elapsed = time2 - time1;
838 stat->s_time += elapsed;
839
840 if ((completion_status == FLUSH_COMPLETE) && (try == 1)) {
841 bcp->period_requests++;
842 bcp->period_time += elapsed;
843 if ((elapsed > congested_cycles) &&
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500844 (bcp->period_requests > bcp->cong_reps) &&
845 ((bcp->period_time / bcp->period_requests) >
846 congested_cycles)) {
847 stat->s_congested++;
848 disable_for_period(bcp, stat);
849 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500850 }
851 } else
852 stat->s_requestor--;
853
854 if (completion_status == FLUSH_COMPLETE && try > 1)
855 stat->s_retriesok++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500856 else if (completion_status == FLUSH_GIVEUP) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500857 stat->s_giveup++;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500858 if (get_cycles() > bcp->period_end)
859 bcp->period_giveups = 0;
860 bcp->period_giveups++;
861 if (bcp->period_giveups == 1)
862 bcp->period_end = get_cycles() + bcp->disabled_period;
863 if (bcp->period_giveups > bcp->giveup_limit) {
864 disable_for_period(bcp, stat);
865 stat->s_giveuplimit++;
866 }
867 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500868}
869
870/*
871 * Because of a uv1 hardware bug only a limited number of concurrent
872 * requests can be made.
873 */
874static void uv1_throttle(struct bau_control *hmaster, struct ptc_stats *stat)
875{
876 spinlock_t *lock = &hmaster->uvhub_lock;
877 atomic_t *v;
878
879 v = &hmaster->active_descriptor_count;
880 if (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr)) {
881 stat->s_throttles++;
882 do {
883 cpu_relax();
884 } while (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr));
885 }
886}
887
888/*
889 * Handle the completion status of a message send.
890 */
891static void handle_cmplt(int completion_status, struct bau_desc *bau_desc,
892 struct bau_control *bcp, struct bau_control *hmaster,
893 struct ptc_stats *stat)
894{
895 if (completion_status == FLUSH_RETRY_PLUGGED)
896 destination_plugged(bau_desc, bcp, hmaster, stat);
897 else if (completion_status == FLUSH_RETRY_TIMEOUT)
898 destination_timeout(bau_desc, bcp, hmaster, stat);
899}
900
901/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500902 * Send a broadcast and wait for it to complete.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500903 *
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500904 * The flush_mask contains the cpus the broadcast is to be sent to including
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500905 * cpus that are on the local uvhub.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500906 *
Cliff Wickman450a0072010-06-02 16:22:02 -0500907 * Returns 0 if all flushing represented in the mask was done.
908 * Returns 1 if it gives up entirely and the original cpu mask is to be
909 * returned to the kernel.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500910 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500911int uv_flush_send_and_wait(struct cpumask *flush_mask, struct bau_control *bcp,
912 struct bau_desc *bau_desc)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500913{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500914 int seq_number = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500915 int completion_stat = 0;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600916 int uv1 = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500917 long try = 0;
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200918 unsigned long index;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500919 cycles_t time1;
920 cycles_t time2;
Cliff Wickman712157a2010-06-02 16:22:02 -0500921 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500922 struct bau_control *hmaster = bcp->uvhub_master;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600923 struct uv1_bau_msg_header *uv1_hdr = NULL;
Cliff Wickmana26fd712014-05-14 16:15:47 -0500924 struct uv2_3_bau_msg_header *uv2_3_hdr = NULL;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500925
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500926 if (bcp->uvhub_version == 1) {
927 uv1 = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500928 uv1_throttle(hmaster, stat);
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500929 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500930
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500931 while (hmaster->uvhub_quiesce)
932 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500933
Cliff Wickmanb194b122008-06-12 08:23:48 -0500934 time1 = get_cycles();
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500935 if (uv1)
936 uv1_hdr = &bau_desc->header.uv1_hdr;
937 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500938 /* uv2 and uv3 */
939 uv2_3_hdr = &bau_desc->header.uv2_3_hdr;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500940
Cliff Wickmanb194b122008-06-12 08:23:48 -0500941 do {
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500942 if (try == 0) {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600943 if (uv1)
944 uv1_hdr->msg_type = MSG_REGULAR;
945 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500946 uv2_3_hdr->msg_type = MSG_REGULAR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500947 seq_number = bcp->message_number++;
948 } else {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600949 if (uv1)
950 uv1_hdr->msg_type = MSG_RETRY;
951 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500952 uv2_3_hdr->msg_type = MSG_RETRY;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500953 stat->s_retry_messages++;
954 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500955
Cliff Wickmanda87c932012-01-16 15:17:50 -0600956 if (uv1)
957 uv1_hdr->sequence = seq_number;
958 else
Cliff Wickmana26fd712014-05-14 16:15:47 -0500959 uv2_3_hdr->sequence = seq_number;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500960 index = (1UL << AS_PUSH_SHIFT) | bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500961 bcp->send_message = get_cycles();
962
963 write_mmr_activation(index);
964
965 try++;
966 completion_stat = wait_completion(bau_desc, bcp, try);
967
968 handle_cmplt(completion_stat, bau_desc, bcp, hmaster, stat);
969
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500970 if (bcp->ipi_attempts >= bcp->ipi_reset_limit) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500971 bcp->ipi_attempts = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500972 stat->s_overipilimit++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500973 completion_stat = FLUSH_GIVEUP;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500974 break;
975 }
976 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500977 } while ((completion_stat == FLUSH_RETRY_PLUGGED) ||
978 (completion_stat == FLUSH_RETRY_TIMEOUT));
979
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500980 time2 = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500981
982 count_max_concurr(completion_stat, bcp, hmaster);
983
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500984 while (hmaster->uvhub_quiesce)
985 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500986
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500987 atomic_dec(&hmaster->active_descriptor_count);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500988
989 record_send_stats(time1, time2, bcp, stat, completion_stat, try);
990
991 if (completion_stat == FLUSH_GIVEUP)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600992 /* FLUSH_GIVEUP will fall back to using IPI's for tlb flush */
Cliff Wickman450a0072010-06-02 16:22:02 -0500993 return 1;
Cliff Wickman450a0072010-06-02 16:22:02 -0500994 return 0;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500995}
996
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500997/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -0500998 * The BAU is disabled for this uvhub. When the disabled time period has
999 * expired re-enable it.
1000 * Return 0 if it is re-enabled for all cpus on this uvhub.
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001001 */
1002static int check_enable(struct bau_control *bcp, struct ptc_stats *stat)
1003{
1004 int tcpu;
1005 struct bau_control *tbcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001006 struct bau_control *hmaster;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001007
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001008 hmaster = bcp->uvhub_master;
1009 spin_lock(&hmaster->disable_lock);
1010 if (bcp->baudisabled && (get_cycles() >= bcp->set_bau_on_time)) {
1011 stat->s_bau_reenabled++;
1012 for_each_present_cpu(tcpu) {
1013 tbcp = &per_cpu(bau_control, tcpu);
1014 if (tbcp->uvhub_master == hmaster) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001015 tbcp->baudisabled = 0;
1016 tbcp->period_requests = 0;
1017 tbcp->period_time = 0;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001018 tbcp->period_giveups = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001019 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001020 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001021 spin_unlock(&hmaster->disable_lock);
1022 return 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001023 }
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001024 spin_unlock(&hmaster->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001025 return -1;
1026}
1027
1028static void record_send_statistics(struct ptc_stats *stat, int locals, int hubs,
1029 int remotes, struct bau_desc *bau_desc)
1030{
1031 stat->s_requestor++;
1032 stat->s_ntargcpu += remotes + locals;
1033 stat->s_ntargremotes += remotes;
1034 stat->s_ntarglocals += locals;
1035
1036 /* uvhub statistics */
1037 hubs = bau_uvhub_weight(&bau_desc->distribution);
1038 if (locals) {
1039 stat->s_ntarglocaluvhub++;
1040 stat->s_ntargremoteuvhub += (hubs - 1);
1041 } else
1042 stat->s_ntargremoteuvhub += hubs;
1043
1044 stat->s_ntarguvhub += hubs;
1045
1046 if (hubs >= 16)
1047 stat->s_ntarguvhub16++;
1048 else if (hubs >= 8)
1049 stat->s_ntarguvhub8++;
1050 else if (hubs >= 4)
1051 stat->s_ntarguvhub4++;
1052 else if (hubs >= 2)
1053 stat->s_ntarguvhub2++;
1054 else
1055 stat->s_ntarguvhub1++;
1056}
1057
1058/*
1059 * Translate a cpu mask to the uvhub distribution mask in the BAU
1060 * activation descriptor.
1061 */
1062static int set_distrib_bits(struct cpumask *flush_mask, struct bau_control *bcp,
1063 struct bau_desc *bau_desc, int *localsp, int *remotesp)
1064{
1065 int cpu;
1066 int pnode;
1067 int cnt = 0;
1068 struct hub_and_pnode *hpp;
1069
1070 for_each_cpu(cpu, flush_mask) {
1071 /*
1072 * The distribution vector is a bit map of pnodes, relative
1073 * to the partition base pnode (and the partition base nasid
1074 * in the header).
1075 * Translate cpu to pnode and hub using a local memory array.
1076 */
1077 hpp = &bcp->socket_master->thp[cpu];
1078 pnode = hpp->pnode - bcp->partition_base_pnode;
1079 bau_uvhub_set(pnode, &bau_desc->distribution);
1080 cnt++;
1081 if (hpp->uvhub == bcp->uvhub)
1082 (*localsp)++;
1083 else
1084 (*remotesp)++;
1085 }
1086 if (!cnt)
1087 return 1;
1088 return 0;
1089}
1090
1091/*
1092 * globally purge translation cache of a virtual address or all TLB's
Tejun Heobdbcdd42009-01-21 17:26:06 +09001093 * @cpumask: mask of all cpu's in which the address is to be removed
Cliff Wickman18129242008-06-02 08:56:14 -05001094 * @mm: mm_struct containing virtual address range
Alex Shi57c4f432012-12-18 12:22:14 -08001095 * @start: start virtual address to be removed from TLB
1096 * @end: end virtual address to be remove from TLB
Tejun Heobdbcdd42009-01-21 17:26:06 +09001097 * @cpu: the current cpu
Cliff Wickman18129242008-06-02 08:56:14 -05001098 *
1099 * This is the entry point for initiating any UV global TLB shootdown.
1100 *
1101 * Purges the translation caches of all specified processors of the given
1102 * virtual address, or purges all TLB's on specified processors.
1103 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001104 * The caller has derived the cpumask from the mm_struct. This function
1105 * is called only if there are bits set in the mask. (e.g. flush_tlb_page())
Cliff Wickman18129242008-06-02 08:56:14 -05001106 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001107 * The cpumask is converted into a uvhubmask of the uvhubs containing
1108 * those cpus.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001109 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001110 * Note that this function should be called with preemption disabled.
1111 *
1112 * Returns NULL if all remote flushing was done.
1113 * Returns pointer to cpumask if some remote flushing remains to be
1114 * done. The returned pointer is valid till preemption is re-enabled.
Cliff Wickman18129242008-06-02 08:56:14 -05001115 */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001116const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask,
Cliff Wickmana26fd712014-05-14 16:15:47 -05001117 struct mm_struct *mm,
1118 unsigned long start,
1119 unsigned long end,
1120 unsigned int cpu)
Cliff Wickman18129242008-06-02 08:56:14 -05001121{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001122 int locals = 0;
Cliff Wickman450a0072010-06-02 16:22:02 -05001123 int remotes = 0;
1124 int hubs = 0;
Ingo Molnardc163a42008-06-18 14:15:43 +02001125 struct bau_desc *bau_desc;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001126 struct cpumask *flush_mask;
1127 struct ptc_stats *stat;
1128 struct bau_control *bcp;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001129 unsigned long descriptor_status;
1130 unsigned long status;
Cliff Wickman18129242008-06-02 08:56:14 -05001131
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001132 bcp = &per_cpu(bau_control, cpu);
Cliff Wickman26ef8572012-06-22 08:13:30 -05001133
1134 if (bcp->nobau)
1135 return cpumask;
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001136
cpw3eae49c2013-12-03 17:15:30 -06001137 stat = bcp->statp;
1138 stat->s_enters++;
1139
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001140 if (bcp->busy) {
1141 descriptor_status =
1142 read_lmmr(UVH_LB_BAU_SB_ACTIVATION_STATUS_0);
1143 status = ((descriptor_status >> (bcp->uvhub_cpu *
1144 UV_ACT_STATUS_SIZE)) & UV_ACT_STATUS_MASK) << 1;
1145 if (status == UV2H_DESC_BUSY)
1146 return cpumask;
1147 bcp->busy = 0;
1148 }
1149
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001150 /* bau was disabled due to slow response */
1151 if (bcp->baudisabled) {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001152 if (check_enable(bcp, stat)) {
1153 stat->s_ipifordisabled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001154 return cpumask;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001155 }
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001156 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001157
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001158 /*
1159 * Each sending cpu has a per-cpu mask which it fills from the caller's
Cliff Wickman450a0072010-06-02 16:22:02 -05001160 * cpu mask. All cpus are converted to uvhubs and copied to the
1161 * activation descriptor.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001162 */
1163 flush_mask = (struct cpumask *)per_cpu(uv_flush_tlb_mask, cpu);
Cliff Wickman450a0072010-06-02 16:22:02 -05001164 /* don't actually do a shootdown of the local cpu */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001165 cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001166
Rusty Russell020b37a2015-03-02 22:05:49 +10301167 if (cpumask_test_cpu(cpu, cpumask))
Cliff Wickman450a0072010-06-02 16:22:02 -05001168 stat->s_ntargself++;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001169
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001170 bau_desc = bcp->descriptor_base;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001171 bau_desc += (ITEMS_PER_DESC * bcp->uvhub_cpu);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001172 bau_uvhubs_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001173 if (set_distrib_bits(flush_mask, bcp, bau_desc, &locals, &remotes))
Cliff Wickman450a0072010-06-02 16:22:02 -05001174 return NULL;
Cliff Wickman450a0072010-06-02 16:22:02 -05001175
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001176 record_send_statistics(stat, locals, hubs, remotes, bau_desc);
Cliff Wickman18129242008-06-02 08:56:14 -05001177
Alex Shi57c4f432012-12-18 12:22:14 -08001178 if (!end || (end - start) <= PAGE_SIZE)
1179 bau_desc->payload.address = start;
1180 else
1181 bau_desc->payload.address = TLB_FLUSH_ALL;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001182 bau_desc->payload.sending_cpu = cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001183 /*
Cliff Wickman450a0072010-06-02 16:22:02 -05001184 * uv_flush_send_and_wait returns 0 if all cpu's were messaged,
1185 * or 1 if it gave up and the original cpumask should be returned.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001186 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001187 if (!uv_flush_send_and_wait(flush_mask, bcp, bau_desc))
Cliff Wickman450a0072010-06-02 16:22:02 -05001188 return NULL;
1189 else
1190 return cpumask;
Cliff Wickman18129242008-06-02 08:56:14 -05001191}
1192
1193/*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001194 * Search the message queue for any 'other' unprocessed message with the
1195 * same software acknowledge resource bit vector as the 'msg' message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001196 */
1197struct bau_pq_entry *find_another_by_swack(struct bau_pq_entry *msg,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001198 struct bau_control *bcp)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001199{
1200 struct bau_pq_entry *msg_next = msg + 1;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001201 unsigned char swack_vec = msg->swack_vec;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001202
1203 if (msg_next > bcp->queue_last)
1204 msg_next = bcp->queue_first;
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001205 while (msg_next != msg) {
1206 if ((msg_next->canceled == 0) && (msg_next->replied_to == 0) &&
1207 (msg_next->swack_vec == swack_vec))
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001208 return msg_next;
1209 msg_next++;
1210 if (msg_next > bcp->queue_last)
1211 msg_next = bcp->queue_first;
1212 }
1213 return NULL;
1214}
1215
1216/*
1217 * UV2 needs to work around a bug in which an arriving message has not
1218 * set a bit in the UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE register.
1219 * Such a message must be ignored.
1220 */
1221void process_uv2_message(struct msg_desc *mdp, struct bau_control *bcp)
1222{
1223 unsigned long mmr_image;
1224 unsigned char swack_vec;
1225 struct bau_pq_entry *msg = mdp->msg;
1226 struct bau_pq_entry *other_msg;
1227
Andrew Banman21e3f122016-09-21 11:09:17 -05001228 mmr_image = ops.read_l_sw_ack();
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001229 swack_vec = msg->swack_vec;
1230
1231 if ((swack_vec & mmr_image) == 0) {
1232 /*
1233 * This message was assigned a swack resource, but no
1234 * reserved acknowlegment is pending.
1235 * The bug has prevented this message from setting the MMR.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001236 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001237 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001238 * Some message has set the MMR 'pending' bit; it might have
1239 * been another message. Look for that message.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001240 */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001241 other_msg = find_another_by_swack(msg, bcp);
1242 if (other_msg) {
1243 /*
1244 * There is another. Process this one but do not
1245 * ack it.
1246 */
1247 bau_process_message(mdp, bcp, 0);
1248 /*
1249 * Let the natural processing of that other message
1250 * acknowledge it. Don't get the processing of sw_ack's
1251 * out of order.
1252 */
1253 return;
1254 }
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001255 }
1256
1257 /*
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001258 * Either the MMR shows this one pending a reply or there is no
1259 * other message using this sw_ack, so it is safe to acknowledge it.
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001260 */
1261 bau_process_message(mdp, bcp, 1);
1262
1263 return;
1264}
1265
1266/*
Cliff Wickman18129242008-06-02 08:56:14 -05001267 * The BAU message interrupt comes here. (registered by set_intr_gate)
1268 * See entry_64.S
1269 *
1270 * We received a broadcast assist message.
1271 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001272 * Interrupts are disabled; this interrupt could represent
Cliff Wickman18129242008-06-02 08:56:14 -05001273 * the receipt of several messages.
1274 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001275 * All cores/threads on this hub get this interrupt.
1276 * The last one to see it does the software ack.
Cliff Wickman18129242008-06-02 08:56:14 -05001277 * (the resource will not be freed until noninterruptable cpus see this
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001278 * interrupt; hardware may timeout the s/w ack and reply ERROR)
Cliff Wickman18129242008-06-02 08:56:14 -05001279 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05001280void uv_bau_message_interrupt(struct pt_regs *regs)
Cliff Wickman18129242008-06-02 08:56:14 -05001281{
Cliff Wickman18129242008-06-02 08:56:14 -05001282 int count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001283 cycles_t time_start;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001284 struct bau_pq_entry *msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001285 struct bau_control *bcp;
1286 struct ptc_stats *stat;
1287 struct msg_desc msgdesc;
Cliff Wickman18129242008-06-02 08:56:14 -05001288
Cliff Wickman88ed9dd2012-01-16 15:21:46 -06001289 ack_APIC_irq();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001290 time_start = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001291
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001292 bcp = &per_cpu(bau_control, smp_processor_id());
Cliff Wickman712157a2010-06-02 16:22:02 -05001293 stat = bcp->statp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001294
1295 msgdesc.queue_first = bcp->queue_first;
1296 msgdesc.queue_last = bcp->queue_last;
1297
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001298 msg = bcp->bau_msg_head;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001299 while (msg->swack_vec) {
Cliff Wickman18129242008-06-02 08:56:14 -05001300 count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001301
1302 msgdesc.msg_slot = msg - msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001303 msgdesc.msg = msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001304 if (bcp->uvhub_version == 2)
1305 process_uv2_message(&msgdesc, bcp);
1306 else
Cliff Wickmana26fd712014-05-14 16:15:47 -05001307 /* no error workaround for uv1 or uv3 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001308 bau_process_message(&msgdesc, bcp, 1);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001309
Cliff Wickman18129242008-06-02 08:56:14 -05001310 msg++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001311 if (msg > msgdesc.queue_last)
1312 msg = msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001313 bcp->bau_msg_head = msg;
Cliff Wickman18129242008-06-02 08:56:14 -05001314 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001315 stat->d_time += (get_cycles() - time_start);
Cliff Wickman18129242008-06-02 08:56:14 -05001316 if (!count)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001317 stat->d_nomsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001318 else if (count > 1)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001319 stat->d_multmsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001320}
1321
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001322/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001323 * Each target uvhub (i.e. a uvhub that has cpu's) needs to have
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001324 * shootdown message timeouts enabled. The timeout does not cause
1325 * an interrupt, but causes an error message to be returned to
1326 * the sender.
1327 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001328static void __init enable_timeouts(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001329{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001330 int uvhub;
1331 int nuvhubs;
Cliff Wickman18129242008-06-02 08:56:14 -05001332 int pnode;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001333 unsigned long mmr_image;
Cliff Wickman18129242008-06-02 08:56:14 -05001334
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001335 nuvhubs = uv_num_possible_blades();
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001336
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001337 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
1338 if (!uv_blade_nr_possible_cpus(uvhub))
Cliff Wickman18129242008-06-02 08:56:14 -05001339 continue;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001340
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001341 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001342 mmr_image = read_mmr_misc_control(pnode);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001343 /*
1344 * Set the timeout period and then lock it in, in three
1345 * steps; captures and locks in the period.
1346 *
1347 * To program the period, the SOFT_ACK_MODE must be off.
1348 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001349 mmr_image &= ~(1L << SOFTACK_MSHIFT);
1350 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001351 /*
1352 * Set the 4-bit period.
1353 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001354 mmr_image &= ~((unsigned long)0xf << SOFTACK_PSHIFT);
1355 mmr_image |= (SOFTACK_TIMEOUT_PERIOD << SOFTACK_PSHIFT);
1356 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001357 /*
Jack Steiner2a919592011-05-11 12:50:28 -05001358 * UV1:
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001359 * Subsequent reversals of the timebase bit (3) cause an
1360 * immediate timeout of one or all INTD resources as
1361 * indicated in bits 2:0 (7 causes all of them to timeout).
1362 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001363 mmr_image |= (1L << SOFTACK_MSHIFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001364 if (is_uv2_hub()) {
Cliff Wickmana26fd712014-05-14 16:15:47 -05001365 /* do not touch the legacy mode bit */
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001366 /* hw bug workaround; do not use extended status */
1367 mmr_image &= ~(1L << UV2_EXT_SHFT);
Cliff Wickmana26fd712014-05-14 16:15:47 -05001368 } else if (is_uv3_hub()) {
1369 mmr_image &= ~(1L << PREFETCH_HINT_SHFT);
1370 mmr_image |= (1L << SB_STATUS_SHFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001371 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001372 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickman18129242008-06-02 08:56:14 -05001373 }
Cliff Wickman18129242008-06-02 08:56:14 -05001374}
1375
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001376static void *ptc_seq_start(struct seq_file *file, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001377{
1378 if (*offset < num_possible_cpus())
1379 return offset;
1380 return NULL;
1381}
1382
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001383static void *ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001384{
1385 (*offset)++;
1386 if (*offset < num_possible_cpus())
1387 return offset;
1388 return NULL;
1389}
1390
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001391static void ptc_seq_stop(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001392{
1393}
1394
1395/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001396 * Display the statistics thru /proc/sgi_uv/ptc_statistics
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001397 * 'data' points to the cpu number
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001398 * Note: see the descriptions in stat_description[].
Cliff Wickman18129242008-06-02 08:56:14 -05001399 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001400static int ptc_seq_show(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001401{
1402 struct ptc_stats *stat;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001403 struct bau_control *bcp;
Cliff Wickman18129242008-06-02 08:56:14 -05001404 int cpu;
1405
1406 cpu = *(loff_t *)data;
Cliff Wickman18129242008-06-02 08:56:14 -05001407 if (!cpu) {
Rasmus Villemoes37367082014-11-28 22:03:41 +01001408 seq_puts(file,
1409 "# cpu bauoff sent stime self locals remotes ncpus localhub ");
1410 seq_puts(file, "remotehub numuvhubs numuvhubs16 numuvhubs8 ");
1411 seq_puts(file,
1412 "numuvhubs4 numuvhubs2 numuvhubs1 dto snacks retries ");
1413 seq_puts(file,
1414 "rok resetp resett giveup sto bz throt disable ");
1415 seq_puts(file,
1416 "enable wars warshw warwaits enters ipidis plugged ");
1417 seq_puts(file,
1418 "ipiover glim cong swack recv rtime all one mult ");
1419 seq_puts(file, "none retry canc nocan reset rcan\n");
Cliff Wickman18129242008-06-02 08:56:14 -05001420 }
1421 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05001422 bcp = &per_cpu(bau_control, cpu);
James Custerfa2a79ce2014-11-02 12:16:39 -06001423 if (bcp->nobau) {
1424 seq_printf(file, "cpu %d bau disabled\n", cpu);
1425 return 0;
1426 }
Cliff Wickman26ef8572012-06-22 08:13:30 -05001427 stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001428 /* source side statistics */
1429 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001430 "cpu %d %d %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickman26ef8572012-06-22 08:13:30 -05001431 cpu, bcp->nobau, stat->s_requestor,
1432 cycles_2_us(stat->s_time),
Cliff Wickman450a0072010-06-02 16:22:02 -05001433 stat->s_ntargself, stat->s_ntarglocals,
1434 stat->s_ntargremotes, stat->s_ntargcpu,
1435 stat->s_ntarglocaluvhub, stat->s_ntargremoteuvhub,
1436 stat->s_ntarguvhub, stat->s_ntarguvhub16);
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001437 seq_printf(file, "%ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001438 stat->s_ntarguvhub8, stat->s_ntarguvhub4,
1439 stat->s_ntarguvhub2, stat->s_ntarguvhub1,
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001440 stat->s_dtimeout, stat->s_strongnacks);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001441 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001442 stat->s_retry_messages, stat->s_retriesok,
1443 stat->s_resets_plug, stat->s_resets_timeout,
1444 stat->s_giveup, stat->s_stimeout,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001445 stat->s_busy, stat->s_throttles);
1446 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
1447 stat->s_bau_disabled, stat->s_bau_reenabled,
1448 stat->s_uv2_wars, stat->s_uv2_wars_hw,
1449 stat->s_uv2_war_waits, stat->s_enters,
1450 stat->s_ipifordisabled, stat->s_plugged,
1451 stat->s_overipilimit, stat->s_giveuplimit,
1452 stat->s_congested);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001453
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001454 /* destination side statistics */
1455 seq_printf(file,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001456 "%lx %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld\n",
Andrew Banman21e3f122016-09-21 11:09:17 -05001457 ops.read_g_sw_ack(uv_cpu_to_pnode(cpu)),
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001458 stat->d_requestee, cycles_2_us(stat->d_time),
1459 stat->d_alltlb, stat->d_onetlb, stat->d_multmsg,
1460 stat->d_nomsg, stat->d_retries, stat->d_canceled,
1461 stat->d_nocanceled, stat->d_resets,
1462 stat->d_rcanceled);
Cliff Wickman18129242008-06-02 08:56:14 -05001463 }
Cliff Wickman18129242008-06-02 08:56:14 -05001464 return 0;
1465}
1466
1467/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001468 * Display the tunables thru debugfs
1469 */
1470static ssize_t tunables_read(struct file *file, char __user *userbuf,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001471 size_t count, loff_t *ppos)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001472{
Dan Carpenterb365a852010-09-29 10:41:05 +02001473 char *buf;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001474 int ret;
1475
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001476 buf = kasprintf(GFP_KERNEL, "%s %s %s\n%d %d %d %d %d %d %d %d %d %d\n",
1477 "max_concur plugged_delay plugsb4reset timeoutsb4reset",
1478 "ipi_reset_limit complete_threshold congested_response_us",
1479 "congested_reps disabled_period giveup_limit",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001480 max_concurr, plugged_delay, plugsb4reset,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001481 timeoutsb4reset, ipi_reset_limit, complete_threshold,
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001482 congested_respns_us, congested_reps, disabled_period,
1483 giveup_limit);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001484
Dan Carpenterb365a852010-09-29 10:41:05 +02001485 if (!buf)
1486 return -ENOMEM;
1487
1488 ret = simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
1489 kfree(buf);
1490 return ret;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001491}
1492
1493/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001494 * handle a write to /proc/sgi_uv/ptc_statistics
1495 * -1: reset the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001496 * 0: display meaning of the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001497 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001498static ssize_t ptc_proc_write(struct file *file, const char __user *user,
1499 size_t count, loff_t *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001500{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001501 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001502 int i;
1503 int elements;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001504 long input_arg;
Cliff Wickman18129242008-06-02 08:56:14 -05001505 char optstr[64];
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001506 struct ptc_stats *stat;
Cliff Wickman18129242008-06-02 08:56:14 -05001507
Cliff Wickmane7eb8722008-06-23 08:32:25 -05001508 if (count == 0 || count > sizeof(optstr))
Cliff Wickmancef53272008-06-19 11:16:24 -05001509 return -EINVAL;
Cliff Wickman18129242008-06-02 08:56:14 -05001510 if (copy_from_user(optstr, user, count))
1511 return -EFAULT;
1512 optstr[count - 1] = '\0';
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001513
Cliff Wickman26ef8572012-06-22 08:13:30 -05001514 if (!strcmp(optstr, "on")) {
1515 set_bau_on();
1516 return count;
1517 } else if (!strcmp(optstr, "off")) {
1518 set_bau_off();
1519 return count;
1520 }
1521
Daniel Walter164109e2014-08-08 14:24:03 -07001522 if (kstrtol(optstr, 10, &input_arg) < 0) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001523 pr_debug("%s is invalid\n", optstr);
Cliff Wickman18129242008-06-02 08:56:14 -05001524 return -EINVAL;
1525 }
1526
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001527 if (input_arg == 0) {
Sasha Levin64441742012-12-20 14:11:34 -05001528 elements = ARRAY_SIZE(stat_description);
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001529 pr_debug("# cpu: cpu number\n");
1530 pr_debug("Sender statistics:\n");
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001531 for (i = 0; i < elements; i++)
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001532 pr_debug("%s\n", stat_description[i]);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001533 } else if (input_arg == -1) {
1534 for_each_present_cpu(cpu) {
1535 stat = &per_cpu(ptcstats, cpu);
1536 memset(stat, 0, sizeof(struct ptc_stats));
1537 }
Cliff Wickman18129242008-06-02 08:56:14 -05001538 }
1539
1540 return count;
1541}
1542
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001543static int local_atoi(const char *name)
1544{
1545 int val = 0;
1546
1547 for (;; name++) {
1548 switch (*name) {
1549 case '0' ... '9':
1550 val = 10*val+(*name-'0');
1551 break;
1552 default:
1553 return val;
1554 }
1555 }
1556}
1557
1558/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001559 * Parse the values written to /sys/kernel/debug/sgi_uv/bau_tunables.
1560 * Zero values reset them to defaults.
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001561 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001562static int parse_tunables_write(struct bau_control *bcp, char *instr,
1563 int count)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001564{
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001565 char *p;
1566 char *q;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001567 int cnt = 0;
1568 int val;
Sasha Levin64441742012-12-20 14:11:34 -05001569 int e = ARRAY_SIZE(tunables);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001570
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001571 p = instr + strspn(instr, WHITESPACE);
1572 q = p;
1573 for (; *p; p = q + strspn(q, WHITESPACE)) {
1574 q = p + strcspn(p, WHITESPACE);
1575 cnt++;
1576 if (q == p)
1577 break;
1578 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001579 if (cnt != e) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001580 pr_info("bau tunable error: should be %d values\n", e);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001581 return -EINVAL;
1582 }
1583
1584 p = instr + strspn(instr, WHITESPACE);
1585 q = p;
1586 for (cnt = 0; *p; p = q + strspn(q, WHITESPACE), cnt++) {
1587 q = p + strcspn(p, WHITESPACE);
1588 val = local_atoi(p);
1589 switch (cnt) {
1590 case 0:
1591 if (val == 0) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001592 max_concurr = MAX_BAU_CONCURRENT;
1593 max_concurr_const = MAX_BAU_CONCURRENT;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001594 continue;
1595 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001596 if (val < 1 || val > bcp->cpus_in_uvhub) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001597 pr_debug(
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001598 "Error: BAU max concurrent %d is invalid\n",
1599 val);
1600 return -EINVAL;
1601 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001602 max_concurr = val;
1603 max_concurr_const = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001604 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001605 default:
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001606 if (val == 0)
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001607 *tunables[cnt].tunp = tunables[cnt].deflt;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001608 else
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001609 *tunables[cnt].tunp = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001610 continue;
1611 }
1612 if (q == p)
1613 break;
1614 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001615 return 0;
1616}
1617
1618/*
1619 * Handle a write to debugfs. (/sys/kernel/debug/sgi_uv/bau_tunables)
1620 */
1621static ssize_t tunables_write(struct file *file, const char __user *user,
1622 size_t count, loff_t *data)
1623{
1624 int cpu;
1625 int ret;
1626 char instr[100];
1627 struct bau_control *bcp;
1628
1629 if (count == 0 || count > sizeof(instr)-1)
1630 return -EINVAL;
1631 if (copy_from_user(instr, user, count))
1632 return -EFAULT;
1633
1634 instr[count] = '\0';
1635
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001636 cpu = get_cpu();
1637 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001638 ret = parse_tunables_write(bcp, instr, count);
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001639 put_cpu();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001640 if (ret)
1641 return ret;
1642
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001643 for_each_present_cpu(cpu) {
1644 bcp = &per_cpu(bau_control, cpu);
Andrew Banman67492c82016-09-21 11:09:12 -05001645 bcp->max_concurr = max_concurr;
1646 bcp->max_concurr_const = max_concurr;
1647 bcp->plugged_delay = plugged_delay;
1648 bcp->plugsb4reset = plugsb4reset;
1649 bcp->timeoutsb4reset = timeoutsb4reset;
1650 bcp->ipi_reset_limit = ipi_reset_limit;
1651 bcp->complete_threshold = complete_threshold;
1652 bcp->cong_response_us = congested_respns_us;
1653 bcp->cong_reps = congested_reps;
1654 bcp->disabled_period = sec_2_cycles(disabled_period);
1655 bcp->giveup_limit = giveup_limit;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001656 }
1657 return count;
1658}
1659
Cliff Wickman18129242008-06-02 08:56:14 -05001660static const struct seq_operations uv_ptc_seq_ops = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001661 .start = ptc_seq_start,
1662 .next = ptc_seq_next,
1663 .stop = ptc_seq_stop,
1664 .show = ptc_seq_show
Cliff Wickman18129242008-06-02 08:56:14 -05001665};
1666
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001667static int ptc_proc_open(struct inode *inode, struct file *file)
Cliff Wickman18129242008-06-02 08:56:14 -05001668{
1669 return seq_open(file, &uv_ptc_seq_ops);
1670}
1671
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001672static int tunables_open(struct inode *inode, struct file *file)
1673{
1674 return 0;
1675}
1676
Cliff Wickman18129242008-06-02 08:56:14 -05001677static const struct file_operations proc_uv_ptc_operations = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001678 .open = ptc_proc_open,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001679 .read = seq_read,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001680 .write = ptc_proc_write,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001681 .llseek = seq_lseek,
1682 .release = seq_release,
Cliff Wickman18129242008-06-02 08:56:14 -05001683};
1684
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001685static const struct file_operations tunables_fops = {
1686 .open = tunables_open,
1687 .read = tunables_read,
1688 .write = tunables_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001689 .llseek = default_llseek,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001690};
1691
Cliff Wickmanb194b122008-06-12 08:23:48 -05001692static int __init uv_ptc_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001693{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001694 struct proc_dir_entry *proc_uv_ptc;
Cliff Wickman18129242008-06-02 08:56:14 -05001695
1696 if (!is_uv_system())
1697 return 0;
1698
Alexey Dobriyan10f02d112009-08-23 23:17:27 +04001699 proc_uv_ptc = proc_create(UV_PTC_BASENAME, 0444, NULL,
1700 &proc_uv_ptc_operations);
Cliff Wickman18129242008-06-02 08:56:14 -05001701 if (!proc_uv_ptc) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001702 pr_err("unable to create %s proc entry\n",
Cliff Wickman18129242008-06-02 08:56:14 -05001703 UV_PTC_BASENAME);
1704 return -EINVAL;
1705 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001706
1707 tunables_dir = debugfs_create_dir(UV_BAU_TUNABLES_DIR, NULL);
1708 if (!tunables_dir) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001709 pr_err("unable to create debugfs directory %s\n",
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001710 UV_BAU_TUNABLES_DIR);
1711 return -EINVAL;
1712 }
1713 tunables_file = debugfs_create_file(UV_BAU_TUNABLES_FILE, 0600,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001714 tunables_dir, NULL, &tunables_fops);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001715 if (!tunables_file) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001716 pr_err("unable to create debugfs file %s\n",
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001717 UV_BAU_TUNABLES_FILE);
1718 return -EINVAL;
1719 }
Cliff Wickman18129242008-06-02 08:56:14 -05001720 return 0;
1721}
1722
Cliff Wickmanb194b122008-06-12 08:23:48 -05001723/*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001724 * Initialize the sending side's sending buffers.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001725 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001726static void activation_descriptor_init(int node, int pnode, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001727{
1728 int i;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001729 int cpu;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001730 int uv1 = 0;
Jack Steiner6a469e42011-09-20 13:55:04 -07001731 unsigned long gpa;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001732 unsigned long m;
1733 unsigned long n;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001734 size_t dsize;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001735 struct bau_desc *bau_desc;
1736 struct bau_desc *bd2;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001737 struct uv1_bau_msg_header *uv1_hdr;
Cliff Wickmana26fd712014-05-14 16:15:47 -05001738 struct uv2_3_bau_msg_header *uv2_3_hdr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001739 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001740
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001741 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001742 * each bau_desc is 64 bytes; there are 8 (ITEMS_PER_DESC)
1743 * per cpu; and one per cpu on the uvhub (ADP_SZ)
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001744 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001745 dsize = sizeof(struct bau_desc) * ADP_SZ * ITEMS_PER_DESC;
1746 bau_desc = kmalloc_node(dsize, GFP_KERNEL, node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001747 BUG_ON(!bau_desc);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001748
Jack Steiner6a469e42011-09-20 13:55:04 -07001749 gpa = uv_gpa(bau_desc);
1750 n = uv_gpa_to_gnode(gpa);
Andrew Banman21e3f122016-09-21 11:09:17 -05001751 m = ops.bau_gpa_to_offset(gpa);
Cliff Wickmanda87c932012-01-16 15:17:50 -06001752 if (is_uv1_hub())
1753 uv1 = 1;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001754
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001755 /* the 14-bit pnode */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001756 write_mmr_descriptor_base(pnode, (n << UV_DESC_PSHIFT | m));
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001757 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001758 * Initializing all 8 (ITEMS_PER_DESC) descriptors for each
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001759 * cpu even though we only use the first one; one descriptor can
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001760 * describe a broadcast to 256 uv hubs.
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001761 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001762 for (i = 0, bd2 = bau_desc; i < (ADP_SZ * ITEMS_PER_DESC); i++, bd2++) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001763 memset(bd2, 0, sizeof(struct bau_desc));
Cliff Wickmanda87c932012-01-16 15:17:50 -06001764 if (uv1) {
1765 uv1_hdr = &bd2->header.uv1_hdr;
Andrew Banman67492c82016-09-21 11:09:12 -05001766 uv1_hdr->swack_flag = 1;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001767 /*
1768 * The base_dest_nasid set in the message header
1769 * is the nasid of the first uvhub in the partition.
1770 * The bit map will indicate destination pnode numbers
1771 * relative to that base. They may not be consecutive
1772 * if nasid striding is being used.
1773 */
1774 uv1_hdr->base_dest_nasid =
Andrew Banman67492c82016-09-21 11:09:12 -05001775 UV_PNODE_TO_NASID(base_pnode);
1776 uv1_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1777 uv1_hdr->command = UV_NET_ENDPOINT_INTD;
1778 uv1_hdr->int_both = 1;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001779 /*
1780 * all others need to be set to zero:
1781 * fairness chaining multilevel count replied_to
1782 */
1783 } else {
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001784 /*
Cliff Wickmana26fd712014-05-14 16:15:47 -05001785 * BIOS uses legacy mode, but uv2 and uv3 hardware always
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001786 * uses native mode for selective broadcasts.
1787 */
Cliff Wickmana26fd712014-05-14 16:15:47 -05001788 uv2_3_hdr = &bd2->header.uv2_3_hdr;
Andrew Banman67492c82016-09-21 11:09:12 -05001789 uv2_3_hdr->swack_flag = 1;
Cliff Wickmana26fd712014-05-14 16:15:47 -05001790 uv2_3_hdr->base_dest_nasid =
Andrew Banman67492c82016-09-21 11:09:12 -05001791 UV_PNODE_TO_NASID(base_pnode);
1792 uv2_3_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1793 uv2_3_hdr->command = UV_NET_ENDPOINT_INTD;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001794 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001795 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001796 for_each_present_cpu(cpu) {
1797 if (pnode != uv_blade_to_pnode(uv_cpu_to_blade_id(cpu)))
1798 continue;
1799 bcp = &per_cpu(bau_control, cpu);
1800 bcp->descriptor_base = bau_desc;
1801 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001802}
1803
1804/*
1805 * initialize the destination side's receiving buffers
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001806 * entered for each uvhub in the partition
1807 * - node is first node (kernel memory notion) on the uvhub
1808 * - pnode is the uvhub's physical identifier
Cliff Wickmanb194b122008-06-12 08:23:48 -05001809 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001810static void pq_init(int node, int pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001811{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001812 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001813 size_t plsize;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001814 char *cp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001815 void *vp;
Andrew Banmand2a57afa2016-09-21 11:09:14 -05001816 unsigned long gnode, first, last, tail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001817 struct bau_pq_entry *pqp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001818 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001819
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001820 plsize = (DEST_Q_SIZE + 1) * sizeof(struct bau_pq_entry);
1821 vp = kmalloc_node(plsize, GFP_KERNEL, node);
1822 pqp = (struct bau_pq_entry *)vp;
Ingo Molnardc163a42008-06-18 14:15:43 +02001823 BUG_ON(!pqp);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001824
Cliff Wickmanb194b122008-06-12 08:23:48 -05001825 cp = (char *)pqp + 31;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001826 pqp = (struct bau_pq_entry *)(((unsigned long)cp >> 5) << 5);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001827
1828 for_each_present_cpu(cpu) {
1829 if (pnode != uv_cpu_to_pnode(cpu))
1830 continue;
1831 /* for every cpu on this pnode: */
1832 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001833 bcp->queue_first = pqp;
1834 bcp->bau_msg_head = pqp;
1835 bcp->queue_last = pqp + (DEST_Q_SIZE - 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001836 }
Andrew Banmand2a57afa2016-09-21 11:09:14 -05001837
Andrew Banman21e3f122016-09-21 11:09:17 -05001838 first = ops.bau_gpa_to_offset(uv_gpa(pqp));
1839 last = ops.bau_gpa_to_offset(uv_gpa(pqp + (DEST_Q_SIZE - 1)));
Andrew Banmand2a57afa2016-09-21 11:09:14 -05001840
Andrew Banman6d780592016-09-21 11:09:20 -05001841 /*
1842 * Pre UV4, the gnode is required to locate the payload queue
1843 * and the payload queue tail must be maintained by the kernel.
1844 */
1845 bcp = &per_cpu(bau_control, smp_processor_id());
1846 if (bcp->uvhub_version <= 3) {
1847 tail = first;
1848 gnode = uv_gpa_to_gnode(uv_gpa(pqp));
1849 first = (gnode << UV_PAYLOADQ_GNODE_SHIFT) | tail;
1850 write_mmr_payload_tail(pnode, tail);
1851 }
1852
Andrew Banman21e3f122016-09-21 11:09:17 -05001853 ops.write_payload_first(pnode, first);
1854 ops.write_payload_last(pnode, last);
1855 ops.write_g_sw_ack(pnode, 0xffffUL);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001856
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001857 /* in effect, all msg_type's are set to MSG_NOOP */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001858 memset(pqp, 0, sizeof(struct bau_pq_entry) * DEST_Q_SIZE);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001859}
1860
1861/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001862 * Initialization of each UV hub's structures
Cliff Wickmanb194b122008-06-12 08:23:48 -05001863 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001864static void __init init_uvhub(int uvhub, int vector, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001865{
Cliff Wickman9674f352009-04-03 08:34:05 -05001866 int node;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001867 int pnode;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001868 unsigned long apicid;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001869
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001870 node = uvhub_to_first_node(uvhub);
1871 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001872
1873 activation_descriptor_init(node, pnode, base_pnode);
1874
1875 pq_init(node, pnode);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001876 /*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001877 * The below initialization can't be in firmware because the
1878 * messaging IRQ will be determined by the OS.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001879 */
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -06001880 apicid = uvhub_to_first_apicid(uvhub) | uv_apicid_hibits;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001881 write_mmr_data_config(pnode, ((apicid << 32) | vector));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001882}
1883
1884/*
Cliff Wickman12a66112010-06-02 16:22:01 -05001885 * We will set BAU_MISC_CONTROL with a timeout period.
1886 * But the BIOS has set UVH_AGING_PRESCALE_SEL and UVH_TRANSACTION_TIMEOUT.
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001887 * So the destination timeout period has to be calculated from them.
Cliff Wickman12a66112010-06-02 16:22:01 -05001888 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001889static int calculate_destination_timeout(void)
Cliff Wickman12a66112010-06-02 16:22:01 -05001890{
1891 unsigned long mmr_image;
1892 int mult1;
1893 int mult2;
1894 int index;
1895 int base;
1896 int ret;
1897 unsigned long ts_ns;
1898
Jack Steiner2a919592011-05-11 12:50:28 -05001899 if (is_uv1_hub()) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001900 mult1 = SOFTACK_TIMEOUT_PERIOD & BAU_MISC_CONTROL_MULT_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001901 mmr_image = uv_read_local_mmr(UVH_AGING_PRESCALE_SEL);
1902 index = (mmr_image >> BAU_URGENCY_7_SHIFT) & BAU_URGENCY_7_MASK;
1903 mmr_image = uv_read_local_mmr(UVH_TRANSACTION_TIMEOUT);
1904 mult2 = (mmr_image >> BAU_TRANS_SHIFT) & BAU_TRANS_MASK;
Cliff Wickman11cab712012-06-22 08:12:12 -05001905 ts_ns = timeout_base_ns[index];
1906 ts_ns *= (mult1 * mult2);
Jack Steiner2a919592011-05-11 12:50:28 -05001907 ret = ts_ns / 1000;
1908 } else {
Cliff Wickmana26fd712014-05-14 16:15:47 -05001909 /* same destination timeout for uv2 and uv3 */
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001910 /* 4 bits 0/1 for 10/80us base, 3 bits of multiplier */
1911 mmr_image = uv_read_local_mmr(UVH_LB_BAU_MISC_CONTROL);
Jack Steiner2a919592011-05-11 12:50:28 -05001912 mmr_image = (mmr_image & UV_SA_MASK) >> UV_SA_SHFT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001913 if (mmr_image & (1L << UV2_ACK_UNITS_SHFT))
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001914 base = 80;
Jack Steiner2a919592011-05-11 12:50:28 -05001915 else
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001916 base = 10;
1917 mult1 = mmr_image & UV2_ACK_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001918 ret = mult1 * base;
1919 }
Cliff Wickman12a66112010-06-02 16:22:01 -05001920 return ret;
1921}
1922
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001923static void __init init_per_cpu_tunables(void)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001924{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001925 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001926 struct bau_control *bcp;
1927
1928 for_each_present_cpu(cpu) {
1929 bcp = &per_cpu(bau_control, cpu);
1930 bcp->baudisabled = 0;
Cliff Wickman26ef8572012-06-22 08:13:30 -05001931 if (nobau)
Alex Thorlton1c532e02016-03-31 14:18:29 -05001932 bcp->nobau = true;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001933 bcp->statp = &per_cpu(ptcstats, cpu);
1934 /* time interval to catch a hardware stay-busy bug */
1935 bcp->timeout_interval = usec_2_cycles(2*timeout_us);
1936 bcp->max_concurr = max_concurr;
1937 bcp->max_concurr_const = max_concurr;
1938 bcp->plugged_delay = plugged_delay;
1939 bcp->plugsb4reset = plugsb4reset;
1940 bcp->timeoutsb4reset = timeoutsb4reset;
1941 bcp->ipi_reset_limit = ipi_reset_limit;
1942 bcp->complete_threshold = complete_threshold;
1943 bcp->cong_response_us = congested_respns_us;
1944 bcp->cong_reps = congested_reps;
Andrew Banman67492c82016-09-21 11:09:12 -05001945 bcp->disabled_period = sec_2_cycles(disabled_period);
1946 bcp->giveup_limit = giveup_limit;
Cliff Wickmand2ebc712012-01-18 09:40:47 -06001947 spin_lock_init(&bcp->queue_lock);
1948 spin_lock_init(&bcp->uvhub_lock);
Cliff Wickman8b6e5112012-06-22 08:14:59 -05001949 spin_lock_init(&bcp->disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001950 }
1951}
1952
1953/*
1954 * Scan all cpus to collect blade and socket summaries.
1955 */
1956static int __init get_cpu_topology(int base_pnode,
1957 struct uvhub_desc *uvhub_descs,
1958 unsigned char *uvhub_mask)
1959{
1960 int cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001961 int pnode;
1962 int uvhub;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001963 int socket;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001964 struct bau_control *bcp;
1965 struct uvhub_desc *bdp;
1966 struct socket_desc *sdp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001967
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001968 for_each_present_cpu(cpu) {
1969 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001970
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001971 memset(bcp, 0, sizeof(struct bau_control));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001972
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001973 pnode = uv_cpu_hub_info(cpu)->pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001974 if ((pnode - base_pnode) >= UV_DISTRIBUTION_SIZE) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05001975 pr_emerg(
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001976 "cpu %d pnode %d-%d beyond %d; BAU disabled\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001977 cpu, pnode, base_pnode, UV_DISTRIBUTION_SIZE);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001978 return 1;
1979 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001980
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001981 bcp->osnode = cpu_to_node(cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001982 bcp->partition_base_pnode = base_pnode;
1983
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001984 uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05001985 *(uvhub_mask + (uvhub/8)) |= (1 << (uvhub%8));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001986 bdp = &uvhub_descs[uvhub];
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001987
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001988 bdp->num_cpus++;
1989 bdp->uvhub = uvhub;
1990 bdp->pnode = pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001991
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001992 /* kludge: 'assuming' one node per socket, and assuming that
1993 disabling a socket just leaves a gap in node numbers */
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001994 socket = bcp->osnode & 1;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001995 bdp->socket_mask |= (1 << socket);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001996 sdp = &bdp->socket[socket];
1997 sdp->cpu_number[sdp->num_cpus] = cpu;
1998 sdp->num_cpus++;
Cliff Wickmancfa60912011-01-03 12:03:53 -06001999 if (sdp->num_cpus > MAX_CPUS_PER_SOCKET) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05002000 pr_emerg("%d cpus per socket invalid\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002001 sdp->num_cpus);
Cliff Wickmancfa60912011-01-03 12:03:53 -06002002 return 1;
2003 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002004 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002005 return 0;
2006}
2007
2008/*
2009 * Each socket is to get a local array of pnodes/hubs.
2010 */
2011static void make_per_cpu_thp(struct bau_control *smaster)
2012{
2013 int cpu;
2014 size_t hpsz = sizeof(struct hub_and_pnode) * num_possible_cpus();
2015
2016 smaster->thp = kmalloc_node(hpsz, GFP_KERNEL, smaster->osnode);
2017 memset(smaster->thp, 0, hpsz);
2018 for_each_present_cpu(cpu) {
2019 smaster->thp[cpu].pnode = uv_cpu_hub_info(cpu)->pnode;
2020 smaster->thp[cpu].uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
2021 }
2022}
2023
2024/*
cpw@sgi.com442d3922011-06-21 07:21:31 -05002025 * Each uvhub is to get a local cpumask.
2026 */
2027static void make_per_hub_cpumask(struct bau_control *hmaster)
2028{
2029 int sz = sizeof(cpumask_t);
2030
2031 hmaster->cpumask = kzalloc_node(sz, GFP_KERNEL, hmaster->osnode);
2032}
2033
2034/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002035 * Initialize all the per_cpu information for the cpu's on a given socket,
2036 * given what has been gathered into the socket_desc struct.
2037 * And reports the chosen hub and socket masters back to the caller.
2038 */
2039static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp,
2040 struct bau_control **smasterp,
2041 struct bau_control **hmasterp)
2042{
2043 int i;
2044 int cpu;
2045 struct bau_control *bcp;
2046
2047 for (i = 0; i < sdp->num_cpus; i++) {
2048 cpu = sdp->cpu_number[i];
2049 bcp = &per_cpu(bau_control, cpu);
2050 bcp->cpu = cpu;
2051 if (i == 0) {
2052 *smasterp = bcp;
2053 if (!(*hmasterp))
2054 *hmasterp = bcp;
2055 }
2056 bcp->cpus_in_uvhub = bdp->num_cpus;
2057 bcp->cpus_in_socket = sdp->num_cpus;
2058 bcp->socket_master = *smasterp;
2059 bcp->uvhub = bdp->uvhub;
Cliff Wickmanda87c932012-01-16 15:17:50 -06002060 if (is_uv1_hub())
2061 bcp->uvhub_version = 1;
2062 else if (is_uv2_hub())
2063 bcp->uvhub_version = 2;
Cliff Wickmana26fd712014-05-14 16:15:47 -05002064 else if (is_uv3_hub())
2065 bcp->uvhub_version = 3;
Andrew Banman58d4ab42016-09-21 11:09:18 -05002066 else if (is_uv4_hub())
2067 bcp->uvhub_version = 4;
Cliff Wickmanda87c932012-01-16 15:17:50 -06002068 else {
Andrew Banman58d4ab42016-09-21 11:09:18 -05002069 pr_emerg("uvhub version not 1, 2, 3, or 4\n");
Cliff Wickmanda87c932012-01-16 15:17:50 -06002070 return 1;
2071 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002072 bcp->uvhub_master = *hmasterp;
Mike Travis5627a8252016-04-29 16:54:14 -05002073 bcp->uvhub_cpu = uv_cpu_blade_processor_id(cpu);
2074
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002075 if (bcp->uvhub_cpu >= MAX_CPUS_PER_UVHUB) {
Andrew Banmanefa59ab2016-09-21 11:09:13 -05002076 pr_emerg("%d cpus per uvhub invalid\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002077 bcp->uvhub_cpu);
2078 return 1;
2079 }
2080 }
2081 return 0;
2082}
2083
2084/*
2085 * Summarize the blade and socket topology into the per_cpu structures.
2086 */
2087static int __init summarize_uvhub_sockets(int nuvhubs,
2088 struct uvhub_desc *uvhub_descs,
2089 unsigned char *uvhub_mask)
2090{
2091 int socket;
2092 int uvhub;
2093 unsigned short socket_mask;
2094
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002095 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002096 struct uvhub_desc *bdp;
2097 struct bau_control *smaster = NULL;
2098 struct bau_control *hmaster = NULL;
2099
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002100 if (!(*(uvhub_mask + (uvhub/8)) & (1 << (uvhub%8))))
2101 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002102
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002103 bdp = &uvhub_descs[uvhub];
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002104 socket_mask = bdp->socket_mask;
2105 socket = 0;
2106 while (socket_mask) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002107 struct socket_desc *sdp;
2108 if ((socket_mask & 1)) {
2109 sdp = &bdp->socket[socket];
2110 if (scan_sock(sdp, bdp, &smaster, &hmaster))
Cliff Wickmancfa60912011-01-03 12:03:53 -06002111 return 1;
cpw@sgi.com9c9153d2011-06-21 07:21:28 -05002112 make_per_cpu_thp(smaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002113 }
2114 socket++;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002115 socket_mask = (socket_mask >> 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002116 }
cpw@sgi.com442d3922011-06-21 07:21:31 -05002117 make_per_hub_cpumask(hmaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002118 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002119 return 0;
2120}
2121
2122/*
2123 * initialize the bau_control structure for each cpu
2124 */
2125static int __init init_per_cpu(int nuvhubs, int base_part_pnode)
2126{
2127 unsigned char *uvhub_mask;
2128 void *vp;
2129 struct uvhub_desc *uvhub_descs;
2130
Andrew Banmane879c112016-09-21 11:09:19 -05002131 if (is_uv3_hub() || is_uv2_hub() || is_uv1_hub())
2132 timeout_us = calculate_destination_timeout();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002133
2134 vp = kmalloc(nuvhubs * sizeof(struct uvhub_desc), GFP_KERNEL);
2135 uvhub_descs = (struct uvhub_desc *)vp;
2136 memset(uvhub_descs, 0, nuvhubs * sizeof(struct uvhub_desc));
2137 uvhub_mask = kzalloc((nuvhubs+7)/8, GFP_KERNEL);
2138
2139 if (get_cpu_topology(base_part_pnode, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002140 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002141
2142 if (summarize_uvhub_sockets(nuvhubs, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002143 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002144
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002145 kfree(uvhub_descs);
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002146 kfree(uvhub_mask);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002147 init_per_cpu_tunables();
Cliff Wickmancfa60912011-01-03 12:03:53 -06002148 return 0;
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002149
2150fail:
2151 kfree(uvhub_descs);
2152 kfree(uvhub_mask);
2153 return 1;
Cliff Wickmanb194b122008-06-12 08:23:48 -05002154}
Cliff Wickman18129242008-06-02 08:56:14 -05002155
2156/*
2157 * Initialization of BAU-related structures
2158 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05002159static int __init uv_bau_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05002160{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002161 int uvhub;
2162 int pnode;
2163 int nuvhubs;
Rusty Russell2c74d662009-03-18 08:22:30 +10302164 int cur_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002165 int cpus;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002166 int vector;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002167 cpumask_var_t *mask;
Cliff Wickman18129242008-06-02 08:56:14 -05002168
2169 if (!is_uv_system())
2170 return 0;
2171
Andrew Banman4f059d52016-09-21 11:09:21 -05002172 if (is_uv4_hub())
2173 ops = uv4_bau_ops;
2174 else if (is_uv3_hub())
Andrew Banman5e4f96f2016-09-21 11:09:16 -05002175 ops = uv123_bau_ops;
2176 else if (is_uv2_hub())
2177 ops = uv123_bau_ops;
2178 else if (is_uv1_hub())
2179 ops = uv123_bau_ops;
2180
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002181 for_each_possible_cpu(cur_cpu) {
2182 mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
2183 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
2184 }
Rusty Russell76ba0ec2009-03-13 14:49:57 +10302185
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002186 nuvhubs = uv_num_possible_blades();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002187 congested_cycles = usec_2_cycles(congested_respns_us);
Cliff Wickman9674f352009-04-03 08:34:05 -05002188
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002189 uv_base_pnode = 0x7fffffff;
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002190 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002191 cpus = uv_blade_nr_possible_cpus(uvhub);
2192 if (cpus && (uv_blade_to_pnode(uvhub) < uv_base_pnode))
2193 uv_base_pnode = uv_blade_to_pnode(uvhub);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002194 }
2195
Andrew Banmane879c112016-09-21 11:09:19 -05002196 /* software timeouts are not supported on UV4 */
2197 if (is_uv3_hub() || is_uv2_hub() || is_uv1_hub())
2198 enable_timeouts();
Cliff Wickmand059f9f2012-01-16 15:18:48 -06002199
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002200 if (init_per_cpu(nuvhubs, uv_base_pnode)) {
Cliff Wickman26ef8572012-06-22 08:13:30 -05002201 set_bau_off();
2202 nobau_perm = 1;
Cliff Wickmancfa60912011-01-03 12:03:53 -06002203 return 0;
2204 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002205
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002206 vector = UV_BAU_MESSAGE;
Cliff Wickmana26fd712014-05-14 16:15:47 -05002207 for_each_possible_blade(uvhub) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002208 if (uv_blade_nr_possible_cpus(uvhub))
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002209 init_uvhub(uvhub, vector, uv_base_pnode);
Cliff Wickmana26fd712014-05-14 16:15:47 -05002210 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002211
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002212 alloc_intr_gate(vector, uv_bau_message_intr1);
2213
2214 for_each_possible_blade(uvhub) {
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002215 if (uv_blade_nr_possible_cpus(uvhub)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002216 unsigned long val;
2217 unsigned long mmr;
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002218 pnode = uv_blade_to_pnode(uvhub);
2219 /* INIT the bau */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002220 val = 1L << 63;
2221 write_gmmr_activation(pnode, val);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002222 mmr = 1; /* should be 1 to broadcast to both sockets */
Cliff Wickmanda87c932012-01-16 15:17:50 -06002223 if (!is_uv1_hub())
2224 write_mmr_data_broadcast(pnode, mmr);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002225 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002226 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002227
Cliff Wickman18129242008-06-02 08:56:14 -05002228 return 0;
2229}
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002230core_initcall(uv_bau_init);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05002231fs_initcall(uv_ptc_init);