blob: 9be4cff00a2d733712adeb2ac2d71ab035ddb794 [file] [log] [blame]
Cliff Wickman18129242008-06-02 08:56:14 -05001/*
2 * SGI UltraViolet TLB flush routines.
3 *
Cliff Wickmanf073cc82011-05-24 13:07:36 -05004 * (c) 2008-2011 Cliff Wickman <cpw@sgi.com>, SGI.
Cliff Wickman18129242008-06-02 08:56:14 -05005 *
6 * This code is released under the GNU General Public License version 2 or
7 * later.
8 */
Jeremy Fitzhardingeaef8f5b2008-10-14 21:43:43 -07009#include <linux/seq_file.h>
Cliff Wickman18129242008-06-02 08:56:14 -050010#include <linux/proc_fs.h>
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050011#include <linux/debugfs.h>
Cliff Wickman18129242008-06-02 08:56:14 -050012#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jean Delvareca4445642011-03-25 15:20:14 +010014#include <linux/delay.h>
Cliff Wickman18129242008-06-02 08:56:14 -050015
Cliff Wickman18129242008-06-02 08:56:14 -050016#include <asm/mmu_context.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090017#include <asm/uv/uv.h>
Cliff Wickman18129242008-06-02 08:56:14 -050018#include <asm/uv/uv_mmrs.h>
Ingo Molnarb4c286e2008-06-18 14:28:19 +020019#include <asm/uv/uv_hub.h>
Cliff Wickman18129242008-06-02 08:56:14 -050020#include <asm/uv/uv_bau.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010021#include <asm/apic.h>
Ingo Molnarb4c286e2008-06-18 14:28:19 +020022#include <asm/idle.h>
Cliff Wickmanb194b122008-06-12 08:23:48 -050023#include <asm/tsc.h>
Cliff Wickman99dd8712008-08-19 12:51:59 -050024#include <asm/irq_vectors.h>
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050025#include <asm/timer.h>
Cliff Wickman18129242008-06-02 08:56:14 -050026
Cliff Wickman12a66112010-06-02 16:22:01 -050027/* timeouts in nanoseconds (indexed by UVH_AGING_PRESCALE_SEL urgency7 30:28) */
28static int timeout_base_ns[] = {
29 20,
30 160,
31 1280,
32 10240,
33 81920,
34 655360,
35 5242880,
36 167772160
37};
Cliff Wickmanf073cc82011-05-24 13:07:36 -050038
Cliff Wickman12a66112010-06-02 16:22:01 -050039static int timeout_us;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050040static int nobau;
Cliff Wickman50fb55a2010-06-02 16:22:02 -050041static int baudisabled;
42static spinlock_t disable_lock;
43static cycles_t congested_cycles;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050044
45/* tunables: */
Cliff Wickmanf073cc82011-05-24 13:07:36 -050046static int max_concurr = MAX_BAU_CONCURRENT;
47static int max_concurr_const = MAX_BAU_CONCURRENT;
48static int plugged_delay = PLUGGED_DELAY;
49static int plugsb4reset = PLUGSB4RESET;
50static int timeoutsb4reset = TIMEOUTSB4RESET;
51static int ipi_reset_limit = IPI_RESET_LIMIT;
52static int complete_threshold = COMPLETE_THRESHOLD;
53static int congested_respns_us = CONGESTED_RESPONSE_US;
54static int congested_reps = CONGESTED_REPS;
55static int congested_period = CONGESTED_PERIOD;
56
57static struct tunables tunables[] = {
58 {&max_concurr, MAX_BAU_CONCURRENT}, /* must be [0] */
59 {&plugged_delay, PLUGGED_DELAY},
60 {&plugsb4reset, PLUGSB4RESET},
61 {&timeoutsb4reset, TIMEOUTSB4RESET},
62 {&ipi_reset_limit, IPI_RESET_LIMIT},
63 {&complete_threshold, COMPLETE_THRESHOLD},
64 {&congested_respns_us, CONGESTED_RESPONSE_US},
65 {&congested_reps, CONGESTED_REPS},
66 {&congested_period, CONGESTED_PERIOD}
67};
68
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050069static struct dentry *tunables_dir;
70static struct dentry *tunables_file;
71
Cliff Wickmanf073cc82011-05-24 13:07:36 -050072/* these correspond to the statistics printed by ptc_seq_show() */
73static char *stat_description[] = {
74 "sent: number of shootdown messages sent",
75 "stime: time spent sending messages",
76 "numuvhubs: number of hubs targeted with shootdown",
77 "numuvhubs16: number times 16 or more hubs targeted",
78 "numuvhubs8: number times 8 or more hubs targeted",
79 "numuvhubs4: number times 4 or more hubs targeted",
80 "numuvhubs2: number times 2 or more hubs targeted",
81 "numuvhubs1: number times 1 hub targeted",
82 "numcpus: number of cpus targeted with shootdown",
83 "dto: number of destination timeouts",
84 "retries: destination timeout retries sent",
85 "rok: : destination timeouts successfully retried",
86 "resetp: ipi-style resource resets for plugs",
87 "resett: ipi-style resource resets for timeouts",
88 "giveup: fall-backs to ipi-style shootdowns",
89 "sto: number of source timeouts",
90 "bz: number of stay-busy's",
91 "throt: number times spun in throttle",
92 "swack: image of UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE",
93 "recv: shootdown messages received",
94 "rtime: time spent processing messages",
95 "all: shootdown all-tlb messages",
96 "one: shootdown one-tlb messages",
97 "mult: interrupts that found multiple messages",
98 "none: interrupts that found no messages",
99 "retry: number of retry messages processed",
100 "canc: number messages canceled by retries",
101 "nocan: number retries that found nothing to cancel",
102 "reset: number of ipi-style reset requests processed",
103 "rcan: number messages canceled by reset requests",
104 "disable: number times use of the BAU was disabled",
105 "enable: number times use of the BAU was re-enabled"
106};
107
108static int __init
109setup_nobau(char *arg)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500110{
111 nobau = 1;
112 return 0;
113}
114early_param("nobau", setup_nobau);
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200115
Cliff Wickman94ca8e42009-04-14 10:56:48 -0500116/* base pnode in this partition */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500117static int uv_base_pnode __read_mostly;
Cliff Wickman18129242008-06-02 08:56:14 -0500118
Ingo Molnardc163a42008-06-18 14:15:43 +0200119static DEFINE_PER_CPU(struct ptc_stats, ptcstats);
120static DEFINE_PER_CPU(struct bau_control, bau_control);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500121static DEFINE_PER_CPU(cpumask_var_t, uv_flush_tlb_mask);
122
Cliff Wickman18129242008-06-02 08:56:14 -0500123/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500124 * Determine the first node on a uvhub. 'Nodes' are used for kernel
125 * memory allocation.
Cliff Wickman9674f352009-04-03 08:34:05 -0500126 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500127static int __init uvhub_to_first_node(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500128{
129 int node, b;
130
131 for_each_online_node(node) {
132 b = uv_node_to_blade_id(node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500133 if (uvhub == b)
Cliff Wickman9674f352009-04-03 08:34:05 -0500134 return node;
135 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500136 return -1;
Cliff Wickman9674f352009-04-03 08:34:05 -0500137}
138
139/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500140 * Determine the apicid of the first cpu on a uvhub.
Cliff Wickman9674f352009-04-03 08:34:05 -0500141 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500142static int __init uvhub_to_first_apicid(int uvhub)
Cliff Wickman9674f352009-04-03 08:34:05 -0500143{
144 int cpu;
145
146 for_each_present_cpu(cpu)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500147 if (uvhub == uv_cpu_to_blade_id(cpu))
Cliff Wickman9674f352009-04-03 08:34:05 -0500148 return per_cpu(x86_cpu_to_apicid, cpu);
149 return -1;
150}
151
152/*
Cliff Wickman18129242008-06-02 08:56:14 -0500153 * Free a software acknowledge hardware resource by clearing its Pending
154 * bit. This will return a reply to the sender.
155 * If the message has timed out, a reply has already been sent by the
156 * hardware but the resource has not been released. In that case our
157 * clear of the Timeout bit (as well) will free the resource. No reply will
158 * be sent (the hardware will only do one reply per message).
159 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600160static void reply_to_message(struct msg_desc *mdp, struct bau_control *bcp,
161 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500162{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500163 unsigned long dw;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500164 struct bau_pq_entry *msg;
Cliff Wickman18129242008-06-02 08:56:14 -0500165
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500166 msg = mdp->msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600167 if (!msg->canceled && do_acknowledge) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500168 dw = (msg->swack_vec << UV_SW_ACK_NPENDING) | msg->swack_vec;
169 write_mmr_sw_ack(dw);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500170 }
Cliff Wickman18129242008-06-02 08:56:14 -0500171 msg->replied_to = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500172 msg->swack_vec = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500173}
174
175/*
176 * Process the receipt of a RETRY message
177 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500178static void bau_process_retry_msg(struct msg_desc *mdp,
179 struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500180{
181 int i;
182 int cancel_count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500183 unsigned long msg_res;
184 unsigned long mmr = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500185 struct bau_pq_entry *msg = mdp->msg;
186 struct bau_pq_entry *msg2;
187 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500188
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500189 stat->d_retries++;
190 /*
191 * cancel any message from msg+1 to the retry itself
192 */
193 for (msg2 = msg+1, i = 0; i < DEST_Q_SIZE; msg2++, i++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500194 if (msg2 > mdp->queue_last)
195 msg2 = mdp->queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500196 if (msg2 == msg)
197 break;
198
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500199 /* same conditions for cancellation as do_reset */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500200 if ((msg2->replied_to == 0) && (msg2->canceled == 0) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500201 (msg2->swack_vec) && ((msg2->swack_vec &
202 msg->swack_vec) == 0) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500203 (msg2->sending_cpu == msg->sending_cpu) &&
204 (msg2->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500205 mmr = read_mmr_sw_ack();
206 msg_res = msg2->swack_vec;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500207 /*
208 * This is a message retry; clear the resources held
209 * by the previous message only if they timed out.
210 * If it has not timed out we have an unexpected
211 * situation to report.
212 */
Cliff Wickman39847e72010-06-02 16:22:02 -0500213 if (mmr & (msg_res << UV_SW_ACK_NPENDING)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500214 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500215 /*
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600216 * Is the resource timed out?
217 * Make everyone ignore the cancelled message.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500218 */
219 msg2->canceled = 1;
220 stat->d_canceled++;
221 cancel_count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500222 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
223 write_mmr_sw_ack(mr);
Cliff Wickman39847e72010-06-02 16:22:02 -0500224 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500225 }
226 }
227 if (!cancel_count)
228 stat->d_nocanceled++;
Cliff Wickman18129242008-06-02 08:56:14 -0500229}
230
231/*
232 * Do all the things a cpu should do for a TLB shootdown message.
233 * Other cpu's may come here at the same time for this message.
234 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600235static void bau_process_message(struct msg_desc *mdp, struct bau_control *bcp,
236 int do_acknowledge)
Cliff Wickman18129242008-06-02 08:56:14 -0500237{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500238 short socket_ack_count = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500239 short *sp;
240 struct atomic_short *asp;
241 struct ptc_stats *stat = bcp->statp;
242 struct bau_pq_entry *msg = mdp->msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500243 struct bau_control *smaster = bcp->socket_master;
Cliff Wickman18129242008-06-02 08:56:14 -0500244
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500245 /*
246 * This must be a normal message, or retry of a normal message
247 */
Cliff Wickman18129242008-06-02 08:56:14 -0500248 if (msg->address == TLB_FLUSH_ALL) {
249 local_flush_tlb();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500250 stat->d_alltlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500251 } else {
252 __flush_tlb_one(msg->address);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500253 stat->d_onetlb++;
Cliff Wickman18129242008-06-02 08:56:14 -0500254 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500255 stat->d_requestee++;
Cliff Wickman18129242008-06-02 08:56:14 -0500256
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500257 /*
258 * One cpu on each uvhub has the additional job on a RETRY
259 * of releasing the resource held by the message that is
260 * being retried. That message is identified by sending
261 * cpu number.
262 */
263 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500264 bau_process_retry_msg(mdp, bcp);
Cliff Wickman18129242008-06-02 08:56:14 -0500265
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500266 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500267 * This is a swack message, so we have to reply to it.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500268 * Count each responding cpu on the socket. This avoids
269 * pinging the count's cache line back and forth between
270 * the sockets.
271 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500272 sp = &smaster->socket_acknowledge_count[mdp->msg_slot];
273 asp = (struct atomic_short *)sp;
274 socket_ack_count = atom_asr(1, asp);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500275 if (socket_ack_count == bcp->cpus_in_socket) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500276 int msg_ack_count;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500277 /*
278 * Both sockets dump their completed count total into
279 * the message's count.
280 */
281 smaster->socket_acknowledge_count[mdp->msg_slot] = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500282 asp = (struct atomic_short *)&msg->acknowledge_count;
283 msg_ack_count = atom_asr(socket_ack_count, asp);
Ingo Molnardc163a42008-06-18 14:15:43 +0200284
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500285 if (msg_ack_count == bcp->cpus_in_uvhub) {
286 /*
287 * All cpus in uvhub saw it; reply
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600288 * (unless we are in the UV2 workaround)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500289 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600290 reply_to_message(mdp, bcp, do_acknowledge);
Ingo Molnardc163a42008-06-18 14:15:43 +0200291 }
292 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500293
294 return;
Cliff Wickman18129242008-06-02 08:56:14 -0500295}
296
297/*
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500298 * Determine the first cpu on a pnode.
Cliff Wickman18129242008-06-02 08:56:14 -0500299 */
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500300static int pnode_to_first_cpu(int pnode, struct bau_control *smaster)
Cliff Wickman18129242008-06-02 08:56:14 -0500301{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500302 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500303 struct hub_and_pnode *hpp;
304
305 for_each_present_cpu(cpu) {
306 hpp = &smaster->thp[cpu];
307 if (pnode == hpp->pnode)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500308 return cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500309 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500310 return -1;
Cliff Wickman18129242008-06-02 08:56:14 -0500311}
312
Cliff Wickmanb194b122008-06-12 08:23:48 -0500313/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500314 * Last resort when we get a large number of destination timeouts is
315 * to clear resources held by a given cpu.
316 * Do this with IPI so that all messages in the BAU message queue
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500317 * can be identified by their nonzero swack_vec field.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500318 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500319 * This is entered for a single cpu on the uvhub.
320 * The sender want's this uvhub to free a specific message's
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500321 * swack resources.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500322 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500323static void do_reset(void *ptr)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500324{
325 int i;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500326 struct bau_control *bcp = &per_cpu(bau_control, smp_processor_id());
327 struct reset_args *rap = (struct reset_args *)ptr;
328 struct bau_pq_entry *msg;
329 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500330
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500331 stat->d_resets++;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500332 /*
333 * We're looking for the given sender, and
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500334 * will free its swack resource.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500335 * If all cpu's finally responded after the timeout, its
336 * message 'replied_to' was set.
337 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500338 for (msg = bcp->queue_first, i = 0; i < DEST_Q_SIZE; msg++, i++) {
339 unsigned long msg_res;
340 /* do_reset: same conditions for cancellation as
341 bau_process_retry_msg() */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500342 if ((msg->replied_to == 0) &&
343 (msg->canceled == 0) &&
344 (msg->sending_cpu == rap->sender) &&
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500345 (msg->swack_vec) &&
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500346 (msg->msg_type != MSG_NOOP)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500347 unsigned long mmr;
348 unsigned long mr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500349 /*
350 * make everyone else ignore this message
351 */
352 msg->canceled = 1;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500353 /*
354 * only reset the resource if it is still pending
355 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500356 mmr = read_mmr_sw_ack();
357 msg_res = msg->swack_vec;
358 mr = (msg_res << UV_SW_ACK_NPENDING) | msg_res;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500359 if (mmr & msg_res) {
360 stat->d_rcanceled++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500361 write_mmr_sw_ack(mr);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500362 }
363 }
364 }
365 return;
366}
367
368/*
369 * Use IPI to get all target uvhubs to release resources held by
370 * a given sending cpu number.
371 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500372static void reset_with_ipi(struct pnmask *distribution, struct bau_control *bcp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500373{
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500374 int pnode;
375 int apnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500376 int maskbits;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500377 int sender = bcp->cpu;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500378 cpumask_t *mask = bcp->uvhub_master->cpumask;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500379 struct bau_control *smaster = bcp->socket_master;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500380 struct reset_args reset_args;
381
382 reset_args.sender = sender;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500383 cpus_clear(*mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500384 /* find a single cpu for each uvhub in this distribution mask */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500385 maskbits = sizeof(struct pnmask) * BITSPERBYTE;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500386 /* each bit is a pnode relative to the partition base pnode */
387 for (pnode = 0; pnode < maskbits; pnode++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500388 int cpu;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500389 if (!bau_uvhub_isset(pnode, distribution))
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500390 continue;
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500391 apnode = pnode + bcp->partition_base_pnode;
392 cpu = pnode_to_first_cpu(apnode, smaster);
cpw@sgi.com442d3922011-06-21 07:21:31 -0500393 cpu_set(cpu, *mask);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500394 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500395
396 /* IPI all cpus; preemption is already disabled */
cpw@sgi.com442d3922011-06-21 07:21:31 -0500397 smp_call_function_many(mask, do_reset, (void *)&reset_args, 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500398 return;
399}
400
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500401static inline unsigned long cycles_2_us(unsigned long long cyc)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500402{
403 unsigned long long ns;
404 unsigned long us;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500405 int cpu = smp_processor_id();
406
407 ns = (cyc * per_cpu(cyc2ns, cpu)) >> CYC2NS_SCALE_FACTOR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500408 us = ns / 1000;
409 return us;
410}
411
412/*
413 * wait for all cpus on this hub to finish their sends and go quiet
414 * leaves uvhub_quiesce set so that no new broadcasts are started by
415 * bau_flush_send_and_wait()
416 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500417static inline void quiesce_local_uvhub(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500418{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500419 atom_asr(1, (struct atomic_short *)&hmaster->uvhub_quiesce);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500420}
421
422/*
423 * mark this quiet-requestor as done
424 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500425static inline void end_uvhub_quiesce(struct bau_control *hmaster)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500426{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500427 atom_asr(-1, (struct atomic_short *)&hmaster->uvhub_quiesce);
428}
429
430static unsigned long uv1_read_status(unsigned long mmr_offset, int right_shift)
431{
432 unsigned long descriptor_status;
433
434 descriptor_status = uv_read_local_mmr(mmr_offset);
435 descriptor_status >>= right_shift;
436 descriptor_status &= UV_ACT_STATUS_MASK;
437 return descriptor_status;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500438}
439
440/*
441 * Wait for completion of a broadcast software ack message
442 * return COMPLETE, RETRY(PLUGGED or TIMEOUT) or GIVEUP
Cliff Wickmanb194b122008-06-12 08:23:48 -0500443 */
Jack Steiner2a919592011-05-11 12:50:28 -0500444static int uv1_wait_completion(struct bau_desc *bau_desc,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500445 unsigned long mmr_offset, int right_shift,
446 struct bau_control *bcp, long try)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500447{
Cliff Wickmanb194b122008-06-12 08:23:48 -0500448 unsigned long descriptor_status;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500449 cycles_t ttm;
Cliff Wickman712157a2010-06-02 16:22:02 -0500450 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500451
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500452 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500453 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500454 while ((descriptor_status != DS_IDLE)) {
Cliff Wickmanb194b122008-06-12 08:23:48 -0500455 /*
Jack Steiner2a919592011-05-11 12:50:28 -0500456 * Our software ack messages may be blocked because
457 * there are no swack resources available. As long
458 * as none of them has timed out hardware will NACK
459 * our message and its state will stay IDLE.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500460 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500461 if (descriptor_status == DS_SOURCE_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500462 stat->s_stimeout++;
463 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500464 } else if (descriptor_status == DS_DESTINATION_TIMEOUT) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500465 stat->s_dtimeout++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500466 ttm = get_cycles();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500467
468 /*
469 * Our retries may be blocked by all destination
470 * swack resources being consumed, and a timeout
471 * pending. In that case hardware returns the
472 * ERROR that looks like a destination timeout.
473 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500474 if (cycles_2_us(ttm - bcp->send_message) < timeout_us) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500475 bcp->conseccompletes = 0;
476 return FLUSH_RETRY_PLUGGED;
477 }
478
479 bcp->conseccompletes = 0;
480 return FLUSH_RETRY_TIMEOUT;
481 } else {
482 /*
483 * descriptor_status is still BUSY
484 */
485 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500486 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500487 descriptor_status = uv1_read_status(mmr_offset, right_shift);
Cliff Wickmanb194b122008-06-12 08:23:48 -0500488 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500489 bcp->conseccompletes++;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500490 return FLUSH_COMPLETE;
491}
492
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500493/*
494 * UV2 has an extra bit of status in the ACTIVATION_STATUS_2 register.
495 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600496static unsigned long uv2_read_status(unsigned long offset, int rshft, int desc)
Jack Steiner2a919592011-05-11 12:50:28 -0500497{
498 unsigned long descriptor_status;
499 unsigned long descriptor_status2;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500500
501 descriptor_status = ((read_lmmr(offset) >> rshft) & UV_ACT_STATUS_MASK);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600502 descriptor_status2 = (read_mmr_uv2_status() >> desc) & 0x1UL;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500503 descriptor_status = (descriptor_status << 1) | descriptor_status2;
504 return descriptor_status;
505}
506
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600507/*
508 * Return whether the status of the descriptor that is normally used for this
509 * cpu (the one indexed by its hub-relative cpu number) is busy.
510 * The status of the original 32 descriptors is always reflected in the 64
511 * bits of UVH_LB_BAU_SB_ACTIVATION_STATUS_0.
512 * The bit provided by the activation_status_2 register is irrelevant to
513 * the status if it is only being tested for busy or not busy.
514 */
515int normal_busy(struct bau_control *bcp)
516{
517 int cpu = bcp->uvhub_cpu;
518 int mmr_offset;
519 int right_shift;
520
521 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
522 right_shift = cpu * UV_ACT_STATUS_SIZE;
523 return (((((read_lmmr(mmr_offset) >> right_shift) &
524 UV_ACT_STATUS_MASK)) << 1) == UV2H_DESC_BUSY);
525}
526
527/*
528 * Entered when a bau descriptor has gone into a permanent busy wait because
529 * of a hardware bug.
530 * Workaround the bug.
531 */
532int handle_uv2_busy(struct bau_control *bcp)
533{
534 int busy_one = bcp->using_desc;
535 int normal = bcp->uvhub_cpu;
536 int selected = -1;
537 int i;
538 unsigned long descriptor_status;
539 unsigned long status;
540 int mmr_offset;
541 struct bau_desc *bau_desc_old;
542 struct bau_desc *bau_desc_new;
543 struct bau_control *hmaster = bcp->uvhub_master;
544 struct ptc_stats *stat = bcp->statp;
545 cycles_t ttm;
546
547 stat->s_uv2_wars++;
548 spin_lock(&hmaster->uvhub_lock);
549 /* try for the original first */
550 if (busy_one != normal) {
551 if (!normal_busy(bcp))
552 selected = normal;
553 }
554 if (selected < 0) {
555 /* can't use the normal, select an alternate */
556 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
557 descriptor_status = read_lmmr(mmr_offset);
558
559 /* scan available descriptors 32-63 */
560 for (i = 0; i < UV_CPUS_PER_AS; i++) {
561 if ((hmaster->inuse_map & (1 << i)) == 0) {
562 status = ((descriptor_status >>
563 (i * UV_ACT_STATUS_SIZE)) &
564 UV_ACT_STATUS_MASK) << 1;
565 if (status != UV2H_DESC_BUSY) {
566 selected = i + UV_CPUS_PER_AS;
567 break;
568 }
569 }
570 }
571 }
572
573 if (busy_one != normal)
574 /* mark the busy alternate as not in-use */
575 hmaster->inuse_map &= ~(1 << (busy_one - UV_CPUS_PER_AS));
576
577 if (selected >= 0) {
578 /* switch to the selected descriptor */
579 if (selected != normal) {
580 /* set the selected alternate as in-use */
581 hmaster->inuse_map |=
582 (1 << (selected - UV_CPUS_PER_AS));
583 if (selected > stat->s_uv2_wars_hw)
584 stat->s_uv2_wars_hw = selected;
585 }
586 bau_desc_old = bcp->descriptor_base;
587 bau_desc_old += (ITEMS_PER_DESC * busy_one);
588 bcp->using_desc = selected;
589 bau_desc_new = bcp->descriptor_base;
590 bau_desc_new += (ITEMS_PER_DESC * selected);
591 *bau_desc_new = *bau_desc_old;
592 } else {
593 /*
594 * All are busy. Wait for the normal one for this cpu to
595 * free up.
596 */
597 stat->s_uv2_war_waits++;
598 spin_unlock(&hmaster->uvhub_lock);
599 ttm = get_cycles();
600 do {
601 cpu_relax();
602 } while (normal_busy(bcp));
603 spin_lock(&hmaster->uvhub_lock);
604 /* switch to the original descriptor */
605 bcp->using_desc = normal;
606 bau_desc_old = bcp->descriptor_base;
607 bau_desc_old += (ITEMS_PER_DESC * bcp->using_desc);
608 bcp->using_desc = (ITEMS_PER_DESC * normal);
609 bau_desc_new = bcp->descriptor_base;
610 bau_desc_new += (ITEMS_PER_DESC * normal);
611 *bau_desc_new = *bau_desc_old; /* copy the entire descriptor */
612 }
613 spin_unlock(&hmaster->uvhub_lock);
614 return FLUSH_RETRY_BUSYBUG;
615}
616
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500617static int uv2_wait_completion(struct bau_desc *bau_desc,
618 unsigned long mmr_offset, int right_shift,
619 struct bau_control *bcp, long try)
620{
621 unsigned long descriptor_stat;
622 cycles_t ttm;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600623 int desc = bcp->using_desc;
624 long busy_reps = 0;
Jack Steiner2a919592011-05-11 12:50:28 -0500625 struct ptc_stats *stat = bcp->statp;
626
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600627 descriptor_stat = uv2_read_status(mmr_offset, right_shift, desc);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500628
Jack Steiner2a919592011-05-11 12:50:28 -0500629 /* spin on the status MMR, waiting for it to go idle */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500630 while (descriptor_stat != UV2H_DESC_IDLE) {
Jack Steiner2a919592011-05-11 12:50:28 -0500631 /*
632 * Our software ack messages may be blocked because
633 * there are no swack resources available. As long
634 * as none of them has timed out hardware will NACK
635 * our message and its state will stay IDLE.
636 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500637 if ((descriptor_stat == UV2H_DESC_SOURCE_TIMEOUT) ||
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500638 (descriptor_stat == UV2H_DESC_DEST_PUT_ERR)) {
Jack Steiner2a919592011-05-11 12:50:28 -0500639 stat->s_stimeout++;
640 return FLUSH_GIVEUP;
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -0600641 } else if (descriptor_stat == UV2H_DESC_DEST_STRONG_NACK) {
642 stat->s_strongnacks++;
643 bcp->conseccompletes = 0;
644 return FLUSH_GIVEUP;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500645 } else if (descriptor_stat == UV2H_DESC_DEST_TIMEOUT) {
Jack Steiner2a919592011-05-11 12:50:28 -0500646 stat->s_dtimeout++;
Jack Steiner2a919592011-05-11 12:50:28 -0500647 bcp->conseccompletes = 0;
648 return FLUSH_RETRY_TIMEOUT;
649 } else {
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600650 busy_reps++;
651 if (busy_reps > 1000000) {
652 /* not to hammer on the clock */
653 busy_reps = 0;
654 ttm = get_cycles();
655 if ((ttm - bcp->send_message) >
656 (bcp->clocks_per_100_usec)) {
657 return handle_uv2_busy(bcp);
658 }
659 }
Jack Steiner2a919592011-05-11 12:50:28 -0500660 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500661 * descriptor_stat is still BUSY
Jack Steiner2a919592011-05-11 12:50:28 -0500662 */
663 cpu_relax();
664 }
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600665 descriptor_stat = uv2_read_status(mmr_offset, right_shift,
666 desc);
Jack Steiner2a919592011-05-11 12:50:28 -0500667 }
668 bcp->conseccompletes++;
669 return FLUSH_COMPLETE;
670}
671
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500672/*
673 * There are 2 status registers; each and array[32] of 2 bits. Set up for
674 * which register to read and position in that register based on cpu in
675 * current hub.
676 */
677static int wait_completion(struct bau_desc *bau_desc,
678 struct bau_control *bcp, long try)
Jack Steiner2a919592011-05-11 12:50:28 -0500679{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500680 int right_shift;
681 unsigned long mmr_offset;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600682 int desc = bcp->using_desc;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500683
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600684 if (desc < UV_CPUS_PER_AS) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500685 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_0;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600686 right_shift = desc * UV_ACT_STATUS_SIZE;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500687 } else {
688 mmr_offset = UVH_LB_BAU_SB_ACTIVATION_STATUS_1;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600689 right_shift = ((desc - UV_CPUS_PER_AS) * UV_ACT_STATUS_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500690 }
691
Cliff Wickmanda87c932012-01-16 15:17:50 -0600692 if (bcp->uvhub_version == 1)
Jack Steiner2a919592011-05-11 12:50:28 -0500693 return uv1_wait_completion(bau_desc, mmr_offset, right_shift,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500694 bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500695 else
696 return uv2_wait_completion(bau_desc, mmr_offset, right_shift,
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500697 bcp, try);
Jack Steiner2a919592011-05-11 12:50:28 -0500698}
699
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500700static inline cycles_t sec_2_cycles(unsigned long sec)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500701{
702 unsigned long ns;
703 cycles_t cyc;
704
705 ns = sec * 1000000000;
706 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
707 return cyc;
708}
709
710/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500711 * Our retries are blocked by all destination sw ack resources being
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500712 * in use, and a timeout is pending. In that case hardware immediately
713 * returns the ERROR that looks like a destination timeout.
714 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500715static void destination_plugged(struct bau_desc *bau_desc,
716 struct bau_control *bcp,
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500717 struct bau_control *hmaster, struct ptc_stats *stat)
718{
719 udelay(bcp->plugged_delay);
720 bcp->plugged_tries++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500721
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500722 if (bcp->plugged_tries >= bcp->plugsb4reset) {
723 bcp->plugged_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500724
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500725 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500726
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500727 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500728 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500729 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500730
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500731 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500732
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500733 bcp->ipi_attempts++;
734 stat->s_resets_plug++;
735 }
736}
737
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500738static void destination_timeout(struct bau_desc *bau_desc,
739 struct bau_control *bcp, struct bau_control *hmaster,
740 struct ptc_stats *stat)
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500741{
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500742 hmaster->max_concurr = 1;
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500743 bcp->timeout_tries++;
744 if (bcp->timeout_tries >= bcp->timeoutsb4reset) {
745 bcp->timeout_tries = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500746
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500747 quiesce_local_uvhub(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500748
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500749 spin_lock(&hmaster->queue_lock);
cpw@sgi.com485f07d2011-06-21 07:21:29 -0500750 reset_with_ipi(&bau_desc->distribution, bcp);
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500751 spin_unlock(&hmaster->queue_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500752
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500753 end_uvhub_quiesce(hmaster);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500754
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500755 bcp->ipi_attempts++;
756 stat->s_resets_timeout++;
757 }
758}
759
760/*
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500761 * Completions are taking a very long time due to a congested numalink
762 * network.
763 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500764static void disable_for_congestion(struct bau_control *bcp,
765 struct ptc_stats *stat)
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500766{
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500767 /* let only one cpu do this disabling */
768 spin_lock(&disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500769
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500770 if (!baudisabled && bcp->period_requests &&
771 ((bcp->period_time / bcp->period_requests) > congested_cycles)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500772 int tcpu;
773 struct bau_control *tbcp;
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500774 /* it becomes this cpu's job to turn on the use of the
775 BAU again */
776 baudisabled = 1;
777 bcp->set_bau_off = 1;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500778 bcp->set_bau_on_time = get_cycles();
779 bcp->set_bau_on_time += sec_2_cycles(bcp->cong_period);
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500780 stat->s_bau_disabled++;
781 for_each_present_cpu(tcpu) {
782 tbcp = &per_cpu(bau_control, tcpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500783 tbcp->baudisabled = 1;
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500784 }
785 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500786
Cliff Wickman50fb55a2010-06-02 16:22:02 -0500787 spin_unlock(&disable_lock);
788}
789
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500790static void count_max_concurr(int stat, struct bau_control *bcp,
791 struct bau_control *hmaster)
792{
793 bcp->plugged_tries = 0;
794 bcp->timeout_tries = 0;
795 if (stat != FLUSH_COMPLETE)
796 return;
797 if (bcp->conseccompletes <= bcp->complete_threshold)
798 return;
799 if (hmaster->max_concurr >= hmaster->max_concurr_const)
800 return;
801 hmaster->max_concurr++;
802}
803
804static void record_send_stats(cycles_t time1, cycles_t time2,
805 struct bau_control *bcp, struct ptc_stats *stat,
806 int completion_status, int try)
807{
808 cycles_t elapsed;
809
810 if (time2 > time1) {
811 elapsed = time2 - time1;
812 stat->s_time += elapsed;
813
814 if ((completion_status == FLUSH_COMPLETE) && (try == 1)) {
815 bcp->period_requests++;
816 bcp->period_time += elapsed;
817 if ((elapsed > congested_cycles) &&
818 (bcp->period_requests > bcp->cong_reps))
819 disable_for_congestion(bcp, stat);
820 }
821 } else
822 stat->s_requestor--;
823
824 if (completion_status == FLUSH_COMPLETE && try > 1)
825 stat->s_retriesok++;
826 else if (completion_status == FLUSH_GIVEUP)
827 stat->s_giveup++;
828}
829
830/*
831 * Because of a uv1 hardware bug only a limited number of concurrent
832 * requests can be made.
833 */
834static void uv1_throttle(struct bau_control *hmaster, struct ptc_stats *stat)
835{
836 spinlock_t *lock = &hmaster->uvhub_lock;
837 atomic_t *v;
838
839 v = &hmaster->active_descriptor_count;
840 if (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr)) {
841 stat->s_throttles++;
842 do {
843 cpu_relax();
844 } while (!atomic_inc_unless_ge(lock, v, hmaster->max_concurr));
845 }
846}
847
848/*
849 * Handle the completion status of a message send.
850 */
851static void handle_cmplt(int completion_status, struct bau_desc *bau_desc,
852 struct bau_control *bcp, struct bau_control *hmaster,
853 struct ptc_stats *stat)
854{
855 if (completion_status == FLUSH_RETRY_PLUGGED)
856 destination_plugged(bau_desc, bcp, hmaster, stat);
857 else if (completion_status == FLUSH_RETRY_TIMEOUT)
858 destination_timeout(bau_desc, bcp, hmaster, stat);
859}
860
861/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500862 * Send a broadcast and wait for it to complete.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500863 *
Cliff Wickmanf6d8a562010-06-02 16:22:02 -0500864 * The flush_mask contains the cpus the broadcast is to be sent to including
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500865 * cpus that are on the local uvhub.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500866 *
Cliff Wickman450a0072010-06-02 16:22:02 -0500867 * Returns 0 if all flushing represented in the mask was done.
868 * Returns 1 if it gives up entirely and the original cpu mask is to be
869 * returned to the kernel.
Cliff Wickmanb194b122008-06-12 08:23:48 -0500870 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600871int uv_flush_send_and_wait(struct cpumask *flush_mask, struct bau_control *bcp)
Cliff Wickmanb194b122008-06-12 08:23:48 -0500872{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500873 int seq_number = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500874 int completion_stat = 0;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600875 int uv1 = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500876 long try = 0;
Ingo Molnarb4c286e2008-06-18 14:28:19 +0200877 unsigned long index;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500878 cycles_t time1;
879 cycles_t time2;
Cliff Wickman712157a2010-06-02 16:22:02 -0500880 struct ptc_stats *stat = bcp->statp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500881 struct bau_control *hmaster = bcp->uvhub_master;
Cliff Wickmanda87c932012-01-16 15:17:50 -0600882 struct uv1_bau_msg_header *uv1_hdr = NULL;
883 struct uv2_bau_msg_header *uv2_hdr = NULL;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600884 struct bau_desc *bau_desc;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500885
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600886 if (bcp->uvhub_version == 1)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500887 uv1_throttle(hmaster, stat);
888
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500889 while (hmaster->uvhub_quiesce)
890 cpu_relax();
Cliff Wickmanb194b122008-06-12 08:23:48 -0500891
Cliff Wickmanb194b122008-06-12 08:23:48 -0500892 time1 = get_cycles();
893 do {
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600894 bau_desc = bcp->descriptor_base;
895 bau_desc += (ITEMS_PER_DESC * bcp->using_desc);
896 if (bcp->uvhub_version == 1) {
897 uv1 = 1;
898 uv1_hdr = &bau_desc->header.uv1_hdr;
899 } else
900 uv2_hdr = &bau_desc->header.uv2_hdr;
901 if ((try == 0) || (completion_stat == FLUSH_RETRY_BUSYBUG)) {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600902 if (uv1)
903 uv1_hdr->msg_type = MSG_REGULAR;
904 else
905 uv2_hdr->msg_type = MSG_REGULAR;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500906 seq_number = bcp->message_number++;
907 } else {
Cliff Wickmanda87c932012-01-16 15:17:50 -0600908 if (uv1)
909 uv1_hdr->msg_type = MSG_RETRY;
910 else
911 uv2_hdr->msg_type = MSG_RETRY;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500912 stat->s_retry_messages++;
913 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500914
Cliff Wickmanda87c932012-01-16 15:17:50 -0600915 if (uv1)
916 uv1_hdr->sequence = seq_number;
917 else
918 uv2_hdr->sequence = seq_number;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600919 index = (1UL << AS_PUSH_SHIFT) | bcp->using_desc;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500920 bcp->send_message = get_cycles();
921
922 write_mmr_activation(index);
923
924 try++;
925 completion_stat = wait_completion(bau_desc, bcp, try);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600926 /* UV2: wait_completion() may change the bcp->using_desc */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500927
928 handle_cmplt(completion_stat, bau_desc, bcp, hmaster, stat);
929
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500930 if (bcp->ipi_attempts >= bcp->ipi_reset_limit) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500931 bcp->ipi_attempts = 0;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500932 completion_stat = FLUSH_GIVEUP;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500933 break;
934 }
935 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500936 } while ((completion_stat == FLUSH_RETRY_PLUGGED) ||
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600937 (completion_stat == FLUSH_RETRY_BUSYBUG) ||
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500938 (completion_stat == FLUSH_RETRY_TIMEOUT));
939
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500940 time2 = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500941
942 count_max_concurr(completion_stat, bcp, hmaster);
943
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500944 while (hmaster->uvhub_quiesce)
945 cpu_relax();
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500946
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500947 atomic_dec(&hmaster->active_descriptor_count);
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500948
949 record_send_stats(time1, time2, bcp, stat, completion_stat, try);
950
951 if (completion_stat == FLUSH_GIVEUP)
Cliff Wickmanc5d35d32012-01-16 15:19:47 -0600952 /* FLUSH_GIVEUP will fall back to using IPI's for tlb flush */
Cliff Wickman450a0072010-06-02 16:22:02 -0500953 return 1;
Cliff Wickman450a0072010-06-02 16:22:02 -0500954 return 0;
Cliff Wickmanb194b122008-06-12 08:23:48 -0500955}
956
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500957/*
958 * The BAU is disabled. When the disabled time period has expired, the cpu
959 * that disabled it must re-enable it.
960 * Return 0 if it is re-enabled for all cpus.
961 */
962static int check_enable(struct bau_control *bcp, struct ptc_stats *stat)
963{
964 int tcpu;
965 struct bau_control *tbcp;
966
967 if (bcp->set_bau_off) {
968 if (get_cycles() >= bcp->set_bau_on_time) {
969 stat->s_bau_reenabled++;
970 baudisabled = 0;
971 for_each_present_cpu(tcpu) {
972 tbcp = &per_cpu(bau_control, tcpu);
973 tbcp->baudisabled = 0;
974 tbcp->period_requests = 0;
975 tbcp->period_time = 0;
976 }
977 return 0;
978 }
979 }
980 return -1;
981}
982
983static void record_send_statistics(struct ptc_stats *stat, int locals, int hubs,
984 int remotes, struct bau_desc *bau_desc)
985{
986 stat->s_requestor++;
987 stat->s_ntargcpu += remotes + locals;
988 stat->s_ntargremotes += remotes;
989 stat->s_ntarglocals += locals;
990
991 /* uvhub statistics */
992 hubs = bau_uvhub_weight(&bau_desc->distribution);
993 if (locals) {
994 stat->s_ntarglocaluvhub++;
995 stat->s_ntargremoteuvhub += (hubs - 1);
996 } else
997 stat->s_ntargremoteuvhub += hubs;
998
999 stat->s_ntarguvhub += hubs;
1000
1001 if (hubs >= 16)
1002 stat->s_ntarguvhub16++;
1003 else if (hubs >= 8)
1004 stat->s_ntarguvhub8++;
1005 else if (hubs >= 4)
1006 stat->s_ntarguvhub4++;
1007 else if (hubs >= 2)
1008 stat->s_ntarguvhub2++;
1009 else
1010 stat->s_ntarguvhub1++;
1011}
1012
1013/*
1014 * Translate a cpu mask to the uvhub distribution mask in the BAU
1015 * activation descriptor.
1016 */
1017static int set_distrib_bits(struct cpumask *flush_mask, struct bau_control *bcp,
1018 struct bau_desc *bau_desc, int *localsp, int *remotesp)
1019{
1020 int cpu;
1021 int pnode;
1022 int cnt = 0;
1023 struct hub_and_pnode *hpp;
1024
1025 for_each_cpu(cpu, flush_mask) {
1026 /*
1027 * The distribution vector is a bit map of pnodes, relative
1028 * to the partition base pnode (and the partition base nasid
1029 * in the header).
1030 * Translate cpu to pnode and hub using a local memory array.
1031 */
1032 hpp = &bcp->socket_master->thp[cpu];
1033 pnode = hpp->pnode - bcp->partition_base_pnode;
1034 bau_uvhub_set(pnode, &bau_desc->distribution);
1035 cnt++;
1036 if (hpp->uvhub == bcp->uvhub)
1037 (*localsp)++;
1038 else
1039 (*remotesp)++;
1040 }
1041 if (!cnt)
1042 return 1;
1043 return 0;
1044}
1045
1046/*
1047 * globally purge translation cache of a virtual address or all TLB's
Tejun Heobdbcdd42009-01-21 17:26:06 +09001048 * @cpumask: mask of all cpu's in which the address is to be removed
Cliff Wickman18129242008-06-02 08:56:14 -05001049 * @mm: mm_struct containing virtual address range
1050 * @va: virtual address to be removed (or TLB_FLUSH_ALL for all TLB's on cpu)
Tejun Heobdbcdd42009-01-21 17:26:06 +09001051 * @cpu: the current cpu
Cliff Wickman18129242008-06-02 08:56:14 -05001052 *
1053 * This is the entry point for initiating any UV global TLB shootdown.
1054 *
1055 * Purges the translation caches of all specified processors of the given
1056 * virtual address, or purges all TLB's on specified processors.
1057 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001058 * The caller has derived the cpumask from the mm_struct. This function
1059 * is called only if there are bits set in the mask. (e.g. flush_tlb_page())
Cliff Wickman18129242008-06-02 08:56:14 -05001060 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001061 * The cpumask is converted into a uvhubmask of the uvhubs containing
1062 * those cpus.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001063 *
Tejun Heobdbcdd42009-01-21 17:26:06 +09001064 * Note that this function should be called with preemption disabled.
1065 *
1066 * Returns NULL if all remote flushing was done.
1067 * Returns pointer to cpumask if some remote flushing remains to be
1068 * done. The returned pointer is valid till preemption is re-enabled.
Cliff Wickman18129242008-06-02 08:56:14 -05001069 */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001070const struct cpumask *uv_flush_tlb_others(const struct cpumask *cpumask,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001071 struct mm_struct *mm, unsigned long va,
1072 unsigned int cpu)
Cliff Wickman18129242008-06-02 08:56:14 -05001073{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001074 int locals = 0;
Cliff Wickman450a0072010-06-02 16:22:02 -05001075 int remotes = 0;
1076 int hubs = 0;
Ingo Molnardc163a42008-06-18 14:15:43 +02001077 struct bau_desc *bau_desc;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001078 struct cpumask *flush_mask;
1079 struct ptc_stats *stat;
1080 struct bau_control *bcp;
Cliff Wickman18129242008-06-02 08:56:14 -05001081
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001082 /* kernel was booted 'nobau' */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001083 if (nobau)
1084 return cpumask;
1085
1086 bcp = &per_cpu(bau_control, cpu);
Cliff Wickman712157a2010-06-02 16:22:02 -05001087 stat = bcp->statp;
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001088
1089 /* bau was disabled due to slow response */
1090 if (bcp->baudisabled) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001091 if (check_enable(bcp, stat))
1092 return cpumask;
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001093 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001094
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001095 /*
1096 * Each sending cpu has a per-cpu mask which it fills from the caller's
Cliff Wickman450a0072010-06-02 16:22:02 -05001097 * cpu mask. All cpus are converted to uvhubs and copied to the
1098 * activation descriptor.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001099 */
1100 flush_mask = (struct cpumask *)per_cpu(uv_flush_tlb_mask, cpu);
Cliff Wickman450a0072010-06-02 16:22:02 -05001101 /* don't actually do a shootdown of the local cpu */
Tejun Heobdbcdd42009-01-21 17:26:06 +09001102 cpumask_andnot(flush_mask, cpumask, cpumask_of(cpu));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001103
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001104 if (cpu_isset(cpu, *cpumask))
Cliff Wickman450a0072010-06-02 16:22:02 -05001105 stat->s_ntargself++;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001106
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001107 bau_desc = bcp->descriptor_base;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001108 bau_desc += (ITEMS_PER_DESC * bcp->using_desc);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001109 bau_uvhubs_clear(&bau_desc->distribution, UV_DISTRIBUTION_SIZE);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001110 if (set_distrib_bits(flush_mask, bcp, bau_desc, &locals, &remotes))
Cliff Wickman450a0072010-06-02 16:22:02 -05001111 return NULL;
Cliff Wickman450a0072010-06-02 16:22:02 -05001112
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001113 record_send_statistics(stat, locals, hubs, remotes, bau_desc);
Cliff Wickman18129242008-06-02 08:56:14 -05001114
1115 bau_desc->payload.address = va;
Tejun Heobdbcdd42009-01-21 17:26:06 +09001116 bau_desc->payload.sending_cpu = cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001117 /*
Cliff Wickman450a0072010-06-02 16:22:02 -05001118 * uv_flush_send_and_wait returns 0 if all cpu's were messaged,
1119 * or 1 if it gave up and the original cpumask should be returned.
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001120 */
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001121 if (!uv_flush_send_and_wait(flush_mask, bcp))
Cliff Wickman450a0072010-06-02 16:22:02 -05001122 return NULL;
1123 else
1124 return cpumask;
Cliff Wickman18129242008-06-02 08:56:14 -05001125}
1126
1127/*
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001128 * Search the message queue for any 'other' message with the same software
1129 * acknowledge resource bit vector.
1130 */
1131struct bau_pq_entry *find_another_by_swack(struct bau_pq_entry *msg,
1132 struct bau_control *bcp, unsigned char swack_vec)
1133{
1134 struct bau_pq_entry *msg_next = msg + 1;
1135
1136 if (msg_next > bcp->queue_last)
1137 msg_next = bcp->queue_first;
1138 while ((msg_next->swack_vec != 0) && (msg_next != msg)) {
1139 if (msg_next->swack_vec == swack_vec)
1140 return msg_next;
1141 msg_next++;
1142 if (msg_next > bcp->queue_last)
1143 msg_next = bcp->queue_first;
1144 }
1145 return NULL;
1146}
1147
1148/*
1149 * UV2 needs to work around a bug in which an arriving message has not
1150 * set a bit in the UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE register.
1151 * Such a message must be ignored.
1152 */
1153void process_uv2_message(struct msg_desc *mdp, struct bau_control *bcp)
1154{
1155 unsigned long mmr_image;
1156 unsigned char swack_vec;
1157 struct bau_pq_entry *msg = mdp->msg;
1158 struct bau_pq_entry *other_msg;
1159
1160 mmr_image = read_mmr_sw_ack();
1161 swack_vec = msg->swack_vec;
1162
1163 if ((swack_vec & mmr_image) == 0) {
1164 /*
1165 * This message was assigned a swack resource, but no
1166 * reserved acknowlegment is pending.
1167 * The bug has prevented this message from setting the MMR.
1168 * And no other message has used the same sw_ack resource.
1169 * Do the requested shootdown but do not reply to the msg.
1170 * (the 0 means make no acknowledge)
1171 */
1172 bau_process_message(mdp, bcp, 0);
1173 return;
1174 }
1175
1176 /*
1177 * Some message has set the MMR 'pending' bit; it might have been
1178 * another message. Look for that message.
1179 */
1180 other_msg = find_another_by_swack(msg, bcp, msg->swack_vec);
1181 if (other_msg) {
1182 /* There is another. Do not ack the current one. */
1183 bau_process_message(mdp, bcp, 0);
1184 /*
1185 * Let the natural processing of that message acknowledge
1186 * it. Don't get the processing of sw_ack's out of order.
1187 */
1188 return;
1189 }
1190
1191 /*
1192 * There is no other message using this sw_ack, so it is safe to
1193 * acknowledge it.
1194 */
1195 bau_process_message(mdp, bcp, 1);
1196
1197 return;
1198}
1199
1200/*
Cliff Wickman18129242008-06-02 08:56:14 -05001201 * The BAU message interrupt comes here. (registered by set_intr_gate)
1202 * See entry_64.S
1203 *
1204 * We received a broadcast assist message.
1205 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001206 * Interrupts are disabled; this interrupt could represent
Cliff Wickman18129242008-06-02 08:56:14 -05001207 * the receipt of several messages.
1208 *
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001209 * All cores/threads on this hub get this interrupt.
1210 * The last one to see it does the software ack.
Cliff Wickman18129242008-06-02 08:56:14 -05001211 * (the resource will not be freed until noninterruptable cpus see this
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001212 * interrupt; hardware may timeout the s/w ack and reply ERROR)
Cliff Wickman18129242008-06-02 08:56:14 -05001213 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05001214void uv_bau_message_interrupt(struct pt_regs *regs)
Cliff Wickman18129242008-06-02 08:56:14 -05001215{
Cliff Wickman18129242008-06-02 08:56:14 -05001216 int count = 0;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001217 cycles_t time_start;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001218 struct bau_pq_entry *msg;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001219 struct bau_control *bcp;
1220 struct ptc_stats *stat;
1221 struct msg_desc msgdesc;
Cliff Wickman18129242008-06-02 08:56:14 -05001222
Cliff Wickman88ed9dd2012-01-16 15:21:46 -06001223 ack_APIC_irq();
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001224 time_start = get_cycles();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001225
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001226 bcp = &per_cpu(bau_control, smp_processor_id());
Cliff Wickman712157a2010-06-02 16:22:02 -05001227 stat = bcp->statp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001228
1229 msgdesc.queue_first = bcp->queue_first;
1230 msgdesc.queue_last = bcp->queue_last;
1231
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001232 msg = bcp->bau_msg_head;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001233 while (msg->swack_vec) {
Cliff Wickman18129242008-06-02 08:56:14 -05001234 count++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001235
1236 msgdesc.msg_slot = msg - msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001237 msgdesc.msg = msg;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001238 if (bcp->uvhub_version == 2)
1239 process_uv2_message(&msgdesc, bcp);
1240 else
1241 bau_process_message(&msgdesc, bcp, 1);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001242
Cliff Wickman18129242008-06-02 08:56:14 -05001243 msg++;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001244 if (msg > msgdesc.queue_last)
1245 msg = msgdesc.queue_first;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001246 bcp->bau_msg_head = msg;
Cliff Wickman18129242008-06-02 08:56:14 -05001247 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001248 stat->d_time += (get_cycles() - time_start);
Cliff Wickman18129242008-06-02 08:56:14 -05001249 if (!count)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001250 stat->d_nomsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001251 else if (count > 1)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001252 stat->d_multmsg++;
Cliff Wickman18129242008-06-02 08:56:14 -05001253}
1254
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001255/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001256 * Each target uvhub (i.e. a uvhub that has cpu's) needs to have
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001257 * shootdown message timeouts enabled. The timeout does not cause
1258 * an interrupt, but causes an error message to be returned to
1259 * the sender.
1260 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001261static void __init enable_timeouts(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001262{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001263 int uvhub;
1264 int nuvhubs;
Cliff Wickman18129242008-06-02 08:56:14 -05001265 int pnode;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001266 unsigned long mmr_image;
Cliff Wickman18129242008-06-02 08:56:14 -05001267
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001268 nuvhubs = uv_num_possible_blades();
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001269
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001270 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
1271 if (!uv_blade_nr_possible_cpus(uvhub))
Cliff Wickman18129242008-06-02 08:56:14 -05001272 continue;
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001273
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001274 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001275 mmr_image = read_mmr_misc_control(pnode);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001276 /*
1277 * Set the timeout period and then lock it in, in three
1278 * steps; captures and locks in the period.
1279 *
1280 * To program the period, the SOFT_ACK_MODE must be off.
1281 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001282 mmr_image &= ~(1L << SOFTACK_MSHIFT);
1283 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001284 /*
1285 * Set the 4-bit period.
1286 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001287 mmr_image &= ~((unsigned long)0xf << SOFTACK_PSHIFT);
1288 mmr_image |= (SOFTACK_TIMEOUT_PERIOD << SOFTACK_PSHIFT);
1289 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001290 /*
Jack Steiner2a919592011-05-11 12:50:28 -05001291 * UV1:
Cliff Wickmanc4c46882009-04-03 08:34:32 -05001292 * Subsequent reversals of the timebase bit (3) cause an
1293 * immediate timeout of one or all INTD resources as
1294 * indicated in bits 2:0 (7 causes all of them to timeout).
1295 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001296 mmr_image |= (1L << SOFTACK_MSHIFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001297 if (is_uv2_hub()) {
Cliff Wickmanda87c932012-01-16 15:17:50 -06001298 mmr_image &= ~(1L << UV2_LEG_SHFT);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001299 mmr_image |= (1L << UV2_EXT_SHFT);
Jack Steiner2a919592011-05-11 12:50:28 -05001300 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001301 write_mmr_misc_control(pnode, mmr_image);
Cliff Wickman18129242008-06-02 08:56:14 -05001302 }
Cliff Wickman18129242008-06-02 08:56:14 -05001303}
1304
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001305static void *ptc_seq_start(struct seq_file *file, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001306{
1307 if (*offset < num_possible_cpus())
1308 return offset;
1309 return NULL;
1310}
1311
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001312static void *ptc_seq_next(struct seq_file *file, void *data, loff_t *offset)
Cliff Wickman18129242008-06-02 08:56:14 -05001313{
1314 (*offset)++;
1315 if (*offset < num_possible_cpus())
1316 return offset;
1317 return NULL;
1318}
1319
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001320static void ptc_seq_stop(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001321{
1322}
1323
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001324static inline unsigned long long usec_2_cycles(unsigned long microsec)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001325{
1326 unsigned long ns;
1327 unsigned long long cyc;
1328
Cliff Wickman12a66112010-06-02 16:22:01 -05001329 ns = microsec * 1000;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001330 cyc = (ns << CYC2NS_SCALE_FACTOR)/(per_cpu(cyc2ns, smp_processor_id()));
1331 return cyc;
1332}
1333
Cliff Wickman18129242008-06-02 08:56:14 -05001334/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001335 * Display the statistics thru /proc/sgi_uv/ptc_statistics
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001336 * 'data' points to the cpu number
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001337 * Note: see the descriptions in stat_description[].
Cliff Wickman18129242008-06-02 08:56:14 -05001338 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001339static int ptc_seq_show(struct seq_file *file, void *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001340{
1341 struct ptc_stats *stat;
1342 int cpu;
1343
1344 cpu = *(loff_t *)data;
Cliff Wickman18129242008-06-02 08:56:14 -05001345 if (!cpu) {
1346 seq_printf(file,
Cliff Wickman450a0072010-06-02 16:22:02 -05001347 "# cpu sent stime self locals remotes ncpus localhub ");
Cliff Wickman18129242008-06-02 08:56:14 -05001348 seq_printf(file,
Cliff Wickman450a0072010-06-02 16:22:02 -05001349 "remotehub numuvhubs numuvhubs16 numuvhubs8 ");
1350 seq_printf(file,
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001351 "numuvhubs4 numuvhubs2 numuvhubs1 dto snacks retries rok ");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001352 seq_printf(file,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001353 "resetp resett giveup sto bz throt swack recv rtime ");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001354 seq_printf(file,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001355 "all one mult none retry canc nocan reset rcan ");
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001356 seq_printf(file,
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001357 "disable enable wars warshw warwaits\n");
Cliff Wickman18129242008-06-02 08:56:14 -05001358 }
1359 if (cpu < num_possible_cpus() && cpu_online(cpu)) {
1360 stat = &per_cpu(ptcstats, cpu);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001361 /* source side statistics */
1362 seq_printf(file,
1363 "cpu %d %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
1364 cpu, stat->s_requestor, cycles_2_us(stat->s_time),
Cliff Wickman450a0072010-06-02 16:22:02 -05001365 stat->s_ntargself, stat->s_ntarglocals,
1366 stat->s_ntargremotes, stat->s_ntargcpu,
1367 stat->s_ntarglocaluvhub, stat->s_ntargremoteuvhub,
1368 stat->s_ntarguvhub, stat->s_ntarguvhub16);
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001369 seq_printf(file, "%ld %ld %ld %ld %ld %ld ",
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001370 stat->s_ntarguvhub8, stat->s_ntarguvhub4,
1371 stat->s_ntarguvhub2, stat->s_ntarguvhub1,
Cliff Wickmanb54bd9b2012-01-16 15:22:38 -06001372 stat->s_dtimeout, stat->s_strongnacks);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001373 seq_printf(file, "%ld %ld %ld %ld %ld %ld %ld %ld ",
1374 stat->s_retry_messages, stat->s_retriesok,
1375 stat->s_resets_plug, stat->s_resets_timeout,
1376 stat->s_giveup, stat->s_stimeout,
1377 stat->s_busy, stat->s_throttles);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001378
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001379 /* destination side statistics */
1380 seq_printf(file,
Cliff Wickman50fb55a2010-06-02 16:22:02 -05001381 "%lx %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld %ld ",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001382 read_gmmr_sw_ack(uv_cpu_to_pnode(cpu)),
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001383 stat->d_requestee, cycles_2_us(stat->d_time),
1384 stat->d_alltlb, stat->d_onetlb, stat->d_multmsg,
1385 stat->d_nomsg, stat->d_retries, stat->d_canceled,
1386 stat->d_nocanceled, stat->d_resets,
1387 stat->d_rcanceled);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001388 seq_printf(file, "%ld %ld %ld %ld %ld\n",
1389 stat->s_bau_disabled, stat->s_bau_reenabled,
1390 stat->s_uv2_wars, stat->s_uv2_wars_hw,
1391 stat->s_uv2_war_waits);
Cliff Wickman18129242008-06-02 08:56:14 -05001392 }
Cliff Wickman18129242008-06-02 08:56:14 -05001393 return 0;
1394}
1395
1396/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001397 * Display the tunables thru debugfs
1398 */
1399static ssize_t tunables_read(struct file *file, char __user *userbuf,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001400 size_t count, loff_t *ppos)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001401{
Dan Carpenterb365a852010-09-29 10:41:05 +02001402 char *buf;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001403 int ret;
1404
Dan Carpenterb365a852010-09-29 10:41:05 +02001405 buf = kasprintf(GFP_KERNEL, "%s %s %s\n%d %d %d %d %d %d %d %d %d\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001406 "max_concur plugged_delay plugsb4reset",
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001407 "timeoutsb4reset ipi_reset_limit complete_threshold",
1408 "congested_response_us congested_reps congested_period",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001409 max_concurr, plugged_delay, plugsb4reset,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001410 timeoutsb4reset, ipi_reset_limit, complete_threshold,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001411 congested_respns_us, congested_reps, congested_period);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001412
Dan Carpenterb365a852010-09-29 10:41:05 +02001413 if (!buf)
1414 return -ENOMEM;
1415
1416 ret = simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf));
1417 kfree(buf);
1418 return ret;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001419}
1420
1421/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001422 * handle a write to /proc/sgi_uv/ptc_statistics
1423 * -1: reset the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001424 * 0: display meaning of the statistics
Cliff Wickman18129242008-06-02 08:56:14 -05001425 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001426static ssize_t ptc_proc_write(struct file *file, const char __user *user,
1427 size_t count, loff_t *data)
Cliff Wickman18129242008-06-02 08:56:14 -05001428{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001429 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001430 int i;
1431 int elements;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001432 long input_arg;
Cliff Wickman18129242008-06-02 08:56:14 -05001433 char optstr[64];
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001434 struct ptc_stats *stat;
Cliff Wickman18129242008-06-02 08:56:14 -05001435
Cliff Wickmane7eb8722008-06-23 08:32:25 -05001436 if (count == 0 || count > sizeof(optstr))
Cliff Wickmancef53272008-06-19 11:16:24 -05001437 return -EINVAL;
Cliff Wickman18129242008-06-02 08:56:14 -05001438 if (copy_from_user(optstr, user, count))
1439 return -EFAULT;
1440 optstr[count - 1] = '\0';
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001441
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001442 if (strict_strtol(optstr, 10, &input_arg) < 0) {
Cliff Wickman18129242008-06-02 08:56:14 -05001443 printk(KERN_DEBUG "%s is invalid\n", optstr);
1444 return -EINVAL;
1445 }
1446
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001447 if (input_arg == 0) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001448 elements = sizeof(stat_description)/sizeof(*stat_description);
Cliff Wickman18129242008-06-02 08:56:14 -05001449 printk(KERN_DEBUG "# cpu: cpu number\n");
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001450 printk(KERN_DEBUG "Sender statistics:\n");
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001451 for (i = 0; i < elements; i++)
1452 printk(KERN_DEBUG "%s\n", stat_description[i]);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001453 } else if (input_arg == -1) {
1454 for_each_present_cpu(cpu) {
1455 stat = &per_cpu(ptcstats, cpu);
1456 memset(stat, 0, sizeof(struct ptc_stats));
1457 }
Cliff Wickman18129242008-06-02 08:56:14 -05001458 }
1459
1460 return count;
1461}
1462
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001463static int local_atoi(const char *name)
1464{
1465 int val = 0;
1466
1467 for (;; name++) {
1468 switch (*name) {
1469 case '0' ... '9':
1470 val = 10*val+(*name-'0');
1471 break;
1472 default:
1473 return val;
1474 }
1475 }
1476}
1477
1478/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001479 * Parse the values written to /sys/kernel/debug/sgi_uv/bau_tunables.
1480 * Zero values reset them to defaults.
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001481 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001482static int parse_tunables_write(struct bau_control *bcp, char *instr,
1483 int count)
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001484{
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001485 char *p;
1486 char *q;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001487 int cnt = 0;
1488 int val;
1489 int e = sizeof(tunables) / sizeof(*tunables);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001490
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001491 p = instr + strspn(instr, WHITESPACE);
1492 q = p;
1493 for (; *p; p = q + strspn(q, WHITESPACE)) {
1494 q = p + strcspn(p, WHITESPACE);
1495 cnt++;
1496 if (q == p)
1497 break;
1498 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001499 if (cnt != e) {
1500 printk(KERN_INFO "bau tunable error: should be %d values\n", e);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001501 return -EINVAL;
1502 }
1503
1504 p = instr + strspn(instr, WHITESPACE);
1505 q = p;
1506 for (cnt = 0; *p; p = q + strspn(q, WHITESPACE), cnt++) {
1507 q = p + strcspn(p, WHITESPACE);
1508 val = local_atoi(p);
1509 switch (cnt) {
1510 case 0:
1511 if (val == 0) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001512 max_concurr = MAX_BAU_CONCURRENT;
1513 max_concurr_const = MAX_BAU_CONCURRENT;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001514 continue;
1515 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001516 if (val < 1 || val > bcp->cpus_in_uvhub) {
1517 printk(KERN_DEBUG
1518 "Error: BAU max concurrent %d is invalid\n",
1519 val);
1520 return -EINVAL;
1521 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001522 max_concurr = val;
1523 max_concurr_const = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001524 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001525 default:
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001526 if (val == 0)
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001527 *tunables[cnt].tunp = tunables[cnt].deflt;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001528 else
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001529 *tunables[cnt].tunp = val;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001530 continue;
1531 }
1532 if (q == p)
1533 break;
1534 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001535 return 0;
1536}
1537
1538/*
1539 * Handle a write to debugfs. (/sys/kernel/debug/sgi_uv/bau_tunables)
1540 */
1541static ssize_t tunables_write(struct file *file, const char __user *user,
1542 size_t count, loff_t *data)
1543{
1544 int cpu;
1545 int ret;
1546 char instr[100];
1547 struct bau_control *bcp;
1548
1549 if (count == 0 || count > sizeof(instr)-1)
1550 return -EINVAL;
1551 if (copy_from_user(instr, user, count))
1552 return -EFAULT;
1553
1554 instr[count] = '\0';
1555
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001556 cpu = get_cpu();
1557 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001558 ret = parse_tunables_write(bcp, instr, count);
cpw@sgi.com00b30cf2011-06-21 07:21:26 -05001559 put_cpu();
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001560 if (ret)
1561 return ret;
1562
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001563 for_each_present_cpu(cpu) {
1564 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001565 bcp->max_concurr = max_concurr;
1566 bcp->max_concurr_const = max_concurr;
1567 bcp->plugged_delay = plugged_delay;
1568 bcp->plugsb4reset = plugsb4reset;
1569 bcp->timeoutsb4reset = timeoutsb4reset;
1570 bcp->ipi_reset_limit = ipi_reset_limit;
1571 bcp->complete_threshold = complete_threshold;
1572 bcp->cong_response_us = congested_respns_us;
1573 bcp->cong_reps = congested_reps;
1574 bcp->cong_period = congested_period;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001575 }
1576 return count;
1577}
1578
Cliff Wickman18129242008-06-02 08:56:14 -05001579static const struct seq_operations uv_ptc_seq_ops = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001580 .start = ptc_seq_start,
1581 .next = ptc_seq_next,
1582 .stop = ptc_seq_stop,
1583 .show = ptc_seq_show
Cliff Wickman18129242008-06-02 08:56:14 -05001584};
1585
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001586static int ptc_proc_open(struct inode *inode, struct file *file)
Cliff Wickman18129242008-06-02 08:56:14 -05001587{
1588 return seq_open(file, &uv_ptc_seq_ops);
1589}
1590
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001591static int tunables_open(struct inode *inode, struct file *file)
1592{
1593 return 0;
1594}
1595
Cliff Wickman18129242008-06-02 08:56:14 -05001596static const struct file_operations proc_uv_ptc_operations = {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001597 .open = ptc_proc_open,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001598 .read = seq_read,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001599 .write = ptc_proc_write,
Cliff Wickmanb194b122008-06-12 08:23:48 -05001600 .llseek = seq_lseek,
1601 .release = seq_release,
Cliff Wickman18129242008-06-02 08:56:14 -05001602};
1603
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001604static const struct file_operations tunables_fops = {
1605 .open = tunables_open,
1606 .read = tunables_read,
1607 .write = tunables_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001608 .llseek = default_llseek,
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001609};
1610
Cliff Wickmanb194b122008-06-12 08:23:48 -05001611static int __init uv_ptc_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05001612{
Cliff Wickmanb194b122008-06-12 08:23:48 -05001613 struct proc_dir_entry *proc_uv_ptc;
Cliff Wickman18129242008-06-02 08:56:14 -05001614
1615 if (!is_uv_system())
1616 return 0;
1617
Alexey Dobriyan10f02d112009-08-23 23:17:27 +04001618 proc_uv_ptc = proc_create(UV_PTC_BASENAME, 0444, NULL,
1619 &proc_uv_ptc_operations);
Cliff Wickman18129242008-06-02 08:56:14 -05001620 if (!proc_uv_ptc) {
1621 printk(KERN_ERR "unable to create %s proc entry\n",
1622 UV_PTC_BASENAME);
1623 return -EINVAL;
1624 }
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001625
1626 tunables_dir = debugfs_create_dir(UV_BAU_TUNABLES_DIR, NULL);
1627 if (!tunables_dir) {
1628 printk(KERN_ERR "unable to create debugfs directory %s\n",
1629 UV_BAU_TUNABLES_DIR);
1630 return -EINVAL;
1631 }
1632 tunables_file = debugfs_create_file(UV_BAU_TUNABLES_FILE, 0600,
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001633 tunables_dir, NULL, &tunables_fops);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05001634 if (!tunables_file) {
1635 printk(KERN_ERR "unable to create debugfs file %s\n",
1636 UV_BAU_TUNABLES_FILE);
1637 return -EINVAL;
1638 }
Cliff Wickman18129242008-06-02 08:56:14 -05001639 return 0;
1640}
1641
Cliff Wickmanb194b122008-06-12 08:23:48 -05001642/*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001643 * Initialize the sending side's sending buffers.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001644 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001645static void activation_descriptor_init(int node, int pnode, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001646{
1647 int i;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001648 int cpu;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001649 int uv1 = 0;
Jack Steiner6a469e42011-09-20 13:55:04 -07001650 unsigned long gpa;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001651 unsigned long m;
1652 unsigned long n;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001653 size_t dsize;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001654 struct bau_desc *bau_desc;
1655 struct bau_desc *bd2;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001656 struct uv1_bau_msg_header *uv1_hdr;
1657 struct uv2_bau_msg_header *uv2_hdr;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001658 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001659
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001660 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001661 * each bau_desc is 64 bytes; there are 8 (ITEMS_PER_DESC)
1662 * per cpu; and one per cpu on the uvhub (ADP_SZ)
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001663 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001664 dsize = sizeof(struct bau_desc) * ADP_SZ * ITEMS_PER_DESC;
1665 bau_desc = kmalloc_node(dsize, GFP_KERNEL, node);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001666 BUG_ON(!bau_desc);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001667
Jack Steiner6a469e42011-09-20 13:55:04 -07001668 gpa = uv_gpa(bau_desc);
1669 n = uv_gpa_to_gnode(gpa);
1670 m = uv_gpa_to_offset(gpa);
Cliff Wickmanda87c932012-01-16 15:17:50 -06001671 if (is_uv1_hub())
1672 uv1 = 1;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001673
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001674 /* the 14-bit pnode */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001675 write_mmr_descriptor_base(pnode, (n << UV_DESC_PSHIFT | m));
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001676 /*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001677 * Initializing all 8 (ITEMS_PER_DESC) descriptors for each
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001678 * cpu even though we only use the first one; one descriptor can
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001679 * describe a broadcast to 256 uv hubs.
Cliff Wickman0e2595c2009-05-20 08:10:57 -05001680 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001681 for (i = 0, bd2 = bau_desc; i < (ADP_SZ * ITEMS_PER_DESC); i++, bd2++) {
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001682 memset(bd2, 0, sizeof(struct bau_desc));
Cliff Wickmanda87c932012-01-16 15:17:50 -06001683 if (uv1) {
1684 uv1_hdr = &bd2->header.uv1_hdr;
1685 uv1_hdr->swack_flag = 1;
1686 /*
1687 * The base_dest_nasid set in the message header
1688 * is the nasid of the first uvhub in the partition.
1689 * The bit map will indicate destination pnode numbers
1690 * relative to that base. They may not be consecutive
1691 * if nasid striding is being used.
1692 */
1693 uv1_hdr->base_dest_nasid =
1694 UV_PNODE_TO_NASID(base_pnode);
1695 uv1_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1696 uv1_hdr->command = UV_NET_ENDPOINT_INTD;
1697 uv1_hdr->int_both = 1;
1698 /*
1699 * all others need to be set to zero:
1700 * fairness chaining multilevel count replied_to
1701 */
1702 } else {
1703 uv2_hdr = &bd2->header.uv2_hdr;
1704 uv2_hdr->swack_flag = 1;
1705 uv2_hdr->base_dest_nasid =
1706 UV_PNODE_TO_NASID(base_pnode);
1707 uv2_hdr->dest_subnodeid = UV_LB_SUBNODEID;
1708 uv2_hdr->command = UV_NET_ENDPOINT_INTD;
1709 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001710 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001711 for_each_present_cpu(cpu) {
1712 if (pnode != uv_blade_to_pnode(uv_cpu_to_blade_id(cpu)))
1713 continue;
1714 bcp = &per_cpu(bau_control, cpu);
1715 bcp->descriptor_base = bau_desc;
1716 }
Cliff Wickmanb194b122008-06-12 08:23:48 -05001717}
1718
1719/*
1720 * initialize the destination side's receiving buffers
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001721 * entered for each uvhub in the partition
1722 * - node is first node (kernel memory notion) on the uvhub
1723 * - pnode is the uvhub's physical identifier
Cliff Wickmanb194b122008-06-12 08:23:48 -05001724 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001725static void pq_init(int node, int pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001726{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001727 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001728 size_t plsize;
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001729 char *cp;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001730 void *vp;
1731 unsigned long pn;
1732 unsigned long first;
1733 unsigned long pn_first;
1734 unsigned long last;
1735 struct bau_pq_entry *pqp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001736 struct bau_control *bcp;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001737
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001738 plsize = (DEST_Q_SIZE + 1) * sizeof(struct bau_pq_entry);
1739 vp = kmalloc_node(plsize, GFP_KERNEL, node);
1740 pqp = (struct bau_pq_entry *)vp;
Ingo Molnardc163a42008-06-18 14:15:43 +02001741 BUG_ON(!pqp);
Ingo Molnarb4c286e2008-06-18 14:28:19 +02001742
Cliff Wickmanb194b122008-06-12 08:23:48 -05001743 cp = (char *)pqp + 31;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001744 pqp = (struct bau_pq_entry *)(((unsigned long)cp >> 5) << 5);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001745
1746 for_each_present_cpu(cpu) {
1747 if (pnode != uv_cpu_to_pnode(cpu))
1748 continue;
1749 /* for every cpu on this pnode: */
1750 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001751 bcp->queue_first = pqp;
1752 bcp->bau_msg_head = pqp;
1753 bcp->queue_last = pqp + (DEST_Q_SIZE - 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001754 }
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001755 /*
Jack Steiner6a469e42011-09-20 13:55:04 -07001756 * need the gnode of where the memory was really allocated
Cliff Wickman4ea3c512009-04-16 07:53:09 -05001757 */
Jack Steiner6a469e42011-09-20 13:55:04 -07001758 pn = uv_gpa_to_gnode(uv_gpa(pqp));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001759 first = uv_physnodeaddr(pqp);
1760 pn_first = ((unsigned long)pn << UV_PAYLOADQ_PNODE_SHIFT) | first;
1761 last = uv_physnodeaddr(pqp + (DEST_Q_SIZE - 1));
1762 write_mmr_payload_first(pnode, pn_first);
1763 write_mmr_payload_tail(pnode, first);
1764 write_mmr_payload_last(pnode, last);
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001765 write_gmmr_sw_ack(pnode, 0xffffUL);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001766
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001767 /* in effect, all msg_type's are set to MSG_NOOP */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001768 memset(pqp, 0, sizeof(struct bau_pq_entry) * DEST_Q_SIZE);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001769}
1770
1771/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001772 * Initialization of each UV hub's structures
Cliff Wickmanb194b122008-06-12 08:23:48 -05001773 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001774static void __init init_uvhub(int uvhub, int vector, int base_pnode)
Cliff Wickmanb194b122008-06-12 08:23:48 -05001775{
Cliff Wickman9674f352009-04-03 08:34:05 -05001776 int node;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001777 int pnode;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001778 unsigned long apicid;
Cliff Wickmanb194b122008-06-12 08:23:48 -05001779
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001780 node = uvhub_to_first_node(uvhub);
1781 pnode = uv_blade_to_pnode(uvhub);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001782
1783 activation_descriptor_init(node, pnode, base_pnode);
1784
1785 pq_init(node, pnode);
Cliff Wickmanb194b122008-06-12 08:23:48 -05001786 /*
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001787 * The below initialization can't be in firmware because the
1788 * messaging IRQ will be determined by the OS.
Cliff Wickmanb194b122008-06-12 08:23:48 -05001789 */
Dimitri Sivanich8191c9f2010-11-16 16:23:52 -06001790 apicid = uvhub_to_first_apicid(uvhub) | uv_apicid_hibits;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001791 write_mmr_data_config(pnode, ((apicid << 32) | vector));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001792}
1793
1794/*
Cliff Wickman12a66112010-06-02 16:22:01 -05001795 * We will set BAU_MISC_CONTROL with a timeout period.
1796 * But the BIOS has set UVH_AGING_PRESCALE_SEL and UVH_TRANSACTION_TIMEOUT.
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001797 * So the destination timeout period has to be calculated from them.
Cliff Wickman12a66112010-06-02 16:22:01 -05001798 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001799static int calculate_destination_timeout(void)
Cliff Wickman12a66112010-06-02 16:22:01 -05001800{
1801 unsigned long mmr_image;
1802 int mult1;
1803 int mult2;
1804 int index;
1805 int base;
1806 int ret;
1807 unsigned long ts_ns;
1808
Jack Steiner2a919592011-05-11 12:50:28 -05001809 if (is_uv1_hub()) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001810 mult1 = SOFTACK_TIMEOUT_PERIOD & BAU_MISC_CONTROL_MULT_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001811 mmr_image = uv_read_local_mmr(UVH_AGING_PRESCALE_SEL);
1812 index = (mmr_image >> BAU_URGENCY_7_SHIFT) & BAU_URGENCY_7_MASK;
1813 mmr_image = uv_read_local_mmr(UVH_TRANSACTION_TIMEOUT);
1814 mult2 = (mmr_image >> BAU_TRANS_SHIFT) & BAU_TRANS_MASK;
1815 base = timeout_base_ns[index];
1816 ts_ns = base * mult1 * mult2;
1817 ret = ts_ns / 1000;
1818 } else {
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001819 /* 4 bits 0/1 for 10/80us base, 3 bits of multiplier */
1820 mmr_image = uv_read_local_mmr(UVH_LB_BAU_MISC_CONTROL);
Jack Steiner2a919592011-05-11 12:50:28 -05001821 mmr_image = (mmr_image & UV_SA_MASK) >> UV_SA_SHFT;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001822 if (mmr_image & (1L << UV2_ACK_UNITS_SHFT))
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001823 base = 80;
Jack Steiner2a919592011-05-11 12:50:28 -05001824 else
Cliff Wickmand059f9f2012-01-16 15:18:48 -06001825 base = 10;
1826 mult1 = mmr_image & UV2_ACK_MASK;
Jack Steiner2a919592011-05-11 12:50:28 -05001827 ret = mult1 * base;
1828 }
Cliff Wickman12a66112010-06-02 16:22:01 -05001829 return ret;
1830}
1831
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001832static void __init init_per_cpu_tunables(void)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001833{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001834 int cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001835 struct bau_control *bcp;
1836
1837 for_each_present_cpu(cpu) {
1838 bcp = &per_cpu(bau_control, cpu);
1839 bcp->baudisabled = 0;
1840 bcp->statp = &per_cpu(ptcstats, cpu);
1841 /* time interval to catch a hardware stay-busy bug */
1842 bcp->timeout_interval = usec_2_cycles(2*timeout_us);
1843 bcp->max_concurr = max_concurr;
1844 bcp->max_concurr_const = max_concurr;
1845 bcp->plugged_delay = plugged_delay;
1846 bcp->plugsb4reset = plugsb4reset;
1847 bcp->timeoutsb4reset = timeoutsb4reset;
1848 bcp->ipi_reset_limit = ipi_reset_limit;
1849 bcp->complete_threshold = complete_threshold;
1850 bcp->cong_response_us = congested_respns_us;
1851 bcp->cong_reps = congested_reps;
1852 bcp->cong_period = congested_period;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001853 bcp->clocks_per_100_usec = usec_2_cycles(100);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001854 }
1855}
1856
1857/*
1858 * Scan all cpus to collect blade and socket summaries.
1859 */
1860static int __init get_cpu_topology(int base_pnode,
1861 struct uvhub_desc *uvhub_descs,
1862 unsigned char *uvhub_mask)
1863{
1864 int cpu;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001865 int pnode;
1866 int uvhub;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001867 int socket;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001868 struct bau_control *bcp;
1869 struct uvhub_desc *bdp;
1870 struct socket_desc *sdp;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001871
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001872 for_each_present_cpu(cpu) {
1873 bcp = &per_cpu(bau_control, cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001874
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001875 memset(bcp, 0, sizeof(struct bau_control));
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001876
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001877 pnode = uv_cpu_hub_info(cpu)->pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001878 if ((pnode - base_pnode) >= UV_DISTRIBUTION_SIZE) {
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001879 printk(KERN_EMERG
1880 "cpu %d pnode %d-%d beyond %d; BAU disabled\n",
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001881 cpu, pnode, base_pnode, UV_DISTRIBUTION_SIZE);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001882 return 1;
1883 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001884
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001885 bcp->osnode = cpu_to_node(cpu);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001886 bcp->partition_base_pnode = base_pnode;
1887
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001888 uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05001889 *(uvhub_mask + (uvhub/8)) |= (1 << (uvhub%8));
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001890 bdp = &uvhub_descs[uvhub];
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001891
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001892 bdp->num_cpus++;
1893 bdp->uvhub = uvhub;
1894 bdp->pnode = pnode;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001895
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001896 /* kludge: 'assuming' one node per socket, and assuming that
1897 disabling a socket just leaves a gap in node numbers */
Cliff Wickman77ed23f2011-05-10 08:26:43 -05001898 socket = bcp->osnode & 1;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05001899 bdp->socket_mask |= (1 << socket);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001900 sdp = &bdp->socket[socket];
1901 sdp->cpu_number[sdp->num_cpus] = cpu;
1902 sdp->num_cpus++;
Cliff Wickmancfa60912011-01-03 12:03:53 -06001903 if (sdp->num_cpus > MAX_CPUS_PER_SOCKET) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001904 printk(KERN_EMERG "%d cpus per socket invalid\n",
1905 sdp->num_cpus);
Cliff Wickmancfa60912011-01-03 12:03:53 -06001906 return 1;
1907 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05001908 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001909 return 0;
1910}
1911
1912/*
1913 * Each socket is to get a local array of pnodes/hubs.
1914 */
1915static void make_per_cpu_thp(struct bau_control *smaster)
1916{
1917 int cpu;
1918 size_t hpsz = sizeof(struct hub_and_pnode) * num_possible_cpus();
1919
1920 smaster->thp = kmalloc_node(hpsz, GFP_KERNEL, smaster->osnode);
1921 memset(smaster->thp, 0, hpsz);
1922 for_each_present_cpu(cpu) {
1923 smaster->thp[cpu].pnode = uv_cpu_hub_info(cpu)->pnode;
1924 smaster->thp[cpu].uvhub = uv_cpu_hub_info(cpu)->numa_blade_id;
1925 }
1926}
1927
1928/*
cpw@sgi.com442d3922011-06-21 07:21:31 -05001929 * Each uvhub is to get a local cpumask.
1930 */
1931static void make_per_hub_cpumask(struct bau_control *hmaster)
1932{
1933 int sz = sizeof(cpumask_t);
1934
1935 hmaster->cpumask = kzalloc_node(sz, GFP_KERNEL, hmaster->osnode);
1936}
1937
1938/*
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001939 * Initialize all the per_cpu information for the cpu's on a given socket,
1940 * given what has been gathered into the socket_desc struct.
1941 * And reports the chosen hub and socket masters back to the caller.
1942 */
1943static int scan_sock(struct socket_desc *sdp, struct uvhub_desc *bdp,
1944 struct bau_control **smasterp,
1945 struct bau_control **hmasterp)
1946{
1947 int i;
1948 int cpu;
1949 struct bau_control *bcp;
1950
1951 for (i = 0; i < sdp->num_cpus; i++) {
1952 cpu = sdp->cpu_number[i];
1953 bcp = &per_cpu(bau_control, cpu);
1954 bcp->cpu = cpu;
1955 if (i == 0) {
1956 *smasterp = bcp;
1957 if (!(*hmasterp))
1958 *hmasterp = bcp;
1959 }
1960 bcp->cpus_in_uvhub = bdp->num_cpus;
1961 bcp->cpus_in_socket = sdp->num_cpus;
1962 bcp->socket_master = *smasterp;
1963 bcp->uvhub = bdp->uvhub;
Cliff Wickmanda87c932012-01-16 15:17:50 -06001964 if (is_uv1_hub())
1965 bcp->uvhub_version = 1;
1966 else if (is_uv2_hub())
1967 bcp->uvhub_version = 2;
1968 else {
1969 printk(KERN_EMERG "uvhub version not 1 or 2\n");
1970 return 1;
1971 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001972 bcp->uvhub_master = *hmasterp;
1973 bcp->uvhub_cpu = uv_cpu_hub_info(cpu)->blade_processor_id;
Cliff Wickmanc5d35d32012-01-16 15:19:47 -06001974 bcp->using_desc = bcp->uvhub_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001975 if (bcp->uvhub_cpu >= MAX_CPUS_PER_UVHUB) {
1976 printk(KERN_EMERG "%d cpus per uvhub invalid\n",
1977 bcp->uvhub_cpu);
1978 return 1;
1979 }
1980 }
1981 return 0;
1982}
1983
1984/*
1985 * Summarize the blade and socket topology into the per_cpu structures.
1986 */
1987static int __init summarize_uvhub_sockets(int nuvhubs,
1988 struct uvhub_desc *uvhub_descs,
1989 unsigned char *uvhub_mask)
1990{
1991 int socket;
1992 int uvhub;
1993 unsigned short socket_mask;
1994
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05001995 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05001996 struct uvhub_desc *bdp;
1997 struct bau_control *smaster = NULL;
1998 struct bau_control *hmaster = NULL;
1999
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002000 if (!(*(uvhub_mask + (uvhub/8)) & (1 << (uvhub%8))))
2001 continue;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002002
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002003 bdp = &uvhub_descs[uvhub];
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002004 socket_mask = bdp->socket_mask;
2005 socket = 0;
2006 while (socket_mask) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002007 struct socket_desc *sdp;
2008 if ((socket_mask & 1)) {
2009 sdp = &bdp->socket[socket];
2010 if (scan_sock(sdp, bdp, &smaster, &hmaster))
Cliff Wickmancfa60912011-01-03 12:03:53 -06002011 return 1;
cpw@sgi.com9c9153d2011-06-21 07:21:28 -05002012 make_per_cpu_thp(smaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002013 }
2014 socket++;
Cliff Wickmana8328ee2010-06-02 16:22:02 -05002015 socket_mask = (socket_mask >> 1);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002016 }
cpw@sgi.com442d3922011-06-21 07:21:31 -05002017 make_per_hub_cpumask(hmaster);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002018 }
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002019 return 0;
2020}
2021
2022/*
2023 * initialize the bau_control structure for each cpu
2024 */
2025static int __init init_per_cpu(int nuvhubs, int base_part_pnode)
2026{
2027 unsigned char *uvhub_mask;
2028 void *vp;
2029 struct uvhub_desc *uvhub_descs;
2030
2031 timeout_us = calculate_destination_timeout();
2032
2033 vp = kmalloc(nuvhubs * sizeof(struct uvhub_desc), GFP_KERNEL);
2034 uvhub_descs = (struct uvhub_desc *)vp;
2035 memset(uvhub_descs, 0, nuvhubs * sizeof(struct uvhub_desc));
2036 uvhub_mask = kzalloc((nuvhubs+7)/8, GFP_KERNEL);
2037
2038 if (get_cpu_topology(base_part_pnode, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002039 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002040
2041 if (summarize_uvhub_sockets(nuvhubs, uvhub_descs, uvhub_mask))
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002042 goto fail;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002043
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002044 kfree(uvhub_descs);
Cliff Wickmanc4026cf2010-07-30 14:10:55 -05002045 kfree(uvhub_mask);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002046 init_per_cpu_tunables();
Cliff Wickmancfa60912011-01-03 12:03:53 -06002047 return 0;
cpw@sgi.combbd270e2011-06-21 07:21:32 -05002048
2049fail:
2050 kfree(uvhub_descs);
2051 kfree(uvhub_mask);
2052 return 1;
Cliff Wickmanb194b122008-06-12 08:23:48 -05002053}
Cliff Wickman18129242008-06-02 08:56:14 -05002054
2055/*
2056 * Initialization of BAU-related structures
2057 */
Cliff Wickmanb194b122008-06-12 08:23:48 -05002058static int __init uv_bau_init(void)
Cliff Wickman18129242008-06-02 08:56:14 -05002059{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002060 int uvhub;
2061 int pnode;
2062 int nuvhubs;
Rusty Russell2c74d662009-03-18 08:22:30 +10302063 int cur_cpu;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002064 int cpus;
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002065 int vector;
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002066 cpumask_var_t *mask;
Cliff Wickman18129242008-06-02 08:56:14 -05002067
2068 if (!is_uv_system())
2069 return 0;
2070
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002071 if (nobau)
2072 return 0;
2073
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002074 for_each_possible_cpu(cur_cpu) {
2075 mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
2076 zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
2077 }
Rusty Russell76ba0ec2009-03-13 14:49:57 +10302078
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002079 nuvhubs = uv_num_possible_blades();
Cliff Wickman50fb55a2010-06-02 16:22:02 -05002080 spin_lock_init(&disable_lock);
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002081 congested_cycles = usec_2_cycles(congested_respns_us);
Cliff Wickman9674f352009-04-03 08:34:05 -05002082
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002083 uv_base_pnode = 0x7fffffff;
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002084 for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002085 cpus = uv_blade_nr_possible_cpus(uvhub);
2086 if (cpus && (uv_blade_to_pnode(uvhub) < uv_base_pnode))
2087 uv_base_pnode = uv_blade_to_pnode(uvhub);
Cliff Wickman77ed23f2011-05-10 08:26:43 -05002088 }
2089
Cliff Wickmand059f9f2012-01-16 15:18:48 -06002090 enable_timeouts();
2091
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002092 if (init_per_cpu(nuvhubs, uv_base_pnode)) {
Cliff Wickmancfa60912011-01-03 12:03:53 -06002093 nobau = 1;
2094 return 0;
2095 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002096
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002097 vector = UV_BAU_MESSAGE;
2098 for_each_possible_blade(uvhub)
2099 if (uv_blade_nr_possible_cpus(uvhub))
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002100 init_uvhub(uvhub, vector, uv_base_pnode);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002101
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002102 alloc_intr_gate(vector, uv_bau_message_intr1);
2103
2104 for_each_possible_blade(uvhub) {
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002105 if (uv_blade_nr_possible_cpus(uvhub)) {
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002106 unsigned long val;
2107 unsigned long mmr;
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002108 pnode = uv_blade_to_pnode(uvhub);
2109 /* INIT the bau */
Cliff Wickmanf073cc82011-05-24 13:07:36 -05002110 val = 1L << 63;
2111 write_gmmr_activation(pnode, val);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002112 mmr = 1; /* should be 1 to broadcast to both sockets */
Cliff Wickmanda87c932012-01-16 15:17:50 -06002113 if (!is_uv1_hub())
2114 write_mmr_data_broadcast(pnode, mmr);
Cliff Wickman93a7ca02010-07-16 10:11:21 -05002115 }
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002116 }
Ingo Molnarb4c286e2008-06-18 14:28:19 +02002117
Cliff Wickman18129242008-06-02 08:56:14 -05002118 return 0;
2119}
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -05002120core_initcall(uv_bau_init);
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -05002121fs_initcall(uv_ptc_init);