| /openbmc/phosphor-mrw-tools/ |
| H A D | gen_callouts.pl | 31 my $targets = Targets->new; 32 $targets->loadXML($mrwFile); 36 my @inventory = Inventory::getInventory($targets); 55 my $bmc = Util::getBMCTarget($targets); 56 my $connections = $targets->findConnections($bmc, "I2C"); 63 my $port = $targets->getAttribute($master,"I2C_PORT"); 73 my $addr = $targets->getAttribute($s,"I2C_ADDRESS"); 80 my $fru = Util::getEnclosingFru($targets, $s); 90 for my $target (keys %{$targets->getAllTargets()}) 92 if ($targets->getType($target) eq "PROC") [all …]
|
| H A D | gen_fan_zone_yaml.pl | 26 my $targets = Targets->new; 27 $targets->loadXML($serverwizFile); 29 my @inventory = Inventory::getInventory($targets); 55 for my $target (keys %{$targets->getAllTargets()}) 57 my $connections = $targets->findConnections($target, "TACH"); 69 my $fru = Util::getEnclosingFru($targets, $tach->{SOURCE}); 76 my $part = $targets->getTargetParent($tach->{SOURCE}); 77 my $zone = $targets->getAttribute($part, "COOLING_ZONE"); 85 if (!$targets->isBadAttribute($part, "COOLING_ZONE_PROFILE")) 87 $profile = $targets->getAttribute($part, [all …]
|
| H A D | Util.pm | 123 my ($targets, $targetName) = @_; 130 if (!$targets->isBadAttribute($targetName, "RU_TYPE")) 132 my $ruType = $targets->getAttribute($targetName, "RU_TYPE"); 139 my $parent = $targets->getTargetParent($targetName); 140 return getEnclosingFru($targets, $parent); 157 my ($targets, $passedInTarget) = @_; 166 if (!$targets->isBadAttribute($target, "LOCATION_CODE")) 168 my $loc = $targets->getAttribute($target, "LOCATION_CODE"); 169 my $type = $targets->getAttribute($target, "LOCATION_CODE_TYPE"); 195 $target = $targets->getTargetParent($target);
|
| H A D | gen_presence_yaml.pl | 26 my $targets = Targets->new; 27 $targets->loadXML($serverwizFile); 29 my @inventory = Inventory::getInventory($targets); 49 for my $target (keys %{$targets->getAllTargets()}) 51 my $connections = $targets->findConnections($target, "TACH"); 61 my $fru = Util::getEnclosingFru($targets, $tach->{SOURCE}); 114 my @hwmons = Util::getChildUnitsWithTargetType($targets, 119 my $name = $targets->getAttributeField($hwmons[0],
|
| H A D | gen_fru_properties.pl | 36 my $targets = Targets->new; 37 $targets->loadXML($mrwFile); 38 my @inventory = Inventory::getInventory($targets); 56 Util::getBMCTarget($targets))."/ethernet" 66 if (!$targets->isBadAttribute($item->{TARGET}, "TYPE")) { 67 $targetType = $targets->getAttribute($item->{TARGET}, "TYPE"); 133 if (!$targets->isBadAttribute($item->{TARGET}, "RU_TYPE")) 135 my $ruType = $targets->getAttribute($item->{TARGET}, "RU_TYPE");
|
| H A D | gen_openpower_fru.pl | 29 my $targets = Targets->new; 30 $targets->loadXML($mrwFile); 31 my @inventory = Inventory::getInventory($targets); 38 Util::getBMCTarget($targets))."/ethernet" 56 if (!$targets->isBadAttribute($item->{TARGET}, "TYPE")) { 57 $targetType = $targets->getAttribute($item->{TARGET}, "TYPE");
|
| H A D | gen_path_callouts.pl | 246 my $targets = Targets->new; 247 $targets->loadXML($mrwFile); 280 foreach my $target (sort keys %{$targets->getAllTargets()}) 282 my $numConnections = $targets->getNumConnections($target); 291 my $connBusObj = $targets->getConnectionBus($target, $connIndex); 300 my $dest = $targets->getConnectionDestination($target, $connIndex); 325 my $parent = $targets->getTargetParent($dest); 326 if ($targets->getAttribute($parent, "CLASS") eq "CONNECTOR") 345 my $fruPath = $targets->getBusAttribute( 371 $segment{I2CBus} = $targets->getBusAttribute( [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | refresh-pxe-roms.sh | 24 targets="pxerom" 26 targets="$targets efirom" 30 make -j4 $targets || exit 1
|
| H A D | mtest2make.py | 42 def process_tests(test, targets, suites): argument 49 deps = (targets.get(x, []) for x in test['depends']) 86 …targets = [f'{prefix}-{name}', f'{prefix}-report-{name}.junit.xml', f'{prefix}', f'{prefix}-report… 90 for t in targets: 95 targets = f'{prefix}-{name} {prefix}-report-{name}.junit.xml {prefix} {prefix}-report.junit.xml' 100 targets = {t['id']: [os.path.relpath(f) for f in t['filename']] variable 105 process_tests(test, targets, testsuites) 112 process_tests(test, targets, benchsuites)
|
| /openbmc/openpower-proc-control/ |
| H A D | targeting.cpp | 52 auto target = find_if(targets.begin(), targets.end(), search); in getTarget() 53 if (target == targets.end()) in getTarget() 70 targets.push_back(std::make_unique<Target>(0, fsiMasterPath)); in Targeting() 90 targets.push_back(std::make_unique<Target>(pos, path)); in Targeting() 106 std::sort(targets.begin(), targets.end(), sortTargets); in Targeting()
|
| H A D | targeting.hpp | 105 return targets.cbegin(); in begin() 113 return targets.cend(); in end() 121 return targets.size(); in size() 143 std::vector<std::unique_ptr<Target>> targets; member in openpower::targeting::Targeting
|
| /openbmc/openpower-hw-diags/util/data/ |
| H A D | meson.build | 4 'peer-targets-bonnell.json', 5 'peer-targets-everest.json', 6 'peer-targets-rainier-2u.json', 7 'peer-targets-rainier-4u.json',
|
| /openbmc/openpower-proc-control/test/ |
| H A D | utest.cpp | 63 Targeting targets{masterDir, _slaveDir}; in TEST_F() local 64 ASSERT_EQ(targets.size(), 1); in TEST_F() 66 auto t = targets.begin(); in TEST_F() 80 Targeting targets{masterDir, _slaveDir}; in TEST_F() local 82 ASSERT_EQ(targets.size(), 5); in TEST_F() 86 for (const auto& t : targets) in TEST_F()
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-extended/tgt/files/ |
| H A D | tgtd.service | 11 # Put tgtd into "offline" state until all the targets are configured. 15 # Configure the targets. 20 # Update configuration for targets. Only targets which 27 # Remove all targets. It only removes targets which are not in use. 29 # tgtd will exit if all targets were removed
|
| /openbmc/openbmc/poky/scripts/ |
| H A D | sstate-diff-machines.sh | 32 targets= 54 --targets=<targets> 55 …List of targets separated by space, will use the environment variable TARGETS if it is not specifi… 83 --targets=*) 84 targets=`echo $1 | sed -e 's#^--targets="*\([^"]*\)"*#\1#'` 109 [ -n "$targets" ] || targets=$TARGETS 110 [ -n "$targets" ] || targets=$default_targets 119 bitbake -S none ${targets} 2>&1 | tee -a ${OUTPUT}/${M}/log;
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | sstatetests.py | 83 …def run_test_sstate_creation(self, targets, distro_specific=True, distro_nonspecific=True, temp_ss… argument 87 bitbake(['-cclean'] + targets) 89 bitbake(['-ccleansstate'] + targets) 104 bitbake(targets) 106 … results = self.search_sstate('|'.join(map(str, targets)), distro_specific, distro_nonspecific) 116 …assertTrue(file_tracker , msg="Could not find sstate files for: %s" % ', '.join(map(str, targets))) 118 …state files in the wrong place for: %s (found %s)" % (', '.join(map(str, targets)), str(file_track… 131 …ctories with the wrong permissions: %s (found %s)" % (', '.join(map(str, targets)), str(badperms))) 134 …def run_test_cleansstate_task(self, targets, distro_specific=True, distro_nonspecific=True, temp_s… argument 137 bitbake(['-ccleansstate'] + targets) [all …]
|
| H A D | gcc.py | 22 targets = get_bb_var("RUNTIMETARGET", "gcc-runtime").split() 23 if suite not in targets: 27 targets = set() 30 targets.add("check-gcc-c") 32 targets.add("check-gcc-c++") 34 targets.add("check-target-{}".format(s)) 38 features.append('MAKE_CHECK_TARGETS = "{0}"'.format(" ".join(targets)))
|
| /openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-security/trusted-services/corstone1000/psa-apitest/ |
| H A D | 0002-corstone1000-Disable-obsolete-algorithms.patch | 12 .../targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h | 4 ++++ 15 diff --git a/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h b/api-tests/pla… 17 --- a/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h 18 +++ b/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h
|
| H A D | 0003-corstone1000-Disable-SHA512-384.patch | 12 .../targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h | 4 ++-- 15 diff --git a/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h b/api-tests/pla… 17 --- a/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h 18 +++ b/api-tests/platform/targets/tgt_dev_apis_linux/nspe/pal_crypto_config.h
|
| /openbmc/openpower-proc-control/procedures/p9/ |
| H A D | start_host.cpp | 40 Targeting targets; in startHost() local 41 const auto& master = *(targets.begin()); in startHost() 44 entry("NUM_PROCS=%d", targets.size())); in startHost() 50 for (const auto& t : targets) in startHost()
|
| H A D | start_host_mpreboot.cpp | 46 Targeting targets; in startHostMpReboot() local 47 const auto& master = *(targets.begin()); in startHostMpReboot() 50 entry("NUM_PROCS=%d", targets.size())); in startHostMpReboot() 56 for (const auto& t : targets) in startHostMpReboot()
|
| /openbmc/phosphor-gpio-monitor/ |
| H A D | gpioMon.cpp | 74 auto risingFind = targets.find(rising); in gpioEventHandler() 75 if (risingFind != targets.end()) in gpioEventHandler() 82 auto fallingFind = targets.find(falling); in gpioEventHandler() 83 if (fallingFind != targets.end()) in gpioEventHandler() 114 if (auto itr = targets.find(value ? init_high : init_low); in gpioHandleInitialState() 115 itr != targets.end()) in gpioHandleInitialState()
|
| H A D | gpioMon.hpp | 47 const std::map<std::string, std::vector<std::string>>& targets, in GpioMonitor() argument 50 target(target), targets(targets), gpioLineMsg(lineMsg), in GpioMonitor() 70 std::map<std::string, std::vector<std::string>> targets; member in phosphor::gpio::GpioMonitor
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-test/syzkaller/syzkaller/ |
| H A D | 0001-sys-targets-targets.go-allow-users-to-override-hardc.patch | 4 Subject: [PATCH] sys/targets/targets.go: allow users to override hardcoded 18 sys/targets/targets.go | 19 +++++++++++-------- 21 --- a/sys/targets/targets.go 22 +++ b/sys/targets/targets.go
|
| /openbmc/qemu/ |
| H A D | Makefile | 298 @echo 'Generic targets:' 306 @echo 'Cleaning targets:' 311 @echo 'Linux-user targets:' 314 @echo 'Test targets:' 321 @echo 'Documentation targets:' 325 @echo 'Windows targets:'
|