summaryrefslogtreecommitdiff
path: root/Silicon/Hisilicon/Hi1616/D05AcpiTables/Dsdt/D05Pci.asl
blob: 122e4f072cd1fac099ac197a2cafb226a050b457 (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
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
/** @file
*
*  Copyright (c) 2011-2015, ARM Limited. All rights reserved.
*  Copyright (c) 2016, Hisilicon Limited. All rights reserved.
*  Copyright (c) 2016, Linaro Limited. All rights reserved.
*
*  This program and the accompanying materials
*  are licensed and made available under the terms and conditions of the BSD License
*  which accompanies this distribution.  The full text of the license may be found at
*  http://opensource.org/licenses/bsd-license.php
*
*  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
*  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
*
*  Based on the files under ArmPlatformPkg/ArmJunoPkg/AcpiTables/
*
**/

//#include "ArmPlatform.h"
Scope(_SB)
{
  /* 0xD000E014:Hi1616 chip version reg[19:8], 0x102-after EC, 0x101/0-before EC. */
  OperationRegion (ECRA, SystemMemory, 0xD000E014, 0x4)
  Field (ECRA, AnyAcc, NoLock, Preserve)
  {
    VECA, 32,
  }

  /* RBYV:Return by chip version
   * the pcie device should be disable for chip's reason before EC,
   * and the pcie device should be enable after EC for OS */
  Method (RBYV)
  {
    Store(VECA, local0)
    And (local0, 0xFFF00, local1)
    If (LEqual (local1, 0x10200)) {
      Return (0xf)
    } Else {
      Return (0x0)
    }
  }

/*
  See ACPI 6.1 Spec, 6.2.11, PCI Firmware Spec 3.0, 4.5
*/
#define PCI_OSC_SUPPORT() \
  Name(SUPP, Zero) /* PCI _OSC Support Field value */ \
  Name(CTRL, Zero) /* PCI _OSC Control Field value */ \
  Method(_OSC,4) { \
    If(LEqual(Arg0,ToUUID("33DB4D5B-1FF7-401C-9657-7441C03DD766"))) { \
      /* Create DWord-adressable fields from the Capabilities Buffer */ \
      CreateDWordField(Arg3,0,CDW1) \
      CreateDWordField(Arg3,4,CDW2) \
      CreateDWordField(Arg3,8,CDW3) \
      /* Save Capabilities DWord2 & 3 */ \
      Store(CDW2,SUPP) \
      Store(CDW3,CTRL) \
      /* Only allow native hot plug control if OS supports: */ \
      /* ASPM */ \
      /* Clock PM */ \
      /* MSI/MSI-X */ \
      If(LNotEqual(And(SUPP, 0x16), 0x16)) { \
        And(CTRL,0x1E,CTRL) \
      }\
      \
      /* Do not allow native PME, AER */ \
      /* Never allow SHPC (no SHPC controller in this system)*/ \
      And(CTRL,0x10,CTRL) \
      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) \
      Return(Arg3) \
    } Else { \
      Or(CDW1,4,CDW1) /* Unrecognized UUID */ \
      Return(Arg3) \
    } \
  } // End _OSC

  // 1P NA PCIe2
  Device (PCI2)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 2) // Segment of this Root complex
    Name(_BBN, 0x80) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x80, // AddressMinimum - Minimum Bus Number
          0x87, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x8 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0xa8800000, // Min Base Address
          0xaffeffff, // Max Base Address
          0x0, // Translate
          0x77f0000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0xafff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RES2)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        Memory32Fixed (ReadWrite, 0xa00a0000 , 0x10000)
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x00)
    }
  } // Device(PCI2)

  Device (RES2)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0x2)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      Memory32Fixed (ReadWrite, 0xa00a0000 , 0x10000) //host bridge register space
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
  }

  Device (R1NA) // reserve 1p NA ECAM resource
  {
    Name (_HID, "PNP0C02")  // Motherboard reserved resource
    Name (_CRS, ResourceTemplate (){
      Memory32Fixed (ReadWrite, 0xa8000000 , 0x800000) //ECAM space for [bus 80-87]
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
  }

  // 1p NB PCIe0
  Device (PCI4)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 4) // Segment of this Root complex
    Name(_BBN, 0x88) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x88, // AddressMinimum - Minimum Bus Number
          0x8f, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x8 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0xa9000000, // Min Base Address
          0xabfeffff, // Max Base Address
          0x800000000, // Translate
          0x2ff0000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x8abff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RES4)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x8a0090000, // Min Base Address
          0x8a009ffff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
       )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x01)
    }
  } // Device(PCI4)
  Device (RES4)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0x4)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
        QwordMemory ( //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8a0090000, // Min Base Address
        0x8a009ffff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }

  // 1P NB PCI1
  Device (PCI5)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 5) // Segment of this Root complex
    Name(_BBN, 0x0) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x0, // AddressMinimum - Minimum Bus Number
          0x7, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x8 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0xb0800000, // Min Base Address
          0xb7feffff, // Max Base Address
          0x800000000, // Translate
          0x77f0000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x8b7ff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RES5)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x8a0200000, // Min Base Address
          0x8a020ffff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
       )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x01)
    }
  } // Device(PCI5)
  Device (RES5)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0x5)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      QwordMemory (  //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8a0200000, // Min Base Address
        0x8a020ffff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }

  // 1P NB PCIe2
  Device (PCI6)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 0x6) // Segment of this Root complex
    Name(_BBN, 0xc0) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0xc0, // AddressMinimum - Minimum Bus Number
          0xc7, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x8 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0xac900000, // Min Base Address
          0xaffeffff, // Max Base Address
          0x800000000, // Translate
          0x36f0000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x8afff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RES6)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x8a00a0000, // Min Base Address
          0x8a00affff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
    )
     })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x01)
    }
  } // Device(PCI6)
  Device (RES6)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0x6)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      QwordMemory ( //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8a00a0000, // Min Base Address
        0x8a00affff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }
  // 1P NB PCIe3
  Device (PCI7)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 0x7) // Segment of this Root complex
    Name(_BBN, 0x90) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x90, // AddressMinimum - Minimum Bus Number
          0x97, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x8 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0xb9800000, // Min Base Address
          0xbffeffff, // Max Base Address
          0x800000000, // Translate
          0x67f0000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x8bfff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RES7)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x8a00b0000, // Min Base Address
          0x8a00bffff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
        )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x01)
    }
  } // Device(PCI7)
  Device (RES7)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0x7)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      QwordMemory (  //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8a00b0000, // Min Base Address
        0x8a00bffff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }

  Device (R1NB) // reserve 1p NB ECAM resource
  {
    Name (_HID, "PNP0C02")  // Motherboard reserved resource
    Name (_CRS, ResourceTemplate (){
      QwordMemory ( //ECAM space for [bus 88-8f]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8a8800000, // Min Base Address
        0x8a8ffffff, // Max Base Address
        0x0, // Translate
        0x800000 // Length
      )
      QwordMemory ( //ECAM space for [bus 0-7]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8b0000000, // Min Base Address
        0x8b07fffff, // Max Base Address
        0x0, // Translate
        0x800000 // Length
      )
      QwordMemory (  //ECAM space for [bus c0-c7]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8ac000000, // Min Base Address
        0x8ac7fffff, // Max Base Address
        0x0, // Translate
        0x800000 // Length
      )
      QwordMemory (   //ECAM space for [bus 90-97]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x8b9000000, // Min Base Address
        0x8b97fffff, // Max Base Address
        0x0, // Translate
        0x800000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }
  // 2P NA PCIe2
  Device (PCIa)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 0xa) // Segment of this Root complex
    Name(_BBN, 0x10) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x10, // AddressMinimum - Minimum Bus Number
          0x1f, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x10 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0x40000000, // Min Base Address
          0xefffffff, // Max Base Address
          0x65000000000, // Translate
          0xb0000000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x67fffff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RESa)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x600a00a0000, // Min Base Address
          0x600a00affff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
        )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x02)
    }
  } // Device(PCIa)
  Device (RESa)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0xa)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      QwordMemory ( //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x600a00a0000, // Min Base Address
        0x600a00affff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
  }

  Device (R2NA) //reserve for 2p NA ecam resource
  {
    Name (_HID, "PNP0C02") // Motherboard reserved resource
    Name (_CRS, ResourceTemplate (){
      QwordMemory ( //ECAM space for [bus 10-1f]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x64001000000, // Min Base Address
        0x64001ffffff, // Max Base Address
        0x0, // Translate
        0x1000000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (0xf)
    }
  }
  // 2P NB PCIe0
  Device (PCIc)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 0xc) // Segment of this Root complex
    Name(_BBN, 0x20) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x20, // AddressMinimum - Minimum Bus Number
          0x2f, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x10 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0x40000000, // Min Base Address
          0xefffffff, // Max Base Address
          0x75000000000, // Translate
          0xb0000000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x77fffff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RESc)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x700a0090000, // Min Base Address
          0x700a009ffff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
        )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x03)
    }
  } // Device(PCIc)

  Device (RESc)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0xc)  //  Unique ID
    Name (_CRS, ResourceTemplate (){
      QwordMemory ( //host bridge register space
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x700a0090000, // Min Base Address
        0x700a009ffff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }
  //2P NB PCIe1
  Device (PCId)
  {
    Name (_HID, "PNP0A08") // PCI Express Root Bridge
    Name (_CID, "PNP0A03") // Compatible PCI Root Bridge
    Name(_SEG, 0xd) // Segment of this Root complex
    Name(_BBN, 0x30) // Base Bus Number
    Name(_CCA, 1)
    Method (_CRS, 0, Serialized) { // Root complex resources
      Name (RBUF, ResourceTemplate () {
        WordBusNumber ( // Bus numbers assigned to this root
          ResourceProducer, MinFixed, MaxFixed, PosDecode,
          0, // AddressGranularity
          0x30, // AddressMinimum - Minimum Bus Number
          0x3f, // AddressMaximum - Maximum Bus Number
          0, // AddressTranslation - Set to 0
          0x10 // RangeLength - Number of Busses
        )
        QWordMemory ( // 64-bit BAR Windows
          ResourceProducer,
          PosDecode,
          MinFixed,
          MaxFixed,
          Cacheable,
          ReadWrite,
          0x0, // Granularity
          0x40000000, // Min Base Address
          0xefffffff, // Max Base Address
          0x79000000000, // Translate
          0xB0000000 // Length
        )
        QWordIO (
          ResourceProducer,
          MinFixed,
          MaxFixed,
          PosDecode,
          EntireRange,
          0x0, // Granularity
          0x0, // Min Base Address
          0xffff, // Max Base Address
          0x7bfffff0000, // Translate
          0x10000 // Length
        )
      }) // Name(RBUF)
      Return (RBUF)
    } // Method(_CRS)
    Device (RESd)
    {
      Name (_HID, "HISI0081") // HiSi PCIe RC config base address
      Name (_CRS, ResourceTemplate (){
        QwordMemory (
          ResourceConsumer,
          PosDecode,
          MinFixed,
          MaxFixed,
          NonCacheable,
          ReadWrite,
          0x0, // Granularity
          0x700a0200000, // Min Base Address
          0x700a020ffff, // Max Base Address
          0x0, // Translate
          0x10000 // Length
        )
      })
    }
    PCI_OSC_SUPPORT()
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
    Method (_PXM, 0, NotSerialized)
    {
      Return(0x03)
    }
  } // Device(PCId)
  Device (RESd)
  {
    Name (_HID, "HISI0081") // HiSi PCIe RC config base address
    Name (_CID, "PNP0C02")  // Motherboard reserved resource
    Name (_UID, 0xd)  //  Unique ID
    Name (_CRS, ResourceTemplate (){ //host bridge register space
      QwordMemory (
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x700a0200000, // Min Base Address
        0x700a020ffff, // Max Base Address
        0x0, // Translate
        0x10000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }

  Device (R2NB) //reserve for 2p NB ecam resource
  {
    Name (_HID, "PNP0C02")  // Motherboard reserved resource
    Name (_CRS, ResourceTemplate (){
      QwordMemory (  //ECAM space for [bus 20-2f]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x74002000000, // Min Base Address
        0x74002ffffff, // Max Base Address
        0x0, // Translate
        0x1000000 // Length
      )
      QwordMemory (  //ECAM space for [bus 30-3f]
        ResourceConsumer,
        PosDecode,
        MinFixed,
        MaxFixed,
        NonCacheable,
        ReadWrite,
        0x0, // Granularity
        0x78003000000, // Min Base Address
        0x78003ffffff, // Max Base Address
        0x0, // Translate
        0x1000000 // Length
      )
    })
    Method (_STA, 0x0, NotSerialized)
    {
      Return (RBYV())
    }
  }
}