blob: c568ccca6e0ef4c0ec549ce6ba7283a0f03b68c4 [file] [log] [blame]
Cliff Wickman18129242008-06-02 08:56:14 -05001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * SGI UV Broadcast Assist Unit definitions
7 *
Cliff Wickmanf073cc82011-05-24 13:07:36 -05008 * Copyright (C) 2008-2011 Silicon Graphics, Inc. All rights reserved.
Cliff Wickman18129242008-06-02 08:56:14 -05009 */
10
H. Peter Anvin05e4d312008-10-23 00:01:39 -070011#ifndef _ASM_X86_UV_UV_BAU_H
12#define _ASM_X86_UV_UV_BAU_H
Cliff Wickman18129242008-06-02 08:56:14 -050013
14#include <linux/bitmap.h>
15#define BITSPERBYTE 8
16
Cliff Wickman18129242008-06-02 08:56:14 -050017/*
Cliff Wickmanb194b1202008-06-12 08:23:48 -050018 * Broadcast Assist Unit messaging structures
19 *
Cliff Wickman18129242008-06-02 08:56:14 -050020 * Selective Broadcast activations are induced by software action
21 * specifying a particular 8-descriptor "set" via a 6-bit index written
22 * to an MMR.
23 * Thus there are 64 unique 512-byte sets of SB descriptors - one set for
24 * each 6-bit index value. These descriptor sets are mapped in sequence
25 * starting with set 0 located at the address specified in the
26 * BAU_SB_DESCRIPTOR_BASE register, set 1 is located at BASE + 512,
27 * set 2 is at BASE + 2*512, set 3 at BASE + 3*512, and so on.
28 *
Cliff Wickmancfa60912011-01-03 12:03:53 -060029 * We will use one set for sending BAU messages from each of the
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050030 * cpu's on the uvhub.
Cliff Wickman18129242008-06-02 08:56:14 -050031 *
32 * TLB shootdown will use the first of the 8 descriptors of each set.
33 * Each of the descriptors is 64 bytes in size (8*64 = 512 bytes in a set).
34 */
35
Cliff Wickmancfa60912011-01-03 12:03:53 -060036#define MAX_CPUS_PER_UVHUB 64
37#define MAX_CPUS_PER_SOCKET 32
Cliff Wickmanf073cc82011-05-24 13:07:36 -050038#define ADP_SZ 64 /* hardware-provided max. */
39#define UV_CPUS_PER_AS 32 /* hardware-provided max. */
40#define ITEMS_PER_DESC 8
Cliff Wickman50fb55a2010-06-02 16:22:02 -050041/* the 'throttle' to prevent the hardware stay-busy bug */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -050042#define MAX_BAU_CONCURRENT 3
Cliff Wickmanb194b1202008-06-12 08:23:48 -050043#define UV_ACT_STATUS_MASK 0x3
44#define UV_ACT_STATUS_SIZE 2
Cliff Wickmanb194b1202008-06-12 08:23:48 -050045#define UV_DISTRIBUTION_SIZE 256
46#define UV_SW_ACK_NPENDING 8
Jack Steiner2a919592011-05-11 12:50:28 -050047#define UV1_NET_ENDPOINT_INTD 0x38
48#define UV2_NET_ENDPOINT_INTD 0x28
49#define UV_NET_ENDPOINT_INTD (is_uv1_hub() ? \
50 UV1_NET_ENDPOINT_INTD : UV2_NET_ENDPOINT_INTD)
Cliff Wickmanf073cc82011-05-24 13:07:36 -050051#define UV_DESC_PSHIFT 49
Cliff Wickmanb194b1202008-06-12 08:23:48 -050052#define UV_PAYLOADQ_PNODE_SHIFT 49
53#define UV_PTC_BASENAME "sgi_uv/ptc_statistics"
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -050054#define UV_BAU_BASENAME "sgi_uv/bau_tunables"
55#define UV_BAU_TUNABLES_DIR "sgi_uv"
56#define UV_BAU_TUNABLES_FILE "bau_tunables"
57#define WHITESPACE " \t\n"
Cliff Wickmanb194b1202008-06-12 08:23:48 -050058#define uv_physnodeaddr(x) ((__pa((unsigned long)(x)) & uv_mmask))
Cliff Wickmanf073cc82011-05-24 13:07:36 -050059#define cpubit_isset(cpu, bau_local_cpumask) \
60 test_bit((cpu), (bau_local_cpumask).bits)
Jack Steiner2a919592011-05-11 12:50:28 -050061
Cliff Wickman12a66112010-06-02 16:22:01 -050062/* [19:16] SOFT_ACK timeout period 19: 1 is urgency 7 17:16 1 is multiplier */
Jack Steiner2a919592011-05-11 12:50:28 -050063/*
64 * UV2: Bit 19 selects between
65 * (0): 10 microsecond timebase and
66 * (1): 80 microseconds
67 * we're using 655us, similar to UV1: 65 units of 10us
68 */
69#define UV1_INTD_SOFT_ACK_TIMEOUT_PERIOD (9UL)
cpw@sgi.comae90c232011-06-21 07:21:33 -050070#define UV2_INTD_SOFT_ACK_TIMEOUT_PERIOD (15UL)
Jack Steiner2a919592011-05-11 12:50:28 -050071
72#define UV_INTD_SOFT_ACK_TIMEOUT_PERIOD (is_uv1_hub() ? \
73 UV1_INTD_SOFT_ACK_TIMEOUT_PERIOD : \
74 UV2_INTD_SOFT_ACK_TIMEOUT_PERIOD)
75
Cliff Wickmanf073cc82011-05-24 13:07:36 -050076#define BAU_MISC_CONTROL_MULT_MASK 3
Cliff Wickman12a66112010-06-02 16:22:01 -050077
Cliff Wickmanf073cc82011-05-24 13:07:36 -050078#define UVH_AGING_PRESCALE_SEL 0x000000b000UL
Cliff Wickman12a66112010-06-02 16:22:01 -050079/* [30:28] URGENCY_7 an index into a table of times */
Cliff Wickmanf073cc82011-05-24 13:07:36 -050080#define BAU_URGENCY_7_SHIFT 28
81#define BAU_URGENCY_7_MASK 7
Cliff Wickman12a66112010-06-02 16:22:01 -050082
Cliff Wickmanf073cc82011-05-24 13:07:36 -050083#define UVH_TRANSACTION_TIMEOUT 0x000000b200UL
Cliff Wickman12a66112010-06-02 16:22:01 -050084/* [45:40] BAU - BAU transaction timeout select - a multiplier */
Cliff Wickmanf073cc82011-05-24 13:07:36 -050085#define BAU_TRANS_SHIFT 40
86#define BAU_TRANS_MASK 0x3f
87
88/*
89 * shorten some awkward names
90 */
91#define AS_PUSH_SHIFT UVH_LB_BAU_SB_ACTIVATION_CONTROL_PUSH_SHFT
92#define SOFTACK_MSHIFT UVH_LB_BAU_MISC_CONTROL_ENABLE_INTD_SOFT_ACK_MODE_SHFT
93#define SOFTACK_PSHIFT UVH_LB_BAU_MISC_CONTROL_INTD_SOFT_ACK_TIMEOUT_PERIOD_SHFT
94#define SOFTACK_TIMEOUT_PERIOD UV_INTD_SOFT_ACK_TIMEOUT_PERIOD
95#define write_gmmr uv_write_global_mmr64
96#define write_lmmr uv_write_local_mmr
97#define read_lmmr uv_read_local_mmr
98#define read_gmmr uv_read_global_mmr64
Cliff Wickman18129242008-06-02 08:56:14 -050099
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500100/*
101 * bits in UVH_LB_BAU_SB_ACTIVATION_STATUS_0/1
102 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500103#define DS_IDLE 0
104#define DS_ACTIVE 1
105#define DS_DESTINATION_TIMEOUT 2
106#define DS_SOURCE_TIMEOUT 3
Jack Steiner2a919592011-05-11 12:50:28 -0500107/*
108 * bits put together from HRP_LB_BAU_SB_ACTIVATION_STATUS_0/1/2
cpw@sgi.comae90c232011-06-21 07:21:33 -0500109 * values 1 and 3 will not occur
110 * Decoded meaning ERROR BUSY AUX ERR
111 * ------------------------------- ---- ----- -------
112 * IDLE 0 0 0
113 * BUSY (active) 0 1 0
114 * SW Ack Timeout (destination) 1 0 0
115 * SW Ack INTD rejected (strong NACK) 1 0 1
116 * Source Side Time Out Detected 1 1 0
117 * Destination Side PUT Failed 1 1 1
Jack Steiner2a919592011-05-11 12:50:28 -0500118 */
119#define UV2H_DESC_IDLE 0
cpw@sgi.comae90c232011-06-21 07:21:33 -0500120#define UV2H_DESC_BUSY 2
121#define UV2H_DESC_DEST_TIMEOUT 4
122#define UV2H_DESC_DEST_STRONG_NACK 5
Jack Steiner2a919592011-05-11 12:50:28 -0500123#define UV2H_DESC_SOURCE_TIMEOUT 6
124#define UV2H_DESC_DEST_PUT_ERR 7
Cliff Wickman18129242008-06-02 08:56:14 -0500125
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500126/*
127 * delay for 'plugged' timeout retries, in microseconds
128 */
129#define PLUGGED_DELAY 10
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500130
131/*
132 * threshholds at which to use IPI to free resources
133 */
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500134/* after this # consecutive 'plugged' timeouts, use IPI to release resources */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500135#define PLUGSB4RESET 100
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500136/* after this many consecutive timeouts, use IPI to release resources */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500137#define TIMEOUTSB4RESET 1
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500138/* at this number uses of IPI to release resources, giveup the request */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500139#define IPI_RESET_LIMIT 1
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500140/* after this # consecutive successes, bump up the throttle if it was lowered */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500141#define COMPLETE_THRESHOLD 5
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500142
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500143#define UV_LB_SUBNODEID 0x10
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500144
Jack Steiner2a919592011-05-11 12:50:28 -0500145/* these two are the same for UV1 and UV2: */
146#define UV_SA_SHFT UVH_LB_BAU_MISC_CONTROL_INTD_SOFT_ACK_TIMEOUT_PERIOD_SHFT
147#define UV_SA_MASK UVH_LB_BAU_MISC_CONTROL_INTD_SOFT_ACK_TIMEOUT_PERIOD_MASK
148/* 4 bits of software ack period */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500149#define UV2_ACK_MASK 0x7UL
150#define UV2_ACK_UNITS_SHFT 3
Jack Steiner2a919592011-05-11 12:50:28 -0500151#define UV2_LEG_SHFT UV2H_LB_BAU_MISC_CONTROL_USE_LEGACY_DESCRIPTOR_FORMATS_SHFT
152#define UV2_EXT_SHFT UV2H_LB_BAU_MISC_CONTROL_ENABLE_EXTENDED_SB_STATUS_SHFT
153
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500154/*
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500155 * number of entries in the destination side payload queue
156 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500157#define DEST_Q_SIZE 20
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500158/*
159 * number of destination side software ack resources
160 */
Ingo Molnardc163a42008-06-18 14:15:43 +0200161#define DEST_NUM_RESOURCES 8
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500162/*
163 * completion statuses for sending a TLB flush message
164 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500165#define FLUSH_RETRY_PLUGGED 1
166#define FLUSH_RETRY_TIMEOUT 2
167#define FLUSH_GIVEUP 3
168#define FLUSH_COMPLETE 4
Cliff Wickman18129242008-06-02 08:56:14 -0500169
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500170/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500171 * tuning the action when the numalink network is extremely delayed
172 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500173#define CONGESTED_RESPONSE_US 1000 /* 'long' response time, in
174 microseconds */
175#define CONGESTED_REPS 10 /* long delays averaged over
176 this many broadcasts */
177#define CONGESTED_PERIOD 30 /* time for the bau to be
178 disabled, in seconds */
179/* see msg_type: */
180#define MSG_NOOP 0
181#define MSG_REGULAR 1
182#define MSG_RETRY 2
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500183
184/*
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500185 * Distribution: 32 bytes (256 bits) (bytes 0-0x1f of descriptor)
186 * If the 'multilevel' flag in the header portion of the descriptor
Cliff Wickman18129242008-06-02 08:56:14 -0500187 * has been set to 0, then endpoint multi-unicast mode is selected.
188 * The distribution specification (32 bytes) is interpreted as a 256-bit
189 * distribution vector. Adjacent bits correspond to consecutive even numbered
190 * nodeIDs. The result of adding the index of a given bit to the 15-bit
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500191 * 'base_dest_nasid' field of the header corresponds to the
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500192 * destination nodeID associated with that specified bit.
193 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500194struct pnmask {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500195 unsigned long bits[BITS_TO_LONGS(UV_DISTRIBUTION_SIZE)];
Cliff Wickman18129242008-06-02 08:56:14 -0500196};
197
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500198/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500199 * mask of cpu's on a uvhub
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500200 * (during initialization we need to check that unsigned long has
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500201 * enough bits for max. cpu's per uvhub)
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500202 */
Cliff Wickman18129242008-06-02 08:56:14 -0500203struct bau_local_cpumask {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500204 unsigned long bits;
Cliff Wickman18129242008-06-02 08:56:14 -0500205};
206
207/*
208 * Payload: 16 bytes (128 bits) (bytes 0x20-0x2f of descriptor)
209 * only 12 bytes (96 bits) of the payload area are usable.
210 * An additional 3 bytes (bits 27:4) of the header address are carried
211 * to the next bytes of the destination payload queue.
212 * And an additional 2 bytes of the header Suppl_A field are also
213 * carried to the destination payload queue.
214 * But the first byte of the Suppl_A becomes bits 127:120 (the 16th byte)
215 * of the destination payload queue, which is written by the hardware
216 * with the s/w ack resource bit vector.
217 * [ effective message contents (16 bytes (128 bits) maximum), not counting
218 * the s/w ack bit vector ]
219 */
220
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500221/*
222 * The payload is software-defined for INTD transactions
223 */
Cliff Wickman18129242008-06-02 08:56:14 -0500224struct bau_msg_payload {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500225 unsigned long address; /* signifies a page or all
226 TLB's of the cpu */
Cliff Wickman18129242008-06-02 08:56:14 -0500227 /* 64 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500228 unsigned short sending_cpu; /* filled in by sender */
Cliff Wickman18129242008-06-02 08:56:14 -0500229 /* 16 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500230 unsigned short acknowledge_count; /* filled in by destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500231 /* 16 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500232 unsigned int reserved1:32; /* not usable */
Cliff Wickman18129242008-06-02 08:56:14 -0500233};
234
235
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500236/*
237 * Message header: 16 bytes (128 bits) (bytes 0x30-0x3f of descriptor)
238 * see table 4.2.3.0.1 in broacast_assist spec.
239 */
Cliff Wickman18129242008-06-02 08:56:14 -0500240struct bau_msg_header {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500241 unsigned int dest_subnodeid:6; /* must be 0x10, for the LB */
Cliff Wickman18129242008-06-02 08:56:14 -0500242 /* bits 5:0 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500243 unsigned int base_dest_nasid:15; /* nasid of the first bit */
244 /* bits 20:6 */ /* in uvhub map */
245 unsigned int command:8; /* message type */
Cliff Wickman18129242008-06-02 08:56:14 -0500246 /* bits 28:21 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500247 /* 0x38: SN3net EndPoint Message */
248 unsigned int rsvd_1:3; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500249 /* bits 31:29 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500250 /* int will align on 32 bits */
251 unsigned int rsvd_2:9; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500252 /* bits 40:32 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500253 /* Suppl_A is 56-41 */
254 unsigned int sequence:16; /* message sequence number */
255 /* bits 56:41 */ /* becomes bytes 16-17 of msg */
256 /* Address field (96:57) is
257 never used as an address
258 (these are address bits
259 42:3) */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500260
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500261 unsigned int rsvd_3:1; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500262 /* bit 57 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500263 /* address bits 27:4 are payload */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500264 /* these next 24 (58-81) bits become bytes 12-14 of msg */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500265 /* bits 65:58 land in byte 12 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500266 unsigned int replied_to:1; /* sent as 0 by the source to
267 byte 12 */
Cliff Wickman18129242008-06-02 08:56:14 -0500268 /* bit 58 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500269 unsigned int msg_type:3; /* software type of the
270 message */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500271 /* bits 61:59 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500272 unsigned int canceled:1; /* message canceled, resource
273 is to be freed*/
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500274 /* bit 62 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500275 unsigned int payload_1a:1; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500276 /* bit 63 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500277 unsigned int payload_1b:2; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500278 /* bits 65:64 */
Cliff Wickman18129242008-06-02 08:56:14 -0500279
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500280 /* bits 73:66 land in byte 13 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500281 unsigned int payload_1ca:6; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500282 /* bits 71:66 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500283 unsigned int payload_1c:2; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500284 /* bits 73:72 */
285
286 /* bits 81:74 land in byte 14 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500287 unsigned int payload_1d:6; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500288 /* bits 79:74 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500289 unsigned int payload_1e:2; /* not currently used */
Cliff Wickman18129242008-06-02 08:56:14 -0500290 /* bits 81:80 */
291
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500292 unsigned int rsvd_4:7; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500293 /* bits 88:82 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500294 unsigned int swack_flag:1; /* software acknowledge flag */
Cliff Wickman18129242008-06-02 08:56:14 -0500295 /* bit 89 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500296 /* INTD trasactions at
297 destination are to wait for
298 software acknowledge */
299 unsigned int rsvd_5:6; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500300 /* bits 95:90 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500301 unsigned int rsvd_6:5; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500302 /* bits 100:96 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500303 unsigned int int_both:1; /* if 1, interrupt both sockets
304 on the uvhub */
Cliff Wickman18129242008-06-02 08:56:14 -0500305 /* bit 101*/
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500306 unsigned int fairness:3; /* usually zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500307 /* bits 104:102 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500308 unsigned int multilevel:1; /* multi-level multicast
309 format */
Cliff Wickman18129242008-06-02 08:56:14 -0500310 /* bit 105 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500311 /* 0 for TLB: endpoint multi-unicast messages */
312 unsigned int chaining:1; /* next descriptor is part of
313 this activation*/
Cliff Wickman18129242008-06-02 08:56:14 -0500314 /* bit 106 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500315 unsigned int rsvd_7:21; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500316 /* bits 127:107 */
317};
318
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500319/*
Ingo Molnardc163a42008-06-18 14:15:43 +0200320 * The activation descriptor:
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500321 * The format of the message to send, plus all accompanying control
322 * Should be 64 bytes
323 */
Ingo Molnardc163a42008-06-18 14:15:43 +0200324struct bau_desc {
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500325 struct pnmask distribution;
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500326 /*
327 * message template, consisting of header and payload:
328 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500329 struct bau_msg_header header;
330 struct bau_msg_payload payload;
Cliff Wickman18129242008-06-02 08:56:14 -0500331};
332/*
333 * -payload-- ---------header------
334 * bytes 0-11 bits 41-56 bits 58-81
335 * A B (2) C (3)
336 *
337 * A/B/C are moved to:
338 * A C B
339 * bytes 0-11 bytes 12-14 bytes 16-17 (byte 15 filled in by hw as vector)
340 * ------------payload queue-----------
341 */
342
343/*
344 * The payload queue on the destination side is an array of these.
345 * With BAU_MISC_CONTROL set for software acknowledge mode, the messages
346 * are 32 bytes (2 micropackets) (256 bits) in length, but contain only 17
347 * bytes of usable data, including the sw ack vector in byte 15 (bits 127:120)
348 * (12 bytes come from bau_msg_payload, 3 from payload_1, 2 from
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500349 * swack_vec and payload_2)
Cliff Wickman18129242008-06-02 08:56:14 -0500350 * "Enabling Software Acknowledgment mode (see Section 4.3.3 Software
351 * Acknowledge Processing) also selects 32 byte (17 bytes usable) payload
352 * operation."
353 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500354struct bau_pq_entry {
355 unsigned long address; /* signifies a page or all TLB's
356 of the cpu */
Cliff Wickman18129242008-06-02 08:56:14 -0500357 /* 64 bits, bytes 0-7 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500358 unsigned short sending_cpu; /* cpu that sent the message */
Cliff Wickman18129242008-06-02 08:56:14 -0500359 /* 16 bits, bytes 8-9 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500360 unsigned short acknowledge_count; /* filled in by destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500361 /* 16 bits, bytes 10-11 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500362 /* these next 3 bytes come from bits 58-81 of the message header */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500363 unsigned short replied_to:1; /* sent as 0 by the source */
364 unsigned short msg_type:3; /* software message type */
365 unsigned short canceled:1; /* sent as 0 by the source */
366 unsigned short unused1:3; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500367 /* byte 12 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500368 unsigned char unused2a; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500369 /* byte 13 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500370 unsigned char unused2; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500371 /* byte 14 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500372 unsigned char swack_vec; /* filled in by the hardware */
Cliff Wickman18129242008-06-02 08:56:14 -0500373 /* byte 15 (bits 127:120) */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500374 unsigned short sequence; /* message sequence number */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500375 /* bytes 16-17 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500376 unsigned char unused4[2]; /* not currently using bytes 18-19 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500377 /* bytes 18-19 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500378 int number_of_cpus; /* filled in at destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500379 /* 32 bits, bytes 20-23 (aligned) */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500380 unsigned char unused5[8]; /* not using */
Cliff Wickman18129242008-06-02 08:56:14 -0500381 /* bytes 24-31 */
382};
383
Cliff Wickman4faca152010-06-02 16:22:02 -0500384struct msg_desc {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500385 struct bau_pq_entry *msg;
386 int msg_slot;
387 int swack_slot;
388 struct bau_pq_entry *queue_first;
389 struct bau_pq_entry *queue_last;
Cliff Wickman4faca152010-06-02 16:22:02 -0500390};
391
392struct reset_args {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500393 int sender;
Cliff Wickman4faca152010-06-02 16:22:02 -0500394};
395
396/*
397 * This structure is allocated per_cpu for UV TLB shootdown statistics.
398 */
399struct ptc_stats {
400 /* sender statistics */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500401 unsigned long s_giveup; /* number of fall backs to
402 IPI-style flushes */
403 unsigned long s_requestor; /* number of shootdown
404 requests */
405 unsigned long s_stimeout; /* source side timeouts */
406 unsigned long s_dtimeout; /* destination side timeouts */
407 unsigned long s_time; /* time spent in sending side */
408 unsigned long s_retriesok; /* successful retries */
409 unsigned long s_ntargcpu; /* total number of cpu's
410 targeted */
411 unsigned long s_ntargself; /* times the sending cpu was
412 targeted */
413 unsigned long s_ntarglocals; /* targets of cpus on the local
414 blade */
415 unsigned long s_ntargremotes; /* targets of cpus on remote
416 blades */
417 unsigned long s_ntarglocaluvhub; /* targets of the local hub */
418 unsigned long s_ntargremoteuvhub; /* remotes hubs targeted */
419 unsigned long s_ntarguvhub; /* total number of uvhubs
420 targeted */
421 unsigned long s_ntarguvhub16; /* number of times target
422 hubs >= 16*/
423 unsigned long s_ntarguvhub8; /* number of times target
424 hubs >= 8 */
425 unsigned long s_ntarguvhub4; /* number of times target
426 hubs >= 4 */
427 unsigned long s_ntarguvhub2; /* number of times target
428 hubs >= 2 */
429 unsigned long s_ntarguvhub1; /* number of times target
430 hubs == 1 */
431 unsigned long s_resets_plug; /* ipi-style resets from plug
432 state */
433 unsigned long s_resets_timeout; /* ipi-style resets from
434 timeouts */
435 unsigned long s_busy; /* status stayed busy past
436 s/w timer */
437 unsigned long s_throttles; /* waits in throttle */
438 unsigned long s_retry_messages; /* retry broadcasts */
439 unsigned long s_bau_reenabled; /* for bau enable/disable */
440 unsigned long s_bau_disabled; /* for bau enable/disable */
Cliff Wickman4faca152010-06-02 16:22:02 -0500441 /* destination statistics */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500442 unsigned long d_alltlb; /* times all tlb's on this
443 cpu were flushed */
444 unsigned long d_onetlb; /* times just one tlb on this
445 cpu was flushed */
446 unsigned long d_multmsg; /* interrupts with multiple
447 messages */
448 unsigned long d_nomsg; /* interrupts with no message */
449 unsigned long d_time; /* time spent on destination
450 side */
451 unsigned long d_requestee; /* number of messages
452 processed */
453 unsigned long d_retries; /* number of retry messages
454 processed */
455 unsigned long d_canceled; /* number of messages canceled
456 by retries */
457 unsigned long d_nocanceled; /* retries that found nothing
458 to cancel */
459 unsigned long d_resets; /* number of ipi-style requests
460 processed */
461 unsigned long d_rcanceled; /* number of messages canceled
462 by resets */
463};
464
465struct tunables {
466 int *tunp;
467 int deflt;
Cliff Wickman4faca152010-06-02 16:22:02 -0500468};
469
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500470struct hub_and_pnode {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500471 short uvhub;
472 short pnode;
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500473};
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500474
475struct socket_desc {
476 short num_cpus;
477 short cpu_number[MAX_CPUS_PER_SOCKET];
478};
479
480struct uvhub_desc {
481 unsigned short socket_mask;
482 short num_cpus;
483 short uvhub;
484 short pnode;
485 struct socket_desc socket[2];
486};
487
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500488/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500489 * one per-cpu; to locate the software tables
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500490 */
Cliff Wickman18129242008-06-02 08:56:14 -0500491struct bau_control {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500492 struct bau_desc *descriptor_base;
493 struct bau_pq_entry *queue_first;
494 struct bau_pq_entry *queue_last;
495 struct bau_pq_entry *bau_msg_head;
496 struct bau_control *uvhub_master;
497 struct bau_control *socket_master;
498 struct ptc_stats *statp;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500499 cpumask_t *cpumask;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500500 unsigned long timeout_interval;
501 unsigned long set_bau_on_time;
502 atomic_t active_descriptor_count;
503 int plugged_tries;
504 int timeout_tries;
505 int ipi_attempts;
506 int conseccompletes;
507 int baudisabled;
508 int set_bau_off;
509 short cpu;
510 short osnode;
511 short uvhub_cpu;
512 short uvhub;
513 short cpus_in_socket;
514 short cpus_in_uvhub;
515 short partition_base_pnode;
516 unsigned short message_number;
517 unsigned short uvhub_quiesce;
518 short socket_acknowledge_count[DEST_Q_SIZE];
519 cycles_t send_message;
520 spinlock_t uvhub_lock;
521 spinlock_t queue_lock;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500522 /* tunables */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500523 int max_concurr;
524 int max_concurr_const;
525 int plugged_delay;
526 int plugsb4reset;
527 int timeoutsb4reset;
528 int ipi_reset_limit;
529 int complete_threshold;
530 int cong_response_us;
531 int cong_reps;
532 int cong_period;
533 cycles_t period_time;
534 long period_requests;
535 struct hub_and_pnode *thp;
Cliff Wickman18129242008-06-02 08:56:14 -0500536};
537
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500538static inline unsigned long read_mmr_uv2_status(void)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500539{
540 return read_lmmr(UV2H_LB_BAU_SB_ACTIVATION_STATUS_2);
541}
542
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500543static inline void write_mmr_data_broadcast(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500544{
545 write_gmmr(pnode, UVH_BAU_DATA_BROADCAST, mmr_image);
546}
547
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500548static inline void write_mmr_descriptor_base(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500549{
550 write_gmmr(pnode, UVH_LB_BAU_SB_DESCRIPTOR_BASE, mmr_image);
551}
552
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500553static inline void write_mmr_activation(unsigned long index)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500554{
555 write_lmmr(UVH_LB_BAU_SB_ACTIVATION_CONTROL, index);
556}
557
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500558static inline void write_gmmr_activation(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500559{
560 write_gmmr(pnode, UVH_LB_BAU_SB_ACTIVATION_CONTROL, mmr_image);
561}
562
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500563static inline void write_mmr_payload_first(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500564{
565 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_FIRST, mmr_image);
566}
567
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500568static inline void write_mmr_payload_tail(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500569{
570 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_TAIL, mmr_image);
571}
572
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500573static inline void write_mmr_payload_last(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500574{
575 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_LAST, mmr_image);
576}
577
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500578static inline void write_mmr_misc_control(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500579{
580 write_gmmr(pnode, UVH_LB_BAU_MISC_CONTROL, mmr_image);
581}
582
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500583static inline unsigned long read_mmr_misc_control(int pnode)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500584{
585 return read_gmmr(pnode, UVH_LB_BAU_MISC_CONTROL);
586}
587
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500588static inline void write_mmr_sw_ack(unsigned long mr)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500589{
590 uv_write_local_mmr(UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE_ALIAS, mr);
591}
592
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500593static inline unsigned long read_mmr_sw_ack(void)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500594{
595 return read_lmmr(UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE);
596}
597
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500598static inline unsigned long read_gmmr_sw_ack(int pnode)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500599{
600 return read_gmmr(pnode, UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE);
601}
602
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500603static inline void write_mmr_data_config(int pnode, unsigned long mr)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500604{
605 uv_write_global_mmr64(pnode, UVH_BAU_DATA_CONFIG, mr);
606}
607
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500608static inline int bau_uvhub_isset(int uvhub, struct pnmask *dstp)
Cliff Wickman18129242008-06-02 08:56:14 -0500609{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500610 return constant_test_bit(uvhub, &dstp->bits[0]);
Cliff Wickman18129242008-06-02 08:56:14 -0500611}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500612static inline void bau_uvhub_set(int pnode, struct pnmask *dstp)
Cliff Wickman18129242008-06-02 08:56:14 -0500613{
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500614 __set_bit(pnode, &dstp->bits[0]);
Cliff Wickman18129242008-06-02 08:56:14 -0500615}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500616static inline void bau_uvhubs_clear(struct pnmask *dstp,
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500617 int nbits)
Cliff Wickman18129242008-06-02 08:56:14 -0500618{
619 bitmap_zero(&dstp->bits[0], nbits);
620}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500621static inline int bau_uvhub_weight(struct pnmask *dstp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500622{
623 return bitmap_weight((unsigned long *)&dstp->bits[0],
624 UV_DISTRIBUTION_SIZE);
625}
Cliff Wickman18129242008-06-02 08:56:14 -0500626
627static inline void bau_cpubits_clear(struct bau_local_cpumask *dstp, int nbits)
628{
629 bitmap_zero(&dstp->bits, nbits);
630}
631
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500632extern void uv_bau_message_intr1(void);
633extern void uv_bau_timeout_intr1(void);
Cliff Wickman18129242008-06-02 08:56:14 -0500634
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500635struct atomic_short {
636 short counter;
637};
638
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500639/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500640 * atomic_read_short - read a short atomic variable
641 * @v: pointer of type atomic_short
642 *
643 * Atomically reads the value of @v.
644 */
645static inline int atomic_read_short(const struct atomic_short *v)
646{
647 return v->counter;
648}
649
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500650/*
651 * atom_asr - add and return a short int
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500652 * @i: short value to add
653 * @v: pointer of type atomic_short
654 *
655 * Atomically adds @i to @v and returns @i + @v
656 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500657static inline int atom_asr(short i, struct atomic_short *v)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500658{
Jeremy Fitzhardinge8b8bc2f2011-08-23 16:59:58 -0700659 return i + xadd(&v->counter, i);
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500660}
661
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500662/*
663 * conditionally add 1 to *v, unless *v is >= u
664 * return 0 if we cannot add 1 to *v because it is >= u
665 * return 1 if we can add 1 to *v because it is < u
666 * the add is atomic
667 *
668 * This is close to atomic_add_unless(), but this allows the 'u' value
669 * to be lowered below the current 'v'. atomic_add_unless can only stop
670 * on equal.
671 */
672static inline int atomic_inc_unless_ge(spinlock_t *lock, atomic_t *v, int u)
673{
674 spin_lock(lock);
675 if (atomic_read(v) >= u) {
676 spin_unlock(lock);
677 return 0;
678 }
679 atomic_inc(v);
680 spin_unlock(lock);
681 return 1;
682}
683
H. Peter Anvin05e4d312008-10-23 00:01:39 -0700684#endif /* _ASM_X86_UV_UV_BAU_H */