blob: 16ce58c6d252adce97c02013f47048f4108ffb7b [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)
70#define UV2_INTD_SOFT_ACK_TIMEOUT_PERIOD (65*10UL)
71
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
109 * values 1 and 5 will not occur
110 */
111#define UV2H_DESC_IDLE 0
112#define UV2H_DESC_DEST_TIMEOUT 2
113#define UV2H_DESC_DEST_STRONG_NACK 3
114#define UV2H_DESC_BUSY 4
115#define UV2H_DESC_SOURCE_TIMEOUT 6
116#define UV2H_DESC_DEST_PUT_ERR 7
Cliff Wickman18129242008-06-02 08:56:14 -0500117
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500118/*
119 * delay for 'plugged' timeout retries, in microseconds
120 */
121#define PLUGGED_DELAY 10
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500122
123/*
124 * threshholds at which to use IPI to free resources
125 */
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500126/* after this # consecutive 'plugged' timeouts, use IPI to release resources */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500127#define PLUGSB4RESET 100
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500128/* after this many consecutive timeouts, use IPI to release resources */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500129#define TIMEOUTSB4RESET 1
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500130/* at this number uses of IPI to release resources, giveup the request */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500131#define IPI_RESET_LIMIT 1
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500132/* after this # consecutive successes, bump up the throttle if it was lowered */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500133#define COMPLETE_THRESHOLD 5
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500134
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500135#define UV_LB_SUBNODEID 0x10
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500136
Jack Steiner2a919592011-05-11 12:50:28 -0500137/* these two are the same for UV1 and UV2: */
138#define UV_SA_SHFT UVH_LB_BAU_MISC_CONTROL_INTD_SOFT_ACK_TIMEOUT_PERIOD_SHFT
139#define UV_SA_MASK UVH_LB_BAU_MISC_CONTROL_INTD_SOFT_ACK_TIMEOUT_PERIOD_MASK
140/* 4 bits of software ack period */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500141#define UV2_ACK_MASK 0x7UL
142#define UV2_ACK_UNITS_SHFT 3
Jack Steiner2a919592011-05-11 12:50:28 -0500143#define UV2_LEG_SHFT UV2H_LB_BAU_MISC_CONTROL_USE_LEGACY_DESCRIPTOR_FORMATS_SHFT
144#define UV2_EXT_SHFT UV2H_LB_BAU_MISC_CONTROL_ENABLE_EXTENDED_SB_STATUS_SHFT
145
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500146/*
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500147 * number of entries in the destination side payload queue
148 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500149#define DEST_Q_SIZE 20
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500150/*
151 * number of destination side software ack resources
152 */
Ingo Molnardc163a42008-06-18 14:15:43 +0200153#define DEST_NUM_RESOURCES 8
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500154/*
155 * completion statuses for sending a TLB flush message
156 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500157#define FLUSH_RETRY_PLUGGED 1
158#define FLUSH_RETRY_TIMEOUT 2
159#define FLUSH_GIVEUP 3
160#define FLUSH_COMPLETE 4
Cliff Wickman18129242008-06-02 08:56:14 -0500161
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500162/*
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500163 * tuning the action when the numalink network is extremely delayed
164 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500165#define CONGESTED_RESPONSE_US 1000 /* 'long' response time, in
166 microseconds */
167#define CONGESTED_REPS 10 /* long delays averaged over
168 this many broadcasts */
169#define CONGESTED_PERIOD 30 /* time for the bau to be
170 disabled, in seconds */
171/* see msg_type: */
172#define MSG_NOOP 0
173#define MSG_REGULAR 1
174#define MSG_RETRY 2
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500175
176/*
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500177 * Distribution: 32 bytes (256 bits) (bytes 0-0x1f of descriptor)
178 * If the 'multilevel' flag in the header portion of the descriptor
Cliff Wickman18129242008-06-02 08:56:14 -0500179 * has been set to 0, then endpoint multi-unicast mode is selected.
180 * The distribution specification (32 bytes) is interpreted as a 256-bit
181 * distribution vector. Adjacent bits correspond to consecutive even numbered
182 * nodeIDs. The result of adding the index of a given bit to the 15-bit
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500183 * 'base_dest_nasid' field of the header corresponds to the
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500184 * destination nodeID associated with that specified bit.
185 */
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500186struct pnmask {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500187 unsigned long bits[BITS_TO_LONGS(UV_DISTRIBUTION_SIZE)];
Cliff Wickman18129242008-06-02 08:56:14 -0500188};
189
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500190/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500191 * mask of cpu's on a uvhub
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500192 * (during initialization we need to check that unsigned long has
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500193 * enough bits for max. cpu's per uvhub)
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500194 */
Cliff Wickman18129242008-06-02 08:56:14 -0500195struct bau_local_cpumask {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500196 unsigned long bits;
Cliff Wickman18129242008-06-02 08:56:14 -0500197};
198
199/*
200 * Payload: 16 bytes (128 bits) (bytes 0x20-0x2f of descriptor)
201 * only 12 bytes (96 bits) of the payload area are usable.
202 * An additional 3 bytes (bits 27:4) of the header address are carried
203 * to the next bytes of the destination payload queue.
204 * And an additional 2 bytes of the header Suppl_A field are also
205 * carried to the destination payload queue.
206 * But the first byte of the Suppl_A becomes bits 127:120 (the 16th byte)
207 * of the destination payload queue, which is written by the hardware
208 * with the s/w ack resource bit vector.
209 * [ effective message contents (16 bytes (128 bits) maximum), not counting
210 * the s/w ack bit vector ]
211 */
212
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500213/*
214 * The payload is software-defined for INTD transactions
215 */
Cliff Wickman18129242008-06-02 08:56:14 -0500216struct bau_msg_payload {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500217 unsigned long address; /* signifies a page or all
218 TLB's of the cpu */
Cliff Wickman18129242008-06-02 08:56:14 -0500219 /* 64 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500220 unsigned short sending_cpu; /* filled in by sender */
Cliff Wickman18129242008-06-02 08:56:14 -0500221 /* 16 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500222 unsigned short acknowledge_count; /* filled in by destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500223 /* 16 bits */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500224 unsigned int reserved1:32; /* not usable */
Cliff Wickman18129242008-06-02 08:56:14 -0500225};
226
227
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500228/*
229 * Message header: 16 bytes (128 bits) (bytes 0x30-0x3f of descriptor)
230 * see table 4.2.3.0.1 in broacast_assist spec.
231 */
Cliff Wickman18129242008-06-02 08:56:14 -0500232struct bau_msg_header {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500233 unsigned int dest_subnodeid:6; /* must be 0x10, for the LB */
Cliff Wickman18129242008-06-02 08:56:14 -0500234 /* bits 5:0 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500235 unsigned int base_dest_nasid:15; /* nasid of the first bit */
236 /* bits 20:6 */ /* in uvhub map */
237 unsigned int command:8; /* message type */
Cliff Wickman18129242008-06-02 08:56:14 -0500238 /* bits 28:21 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500239 /* 0x38: SN3net EndPoint Message */
240 unsigned int rsvd_1:3; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500241 /* bits 31:29 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500242 /* int will align on 32 bits */
243 unsigned int rsvd_2:9; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500244 /* bits 40:32 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500245 /* Suppl_A is 56-41 */
246 unsigned int sequence:16; /* message sequence number */
247 /* bits 56:41 */ /* becomes bytes 16-17 of msg */
248 /* Address field (96:57) is
249 never used as an address
250 (these are address bits
251 42:3) */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500252
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500253 unsigned int rsvd_3:1; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500254 /* bit 57 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500255 /* address bits 27:4 are payload */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500256 /* these next 24 (58-81) bits become bytes 12-14 of msg */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500257 /* bits 65:58 land in byte 12 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500258 unsigned int replied_to:1; /* sent as 0 by the source to
259 byte 12 */
Cliff Wickman18129242008-06-02 08:56:14 -0500260 /* bit 58 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500261 unsigned int msg_type:3; /* software type of the
262 message */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500263 /* bits 61:59 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500264 unsigned int canceled:1; /* message canceled, resource
265 is to be freed*/
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500266 /* bit 62 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500267 unsigned int payload_1a:1; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500268 /* bit 63 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500269 unsigned int payload_1b:2; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500270 /* bits 65:64 */
Cliff Wickman18129242008-06-02 08:56:14 -0500271
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500272 /* bits 73:66 land in byte 13 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500273 unsigned int payload_1ca:6; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500274 /* bits 71:66 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500275 unsigned int payload_1c:2; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500276 /* bits 73:72 */
277
278 /* bits 81:74 land in byte 14 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500279 unsigned int payload_1d:6; /* not currently used */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500280 /* bits 79:74 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500281 unsigned int payload_1e:2; /* not currently used */
Cliff Wickman18129242008-06-02 08:56:14 -0500282 /* bits 81:80 */
283
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500284 unsigned int rsvd_4:7; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500285 /* bits 88:82 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500286 unsigned int swack_flag:1; /* software acknowledge flag */
Cliff Wickman18129242008-06-02 08:56:14 -0500287 /* bit 89 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500288 /* INTD trasactions at
289 destination are to wait for
290 software acknowledge */
291 unsigned int rsvd_5:6; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500292 /* bits 95:90 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500293 unsigned int rsvd_6:5; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500294 /* bits 100:96 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500295 unsigned int int_both:1; /* if 1, interrupt both sockets
296 on the uvhub */
Cliff Wickman18129242008-06-02 08:56:14 -0500297 /* bit 101*/
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500298 unsigned int fairness:3; /* usually zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500299 /* bits 104:102 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500300 unsigned int multilevel:1; /* multi-level multicast
301 format */
Cliff Wickman18129242008-06-02 08:56:14 -0500302 /* bit 105 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500303 /* 0 for TLB: endpoint multi-unicast messages */
304 unsigned int chaining:1; /* next descriptor is part of
305 this activation*/
Cliff Wickman18129242008-06-02 08:56:14 -0500306 /* bit 106 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500307 unsigned int rsvd_7:21; /* must be zero */
Cliff Wickman18129242008-06-02 08:56:14 -0500308 /* bits 127:107 */
309};
310
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500311/*
Ingo Molnardc163a42008-06-18 14:15:43 +0200312 * The activation descriptor:
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500313 * The format of the message to send, plus all accompanying control
314 * Should be 64 bytes
315 */
Ingo Molnardc163a42008-06-18 14:15:43 +0200316struct bau_desc {
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500317 struct pnmask distribution;
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500318 /*
319 * message template, consisting of header and payload:
320 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500321 struct bau_msg_header header;
322 struct bau_msg_payload payload;
Cliff Wickman18129242008-06-02 08:56:14 -0500323};
324/*
325 * -payload-- ---------header------
326 * bytes 0-11 bits 41-56 bits 58-81
327 * A B (2) C (3)
328 *
329 * A/B/C are moved to:
330 * A C B
331 * bytes 0-11 bytes 12-14 bytes 16-17 (byte 15 filled in by hw as vector)
332 * ------------payload queue-----------
333 */
334
335/*
336 * The payload queue on the destination side is an array of these.
337 * With BAU_MISC_CONTROL set for software acknowledge mode, the messages
338 * are 32 bytes (2 micropackets) (256 bits) in length, but contain only 17
339 * bytes of usable data, including the sw ack vector in byte 15 (bits 127:120)
340 * (12 bytes come from bau_msg_payload, 3 from payload_1, 2 from
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500341 * swack_vec and payload_2)
Cliff Wickman18129242008-06-02 08:56:14 -0500342 * "Enabling Software Acknowledgment mode (see Section 4.3.3 Software
343 * Acknowledge Processing) also selects 32 byte (17 bytes usable) payload
344 * operation."
345 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500346struct bau_pq_entry {
347 unsigned long address; /* signifies a page or all TLB's
348 of the cpu */
Cliff Wickman18129242008-06-02 08:56:14 -0500349 /* 64 bits, bytes 0-7 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500350 unsigned short sending_cpu; /* cpu that sent the message */
Cliff Wickman18129242008-06-02 08:56:14 -0500351 /* 16 bits, bytes 8-9 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500352 unsigned short acknowledge_count; /* filled in by destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500353 /* 16 bits, bytes 10-11 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500354 /* these next 3 bytes come from bits 58-81 of the message header */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500355 unsigned short replied_to:1; /* sent as 0 by the source */
356 unsigned short msg_type:3; /* software message type */
357 unsigned short canceled:1; /* sent as 0 by the source */
358 unsigned short unused1:3; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500359 /* byte 12 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500360 unsigned char unused2a; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500361 /* byte 13 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500362 unsigned char unused2; /* not currently using */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500363 /* byte 14 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500364 unsigned char swack_vec; /* filled in by the hardware */
Cliff Wickman18129242008-06-02 08:56:14 -0500365 /* byte 15 (bits 127:120) */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500366 unsigned short sequence; /* message sequence number */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500367 /* bytes 16-17 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500368 unsigned char unused4[2]; /* not currently using bytes 18-19 */
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500369 /* bytes 18-19 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500370 int number_of_cpus; /* filled in at destination */
Cliff Wickman18129242008-06-02 08:56:14 -0500371 /* 32 bits, bytes 20-23 (aligned) */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500372 unsigned char unused5[8]; /* not using */
Cliff Wickman18129242008-06-02 08:56:14 -0500373 /* bytes 24-31 */
374};
375
Cliff Wickman4faca152010-06-02 16:22:02 -0500376struct msg_desc {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500377 struct bau_pq_entry *msg;
378 int msg_slot;
379 int swack_slot;
380 struct bau_pq_entry *queue_first;
381 struct bau_pq_entry *queue_last;
Cliff Wickman4faca152010-06-02 16:22:02 -0500382};
383
384struct reset_args {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500385 int sender;
Cliff Wickman4faca152010-06-02 16:22:02 -0500386};
387
388/*
389 * This structure is allocated per_cpu for UV TLB shootdown statistics.
390 */
391struct ptc_stats {
392 /* sender statistics */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500393 unsigned long s_giveup; /* number of fall backs to
394 IPI-style flushes */
395 unsigned long s_requestor; /* number of shootdown
396 requests */
397 unsigned long s_stimeout; /* source side timeouts */
398 unsigned long s_dtimeout; /* destination side timeouts */
399 unsigned long s_time; /* time spent in sending side */
400 unsigned long s_retriesok; /* successful retries */
401 unsigned long s_ntargcpu; /* total number of cpu's
402 targeted */
403 unsigned long s_ntargself; /* times the sending cpu was
404 targeted */
405 unsigned long s_ntarglocals; /* targets of cpus on the local
406 blade */
407 unsigned long s_ntargremotes; /* targets of cpus on remote
408 blades */
409 unsigned long s_ntarglocaluvhub; /* targets of the local hub */
410 unsigned long s_ntargremoteuvhub; /* remotes hubs targeted */
411 unsigned long s_ntarguvhub; /* total number of uvhubs
412 targeted */
413 unsigned long s_ntarguvhub16; /* number of times target
414 hubs >= 16*/
415 unsigned long s_ntarguvhub8; /* number of times target
416 hubs >= 8 */
417 unsigned long s_ntarguvhub4; /* number of times target
418 hubs >= 4 */
419 unsigned long s_ntarguvhub2; /* number of times target
420 hubs >= 2 */
421 unsigned long s_ntarguvhub1; /* number of times target
422 hubs == 1 */
423 unsigned long s_resets_plug; /* ipi-style resets from plug
424 state */
425 unsigned long s_resets_timeout; /* ipi-style resets from
426 timeouts */
427 unsigned long s_busy; /* status stayed busy past
428 s/w timer */
429 unsigned long s_throttles; /* waits in throttle */
430 unsigned long s_retry_messages; /* retry broadcasts */
431 unsigned long s_bau_reenabled; /* for bau enable/disable */
432 unsigned long s_bau_disabled; /* for bau enable/disable */
Cliff Wickman4faca152010-06-02 16:22:02 -0500433 /* destination statistics */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500434 unsigned long d_alltlb; /* times all tlb's on this
435 cpu were flushed */
436 unsigned long d_onetlb; /* times just one tlb on this
437 cpu was flushed */
438 unsigned long d_multmsg; /* interrupts with multiple
439 messages */
440 unsigned long d_nomsg; /* interrupts with no message */
441 unsigned long d_time; /* time spent on destination
442 side */
443 unsigned long d_requestee; /* number of messages
444 processed */
445 unsigned long d_retries; /* number of retry messages
446 processed */
447 unsigned long d_canceled; /* number of messages canceled
448 by retries */
449 unsigned long d_nocanceled; /* retries that found nothing
450 to cancel */
451 unsigned long d_resets; /* number of ipi-style requests
452 processed */
453 unsigned long d_rcanceled; /* number of messages canceled
454 by resets */
455};
456
457struct tunables {
458 int *tunp;
459 int deflt;
Cliff Wickman4faca152010-06-02 16:22:02 -0500460};
461
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500462struct hub_and_pnode {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500463 short uvhub;
464 short pnode;
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500465};
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500466
467struct socket_desc {
468 short num_cpus;
469 short cpu_number[MAX_CPUS_PER_SOCKET];
470};
471
472struct uvhub_desc {
473 unsigned short socket_mask;
474 short num_cpus;
475 short uvhub;
476 short pnode;
477 struct socket_desc socket[2];
478};
479
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500480/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500481 * one per-cpu; to locate the software tables
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500482 */
Cliff Wickman18129242008-06-02 08:56:14 -0500483struct bau_control {
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500484 struct bau_desc *descriptor_base;
485 struct bau_pq_entry *queue_first;
486 struct bau_pq_entry *queue_last;
487 struct bau_pq_entry *bau_msg_head;
488 struct bau_control *uvhub_master;
489 struct bau_control *socket_master;
490 struct ptc_stats *statp;
cpw@sgi.com442d3922011-06-21 07:21:31 -0500491 cpumask_t *cpumask;
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500492 unsigned long timeout_interval;
493 unsigned long set_bau_on_time;
494 atomic_t active_descriptor_count;
495 int plugged_tries;
496 int timeout_tries;
497 int ipi_attempts;
498 int conseccompletes;
499 int baudisabled;
500 int set_bau_off;
501 short cpu;
502 short osnode;
503 short uvhub_cpu;
504 short uvhub;
505 short cpus_in_socket;
506 short cpus_in_uvhub;
507 short partition_base_pnode;
508 unsigned short message_number;
509 unsigned short uvhub_quiesce;
510 short socket_acknowledge_count[DEST_Q_SIZE];
511 cycles_t send_message;
512 spinlock_t uvhub_lock;
513 spinlock_t queue_lock;
Cliff Wickmane8e5e8a2010-06-02 16:22:01 -0500514 /* tunables */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500515 int max_concurr;
516 int max_concurr_const;
517 int plugged_delay;
518 int plugsb4reset;
519 int timeoutsb4reset;
520 int ipi_reset_limit;
521 int complete_threshold;
522 int cong_response_us;
523 int cong_reps;
524 int cong_period;
525 cycles_t period_time;
526 long period_requests;
527 struct hub_and_pnode *thp;
Cliff Wickman18129242008-06-02 08:56:14 -0500528};
529
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500530static inline unsigned long read_mmr_uv2_status(void)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500531{
532 return read_lmmr(UV2H_LB_BAU_SB_ACTIVATION_STATUS_2);
533}
534
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500535static inline void write_mmr_data_broadcast(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500536{
537 write_gmmr(pnode, UVH_BAU_DATA_BROADCAST, mmr_image);
538}
539
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500540static inline void write_mmr_descriptor_base(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500541{
542 write_gmmr(pnode, UVH_LB_BAU_SB_DESCRIPTOR_BASE, mmr_image);
543}
544
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500545static inline void write_mmr_activation(unsigned long index)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500546{
547 write_lmmr(UVH_LB_BAU_SB_ACTIVATION_CONTROL, index);
548}
549
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500550static inline void write_gmmr_activation(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500551{
552 write_gmmr(pnode, UVH_LB_BAU_SB_ACTIVATION_CONTROL, mmr_image);
553}
554
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500555static inline void write_mmr_payload_first(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500556{
557 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_FIRST, mmr_image);
558}
559
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500560static inline void write_mmr_payload_tail(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500561{
562 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_TAIL, mmr_image);
563}
564
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500565static inline void write_mmr_payload_last(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500566{
567 write_gmmr(pnode, UVH_LB_BAU_INTD_PAYLOAD_QUEUE_LAST, mmr_image);
568}
569
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500570static inline void write_mmr_misc_control(int pnode, unsigned long mmr_image)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500571{
572 write_gmmr(pnode, UVH_LB_BAU_MISC_CONTROL, mmr_image);
573}
574
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500575static inline unsigned long read_mmr_misc_control(int pnode)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500576{
577 return read_gmmr(pnode, UVH_LB_BAU_MISC_CONTROL);
578}
579
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500580static inline void write_mmr_sw_ack(unsigned long mr)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500581{
582 uv_write_local_mmr(UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE_ALIAS, mr);
583}
584
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500585static inline unsigned long read_mmr_sw_ack(void)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500586{
587 return read_lmmr(UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE);
588}
589
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500590static inline unsigned long read_gmmr_sw_ack(int pnode)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500591{
592 return read_gmmr(pnode, UVH_LB_BAU_INTD_SOFTWARE_ACKNOWLEDGE);
593}
594
cpw@sgi.comb18fb2c2011-06-21 07:21:27 -0500595static inline void write_mmr_data_config(int pnode, unsigned long mr)
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500596{
597 uv_write_global_mmr64(pnode, UVH_BAU_DATA_CONFIG, mr);
598}
599
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500600static inline int bau_uvhub_isset(int uvhub, struct pnmask *dstp)
Cliff Wickman18129242008-06-02 08:56:14 -0500601{
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500602 return constant_test_bit(uvhub, &dstp->bits[0]);
Cliff Wickman18129242008-06-02 08:56:14 -0500603}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500604static inline void bau_uvhub_set(int pnode, struct pnmask *dstp)
Cliff Wickman18129242008-06-02 08:56:14 -0500605{
Cliff Wickman77ed23f2011-05-10 08:26:43 -0500606 __set_bit(pnode, &dstp->bits[0]);
Cliff Wickman18129242008-06-02 08:56:14 -0500607}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500608static inline void bau_uvhubs_clear(struct pnmask *dstp,
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500609 int nbits)
Cliff Wickman18129242008-06-02 08:56:14 -0500610{
611 bitmap_zero(&dstp->bits[0], nbits);
612}
cpw@sgi.coma456eaa2011-06-21 07:21:30 -0500613static inline int bau_uvhub_weight(struct pnmask *dstp)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500614{
615 return bitmap_weight((unsigned long *)&dstp->bits[0],
616 UV_DISTRIBUTION_SIZE);
617}
Cliff Wickman18129242008-06-02 08:56:14 -0500618
619static inline void bau_cpubits_clear(struct bau_local_cpumask *dstp, int nbits)
620{
621 bitmap_zero(&dstp->bits, nbits);
622}
623
Cliff Wickmanb194b1202008-06-12 08:23:48 -0500624extern void uv_bau_message_intr1(void);
625extern void uv_bau_timeout_intr1(void);
Cliff Wickman18129242008-06-02 08:56:14 -0500626
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500627struct atomic_short {
628 short counter;
629};
630
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500631/*
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500632 * atomic_read_short - read a short atomic variable
633 * @v: pointer of type atomic_short
634 *
635 * Atomically reads the value of @v.
636 */
637static inline int atomic_read_short(const struct atomic_short *v)
638{
639 return v->counter;
640}
641
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500642/*
643 * atom_asr - add and return a short int
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500644 * @i: short value to add
645 * @v: pointer of type atomic_short
646 *
647 * Atomically adds @i to @v and returns @i + @v
648 */
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500649static inline int atom_asr(short i, struct atomic_short *v)
Cliff Wickmanb8f7fb12010-04-14 11:35:46 -0500650{
651 short __i = i;
652 asm volatile(LOCK_PREFIX "xaddw %0, %1"
653 : "+r" (i), "+m" (v->counter)
654 : : "memory");
655 return i + __i;
656}
657
Cliff Wickmanf073cc82011-05-24 13:07:36 -0500658/*
659 * conditionally add 1 to *v, unless *v is >= u
660 * return 0 if we cannot add 1 to *v because it is >= u
661 * return 1 if we can add 1 to *v because it is < u
662 * the add is atomic
663 *
664 * This is close to atomic_add_unless(), but this allows the 'u' value
665 * to be lowered below the current 'v'. atomic_add_unless can only stop
666 * on equal.
667 */
668static inline int atomic_inc_unless_ge(spinlock_t *lock, atomic_t *v, int u)
669{
670 spin_lock(lock);
671 if (atomic_read(v) >= u) {
672 spin_unlock(lock);
673 return 0;
674 }
675 atomic_inc(v);
676 spin_unlock(lock);
677 return 1;
678}
679
H. Peter Anvin05e4d312008-10-23 00:01:39 -0700680#endif /* _ASM_X86_UV_UV_BAU_H */