1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
/*
* Copyright 2015, International Business Machines
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <endian.h>
#include <asm/byteorder.h>
#include <sys/mman.h>
#include "genwqe_tools.h"
#include "force_cpu.h"
#include <libddcb.h>
int verbose_flag = 0;
static int quiet = 0;
static const char *version = GIT_VERSION;
/**
* @brief Prints valid command line options
*
* @param prog current program name
*
* Example for CAPI specific MMIO timeout circumvention:
*
* Read out old value:
* sudo ./tools/genwqe_peek -ACAPI -C1 --psl-bar=2 --width=64 0x150
*
* Set some bits under mask only bits 36..38:
* sudo ./tools/genwqe_poke -ACAPI -C1 --psl-bar=2 --width=64 --mask \
* 0xe000000 0x150 0x4000000
*/
static void usage(const char *prog)
{
printf("Usage: %s [-h] [-v,--verbose]\n"
" -C,--card <cardno> can be (0...3)\n"
" -A, --accelerator-type=GENWQE|CAPI CAPI is only available "
"for System p\n"
" -V, --version print version.\n"
" -q, --quiet quiece output.\n"
" -w, --width <32|64> access width, 64: default\n"
" -X, --cpu <id> only run on this CPU.\n"
" -i, --interval <intv> interval in usec, 0: default.\n"
" -c, --count <mum> number of pokes, 1: default\n"
" -r, --read-back read back and verify.\n"
" -p, --psl-bar <bar> access PSL bar (CAPI only)\n"
" -m, --mask <mask> x = (x & ~mask) | (val & mask)\n"
" <addr> <val>\n"
"\n"
"Example:\n"
" genwqe_poke 0x0000000 0xdeadbeef\n"
"\n"
"Testcase to trigger error recovery code on genwqe card:\n"
" Fatal GFIR:\n"
" genwqe_poke -C0 0x00000008 0x001\n"
" Info GFIR by writing to VF:\n"
" genwqe_poke -C2 0x00020020 0x800\n"
"\n"
" Registers for Capi card (-A CAPI)\n"
" FIR Reg: 0x1000 ... 0x1028, 6 Regs\n"
" Err. Inj Reg: 0x1800 and 0x1808\n"
" Agr. Regs: 0x2000 and 0x2078\n"
" Gzip Regs: 0x2100 and 0x2178\n"
"\n"
" Only CAPI (debugging):\n"
" genwqe_poke -ACAPI -C0 --psl-bar=2 --width=64 --mask <mask> <offs> <data>\n"
"\n",
prog);
}
/**
* Writing PSL BARs only works in CAPI mode. It directly opens the
* PCIe device and bypasses therefore the CXL driver. Handle this with
* care, since it can cause unexpected effects if wrong data is
* written or accessed.
*
* We actually need this to setup a circumvention for MMIOs which can
* timeout. This is required since the Linux driver could not be
* changed as quickly as desired.
*/
static int capi_write_psl_bar(unsigned int card_no, unsigned int res_no,
int width, off_t offset, uint64_t val,
uint64_t mask)
{
int fd, rc = 0;
struct stat sb;
void *memblk, *addr;
uint64_t val64;
char res[128];
sprintf(res, "/sys/class/cxl/card%u/device/resource%u",
card_no, res_no);
fd = open(res, O_RDWR);
if (fd < 0) {
fprintf(stderr, "err: Can not open %s %s\n",
res, strerror(errno));
exit(EXIT_FAILURE);
}
fstat(fd, &sb);
memblk = mmap(NULL, sb.st_size, PROT_WRITE|PROT_READ,
MAP_SHARED, fd, 0);
if (memblk == MAP_FAILED) {
fprintf(stderr, "err: Can not mmap %s\n", res);
exit(EXIT_FAILURE);
}
addr = memblk + (offset & (sb.st_size - 1));
switch (width) {
case 32: /* Write word */
if (mask == 0)
*((uint32_t *)addr) = __cpu_to_be32(val);
else {
val64 = __be32_to_cpu(*((uint32_t *)addr)); /* old */
val64 = (val64 & ~mask) | (val & mask); /* new */
*((uint32_t *)addr) = __cpu_to_be32(val64);
}
break;
case 64: /* Write double */
if (mask == 0)
*((uint64_t *)addr) = __cpu_to_be64(val);
else {
val64 = __be64_to_cpu(*((uint32_t *)addr)); /* old */
val64 = (val64 & ~mask) | (val & mask); /* new */
*((uint64_t *)addr) = __cpu_to_be64(val64);
}
break;
default:
fprintf(stderr, "err: Illegal width %d\n", width);
rc = -1;
}
munmap(memblk,sb.st_size);
close(fd);
return rc;
}
/**
* @brief Tool to write to zEDC registers. Must be called as root!
*/
int main(int argc, char *argv[])
{
int ch, rc, rbrc;
int card_no = 0;
int card_type = DDCB_TYPE_GENWQE;
accel_t card;
int err_code = 0;
int cpu = -1;
int width = 64;
int rd_back = 0;
uint32_t offs;
uint64_t val, rbval;
uint64_t mask = 0x0ull; /* default is using no mask */
unsigned long i, count = 1;
unsigned long interval = 0;
int mode = DDCB_MODE_WR; /* Default mode for CAPI and GENWQE Card's */
int psl_bar = -1; /* -1 disabled */
int xerrno;
while (1) {
int option_index = 0;
static struct option long_options[] = {
/* functions */
/* options */
{ "card", required_argument, NULL, 'C' },
{ "accelerator-type", required_argument, NULL, 'A' },
{ "cpu", required_argument, NULL, 'X' },
{ "width", required_argument, NULL, 'w' },
{ "interval", required_argument, NULL, 'i' },
{ "count", required_argument, NULL, 'c' },
{ "rd-back", no_argument, NULL, 'r' },
/* CAPI specific tweakings */
{ "psl-bar", required_argument, NULL, 'p' },
{ "mask", required_argument, NULL, 'm' },
/* misc/support */
{ "version", no_argument, NULL, 'V' },
{ "quiet", no_argument, NULL, 'q' },
{ "verbose", no_argument, NULL, 'v' },
{ "help", no_argument, NULL, 'h' },
{ 0, no_argument, NULL, 0 },
};
ch = getopt_long(argc, argv, "m:p:C:A:X:w:i:c:Vqrvh",
long_options, &option_index);
if (ch == -1) /* all params processed ? */
break;
switch (ch) {
/* which card to use */
case 'C':
card_no = strtol(optarg, (char **)NULL, 0);
break;
case 'A': /* set card number */
if (strcmp(optarg, "GENWQE") == 0) {
card_type = DDCB_TYPE_GENWQE;
break;
}
if (strcmp(optarg, "CAPI") == 0) {
card_type = DDCB_TYPE_CAPI;
break;
}
card_type = strtol(optarg, (char **)NULL, 0);
break;
case 'X':
cpu = strtoul(optarg, NULL, 0);
break;
case 'w':
width = strtoul(optarg, NULL, 0);
break;
case 'p': /* psl-bar */
psl_bar = strtol(optarg, (char **)NULL, 0);
break;
case 'm':
mask = strtoll(optarg, (char **)NULL, 0);
break;
case 'i': /* interval */
interval = strtol(optarg, (char **)NULL, 0);
break;
case 'c': /* loop count */
count = strtol(optarg, (char **)NULL, 0);
break;
case 'V':
printf("%s\n", version);
exit(EXIT_SUCCESS);
case 'q':
quiet++;
break;
case 'r':
rd_back++;
break;
case 'v':
verbose_flag++;
break;
case 'h':
usage(argv[0]);
exit(EXIT_SUCCESS);
break;
default:
usage(argv[0]);
exit(EXIT_FAILURE);
}
}
if (optind + 2 != argc) {
usage(argv[0]);
exit(EXIT_FAILURE);
}
offs = strtoull(argv[optind++], NULL, 0);
val = strtoull(argv[optind++], NULL, 0);
rbval = ~val;
switch_cpu(cpu, verbose_flag);
if ((DDCB_TYPE_CAPI == card_type) && (psl_bar != -1)) {
capi_write_psl_bar(card_no, psl_bar, width, offs, val, mask);
goto print_result;
}
ddcb_debug(verbose_flag);
/* CAPI need's master flag for Poke */
if (DDCB_TYPE_CAPI == card_type)
mode |= DDCB_MODE_MASTER;
if ((card_no < 0) || (card_no > 4)) {
fprintf(stderr, "err: (%d) is a invalid card number!\n",
card_no);
usage(argv[0]);
exit(EXIT_FAILURE);
}
card = accel_open(card_no, card_type, mode, &err_code,
0, DDCB_APPL_ID_IGNORE);
if (card == NULL) {
fprintf(stderr, "err: failed to open card %u type %u "
"(%d/%s)\n", card_no, card_type, err_code,
accel_strerror(card, err_code));
exit(EXIT_FAILURE);
}
for (i = 0; i < count; i++) {
switch (width) {
case 32:
rc = accel_write_reg32(card, offs, (uint32_t)val);
xerrno = errno;
if (rd_back)
rbval = accel_read_reg32(card, offs, &rbrc);
break;
default:
case 64:
rc = accel_write_reg64(card, offs, val);
xerrno = errno;
if (rd_back)
rbval = accel_read_reg64(card, offs, &rbrc);
break;
}
if (rc != DDCB_OK) {
fprintf(stderr, "err: could not write "
"%016llx to [%08x]\n"
" %s: %s\n", (unsigned long long)val, offs,
accel_strerror(card, rc), strerror(xerrno));
accel_close(card);
exit(EXIT_FAILURE);
}
if (rd_back) {
if (rbrc != DDCB_OK) {
fprintf(stderr, "err: read back failed\n");
accel_close(card);
exit(EXIT_FAILURE);
}
if (val != rbval) {
fprintf(stderr, "err: post verify failed\n");
accel_close(card);
exit(EXIT_FAILURE);
}
}
if (interval)
usleep(interval);
}
accel_close(card);
print_result:
if (!quiet)
printf("[%08x] %016llx\n", offs, (long long)val);
exit(EXIT_SUCCESS);
}
|