summaryrefslogtreecommitdiff
path: root/Core/EM/PCI/DeviceIo.c
blob: c9c9605c20d1eb33539663eda0a4b02c19429f98 (plain)
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2005, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             6145-F Northbelt Pkwy, Norcross, GA 30071            **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************
//**********************************************************************
// $Header: /Alaska/SOURCE/Core/Modules/PciBus/DeviceIo.c 1     3/12/07 12:02p Yakovlevs $
//
// $Revision: 1 $
//
// $Date: 3/12/07 12:02p $
//*****************************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Core/Modules/PciBus/DeviceIo.c $
// 
// 1     3/12/07 12:02p Yakovlevs
// 
// 3     4/03/06 5:17p Felixp
// Updated to support new PCI infrastructure
// 
// 1     4/01/05 12:45p Robert
// Initial Checkin
// 
// 1     1/21/05 6:27p Sivagarn
// NB Chipset Template Initial Checkin - Based on template version 0001
//
//
//*****************************************************************************

//<AMI_FHDR_START>
//
// Name:	DeviceIo_c
//
// Description:	This file contains the DeviceIo Protocol and its construction.
//
//<AMI_FHDR_END>
//*****************************************************************************

#include <Token.h>
#if AMI_ROOT_BRIDGE_SUPPORT == 1
/****** DO NOT WRITE ABOVE THIS LINE *******/

#include "PciHostBridge.h"
#include <Protocol\PciIo.h>
#include <Protocol\DevicePath.h>

typedef struct {
	EFI_DEVICE_IO_INTERFACE			DeviceIo;
	EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL	*RootBridgeIo;
	EFI_DEVICE_PATH_PROTOCOL					*DevicePath;
} PRIVATE_DEVICE_IO;

EFI_GUID gPciIoProtocolGuid	= EFI_PCI_IO_PROTOCOL_GUID;
EFI_GUID gEfiDevicePathProtocolGuid=EFI_DEVICE_PATH_PROTOCOL_GUID;

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure: DeviceIoMemRead
//
// Description:	Read memory into a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciMemRead
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciMemRead and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoMemRead (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciMemRead (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoMemWrite
//
// Description:	Write memory from a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciMemWrite
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciMemWrite and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoMemWrite (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciMemWrite (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoIoRead
//
// Description:	Read Io into a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciIoRead
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciIoRead and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoIoRead (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciIoRead (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoIoWrite
//
// Description:	Write Io from a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
///	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciIoWrite
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciIoWrite and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoIoWrite (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciIoWrite (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoPciRead
//
// Description:	Read Pci registers into a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciRead
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciRead and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoPciRead (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciRead (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoPciWrite
//
// Description:	Write Pci registers from a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_WIDTH				Width
//	IN UINT64					Address
//	IN UINTN					Count
//	IN OUT VOID					*Buffer
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: PciWrite
//
// Notes:
//  Here is the control flow of this function:
//	1. Validate width parameter. The parameter is a subset of the one used by RootBridgeIo.
//  2. Call PciRootBridgeIo PciWrite and return its Status.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoPciWrite (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_WIDTH				Width,
	IN UINT64					Address,
	IN UINTN					Count,
	IN OUT VOID					*Buffer
)
{
	if (Width >= IO_UINT64) return EFI_INVALID_PARAMETER;
	return PciWrite (((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Width,Address,Count,Buffer);
}


//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoPciDevicePath
//
// Description:	Get a device path for a Pci Bus/Device/Function.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN UINT64					PciAddress
//	IN OUT EFI_DEVICE_PATH		**PciDevicePath
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: LocateHandleBuffer HandleProtocol GetLocation DPCopy FreePool
//
// Notes:
//  Here is the control flow of this function:
//	1. Locate handes of the PciIo Protocol.
//  2. Call the PciIo function GetLocation to find the matching PciDevicePath.
//  3. If match found, copy the the DevicePath on the same handle as the PciIo
//     Protocol. Otherwise, return EFI_UNSUPPORTED.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoPciDevicePath (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN UINT64					PciAddress,
	IN OUT EFI_DEVICE_PATH_PROTOCOL		**PciDevicePath
)
{
	EFI_PCI_IO_PROTOCOL	*PciIo;
	EFI_DEVICE_PATH_PROTOCOL		*Path;

	UINTN		Segment, Bus, Device, Function;
	EFI_STATUS	Status;
	UINTN		NoHandles;
	EFI_HANDLE	*HandleBuffer;
	UINTN		i;

	EFI_PCI_CONFIGURATION_ADDRESS PciAddr;
	*(UINT64*)&PciAddr = PciAddress;

	Status = pBS->LocateHandleBuffer (
		ByProtocol,
		&gPciIoProtocolGuid,
		NULL,
		&NoHandles,
		&HandleBuffer);
	if (EFI_ERROR(Status)) return Status;

	for(i = 0; i < NoHandles; ++i)
	{
		Status = pBS->HandleProtocol(
			HandleBuffer[i],
			&gPciIoProtocolGuid,
			&PciIo
			);
		if (EFI_ERROR(Status)) goto Exit;			//Should never get an error here.

		Status = PciIo->GetLocation(PciIo,
			&Segment,
			&Bus,
			&Device,
			&Function
		);
		if (EFI_ERROR(Status)) goto Exit;			//Should never get an error here.


		//Note: Difference in DeviceIo and PciRootBridgeIo defintion of PciAddress for bits [64:32].
		//DeviceIo [39:32] = Segment  and PciRootBridgeIo [64:32] = Extended register
		if (Segment != (PciAddr.ExtendedRegister&0xff)) continue;
		if (Bus != PciAddr.Bus || Device != PciAddr.Device || Function != PciAddr.Function) continue;

		Status = pBS->HandleProtocol(
			HandleBuffer[i],
			&gEfiDevicePathProtocolGuid,
			&Path
			);
		if (EFI_ERROR(Status))
		{
			Status = EFI_UNSUPPORTED;	//Should never get an error here. Should always have a device path.
			goto Exit;
		}

		*PciDevicePath = DPCopy(Path);					//Copy device path.
		Status = EFI_SUCCESS;
		goto Exit;
	}
	Status = EFI_UNSUPPORTED;
Exit:
	pBS->FreePool(HandleBuffer);
	return Status;
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoMap
//
// Description:	Map a device address to a host address.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_IO_OPERATION_TYPE	Operation
//	IN EFI_PHYSICAL_ADDRESS		*HostAddress
//	IN OUT UINTN				*NumberOfBytes
//	OUT EFI_PHYSICAL_ADDRESS	*DeviceAddress
//	OUT VOID					**Mapping
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: Map
//
// Notes:
//  Here is the control flow of this function:
//	1. Verify Operation. It is a subset of the PciRootBridgeIo Map Operation.
//  2. Verify valid map address range. Can not map any addresses over 4G.
//  3. Call PciRootBridgeIo Map.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoMap (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_IO_OPERATION_TYPE	Operation,
	IN EFI_PHYSICAL_ADDRESS		*HostAddress,
	IN OUT UINTN				*NumberOfBytes,
	OUT EFI_PHYSICAL_ADDRESS	*DeviceAddress,
	OUT VOID					**Mapping
)
{
	if ((unsigned)Operation > EfiBusMasterCommonBuffer) return EFI_INVALID_PARAMETER;
	if ((*HostAddress + *NumberOfBytes) > 0xffffffff) return EFI_UNSUPPORTED;

	return Map(
		((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,
		Operation,
		(VOID*)(*HostAddress),
		NumberOfBytes,
		DeviceAddress,
		Mapping);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoUnmap
//
// Description:	Unmap a device.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN VOID						*Mapping
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: Unmap
//
// Notes:
//  Here is the control flow of this function:
//	1. Call PciRootBridgeIo UnMap.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoUnmap (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN VOID						*Mapping
)
{
	return Unmap(((PRIVATE_DEVICE_IO*)This)->RootBridgeIo, Mapping);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoAllocateBuffer
//
// Description:	Allocate a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN EFI_ALLOCATE_TYPE		Type
//	IN EFI_MEMORY_TYPE			MemoryType
//	IN UINTN					Pages
//	IN OUT EFI_PHYSICAL_ADDRESS	*HostAddress
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: AllocatePages
//
// Notes:
//  Here is the control flow of this function:
//	1. Verify inputs to function.
//  2. If allocate type is AllocateAnyPages, change max address of 4G-1.
//	3. If allocate type is AllocateMaxAddress of 4G, change max address to 4G-1.
//  4. If allocate type is AllocateAddress, verify address is les than 4G.
//  3. Call BootServices Alloate.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoAllocateBuffer (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN EFI_ALLOCATE_TYPE		Type,
	IN EFI_MEMORY_TYPE			MemoryType,
	IN UINTN					Pages,
	IN OUT EFI_PHYSICAL_ADDRESS	*HostAddress
)
{
	EFI_STATUS				Status;
	EFI_ALLOCATE_TYPE		AllocateType = Type;	//May be changed in the code below.


	if (HostAddress == NULL) return EFI_INVALID_PARAMETER;
	if (AllocateType >= MaxAllocateType) return EFI_INVALID_PARAMETER;

	// The only valid memory types are EfiBootServicesData and EfiRuntimeServicesData
	if (MemoryType != EfiBootServicesData && MemoryType != EfiRuntimeServicesData)
		return EFI_INVALID_PARAMETER;

	if (AllocateType == AllocateAnyPages)
	{
		AllocateType = AllocateMaxAddress;
		*HostAddress = 0xffffffff;
	} else if (AllocateType == AllocateMaxAddress && *HostAddress > 0xffffffff)
	{
		*HostAddress = 0xffffffff;
	} else	//AllocateAddress
	{
		if (*HostAddress + 4096 * Pages > 0xffffffff) return EFI_UNSUPPORTED;
	}


	Status = pBS->AllocatePages (AllocateType, MemoryType, Pages, HostAddress);
	if (EFI_ERROR(Status)) return Status;

	return EFI_SUCCESS;
}


//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoFlush
//
// Description:	Flush cache lines.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE *This
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: Flush
//
// Notes:
//  Here is the control flow of this function:
//	1. Call PciRootBridgeIo Flush.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoFlush (
	IN EFI_DEVICE_IO_INTERFACE *This
)
{
	return Flush(((PRIVATE_DEVICE_IO*)This)->RootBridgeIo);
}

//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	DeviceIoFreeBuffer
//
// Description:	Free a buffer.
//
// Input:
//	IN EFI_DEVICE_IO_INTERFACE	*This
//	IN UINTN					Pages
//	IN EFI_PHYSICAL_ADDRESS		HostAddress
//
// Output:
//	EFI_STATUS
//
// Modified:
//
// Referrals: FreeBuffer
//
// Notes:
//  Here is the control flow of this function:
//	1. Call PciRootBridgeIo FreeBuffer.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_STATUS DeviceIoFreeBuffer (
	IN EFI_DEVICE_IO_INTERFACE	*This,
	IN UINTN					Pages,
	IN EFI_PHYSICAL_ADDRESS		HostAddress
)
{
	return FreeBuffer(((PRIVATE_DEVICE_IO*)This)->RootBridgeIo,Pages,(VOID*)HostAddress);
}


EFI_DEVICE_IO_INTERFACE gDeviceIo = {
	{DeviceIoMemRead,DeviceIoMemWrite},
	{DeviceIoIoRead,DeviceIoIoWrite},
	{DeviceIoPciRead,DeviceIoPciWrite},
	DeviceIoMap,
	DeviceIoPciDevicePath,
	DeviceIoUnmap,
	DeviceIoAllocateBuffer,
	DeviceIoFlush,
	DeviceIoFreeBuffer
};


//**********************************************************************
//<AMI_PHDR_START>
//
// Procedure:	ConstructDeviceIoProtocol
//
// Description:	Construct a DeviceIo protocol.
//
// Input:
// IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL	*RootBridgeIo
// IN EFI_DEVICE_PATH					*Path
//
// Output:
//	EFI_DEVICE_IO_INTERFACE *
//
// Modified:
//
// Referrals: AllocatePool
//
// Notes:
//  Here is the control flow of this function:
//	1. Allocate moemory for Private DeviceIo.
//  2. Copy DeviceIo functions to private structure.
//  3. Copy pointer RootBridgeIo to private structure.
//  4. Copy pointer to RootBridgeIo path to private structure.
//  5. Return pointer to private structure.
//
//<AMI_PHDR_END>
//**********************************************************************
EFI_DEVICE_IO_INTERFACE * ConstructDeviceIoProtocol(EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL	* RootBridgeIo, EFI_DEVICE_PATH_PROTOCOL *Path)
{
	EFI_STATUS			Status;
	PRIVATE_DEVICE_IO	*PrivateDeviceIo;

	Status = pBS->AllocatePool(EfiBootServicesData, sizeof(PRIVATE_DEVICE_IO),&PrivateDeviceIo);
	if (EFI_ERROR(Status)) return 0;

	PrivateDeviceIo->DeviceIo = gDeviceIo;
	PrivateDeviceIo->RootBridgeIo = RootBridgeIo;
	PrivateDeviceIo->DevicePath = Path;

	return (EFI_DEVICE_IO_INTERFACE*)PrivateDeviceIo;
}


/****** DO NOT WRITE BELOW THIS LINE *******/
#endif	//#if AMI_ROOT_BRIDGE_SUPPORT == 1


//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2005, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             6145-F Northbelt Pkwy, Norcross, GA 30071            **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************
//**********************************************************************