summaryrefslogtreecommitdiff
path: root/ReferenceCode/Chipset/SystemAgent/AcpiTables/HOST_BUS.ASL
blob: 439736e0e87143a33927132426f00538f5df4b76 (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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
/*++
  This file contains an 'Intel Peripheral Driver' and uniquely
  identified as "Intel Reference Module" and is
  licensed for Intel CPUs and chipsets under the terms of your
  license agreement with Intel or your vendor.  This file may
  be modified by the user, subject to additional terms of the
  license agreement
--*/

/*++

Copyright (c)  1999 - 2013 Intel Corporation. All rights reserved
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
Intel Corporation.


Module Name:

  HOST_BUS.ASL

Abstract:

  SystemAgent PCI configuration space definition.

--*/


  //
  // Define various System Agent (SA) PCI Configuration Space
  // registers which will be used to dynamically produce all
  // resources in the Host Bus _CRS.
  //
OperationRegion (HBUS, PCI_Config, 0x00, 0x100)
Field (HBUS, DWordAcc, NoLock, Preserve)
{
  Offset(0x40),   // EPBAR (0:0:0:40)
  EPEN, 1,        // Enable
      , 11,
  EPBR, 20,       // EPBAR [31:12]

  Offset(0x48),   // MCHBAR (0:0:0:48)
  MHEN, 1,        // Enable
      , 14,
  MHBR, 17,       // MCHBAR [31:15]

  Offset(0x50),   // GGC (0:0:0:50)
  GCLK, 1,        // GGCLCK

  Offset(0x54),   // DEVEN (0:0:0:54)
  D0EN, 1,        // DEV0 Enable
  D1F2, 1,        // DEV1 FUN2 Enable
  D1F1, 1,        // DEV1 FUN1 Enable
  D1F0, 1,        // DEV1 FUN0 Enable

  Offset(0x60),   // PCIEXBAR (0:0:0:60)
  PXEN, 1,        // Enable
  PXSZ, 2,        // PCI Express Size
      , 23,
  PXBR, 6,        // PCI Express BAR [31:26]

  Offset(0x68),   // DMIBAR (0:0:0:68)
  DIEN, 1,        // Enable
      , 11,
  DIBR, 20,       // DMIBAR [31:12]

  Offset(0x70),   // MESEG_BASE (0:0:0:70)
      , 20,
  MEBR, 12,       // MESEG_BASE [31:20]

  Offset(0x80),   // PAM0 Register (0:0:0:80)
      , 4,
  PM0H, 2,        // PAM 0, High Nibble
      , 2,

  Offset(0x81),   // PAM1 Register (0:0:0:81)
  PM1L, 2,        // PAM1, Low  Nibble
      , 2,
  PM1H, 2,        // PAM1, High Nibble
      , 2,

  Offset(0x82),   // PAM2 Register (0:0:0:82)
  PM2L, 2,        // PAM2, Low  Nibble
      , 2,
  PM2H, 2,        // PAM2, High Nibble
      , 2,

  Offset(0x83),   // PAM3 Register (0:0:0:83)
  PM3L, 2,        // PAM3, Low  Nibble
      , 2,
  PM3H, 2,        // PAM3, High Nibble
      , 2,

  Offset(0x84),   // PAM4 Register (0:0:0:84)
  PM4L, 2,        // PAM4, Low  Nibble
      , 2,
  PM4H, 2,        // PAM4, High Nibble
      , 2,

  Offset(0x85),   // PAM5 Register (0:0:0:85)
  PM5L, 2,        // PAM5, Low  Nibble
      , 2,
  PM5H, 2,        // PAM5, High Nibble
      , 2,

  Offset(0x86),   // PAM6 Register (0:0:0:86)
  PM6L, 2,        // PAM6, Low  Nibble
      , 2,
  PM6H, 2,        // PAM6, High Nibble
      , 2,

  Offset(0xA8),   // Top of Upper Usable DRAM Register (0:0:0:A8)
      , 20,
  TUUD, 19,       // TOUUD [38:20]

  Offset(0xBC),   // Top of Lower Usable DRAM Register (0:0:0:BC)
      , 20,
  TLUD, 12,       // TOLUD [31:20]

  Offset(0xC8),   // ERRSTS register (0:0:0:C8)
      , 7,
  HTSE, 1         // Host Thermal Sensor Event for SMI/SCI/SERR
}

OperationRegion (MCHT, SystemMemory, 0xFED10000, 0x1100)

// Define a buffer that will store all the bus, memory, and IO information
// relating to the Host Bus.  This buffer will be dynamically altered in
// the _CRS and passed back to the OS.

Name(BUF0,ResourceTemplate()
{
  // Bus Number Allocation: Bus 0 to 0xFF

  WORDBusNumber(ResourceProducer,MinFixed,MaxFixed,PosDecode,0x00,
    0x0000,0x00FF,0x00,0x0100,,,PB00)

  // I/O Region Allocation 0 ( 0x0000 - 0x0CF7 )

  DWordIo(ResourceProducer,MinFixed,MaxFixed,PosDecode,EntireRange,
    0x00,0x0000,0x0CF7,0x00,0x0CF8,,,PI00)

  // PCI Configuration Registers ( 0x0CF8 - 0x0CFF )

  Io(Decode16,0x0CF8,0x0CF8,1,0x08)

  // I/O Region Allocation 1 ( 0x0D00 - 0xFFFF )

  DWordIo(ResourceProducer,MinFixed,MaxFixed,PosDecode,EntireRange,
    0x00,0x0D00,0xFFFF,0x00,0xF300,,,PI01)

  // Video Buffer Area ( 0xA0000 - 0xBFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xA0000,0xBFFFF,0x00,0x20000,,,A000)

  // ISA Add-on BIOS Area ( 0xC0000 - 0xC3FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xC0000,0xC3FFF,0x00,0x4000,,,C000)

  // ISA Add-on BIOS Area ( 0xC4000 - 0xC7FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xC4000,0xC7FFF,0x00,0x4000,,,C400)

  // ISA Add-on BIOS Area ( 0xC8000 - 0xCBFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xC8000,0xCBFFF,0x00,0x4000,,,C800)

  // ISA Add-on BIOS Area ( 0xCC000 - 0xCFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xCC000,0xCFFFF,0x00,0x4000,,,CC00)

  // ISA Add-on BIOS Area ( 0xD0000 - 0xD3FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xD0000,0xD3FFF,0x00,0x4000,,,D000)

  // ISA Add-on BIOS Area ( 0xD4000 - 0xD7FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xD4000,0xD7FFF,0x00,0x4000,,,D400)

  // ISA Add-on BIOS Area ( 0xD8000 - 0xDBFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xD8000,0xDBFFF,0x00,0x4000,,,D800)

  // ISA Add-on BIOS Area ( 0xDC000 - 0xDFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xDC000,0xDFFFF,0x00,0x4000,,,DC00)

  // BIOS Extension Area ( 0xE0000 - 0xE3FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xE0000,0xE3FFF,0x00,0x4000,,,E000)

  // BIOS Extension Area ( 0xE4000 - 0xE7FFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xE4000,0xE7FFF,0x00,0x4000,,,E400)

  // BIOS Extension Area ( 0xE8000 - 0xEBFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xE8000,0xEBFFF,0x00,0x4000,,,E800)

  // BIOS Extension Area ( 0xEC000 - 0xEFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xEC000,0xEFFFF,0x00,0x4000,,,EC00)

  // BIOS Area ( 0xF0000 - 0xFFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0xF0000,0xFFFFF,0x00,0x10000,,,F000)

//  // Memory Hole Region ( 0xF00000 - 0xFFFFFF )
//
//  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
//    ReadWrite,0x00,0xF00000,0xFFFFFF,0x00,0x100000,,,HOLE)

  // PCI Memory Region ( TOLUD - 0xFEAFFFFF )

  DWordMemory(ResourceProducer,PosDecode,MinFixed,MaxFixed,Cacheable,
    ReadWrite,0x00,0x00000000,0xFEAFFFFF,0x00,0xFEB00000,,,PM01)
})

Method(_CRS,0,Serialized)
{
  // Fix up Max Bus Number and Length
  CreateWordField(BUF0, ^PB00._MAX, PBMX)
  Store(Subtract(ShiftRight(\PELN,20),2), PBMX)
  CreateWordField(BUF0, ^PB00._LEN, PBLN)
  Store(Subtract(ShiftRight(\PELN,20),1), PBLN)
  // Fix up all of the Option ROM areas from 0xC0000-0xFFFFF.
  //

  If(PM1L)  // \_SB.PCI0
  {
      // PAMx != 0.  Set length = 0.

      CreateDwordField(BUF0, ^C000._LEN,C0LN)
      Store(Zero,C0LN)
  }

  If(LEqual(PM1L,1))
  {
      CreateBitField(BUF0, ^C000._RW,C0RW)
      Store(Zero,C0RW)
  }

  If(PM1H)
  {
      CreateDwordField(BUF0, ^C400._LEN,C4LN)
      Store(Zero,C4LN)
  }

  If(LEqual(PM1H,1))
  {
      CreateBitField(BUF0, ^C400._RW,C4RW)
      Store(Zero,C4RW)
  }

  If(PM2L)
  {
      CreateDwordField(BUF0, ^C800._LEN,C8LN)
      Store(Zero,C8LN)
  }

  If(LEqual(PM2L,1))
  {
      CreateBitField(BUF0, ^C800._RW,C8RW)
      Store(Zero,C8RW)
  }

  If(PM2H)
  {
      CreateDwordField(BUF0, ^CC00._LEN,CCLN)
      Store(Zero,CCLN)
  }

  If(LEqual(PM2H,1))
  {
      CreateBitField(BUF0, ^CC00._RW,CCRW)
      Store(Zero,CCRW)
  }

  If(PM3L)
  {
      CreateDwordField(BUF0, ^D000._LEN,D0LN)
      Store(Zero,D0LN)
  }

  If(LEqual(PM3L,1))
  {
      CreateBitField(BUF0, ^D000._RW,D0RW)
      Store(Zero,D0RW)
  }

  If(PM3H)
  {
      CreateDwordField(BUF0, ^D400._LEN,D4LN)
      Store(Zero,D4LN)
  }

  If(LEqual(PM3H,1))
  {
      CreateBitField(BUF0, ^D400._RW,D4RW)
      Store(Zero,D4RW)
  }

  If(PM4L)
  {
      CreateDwordField(BUF0, ^D800._LEN,D8LN)
      Store(Zero,D8LN)
  }

  If(LEqual(PM4L,1))
  {
      CreateBitField(BUF0, ^D800._RW,D8RW)
      Store(Zero,D8RW)
  }

  If(PM4H)
  {
      CreateDwordField(BUF0, ^DC00._LEN,DCLN)
      Store(Zero,DCLN)
  }

  If(LEqual(PM4H,1))
  {
      CreateBitField(BUF0, ^DC00._RW,DCRW)
      Store(Zero,DCRW)
  }

  If(PM5L)
  {
      CreateDwordField(BUF0, ^E000._LEN,E0LN)
      Store(Zero,E0LN)
  }

  If(LEqual(PM5L,1))
  {
      CreateBitField(BUF0, ^E000._RW,E0RW)
      Store(Zero,E0RW)
  }

  If(PM5H)
  {
      CreateDwordField(BUF0, ^E400._LEN,E4LN)
      Store(Zero,E4LN)
  }

  If(LEqual(PM5H,1))
  {
      CreateBitField(BUF0, ^E400._RW,E4RW)
      Store(Zero,E4RW)
  }

  If(PM6L)
  {
      CreateDwordField(BUF0, ^E800._LEN,E8LN)
      Store(Zero,E8LN)
  }

  If(LEqual(PM6L,1))
  {
      CreateBitField(BUF0, ^E800._RW,E8RW)
      Store(Zero,E8RW)
  }

  If(PM6H)
  {
      CreateDwordField(BUF0, ^EC00._LEN,ECLN)
      Store(Zero,ECLN)
  }

  If(LEqual(PM6H,1))
  {
      CreateBitField(BUF0, ^EC00._RW,ECRW)
      Store(Zero,ECRW)
  }

  If(PM0H)
  {
      CreateDwordField(BUF0, ^F000._LEN,F0LN)
      Store(Zero,F0LN)
  }

  If(LEqual(PM0H,1))
  {
      CreateBitField(BUF0, ^F000._RW,F0RW)
      Store(Zero,F0RW)
  }

//  // Enable the 1MB region between 15-16MB if HENA = 1.
//
//  If( MCHC.HENA)
//  {
//    CreateDwordField(BUF0, HOLE._LEN,H0LN)
//    Store(0x100000,H0LN)
//  }

  // Create pointers to Memory Sizing values.

  CreateDwordField(BUF0, ^PM01._MIN,M1MN)
  CreateDwordField(BUF0, ^PM01._MAX,M1MX)
  CreateDwordField(BUF0, ^PM01._LEN,M1LN)

  // Set Memory Size Values. TLUD represents bits 31:20 of phyical
  // TOM, so shift these bits into the correct position and fix up
  // the Memory Region available to PCI.

  ShiftLeft( TLUD,20,M1MN)
  Add(Subtract(M1MX,M1MN),1,M1LN)

  Return(BUF0)
}

//Name(GUID,UUID("33DB4D5B-1FF7-401C-9657-7441C03DD766"))
Name(GUID,Buffer(){0x5b, 0x4d, 0xdb, 0x33,
          0xf7, 0x1f,
          0x1c, 0x40,
          0x96, 0x57,
          0x74, 0x41, 0xc0, 0x3d, 0xd7, 0x66})


Name(SUPP,0)  // PCI _OSC Support Field value
Name(CTRL,0)  // PCI _OSC Control Field value
Name(XCNT, 0) // Variable used in _OSC for counting

Method(_OSC,4,Serialized)
{ // Check for proper UUID
  // Save the capabilities buffer
  Store(Arg3,Local0)

  // Create DWord-adressable fields from the Capabilties Buffer
  CreateDWordField(Local0,0,CDW1)
  CreateDWordField(Local0,4,CDW2)
  CreateDWordField(Local0,8,CDW3)


  //
  // This provides a facility for the PCH reference code to expose USB XHCI controllers to the OS.
  // Refer to Intel PCH reference code for further details.
  //
  if (\_SB.PCI0.XHC.CUID(Arg0)) {
    Return (\_SB.PCI0.XHC.POSC(Arg1, Arg2, Arg3))
  } else {
    If (LGreaterEqual(OSYS,2012)) {
      If(LEqual(XCNT, 0)) {
        \_SB.PCI0.XHC.XSEL()
        Increment(XCNT)
      }
    }
  }

  // Check for proper UUID
#ifdef AMI_ORIGINAL_FOR_FIX_UUID_INVALID
  If(LAnd(LEqual(Arg0,GUID),NEXP))
#else // AMI_ORIGINAL_FOR_FIX_UUID_INVALID
  If(LEqual(Arg0,GUID))
#endif // AMI_ORIGINAL_FOR_FIX_UUID_INVALID
  {
    // Save Capabilities DWord2 & 3
    Store(CDW2,SUPP)
    Store(CDW3,CTRL)

    // You can clear bits in CTRL here if you don't want OS to take
    // control

//    And(CTRL, 0xFFFFFFF8, CTRL)       // disable Native hot plug, PME

#ifdef AMI_ORIGINAL_FOR_FIX_UUID_INVALID
    If(Not(And(CDW1,1)))  // Query flag clear?
    { // Disable GPEs for features granted native control.
      If(And(CTRL,0x01))
      {
        NHPG()
      }
      If(And(CTRL,0x04))  // PME control granted?
      {
        NPME()
      }
    }
#else // AMI_ORIGINAL_FOR_FIX_UUID_INVALID
    If (LEqual(NEXP,0)) 
    {
       And(CTRL, 0xFFFFFFF8, CTRL)       // disable Native hot plug, PME
    }

    If (NEXP) 
    {
       If(Not(And(CDW1,1)))  // Query flag clear?
       { // Disable GPEs for features granted native control.
         If(And(CTRL,0x01))
         {
           NHPG()
         }
         If(And(CTRL,0x04))  // PME control granted?
         {
           NPME()
         }
       }
    } 

#endif // AMI_ORIGINAL_FOR_FIX_UUID_INVALID

    If(LNotEqual(Arg1,One))
    { // Unknown revision
      Or(CDW1,0x08,CDW1)
    }

    If(LNotEqual(CDW3,CTRL))
    { // Capabilities bits were masked
      Or(CDW1,0x10,CDW1)
    }
    // Update DWORD3 in the buffer
    Store(CTRL,CDW3)
    Store(CTRL,OSCC)
    Return(Local0)
  } Else {
    Or(CDW1,4,CDW1)   // Unrecognized UUID
    Return(Local0)
  }
} // End _OSC

// Added code for Dual IRQ support. Two set of ACPI IRQ tables were generated.
// Code has been added to select the appropriate IRQ table by checking the CPUID.
Scope(\_SB.PCI0)
{
	Method(AR00) {
		Return(\_SB.AR00)

	}

	Method(PR00) {
		Return(\_SB.PR00)
	}

#if defined(ASL_PCI_BRIDGE_DISABLE) && (ASL_PCI_BRIDGE_DISABLE == 0)
	Method(AR01) {
		Return(\_SB.AR01)
	}

	Method(PR01) {
		Return(\_SB.PR01)
	}
#endif

#ifdef AMI_ORIGINAL_FOR_DISABLE_PCIE_SLOT
	Method(AR02) {
		Return(\_SB.AR02)
	}

	Method(PR02) {
		Return(\_SB.PR02)
	}

	Method(AR04) {
		Return(\_SB.AR04)
	}

	Method(PR04) {
		Return(\_SB.PR04)
	}

	Method(AR05) {
		Return(\_SB.AR05)
	}

	Method(PR05) {
		Return(\_SB.PR05)
	}

	Method(AR06) {
		Return(\_SB.AR06)
	}

	Method(PR06) {
		Return(\_SB.PR06)
	}

	Method(AR07) {
		Return(\_SB.AR07)
	}

	Method(PR07) {
		Return(\_SB.PR07)
	}

	Method(AR08) {
		Return(\_SB.AR08)
	}

	Method(PR08) {
		Return(\_SB.PR08)
	}

	Method(AR09) {
		Return(\_SB.AR09)
	}

	Method(PR09) {
		Return(\_SB.PR09)
	}

	Method(AR0A) {
		Return(\_SB.AR0A)
	}

	Method(PR0A) {
		Return(\_SB.PR0A)
	}

	Method(AR0B) {
		Return(\_SB.AR0B)
	}

	Method(PR0B) {
		Return(\_SB.PR0B)
  }
#else // AMI_ORIGINAL_FOR_DISABLE_PCIE_SLOT
#if defined(ASL_RC_PEG_0) && (ASL_RC_PEG_0 == 1)
	Method(AR02) {
		Return(\_SB.AR02)
	}

	Method(PR02) {
		Return(\_SB.PR02)
	}
#endif

#if defined (ASL_RC_PORT_0) && (ASL_RC_PORT_0 == 1)
	Method(AR04) {
		Return(\_SB.AR04)
	}

	Method(PR04) {
		Return(\_SB.PR04)
	}

#if defined (ASL_RC_PORT_1) && (ASL_RC_PORT_1 == 1)
	Method(AR05) {
		Return(\_SB.AR05)
	}

	Method(PR05) {
		Return(\_SB.PR05)
	}
#endif

#if defined (ASL_RC_PORT_2) && (ASL_RC_PORT_2 == 1)
	Method(AR06) {
		Return(\_SB.AR06)
	}

	Method(PR06) {
		Return(\_SB.PR06)
	}
#endif

#if defined (ASL_RC_PORT_3) && (ASL_RC_PORT_3 == 1)
	Method(AR07) {
		Return(\_SB.AR07)
	}

	Method(PR07) {
		Return(\_SB.PR07)
	}
#endif

#if defined (ASL_RC_PORT_4) && (ASL_RC_PORT_4 == 1)
	Method(AR08) {
		Return(\_SB.AR08)
	}

	Method(PR08) {
		Return(\_SB.PR08)
	}
#endif

#if defined (ASL_RC_PORT_5) && (ASL_RC_PORT_5 == 1)
	Method(AR09) {
		Return(\_SB.AR09)
	}

	Method(PR09) {
		Return(\_SB.PR09)
	}
#endif

#if defined (ASL_RC_PORT_6) && (ASL_RC_PORT_6 == 1)
	Method(AR0E) {
		Return(\_SB.AR0E)
	}

	Method(PR0E) {
		Return(\_SB.PR0E)
	}
#endif

#if defined (ASL_RC_PORT_7) && (ASL_RC_PORT_7 == 1)
	Method(AR0F) {
		Return(\_SB.AR0F)
	}

	Method(PR0F) {
		Return(\_SB.PR0F)
	}
#endif
#endif

#if defined(ASL_RC_PEG_1) && (ASL_RC_PEG_1 == 1)
	Method(AR0A) {
		Return(\_SB.AR0A)
	}

	Method(PR0A) {
		Return(\_SB.PR0A)
	}

#if defined(ASL_RC_PEG_2) && (ASL_RC_PEG_2 == 1)
	Method(AR0B) {
		Return(\_SB.AR0B)
	}

	Method(PR0B) {
		Return(\_SB.PR0B)
    }
#endif
#endif
#endif // AMI_ORIGINAL_FOR_DISABLE_PCIE_SLOT
}

#ifndef AMI_OVERRIDE_FOR_TPM_AREA_REPORT
Device(TPMX)
{
  Name(_HID, EISAID("PNP0C01"))   // Hardware Device ID
  Name(_UID, 1)

  Name(CRS, ResourceTemplate()
  {
    Memory32Fixed(ReadOnly, 0xFED40000, 0x5000, TPMR) //Non-writeable
  })

  Method (_CRS, 0)
  {
      Return(CRS)
  }
    // if TPM is active, TPM module will report TPM area to OS.
  Method (_STA, 0)
  {
    If(TPMF)
    {
        Return(0x00)
    }
     Return(0x0F)
  }
}
#endif // AMI_OVERRIDE_FOR_TPM_AREA_REPORT