36
36
from common import OpTestASM
37
37
from common import OpTestHMC
38
38
from common import OpTestInstallUtil
39
- from common .OpTestEBMC import EBMCHostManagement
40
39
from common .OpTestUtil import OpTestUtil
41
40
from common .OpTestSystem import OpSystemState
42
41
@@ -441,6 +440,8 @@ def LparSetup(self, lpar_config=""):
441
440
return "Failed to enable Performance Information collection"
442
441
443
442
self .cv_HMC .poweron_lpar ()
443
+ time .sleep (60 )
444
+ self .cv_SYSTEM .console .close ()
444
445
curr_proc_mode = self .cv_HMC .get_proc_mode ()
445
446
if proc_mode :
446
447
if proc_mode in curr_proc_mode :
@@ -494,8 +495,6 @@ def __init__(self, cv_HMC=None, system_name=None,
494
495
self .config = OpTestConfiguration .conf
495
496
self .bmc_type = bmc_type
496
497
self .bmc = bmc
497
- if self .bmc_type == "FSP_PHYP" and iocapacity is not None :
498
- self .bmc .cv_ASM .configure_enlarged_io (iocapacity )
499
498
500
499
def CecSetup (self ):
501
500
@@ -508,7 +507,7 @@ def CecSetup(self):
508
507
self .hugepage_16gb_setup ()
509
508
if self .cec_dict ['iocapacity' ] is not None :
510
509
if bmc_type == "EBMC_PHYP" :
511
- self .io_enlarge_cpacity ( )
510
+ self .bmc . rest_api . configure_enlarged_io ( self . iocapacity )
512
511
elif bmc_type == "FSP_PHYP" :
513
512
self .cv_ASM .configure_enlarged_io (self .iocapacity )
514
513
if self .setup :
@@ -540,7 +539,7 @@ def ValidateCEC_Setup(self):
540
539
if self .bmc_type == "FSP_PHYP" :
541
540
self .bmc .cv_ASM .configure_enlarged_io (self .iocapacity )
542
541
else :
543
- self .io_enlarge_capacity ( )
542
+ self .bmc . rest_api . configure_enlarged_io ( self . iocapacity )
544
543
545
544
def lmb_setup (self ):
546
545
# Configure the lmb as per user request
@@ -558,37 +557,6 @@ def setting_16gb_hugepage_profile(self):
558
557
int (self .current_hgpg [0 ]))
559
558
self .cv_HMC .set_lpar_cfg (attrs )
560
559
561
- def io_enlarge_capacity (self ):
562
- """
563
- Calling set IO Enlarge capacity if provided value is not same as current value
564
- """
565
- cur_iocapacity = self .get_current_ioadapter_enlarged_capacity ()
566
- log .info ("Setting up ioenlarge capacity" )
567
- log .info ("Current ioenlarge capacity value:" + str (cur_iocapacity ))
568
- if cur_iocapacity != self .iocapacity :
569
- self .set_ioenlarge_capacity ()
570
- else :
571
- log .info ("Provided IO Enlarge capacity value is same as current value, Exiting..." )
572
-
573
- def get_current_ioadapter_enlarged_capacity (self ):
574
- """
575
- Get ioadapter enlarged capcity value
576
- """
577
- log .debug ("=====Get current IOAdapter Enlarge Capacity=====" )
578
- return self .bmc .rest_api .get_bios_attribute_value (
579
- bios_attribute = "hb_ioadapter_enlarged_capacity_current"
580
- )
581
-
582
- def set_ioenlarge_capacity (self ):
583
- """
584
- Set ioadapter enlarged capcity value
585
- """
586
- log .debug ("=====Set IOAdapter Enlarge Capacity=====" )
587
- self .bmc .rest_api .set_bios_attribute (
588
- bios_attribute = "hb_ioadapter_enlarged_capacity" ,
589
- bios_attribute_val = self .iocapacity
590
- )
591
-
592
560
593
561
class OsConfig ():
594
562
'''
0 commit comments