HvCallPci.h 12.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Provides the Hypervisor PCI calls for iSeries Linux Parition.
 * Copyright (C) 2001  <Wayne G Holm> <IBM Corporation>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the:
 * Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330,
 * Boston, MA  02111-1307  USA
 *
 * Change Activity:
 *   Created, Jan 9, 2001
 */
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36

#ifndef _HVCALLPCI_H
#define _HVCALLPCI_H

#include <asm/iSeries/HvCallSc.h>
#include <asm/iSeries/HvTypes.h>

/*
 * DSA == Direct Select Address
 * this struct must be 64 bits in total
 */
struct HvCallPci_DsaAddr {
	u16		busNumber;		/* PHB index? */
37 38
	u8		subBusNumber;		/* PCI bus number? */
	u8		deviceId;		/* device and function? */
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	u8		barNumber;
	u8		reserved[3];
};

union HvDsaMap {
	u64	DsaAddr;
	struct HvCallPci_DsaAddr Dsa;
};

struct HvCallPci_LoadReturn {
	u64		rc;
	u64		value;
};

enum HvCallPci_DeviceType {
	HvCallPci_NodeDevice	= 1,
55 56 57 58 59
	HvCallPci_SpDevice	= 2,
	HvCallPci_IopDevice     = 3,
	HvCallPci_BridgeDevice	= 4,
	HvCallPci_MultiFunctionDevice = 5,
	HvCallPci_IoaDevice	= 6
L
Linus Torvalds 已提交
60 61 62 63
};


struct HvCallPci_DeviceInfo {
64
	u32	deviceType;		/* See DeviceType enum for values */
L
Linus Torvalds 已提交
65
};
66

L
Linus Torvalds 已提交
67
struct HvCallPci_BusUnitInfo {
68 69
	u32	sizeReturned;		/* length of data returned */
	u32	deviceType;		/* see DeviceType enum for values */
L
Linus Torvalds 已提交
70 71 72
};

struct HvCallPci_BridgeInfo {
73 74 75 76 77
	struct HvCallPci_BusUnitInfo busUnitInfo;  /* Generic bus unit info */
	u8		subBusNumber;	/* Bus number of secondary bus */
	u8		maxAgents;	/* Max idsels on secondary bus */
        u8              maxSubBusNumber; /* Max Sub Bus */
	u8		logicalSlotNumber; /* Logical Slot Number for IOA */
L
Linus Torvalds 已提交
78 79
};

80 81 82 83 84 85

/*
 * Maximum BusUnitInfo buffer size.  Provided for clients so
 * they can allocate a buffer big enough for any type of bus
 * unit.  Increase as needed.
 */
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94
enum {HvCallPci_MaxBusUnitInfoSize = 128};

struct HvCallPci_BarParms {
	u64		vaddr;
	u64		raddr;
	u64		size;
	u64		protectStart;
	u64		protectEnd;
	u64		relocationOffset;
95
	u64		pciAddress;
L
Linus Torvalds 已提交
96
	u64		reserved[3];
97
};
L
Linus Torvalds 已提交
98 99

enum HvCallPci_VpdType {
100
	HvCallPci_BusVpd	= 1,
L
Linus Torvalds 已提交
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
	HvCallPci_BusAdapterVpd	= 2
};

#define HvCallPciConfigLoad8		HvCallPci + 0
#define HvCallPciConfigLoad16		HvCallPci + 1
#define HvCallPciConfigLoad32		HvCallPci + 2
#define HvCallPciConfigStore8		HvCallPci + 3
#define HvCallPciConfigStore16		HvCallPci + 4
#define HvCallPciConfigStore32		HvCallPci + 5
#define HvCallPciEoi			HvCallPci + 16
#define HvCallPciGetBarParms		HvCallPci + 18
#define HvCallPciMaskFisr		HvCallPci + 20
#define HvCallPciUnmaskFisr		HvCallPci + 21
#define HvCallPciSetSlotReset		HvCallPci + 25
#define HvCallPciGetDeviceInfo		HvCallPci + 27
#define HvCallPciGetCardVpd		HvCallPci + 28
#define HvCallPciBarLoad8		HvCallPci + 40
#define HvCallPciBarLoad16		HvCallPci + 41
#define HvCallPciBarLoad32		HvCallPci + 42
#define HvCallPciBarLoad64		HvCallPci + 43
#define HvCallPciBarStore8		HvCallPci + 44
#define HvCallPciBarStore16		HvCallPci + 45
#define HvCallPciBarStore32		HvCallPci + 46
#define HvCallPciBarStore64		HvCallPci + 47
#define HvCallPciMaskInterrupts		HvCallPci + 48
#define HvCallPciUnmaskInterrupts	HvCallPci + 49
#define HvCallPciGetBusUnitInfo		HvCallPci + 50

static inline u64 HvCallPci_configLoad8(u16 busNumber, u8 subBusNumber,
130
		u8 deviceId, u32 offset, u8 *value)
L
Linus Torvalds 已提交
131 132 133 134
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

135
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
136 137 138 139 140 141 142 143 144 145 146

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

	HvCall3Ret16(HvCallPciConfigLoad8, &retVal, *(u64 *)&dsa, offset, 0);

	*value = retVal.value;

	return retVal.rc;
}
147

L
Linus Torvalds 已提交
148
static inline u64 HvCallPci_configLoad16(u16 busNumber, u8 subBusNumber,
149
		u8 deviceId, u32 offset, u16 *value)
L
Linus Torvalds 已提交
150 151 152 153
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

154
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163 164 165

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

	HvCall3Ret16(HvCallPciConfigLoad16, &retVal, *(u64 *)&dsa, offset, 0);

	*value = retVal.value;

	return retVal.rc;
}
166 167 168

static inline u64 HvCallPci_configLoad32(u16 busNumber, u8 subBusNumber,
		u8 deviceId, u32 offset, u32 *value)
L
Linus Torvalds 已提交
169 170 171 172
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

173
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182 183 184

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

	HvCall3Ret16(HvCallPciConfigLoad32, &retVal, *(u64 *)&dsa, offset, 0);

	*value = retVal.value;

	return retVal.rc;
}
185 186 187

static inline u64 HvCallPci_configStore8(u16 busNumber, u8 subBusNumber,
		u8 deviceId, u32 offset, u8 value)
L
Linus Torvalds 已提交
188 189 190
{
	struct HvCallPci_DsaAddr dsa;

191
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
192 193 194 195 196

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

197
	return HvCall4(HvCallPciConfigStore8, *(u64 *)&dsa, offset, value, 0);
L
Linus Torvalds 已提交
198
}
199 200 201

static inline u64 HvCallPci_configStore16(u16 busNumber, u8 subBusNumber,
		u8 deviceId, u32 offset, u16 value)
L
Linus Torvalds 已提交
202 203 204
{
	struct HvCallPci_DsaAddr dsa;

205
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
206 207 208 209 210

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

211
	return HvCall4(HvCallPciConfigStore16, *(u64 *)&dsa, offset, value, 0);
L
Linus Torvalds 已提交
212
}
213 214 215

static inline u64 HvCallPci_configStore32(u16 busNumber, u8 subBusNumber,
		u8 deviceId, u32 offset, u32 value)
L
Linus Torvalds 已提交
216 217 218
{
	struct HvCallPci_DsaAddr dsa;

219
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
220 221 222 223 224

	dsa.busNumber = busNumber;
	dsa.subBusNumber = subBusNumber;
	dsa.deviceId = deviceId;

225
	return HvCall4(HvCallPciConfigStore32, *(u64 *)&dsa, offset, value, 0);
L
Linus Torvalds 已提交
226
}
227 228 229 230

static inline u64 HvCallPci_barLoad8(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u8 *valueParm)
L
Linus Torvalds 已提交
231 232 233 234
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

235
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243 244 245 246 247

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

	HvCall3Ret16(HvCallPciBarLoad8, &retVal, *(u64 *)&dsa, offsetParm, 0);

	*valueParm = retVal.value;

	return retVal.rc;
}
248 249 250 251

static inline u64 HvCallPci_barLoad16(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u16 *valueParm)
L
Linus Torvalds 已提交
252 253 254 255
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

256
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
257 258 259 260 261 262 263 264 265 266 267 268

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

	HvCall3Ret16(HvCallPciBarLoad16, &retVal, *(u64 *)&dsa, offsetParm, 0);

	*valueParm = retVal.value;

	return retVal.rc;
}
269 270 271 272

static inline u64 HvCallPci_barLoad32(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u32 *valueParm)
L
Linus Torvalds 已提交
273 274 275 276
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

277
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
278 279 280 281 282 283 284 285 286 287 288 289

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

	HvCall3Ret16(HvCallPciBarLoad32, &retVal, *(u64 *)&dsa, offsetParm, 0);

	*valueParm = retVal.value;

	return retVal.rc;
}
290 291 292 293

static inline u64 HvCallPci_barLoad64(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u64 *valueParm)
L
Linus Torvalds 已提交
294 295 296 297
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

298
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
299 300 301 302 303 304 305 306 307 308 309 310

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

	HvCall3Ret16(HvCallPciBarLoad64, &retVal, *(u64 *)&dsa, offsetParm, 0);

	*valueParm = retVal.value;

	return retVal.rc;
}
311 312 313 314

static inline u64 HvCallPci_barStore8(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u8 valueParm)
L
Linus Torvalds 已提交
315 316 317 318
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;
319

L
Linus Torvalds 已提交
320 321 322 323 324
	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

325 326
	return HvCall4(HvCallPciBarStore8, *(u64 *)&dsa, offsetParm,
			valueParm, 0);
L
Linus Torvalds 已提交
327
}
328 329 330 331

static inline u64 HvCallPci_barStore16(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u16 valueParm)
L
Linus Torvalds 已提交
332 333 334 335
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;
336

L
Linus Torvalds 已提交
337 338 339 340 341
	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

342 343
	return HvCall4(HvCallPciBarStore16, *(u64 *)&dsa, offsetParm,
			valueParm, 0);
L
Linus Torvalds 已提交
344
}
345 346 347 348

static inline u64 HvCallPci_barStore32(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u32 valueParm)
L
Linus Torvalds 已提交
349 350 351 352
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;
353

L
Linus Torvalds 已提交
354 355 356 357 358
	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

359 360
	return HvCall4(HvCallPciBarStore32, *(u64 *)&dsa, offsetParm,
			valueParm, 0);
L
Linus Torvalds 已提交
361
}
362 363 364 365

static inline u64 HvCallPci_barStore64(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 offsetParm,
		u64 valueParm)
L
Linus Torvalds 已提交
366 367 368 369
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;
370

L
Linus Torvalds 已提交
371 372 373 374 375
	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

376 377
	return HvCall4(HvCallPciBarStore64, *(u64 *)&dsa, offsetParm,
			valueParm, 0);
L
Linus Torvalds 已提交
378
}
379 380 381

static inline u64 HvCallPci_eoi(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm)
L
Linus Torvalds 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394 395
{
	struct HvCallPci_DsaAddr dsa;
	struct HvCallPci_LoadReturn retVal;

	*((u64*)&dsa) = 0;

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

	HvCall1Ret16(HvCallPciEoi, &retVal, *(u64*)&dsa);

	return retVal.rc;
}
396 397 398

static inline u64 HvCallPci_getBarParms(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u8 barNumberParm, u64 parms, u32 sizeofParms)
L
Linus Torvalds 已提交
399 400 401 402 403 404 405 406 407 408
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;
	dsa.barNumber = barNumberParm;

409
	return HvCall3(HvCallPciGetBarParms, *(u64*)&dsa, parms, sizeofParms);
L
Linus Torvalds 已提交
410
}
411 412 413

static inline u64 HvCallPci_maskFisr(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 fisrMask)
L
Linus Torvalds 已提交
414 415 416
{
	struct HvCallPci_DsaAddr dsa;

417
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
418 419 420 421 422

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

423
	return HvCall2(HvCallPciMaskFisr, *(u64*)&dsa, fisrMask);
L
Linus Torvalds 已提交
424
}
425 426 427

static inline u64 HvCallPci_unmaskFisr(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 fisrMask)
L
Linus Torvalds 已提交
428 429 430
{
	struct HvCallPci_DsaAddr dsa;

431
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
432 433 434 435 436

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

437
	return HvCall2(HvCallPciUnmaskFisr, *(u64*)&dsa, fisrMask);
L
Linus Torvalds 已提交
438
}
439 440 441

static inline u64 HvCallPci_setSlotReset(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 onNotOff)
L
Linus Torvalds 已提交
442 443 444 445 446 447 448 449 450
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

451
	return HvCall2(HvCallPciSetSlotReset, *(u64*)&dsa, onNotOff);
L
Linus Torvalds 已提交
452
}
453 454 455

static inline u64 HvCallPci_getDeviceInfo(u16 busNumberParm, u8 subBusParm,
		u8 deviceNumberParm, u64 parms, u32 sizeofParms)
L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464
{
	struct HvCallPci_DsaAddr dsa;

	*((u64*)&dsa) = 0;

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceNumberParm << 4;

465
	return HvCall3(HvCallPciGetDeviceInfo, *(u64*)&dsa, parms, sizeofParms);
L
Linus Torvalds 已提交
466
}
467 468 469

static inline u64 HvCallPci_maskInterrupts(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 interruptMask)
L
Linus Torvalds 已提交
470 471 472
{
	struct HvCallPci_DsaAddr dsa;

473
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
474 475 476 477 478

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

479
	return HvCall2(HvCallPciMaskInterrupts, *(u64*)&dsa, interruptMask);
L
Linus Torvalds 已提交
480
}
481 482 483

static inline u64 HvCallPci_unmaskInterrupts(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 interruptMask)
L
Linus Torvalds 已提交
484 485 486
{
	struct HvCallPci_DsaAddr dsa;

487
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
488 489 490 491 492

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

493
	return HvCall2(HvCallPciUnmaskInterrupts, *(u64*)&dsa, interruptMask);
L
Linus Torvalds 已提交
494 495
}

496 497
static inline u64 HvCallPci_getBusUnitInfo(u16 busNumberParm, u8 subBusParm,
		u8 deviceIdParm, u64 parms, u32 sizeofParms)
L
Linus Torvalds 已提交
498 499 500
{
	struct HvCallPci_DsaAddr dsa;

501
	*((u64*)&dsa) = 0;
L
Linus Torvalds 已提交
502 503 504 505 506

	dsa.busNumber = busNumberParm;
	dsa.subBusNumber = subBusParm;
	dsa.deviceId = deviceIdParm;

507 508
	return HvCall3(HvCallPciGetBusUnitInfo, *(u64*)&dsa, parms,
			sizeofParms);
L
Linus Torvalds 已提交
509 510
}

511 512
static inline int HvCallPci_getBusVpd(u16 busNumParm, u64 destParm,
		u16 sizeParm)
L
Linus Torvalds 已提交
513
{
514 515
	u64 xRc = HvCall4(HvCallPciGetCardVpd, busNumParm, destParm,
			sizeParm, HvCallPci_BusVpd);
L
Linus Torvalds 已提交
516
	if (xRc == -1)
517
		return -1;
L
Linus Torvalds 已提交
518
	else
519
		return xRc & 0xFFFF;
L
Linus Torvalds 已提交
520 521
}

522 523
static inline int HvCallPci_getBusAdapterVpd(u16 busNumParm, u64 destParm,
		u16 sizeParm)
L
Linus Torvalds 已提交
524
{
525 526
	u64 xRc = HvCall4(HvCallPciGetCardVpd, busNumParm, destParm,
			sizeParm, HvCallPci_BusAdapterVpd);
L
Linus Torvalds 已提交
527
	if (xRc == -1)
528
		return -1;
L
Linus Torvalds 已提交
529
	else
530
		return xRc & 0xFFFF;
L
Linus Torvalds 已提交
531
}
532

L
Linus Torvalds 已提交
533
#endif /* _HVCALLPCI_H */