├── .gitignore ├── .gitmodules ├── LICENSE ├── LICENSE_PROLOG ├── NOTICE ├── README.md ├── config.mk ├── env.bash ├── example_customrc ├── hb ├── img └── .gitignore ├── makefile ├── obj ├── .gitignore ├── beam │ └── .gitignore ├── cscope │ └── .gitignore ├── doxygen │ └── .gitignore └── genfiles │ └── .gitignore ├── procedure.rules.mk ├── setup.py └── src ├── HBconfig ├── bootloader.ld ├── bootloader ├── README.md ├── bl_builtins.C ├── bl_console.C ├── bl_pnorAccess.C ├── bl_pnor_ecc.C ├── bl_pnor_utils.C ├── bl_start.S ├── bl_string_utils.C ├── bl_terminate.C ├── bl_tpm_spidd.C ├── bl_xscom.C ├── bootloader.C ├── fapi2 │ ├── hbbl_plat_attribute_service.C │ ├── hbbl_plat_hw_access.C │ ├── hbbl_plat_utils.C │ └── makefile └── makefile ├── build ├── beam │ ├── beam_parms.tcl │ ├── compiler_c_config.tcl │ ├── compiler_cpp_config.tcl │ ├── core │ │ ├── assert.C │ │ ├── pagemgr.C │ │ └── stacksegment.C │ ├── hwp │ │ └── mvpdRingFuncs.C │ ├── i2c │ │ └── i2c.C │ ├── prdf │ │ └── prdfBitKey.C │ └── targeting │ │ └── targetservice.C ├── buildpnor │ ├── PnorUtils.pm │ ├── buildBpmFlashImages.pl │ ├── buildSPDImages.pl │ ├── buildSbePart.pl │ ├── buildUcdFlashImages.pl │ ├── buildpnor.pl │ ├── buildpnorOld.pl │ ├── defaultPnorLayout.xml │ ├── genPnorImages.pl │ ├── genfakeheader.pl │ ├── imprintHwKeyHash │ ├── makefile │ ├── memd_creation.pl │ ├── ocmbfw-layout-exp-only.json.template │ ├── ocmbfw-layout.json.template │ ├── parse-pnor │ ├── pkgOcmbFw.pl │ ├── pkgOcmbFw_ext.py │ ├── pnorLayoutFSP.xml │ ├── pnorLayoutFake.xml │ ├── pnorLayoutP10.xml │ ├── resize-pnor-section.pl │ └── wof-tables-img ├── citest │ ├── autocitest │ ├── build-errl-parsers │ ├── build-script │ ├── check-copyright │ ├── create-environment │ ├── cxxtest-start.sh │ ├── etc │ │ ├── artifactspaces │ │ ├── bbuild │ │ ├── cfmtest │ │ ├── cppcheck │ │ ├── devtree │ │ ├── eecache_prebuilt │ │ ├── eecache_prebuilt_bonito │ │ ├── eecache_prebuilt_dd2 │ │ ├── eecache_vpo_prebuilt │ │ ├── ffs │ │ ├── hcode │ │ ├── hdat │ │ ├── occ │ │ ├── patches │ │ │ └── patchlist.txt │ │ ├── sbe │ │ ├── simbuild │ │ ├── wof │ │ ├── workarounds.postsimsetup │ │ └── workarounds.presimsetup │ ├── populate-environment │ └── setup-env ├── configs │ ├── cppcheck.config │ ├── exportattributes.config │ ├── fsprelease.config │ ├── op_sim.config │ ├── simics_p10.config │ └── vpo.cnfg ├── debug │ ├── Hostboot │ │ ├── Attr.pm │ │ ├── AttrDump.pm │ │ ├── AutoIpl.pm │ │ ├── BlData.pm │ │ ├── BlParseDump.pm │ │ ├── BlTrace.pm │ │ ├── CallFunc.pm │ │ ├── ContTrace.pm │ │ ├── CxxTest.pm │ │ ├── Dump.pm │ │ ├── Errl.pm │ │ ├── Example.pm │ │ ├── FapiAttr.pm │ │ ├── Gcov.pm │ │ ├── GcovModuleUnload.pm │ │ ├── Hdatfmt.pm │ │ ├── HostAttrDump.pm │ │ ├── HwpfAttrOverride.pm │ │ ├── Istep.pm │ │ ├── MemStats.pm │ │ ├── PageMgr.pm │ │ ├── PldmFr.pm │ │ ├── PrintVMM.pm │ │ ├── Printk.pm │ │ ├── Ps.pm │ │ ├── TiParser.pm │ │ ├── Trace.pm │ │ ├── VirtToPhys.pm │ │ ├── _DebugFramework.pm │ │ ├── _DebugFrameworkVMM.pm │ │ └── _GuestStruct.pm │ ├── decodeRc │ ├── eSEL.pl │ ├── ecmd-debug-framework.pl │ ├── ffdcExpander │ ├── hb-dump-debug │ ├── hb-memdump.sh │ ├── memalloc.pl │ ├── simics-debug-framework.pl │ ├── simics-debug-framework.py │ ├── vpo-debug-framework.pl │ └── xlate_stack ├── doxygen │ └── doxygen.conf ├── ifcompiler │ └── .gitignore ├── linker │ ├── .gitignore │ ├── genlist.C │ ├── gensyms.C │ ├── linker.C │ └── makefile ├── makefile ├── mkrules │ ├── assemble.standalone.mk │ ├── beam.env.mk │ ├── beam.rules.mk │ ├── binfile.env.mk │ ├── binfile.rules.mk │ ├── cc.env.mk │ ├── cc.rules.mk │ ├── cflags.env.mk │ ├── cxxtest.rules.mk │ ├── dce.mk │ ├── dep.rules.mk │ ├── dist.rules.mk │ ├── dist.targets.mk │ ├── env.mk │ ├── gcov.env.mk │ ├── gcov.rules.mk │ ├── hbfw │ │ ├── fsp │ │ │ └── makefile │ │ ├── img │ │ │ └── makefile │ │ ├── makefile │ │ └── simics │ │ │ └── makefile │ ├── hostboot-ffs.mk │ ├── images.rules.mk │ ├── passes.env.mk │ ├── passes.mk │ ├── passes.rules.mk │ ├── rules.mk │ ├── script.rules.mk │ ├── util.mk │ └── verbose.rules.mk ├── simics │ ├── README.md │ ├── combined.simics │ ├── denali_hb.simics │ ├── ebmc_timer.simics │ ├── ebmc_updatehb.simics │ ├── ebmc_updatehbrt.simics │ ├── ecc.py │ ├── eecache-gen.py │ ├── fake_mem.simics │ ├── fsp_autoboot.simics │ ├── hb-pnor-vpd-preload.pl │ ├── hb-pnor-vpd-preload.py │ ├── hb-simdebug.py │ ├── morecache.simics │ ├── rainier_hb.simics │ ├── run_as_vpo.simics │ ├── sbe-mpipl.simics │ ├── standalone.simics │ ├── startup.simics │ └── validate-hb-nfs-dir.py ├── tools │ ├── README.md │ ├── addCopyright │ ├── addimgid │ ├── applyTargetingStyle │ ├── auto_scp │ ├── build │ ├── build-cppcheck │ ├── build-ffs-tools │ ├── builddriver │ ├── calc-attribute-size-info │ │ ├── .gitignore │ │ ├── calc_attr_size.C │ │ ├── calculate-attrs-size │ │ └── makefile │ ├── cflags.sh │ ├── commit-msg-for-old-git │ ├── conv_rel_branch │ ├── copyright-check.sh │ ├── create-standalone-payload │ ├── dce │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dce-bmc-invoke.sh │ │ ├── dce-compile │ │ ├── dce-extra-files │ │ │ ├── dce_rc │ │ │ └── trace_defs.H │ │ ├── dce.ld │ │ ├── preplib.py │ │ └── start.C │ ├── duplibs.sh │ ├── ebmc │ │ ├── enable-simics-bmc-ssh │ │ ├── entityPath.py │ │ ├── errludP_Helpers.py │ │ ├── hostfw_trace.py │ │ ├── hwasCallout.py │ │ ├── miscUtils.py │ │ ├── patch-bmc │ │ ├── setup-standalone-repo │ │ ├── symbols.py │ │ └── vpdConstants.py │ ├── editimgid │ ├── eecache_editor.pl │ ├── extern │ │ ├── .gitignore │ │ └── ibm-fw-proprietary │ │ │ └── LIBECC_COMMIT_HASH │ ├── extract-attribute-info │ ├── genIStep.pl │ ├── genIstepWaitOverride.pl │ ├── generate-attribute-id-map │ ├── genxml │ │ └── create_odyperv.pl │ ├── gerrit-hostname │ ├── gerrit_fetch │ ├── hb │ ├── hb-compare-levels │ ├── hbDistribute │ ├── hbGenConfig │ ├── hbattrfs │ │ ├── mount-hb-attr-fs │ │ ├── mountfs.py │ │ └── virtualpath.py │ ├── hwp_id.pl │ ├── insert_newlines.xsl │ ├── listdeps.pl │ ├── perl.modules │ │ ├── GerritUtil.pm │ │ ├── GitUtil.pm │ │ └── ToolInit.pm │ ├── post-commit │ ├── pre-commit │ ├── pre-commit-actions │ ├── pre-commit-prologs │ ├── pre-receive │ ├── process-attr-dump │ ├── setupgithooks.sh │ ├── sort_targeting.xsl │ ├── standaloneHelper │ ├── syncparsers.sh │ ├── test_text.txt │ ├── update-submodule │ ├── update_subtree.sh │ └── verify-commit ├── trace │ ├── .gitignore │ ├── extracthash.c │ ├── makefile │ ├── tracehash.c │ ├── tracehash_hb.pl │ └── tracelite │ │ ├── README.md │ │ ├── login_bmc │ │ ├── makefile │ │ ├── traceLite.sh │ │ ├── weave.C │ │ └── weave.py └── vpo │ ├── Setup_Env │ ├── VBU_Cacheline.pm │ ├── do_sprint │ ├── hb-dump │ ├── hb-istep │ ├── hb-virtdebug.pl │ └── vpo.config ├── import ├── chips │ ├── common │ │ └── utils │ │ │ ├── chipids.H │ │ │ ├── imageProcs │ │ │ ├── common_ringId.C │ │ │ ├── common_ringId.H │ │ │ └── common_ringId.mk │ │ │ └── scomt │ │ │ ├── proc_scomt.C │ │ │ ├── proc_scomt.H │ │ │ └── proc_scomt.mk │ ├── ocmb │ │ ├── common │ │ │ ├── include │ │ │ │ ├── pmic_regs.H │ │ │ │ └── pmic_regs_fld.H │ │ │ ├── procedures │ │ │ │ ├── hwp │ │ │ │ │ ├── pmic │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── i2c │ │ │ │ │ │ │ │ └── i2c_pmic.H │ │ │ │ │ │ │ ├── mss_pmic_attribute_accessors_manual.C │ │ │ │ │ │ │ ├── mss_pmic_attribute_accessors_manual.H │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── pmic_common_utils.C │ │ │ │ │ │ │ │ ├── pmic_common_utils.H │ │ │ │ │ │ │ │ ├── pmic_common_utils_ddr4.C │ │ │ │ │ │ │ │ ├── pmic_common_utils_ddr4.H │ │ │ │ │ │ │ │ ├── pmic_consts.H │ │ │ │ │ │ │ │ ├── pmic_enable_4u_settings.H │ │ │ │ │ │ │ │ ├── pmic_enable_utils.C │ │ │ │ │ │ │ │ └── pmic_enable_utils.H │ │ │ │ │ │ ├── mss_check_ddimm_config.C │ │ │ │ │ │ ├── mss_check_ddimm_config.H │ │ │ │ │ │ ├── pmic_enable.C │ │ │ │ │ │ ├── pmic_enable.H │ │ │ │ │ │ ├── pmic_n_mode_detect.C │ │ │ │ │ │ └── pmic_n_mode_detect.H │ │ │ │ │ └── pmic_ddr5 │ │ │ │ │ │ ├── dt_trim_read_restart_ddr5.C │ │ │ │ │ │ ├── dt_trim_read_restart_ddr5.H │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── pmic_common_utils_ddr5.C │ │ │ │ │ │ │ ├── pmic_common_utils_ddr5.H │ │ │ │ │ │ │ ├── pmic_enable_utils_ddr5.C │ │ │ │ │ │ │ ├── pmic_enable_utils_ddr5.H │ │ │ │ │ │ │ ├── pmic_health_check_utils_ddr5.C │ │ │ │ │ │ │ ├── pmic_health_check_utils_ddr5.H │ │ │ │ │ │ │ ├── pmic_periodic_telemetry_utils_ddr5.C │ │ │ │ │ │ │ └── pmic_periodic_telemetry_utils_ddr5.H │ │ │ │ │ │ ├── pmic_check_and_clear_ddr5.C │ │ │ │ │ │ ├── pmic_check_and_clear_ddr5.H │ │ │ │ │ │ ├── pmic_health_check_ddr5.C │ │ │ │ │ │ ├── pmic_health_check_ddr5.H │ │ │ │ │ │ ├── pmic_periodic_telemetry_ddr5.C │ │ │ │ │ │ └── pmic_periodic_telemetry_ddr5.H │ │ │ │ └── xml │ │ │ │ │ ├── attribute_info │ │ │ │ │ ├── pmic_attributes.xml │ │ │ │ │ └── pmic_eff_attributes.xml │ │ │ │ │ └── error_info │ │ │ │ │ ├── omi_init_errors.xml │ │ │ │ │ └── pmic_errors.xml │ │ │ └── spd_access │ │ │ │ ├── ddimm_spd_common.H │ │ │ │ ├── gpio_adc_i2c_addr_get.H │ │ │ │ ├── mds_i2c_addr_get.H │ │ │ │ ├── memport_state.H │ │ │ │ ├── pmic_i2c_addr_get.H │ │ │ │ ├── poweric_i2c_addr_get.H │ │ │ │ └── tempsensor_i2c_addr_get.H │ │ ├── explorer │ │ │ ├── common │ │ │ │ └── include │ │ │ │ │ ├── exp_data_structs.H │ │ │ │ │ ├── exp_oc_regs.H │ │ │ │ │ ├── explorer_scom_addresses.H │ │ │ │ │ ├── explorer_scom_addresses_fixes.H │ │ │ │ │ ├── explorer_scom_addresses_fld.H │ │ │ │ │ ├── explorer_scom_addresses_fld_fixes.H │ │ │ │ │ └── mds_scom_addresses.H │ │ │ └── procedures │ │ │ │ ├── hwp │ │ │ │ └── memory │ │ │ │ │ ├── exp_background_scrub.C │ │ │ │ │ ├── exp_background_scrub.H │ │ │ │ │ ├── exp_background_scrub.mk │ │ │ │ │ ├── exp_bulk_pwr_throttles.C │ │ │ │ │ ├── exp_bulk_pwr_throttles.H │ │ │ │ │ ├── exp_bulk_pwr_throttles.mk │ │ │ │ │ ├── exp_check_for_ready.C │ │ │ │ │ ├── exp_check_for_ready.H │ │ │ │ │ ├── exp_deploy_row_repairs.C │ │ │ │ │ ├── exp_deploy_row_repairs.H │ │ │ │ │ ├── exp_draminit.C │ │ │ │ │ ├── exp_draminit.H │ │ │ │ │ ├── exp_draminit.mk │ │ │ │ │ ├── exp_draminit_mc.C │ │ │ │ │ ├── exp_draminit_mc.H │ │ │ │ │ ├── exp_draminit_mc.mk │ │ │ │ │ ├── exp_fw_log_data.C │ │ │ │ │ ├── exp_fw_log_data.H │ │ │ │ │ ├── exp_fw_update.C │ │ │ │ │ ├── exp_fw_update.H │ │ │ │ │ ├── exp_getecid.C │ │ │ │ │ ├── exp_getecid.H │ │ │ │ │ ├── exp_getidec.C │ │ │ │ │ ├── exp_getidec.H │ │ │ │ │ ├── exp_mss_eff_config_thermal.C │ │ │ │ │ ├── exp_mss_eff_config_thermal.H │ │ │ │ │ ├── exp_mss_eff_config_thermal.mk │ │ │ │ │ ├── exp_mss_memdiag.C │ │ │ │ │ ├── exp_mss_thermal_init.C │ │ │ │ │ ├── exp_mss_thermal_init.H │ │ │ │ │ ├── exp_mss_thermal_init.mk │ │ │ │ │ ├── exp_omi_init.C │ │ │ │ │ ├── exp_omi_init.H │ │ │ │ │ ├── exp_omi_init.mk │ │ │ │ │ ├── exp_omi_setup.C │ │ │ │ │ ├── exp_omi_setup.H │ │ │ │ │ ├── exp_omi_setup.mk │ │ │ │ │ ├── exp_omi_train.C │ │ │ │ │ ├── exp_omi_train.H │ │ │ │ │ ├── exp_omi_train.mk │ │ │ │ │ ├── exp_omi_train_check.C │ │ │ │ │ ├── exp_omi_train_check.H │ │ │ │ │ ├── exp_process_image_status.C │ │ │ │ │ ├── exp_process_image_status.H │ │ │ │ │ ├── exp_scominit.C │ │ │ │ │ ├── exp_scominit.H │ │ │ │ │ ├── exp_scominit.mk │ │ │ │ │ ├── exp_scrub.C │ │ │ │ │ ├── exp_scrub.H │ │ │ │ │ ├── exp_scrub.mk │ │ │ │ │ ├── exp_set_mmio_bars.C │ │ │ │ │ ├── exp_set_mmio_bars.H │ │ │ │ │ ├── exp_setup_interrupts.C │ │ │ │ │ ├── exp_setup_interrupts.H │ │ │ │ │ └── lib │ │ │ │ │ ├── ccs │ │ │ │ │ ├── ccs_explorer.C │ │ │ │ │ ├── ccs_explorer.H │ │ │ │ │ ├── ccs_traits_explorer.H │ │ │ │ │ ├── exp_row_repair.C │ │ │ │ │ └── exp_row_repair.H │ │ │ │ │ ├── dimm │ │ │ │ │ ├── ddr4 │ │ │ │ │ │ ├── control_word_ddr4_explorer.H │ │ │ │ │ │ ├── exp_mrs00.C │ │ │ │ │ │ ├── exp_mrs01.C │ │ │ │ │ │ ├── exp_mrs02.C │ │ │ │ │ │ ├── exp_mrs03.C │ │ │ │ │ │ ├── exp_mrs04.C │ │ │ │ │ │ ├── exp_mrs05.C │ │ │ │ │ │ ├── exp_mrs06.C │ │ │ │ │ │ ├── latch_wr_vref_explorer.H │ │ │ │ │ │ └── mrs_load_ddr4_explorer.C │ │ │ │ │ ├── exp_kind.C │ │ │ │ │ ├── exp_kind.H │ │ │ │ │ ├── exp_mrs_traits.H │ │ │ │ │ └── exp_rank.H │ │ │ │ │ ├── ecc │ │ │ │ │ ├── ecc_traits_explorer.C │ │ │ │ │ └── ecc_traits_explorer.H │ │ │ │ │ ├── eff_config │ │ │ │ │ ├── explorer_attr_engine_traits.H │ │ │ │ │ ├── explorer_memory_size.C │ │ │ │ │ └── explorer_rc_resp_fields.H │ │ │ │ │ ├── exp_attribute_accessors_manual.C │ │ │ │ │ ├── exp_attribute_accessors_manual.H │ │ │ │ │ ├── exp_draminit_utils.C │ │ │ │ │ ├── exp_draminit_utils.H │ │ │ │ │ ├── exp_getecid_utils.C │ │ │ │ │ ├── exp_getecid_utils.H │ │ │ │ │ ├── exp_mss_thermal_init_utils.C │ │ │ │ │ ├── exp_mss_thermal_init_utils.H │ │ │ │ │ ├── fir │ │ │ │ │ ├── exp_fir.C │ │ │ │ │ ├── exp_fir.H │ │ │ │ │ ├── exp_fir_traits.H │ │ │ │ │ ├── exp_unmask.C │ │ │ │ │ └── exp_unmask.H │ │ │ │ │ ├── hwp_wrappers_exp.C │ │ │ │ │ ├── i2c │ │ │ │ │ ├── exp_i2c.C │ │ │ │ │ ├── exp_i2c.H │ │ │ │ │ ├── exp_i2c_fields.C │ │ │ │ │ ├── exp_i2c_fields.H │ │ │ │ │ ├── exp_i2c_scom.H │ │ │ │ │ ├── mds_i2c_scom.C │ │ │ │ │ └── mds_i2c_scom.H │ │ │ │ │ ├── inband │ │ │ │ │ ├── exp_flash_utils.C │ │ │ │ │ ├── exp_flash_utils.H │ │ │ │ │ ├── exp_fw_adapter_properties.C │ │ │ │ │ ├── exp_fw_adapter_properties.H │ │ │ │ │ ├── exp_fw_log.C │ │ │ │ │ ├── exp_fw_log.H │ │ │ │ │ ├── exp_inband.C │ │ │ │ │ └── exp_inband.H │ │ │ │ │ ├── mc │ │ │ │ │ ├── exp_port.C │ │ │ │ │ ├── exp_port.H │ │ │ │ │ └── exp_port_traits.H │ │ │ │ │ ├── mcbist │ │ │ │ │ ├── exp_address.H │ │ │ │ │ ├── exp_maint_cmds.C │ │ │ │ │ ├── exp_maint_cmds.H │ │ │ │ │ ├── exp_mcbist.C │ │ │ │ │ ├── exp_mcbist.H │ │ │ │ │ ├── exp_mcbist_address.C │ │ │ │ │ ├── exp_mcbist_traits.H │ │ │ │ │ ├── exp_memdiags.C │ │ │ │ │ ├── exp_memdiags.H │ │ │ │ │ └── exp_settings.H │ │ │ │ │ ├── omi │ │ │ │ │ ├── crc32.H │ │ │ │ │ ├── exp_omi_traits.H │ │ │ │ │ ├── exp_omi_utils.C │ │ │ │ │ └── exp_omi_utils.H │ │ │ │ │ ├── phy │ │ │ │ │ ├── exp_phy_reset.C │ │ │ │ │ ├── exp_phy_reset.H │ │ │ │ │ ├── exp_phy_utils.C │ │ │ │ │ ├── exp_phy_utils.H │ │ │ │ │ ├── exp_train_display.C │ │ │ │ │ ├── exp_train_display.H │ │ │ │ │ ├── exp_train_handler.C │ │ │ │ │ └── exp_train_handler.H │ │ │ │ │ ├── plug_rules │ │ │ │ │ ├── exp_plug_rules.C │ │ │ │ │ └── exp_plug_rules.H │ │ │ │ │ ├── power_thermal │ │ │ │ │ ├── exp_decoder.C │ │ │ │ │ ├── exp_decoder.H │ │ │ │ │ ├── exp_throttle.C │ │ │ │ │ ├── exp_throttle.H │ │ │ │ │ └── exp_throttle_traits.H │ │ │ │ │ ├── shared │ │ │ │ │ └── exp_consts.H │ │ │ │ │ ├── utils │ │ │ │ │ ├── explorer_c_str.C │ │ │ │ │ ├── explorer_find.C │ │ │ │ │ └── explorer_pos.C │ │ │ │ │ └── workarounds │ │ │ │ │ ├── exp_byte_swizzle_workarounds.C │ │ │ │ │ ├── exp_byte_swizzle_workarounds.H │ │ │ │ │ ├── exp_ccs_2666_write_workarounds.C │ │ │ │ │ ├── exp_ccs_2666_write_workarounds.H │ │ │ │ │ ├── exp_ccs_des_insert_workaround.C │ │ │ │ │ ├── exp_ccs_row_repair_workarounds.C │ │ │ │ │ ├── exp_ccs_row_repair_workarounds.H │ │ │ │ │ ├── exp_fir_workarounds.C │ │ │ │ │ ├── exp_fir_workarounds.H │ │ │ │ │ ├── exp_mds_workarounds.C │ │ │ │ │ ├── exp_mds_workarounds.H │ │ │ │ │ ├── exp_mr_workarounds.C │ │ │ │ │ ├── exp_mr_workarounds.H │ │ │ │ │ ├── exp_omi_workarounds.C │ │ │ │ │ ├── exp_omi_workarounds.H │ │ │ │ │ ├── exp_quad_encoded_cs_workarounds.C │ │ │ │ │ ├── exp_quad_encoded_cs_workarounds.H │ │ │ │ │ ├── exp_rcw_workarounds.C │ │ │ │ │ ├── exp_rcw_workarounds.H │ │ │ │ │ ├── exp_temp_sensor_workarounds.C │ │ │ │ │ └── exp_temp_sensor_workarounds.H │ │ │ │ └── xml │ │ │ │ ├── attribute_info │ │ │ │ ├── exp_attributes.xml │ │ │ │ ├── exp_omi_init.xml │ │ │ │ ├── exp_omi_train.xml │ │ │ │ └── exp_power_thermal.xml │ │ │ │ └── error_info │ │ │ │ ├── exp_collect_explorer_errors.xml │ │ │ │ ├── exp_config_errors.xml │ │ │ │ ├── exp_fw_update_errors.xml │ │ │ │ ├── exp_getidec.xml │ │ │ │ ├── exp_i2c_scom_errors.xml │ │ │ │ ├── exp_inband_errors.xml │ │ │ │ ├── exp_omi_init_errors.xml │ │ │ │ ├── exp_omi_train_errors.xml │ │ │ │ ├── exp_row_repair_errors.xml │ │ │ │ └── mss_exp_errors.xml │ │ ├── initfiles │ │ │ ├── explorer.mds.scom.initfile │ │ │ └── scom │ │ │ │ └── explorer.scom.initfile │ │ ├── odyssey │ │ │ ├── common │ │ │ │ ├── include │ │ │ │ │ ├── ody_oc_regs.H │ │ │ │ │ ├── ody_scom_mp.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b0.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b1.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b2.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b3.H │ │ │ │ │ ├── ody_scom_mp_acsm0_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib0_b0.H │ │ │ │ │ ├── ody_scom_mp_anib0_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib0_b1.H │ │ │ │ │ ├── ody_scom_mp_anib0_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib0_b2.H │ │ │ │ │ ├── ody_scom_mp_anib0_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib0_b3.H │ │ │ │ │ ├── ody_scom_mp_anib0_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib10_b0.H │ │ │ │ │ ├── ody_scom_mp_anib10_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib10_b1.H │ │ │ │ │ ├── ody_scom_mp_anib10_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib10_b2.H │ │ │ │ │ ├── ody_scom_mp_anib10_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib10_b3.H │ │ │ │ │ ├── ody_scom_mp_anib10_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib11_b0.H │ │ │ │ │ ├── ody_scom_mp_anib11_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib11_b1.H │ │ │ │ │ ├── ody_scom_mp_anib11_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib11_b2.H │ │ │ │ │ ├── ody_scom_mp_anib11_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib11_b3.H │ │ │ │ │ ├── ody_scom_mp_anib11_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib12_b0.H │ │ │ │ │ ├── ody_scom_mp_anib12_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib12_b1.H │ │ │ │ │ ├── ody_scom_mp_anib12_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib12_b2.H │ │ │ │ │ ├── ody_scom_mp_anib12_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib12_b3.H │ │ │ │ │ ├── ody_scom_mp_anib12_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib13_b0.H │ │ │ │ │ ├── ody_scom_mp_anib13_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib13_b1.H │ │ │ │ │ ├── ody_scom_mp_anib13_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib13_b2.H │ │ │ │ │ ├── ody_scom_mp_anib13_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib13_b3.H │ │ │ │ │ ├── ody_scom_mp_anib13_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib1_b0.H │ │ │ │ │ ├── ody_scom_mp_anib1_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib1_b1.H │ │ │ │ │ ├── ody_scom_mp_anib1_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib1_b2.H │ │ │ │ │ ├── ody_scom_mp_anib1_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib1_b3.H │ │ │ │ │ ├── ody_scom_mp_anib1_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib2_b0.H │ │ │ │ │ ├── ody_scom_mp_anib2_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib2_b1.H │ │ │ │ │ ├── ody_scom_mp_anib2_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib2_b2.H │ │ │ │ │ ├── ody_scom_mp_anib2_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib2_b3.H │ │ │ │ │ ├── ody_scom_mp_anib2_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib3_b0.H │ │ │ │ │ ├── ody_scom_mp_anib3_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib3_b1.H │ │ │ │ │ ├── ody_scom_mp_anib3_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib3_b2.H │ │ │ │ │ ├── ody_scom_mp_anib3_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib3_b3.H │ │ │ │ │ ├── ody_scom_mp_anib3_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib4_b0.H │ │ │ │ │ ├── ody_scom_mp_anib4_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib4_b1.H │ │ │ │ │ ├── ody_scom_mp_anib4_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib4_b2.H │ │ │ │ │ ├── ody_scom_mp_anib4_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib4_b3.H │ │ │ │ │ ├── ody_scom_mp_anib4_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib5_b0.H │ │ │ │ │ ├── ody_scom_mp_anib5_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib5_b1.H │ │ │ │ │ ├── ody_scom_mp_anib5_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib5_b2.H │ │ │ │ │ ├── ody_scom_mp_anib5_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib5_b3.H │ │ │ │ │ ├── ody_scom_mp_anib5_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib6_b0.H │ │ │ │ │ ├── ody_scom_mp_anib6_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib6_b1.H │ │ │ │ │ ├── ody_scom_mp_anib6_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib6_b2.H │ │ │ │ │ ├── ody_scom_mp_anib6_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib6_b3.H │ │ │ │ │ ├── ody_scom_mp_anib6_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib7_b0.H │ │ │ │ │ ├── ody_scom_mp_anib7_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib7_b1.H │ │ │ │ │ ├── ody_scom_mp_anib7_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib7_b2.H │ │ │ │ │ ├── ody_scom_mp_anib7_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib7_b3.H │ │ │ │ │ ├── ody_scom_mp_anib7_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib8_b0.H │ │ │ │ │ ├── ody_scom_mp_anib8_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib8_b1.H │ │ │ │ │ ├── ody_scom_mp_anib8_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib8_b2.H │ │ │ │ │ ├── ody_scom_mp_anib8_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib8_b3.H │ │ │ │ │ ├── ody_scom_mp_anib8_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_anib9_b0.H │ │ │ │ │ ├── ody_scom_mp_anib9_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_anib9_b1.H │ │ │ │ │ ├── ody_scom_mp_anib9_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_anib9_b2.H │ │ │ │ │ ├── ody_scom_mp_anib9_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_anib9_b3.H │ │ │ │ │ ├── ody_scom_mp_anib9_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_apbonly0.H │ │ │ │ │ ├── ody_scom_mp_apbonly0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte0_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte1_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte2_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte3_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte4_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte5_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte6_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte7_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte8_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b0.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b1.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b2.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b3.H │ │ │ │ │ ├── ody_scom_mp_dbyte9_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_drtub0.H │ │ │ │ │ ├── ody_scom_mp_drtub0_fields.H │ │ │ │ │ ├── ody_scom_mp_intgo_b0.H │ │ │ │ │ ├── ody_scom_mp_intgo_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_intgo_b1.H │ │ │ │ │ ├── ody_scom_mp_intgo_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_intgo_b2.H │ │ │ │ │ ├── ody_scom_mp_intgo_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_intgo_b3.H │ │ │ │ │ ├── ody_scom_mp_intgo_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_mastr_b0.H │ │ │ │ │ ├── ody_scom_mp_mastr_b0_fields.H │ │ │ │ │ ├── ody_scom_mp_mastr_b1.H │ │ │ │ │ ├── ody_scom_mp_mastr_b1_fields.H │ │ │ │ │ ├── ody_scom_mp_mastr_b2.H │ │ │ │ │ ├── ody_scom_mp_mastr_b2_fields.H │ │ │ │ │ ├── ody_scom_mp_mastr_b3.H │ │ │ │ │ ├── ody_scom_mp_mastr_b3_fields.H │ │ │ │ │ ├── ody_scom_mp_odp.H │ │ │ │ │ ├── ody_scom_mp_odp_fields.H │ │ │ │ │ ├── ody_scom_mp_ppgc0.H │ │ │ │ │ ├── ody_scom_mp_ppgc0_fields.H │ │ │ │ │ ├── ody_scom_mp_rdf.H │ │ │ │ │ ├── ody_scom_mp_rdf_fields.H │ │ │ │ │ ├── ody_scom_ody.H │ │ │ │ │ ├── ody_scom_ody_odc.H │ │ │ │ │ ├── ody_scom_ody_odc_fields.H │ │ │ │ │ ├── ody_scom_ody_t.H │ │ │ │ │ ├── ody_scom_ody_t_fields.H │ │ │ │ │ ├── ody_scom_omi.H │ │ │ │ │ ├── ody_scom_omi_ioo.H │ │ │ │ │ ├── ody_scom_omi_ioo_fields.H │ │ │ │ │ ├── ody_scom_omi_odc.H │ │ │ │ │ ├── ody_scom_omi_odc_fields.H │ │ │ │ │ ├── ody_scom_perv.H │ │ │ │ │ ├── ody_scom_perv_cfam.H │ │ │ │ │ ├── ody_scom_perv_cfam_fields.H │ │ │ │ │ ├── ody_scom_perv_tcmc.H │ │ │ │ │ ├── ody_scom_perv_tcmc_fields.H │ │ │ │ │ ├── ody_scom_perv_tpchip.H │ │ │ │ │ ├── ody_scom_perv_tpchip_fields.H │ │ │ │ │ ├── poz_common_image_load.H │ │ │ │ │ ├── poz_scom_perv.H │ │ │ │ │ ├── poz_scom_perv_cfam.H │ │ │ │ │ ├── poz_scom_perv_cfam_fields.H │ │ │ │ │ ├── poz_scom_perv_tpchip.H │ │ │ │ │ ├── poz_scom_perv_tpchip_fields.H │ │ │ │ │ ├── poz_scom_tp.H │ │ │ │ │ ├── poz_scom_tp_fields.H │ │ │ │ │ ├── scomt_regs.H │ │ │ │ │ └── scomt_regs_test.C │ │ │ │ └── scominfo │ │ │ │ │ ├── odyssey_cu.H │ │ │ │ │ ├── odyssey_cu_utils.H │ │ │ │ │ ├── odyssey_scom_addr.C │ │ │ │ │ ├── odyssey_scom_addr.H │ │ │ │ │ ├── odyssey_scominfo.C │ │ │ │ │ └── odyssey_scominfo.H │ │ │ └── procedures │ │ │ │ ├── hwp │ │ │ │ ├── io │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common_io_tdr.H │ │ │ │ │ │ ├── common_unload.H │ │ │ │ │ │ ├── io_ppe_cache.C │ │ │ │ │ │ ├── io_ppe_cache.H │ │ │ │ │ │ ├── io_ppe_common.H │ │ │ │ │ │ ├── io_ppe_lib.H │ │ │ │ │ │ └── io_scom_lib.H │ │ │ │ │ ├── ody_fir_lib.H │ │ │ │ │ ├── ody_io_ppe_common.H │ │ │ │ │ ├── ody_io_ppe_regs.H │ │ │ │ │ ├── ody_io_tdr_utils.H │ │ │ │ │ ├── ody_omi_degrade.C │ │ │ │ │ ├── ody_omi_degrade.H │ │ │ │ │ ├── ody_omi_hss_bist_cleanup.C │ │ │ │ │ ├── ody_omi_hss_bist_cleanup.H │ │ │ │ │ ├── ody_omi_hss_bist_init.C │ │ │ │ │ ├── ody_omi_hss_bist_init.H │ │ │ │ │ ├── ody_omi_hss_bist_poll.C │ │ │ │ │ ├── ody_omi_hss_bist_poll.H │ │ │ │ │ ├── ody_omi_hss_bist_start.C │ │ │ │ │ ├── ody_omi_hss_bist_start.H │ │ │ │ │ ├── ody_omi_hss_config.C │ │ │ │ │ ├── ody_omi_hss_config.H │ │ │ │ │ ├── ody_omi_hss_dccal_poll.C │ │ │ │ │ ├── ody_omi_hss_dccal_poll.H │ │ │ │ │ ├── ody_omi_hss_dccal_start.C │ │ │ │ │ ├── ody_omi_hss_dccal_start.H │ │ │ │ │ ├── ody_omi_hss_init.C │ │ │ │ │ ├── ody_omi_hss_init.H │ │ │ │ │ ├── ody_omi_hss_ppe_load.C │ │ │ │ │ ├── ody_omi_hss_ppe_load.H │ │ │ │ │ ├── ody_omi_hss_ppe_start.C │ │ │ │ │ ├── ody_omi_hss_ppe_start.H │ │ │ │ │ ├── ody_omi_hss_tx_zcal.C │ │ │ │ │ ├── ody_omi_hss_tx_zcal.H │ │ │ │ │ ├── ody_omi_pretrain_adv.C │ │ │ │ │ ├── ody_omi_pretrain_adv.H │ │ │ │ │ ├── ody_omi_setup.C │ │ │ │ │ ├── ody_omi_setup.H │ │ │ │ │ ├── ody_omi_train.C │ │ │ │ │ ├── ody_omi_train.H │ │ │ │ │ ├── ody_omi_train_check.C │ │ │ │ │ └── ody_omi_train_check.H │ │ │ │ ├── memory │ │ │ │ │ ├── lab │ │ │ │ │ │ └── sdk │ │ │ │ │ │ │ └── phy │ │ │ │ │ │ │ ├── ody_ate_load_dmem_scoms.H │ │ │ │ │ │ │ └── ody_ate_load_imem_scoms.H │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ccs │ │ │ │ │ │ │ ├── ody_ccs.C │ │ │ │ │ │ │ ├── ody_ccs.H │ │ │ │ │ │ │ ├── ody_ccs_read_processing.C │ │ │ │ │ │ │ ├── ody_ccs_read_processing.H │ │ │ │ │ │ │ ├── ody_ccs_traits.H │ │ │ │ │ │ │ ├── ody_row_repair.C │ │ │ │ │ │ │ └── ody_row_repair.H │ │ │ │ │ │ ├── dimm │ │ │ │ │ │ │ ├── ody_kind.C │ │ │ │ │ │ │ └── ody_rank.H │ │ │ │ │ │ ├── ecc │ │ │ │ │ │ │ ├── ecc_traits_odyssey.C │ │ │ │ │ │ │ └── ecc_traits_odyssey.H │ │ │ │ │ │ ├── eff_config │ │ │ │ │ │ │ ├── ody_attr_engine_traits.H │ │ │ │ │ │ │ └── odyssey_memory_size.C │ │ │ │ │ │ ├── fir │ │ │ │ │ │ │ ├── ody_fir.C │ │ │ │ │ │ │ ├── ody_fir.H │ │ │ │ │ │ │ ├── ody_fir_traits.H │ │ │ │ │ │ │ ├── ody_proc_specific_fir.C │ │ │ │ │ │ │ ├── ody_unmask.C │ │ │ │ │ │ │ └── ody_unmask.H │ │ │ │ │ │ ├── hwp_wrappers_ody.C │ │ │ │ │ │ ├── inband │ │ │ │ │ │ │ ├── ody_inband.C │ │ │ │ │ │ │ └── ody_inband.H │ │ │ │ │ │ ├── mc │ │ │ │ │ │ │ ├── ody_port.C │ │ │ │ │ │ │ ├── ody_port.H │ │ │ │ │ │ │ └── ody_port_traits.H │ │ │ │ │ │ ├── mcbist │ │ │ │ │ │ │ ├── ody_maint_cmds.C │ │ │ │ │ │ │ ├── ody_maint_cmds.H │ │ │ │ │ │ │ ├── ody_mcbist.C │ │ │ │ │ │ │ ├── ody_mcbist.H │ │ │ │ │ │ │ ├── ody_mcbist_address.C │ │ │ │ │ │ │ ├── ody_mcbist_traits.H │ │ │ │ │ │ │ ├── ody_memdiags.C │ │ │ │ │ │ │ └── ody_memdiags.H │ │ │ │ │ │ ├── ody_attribute_accessors_manual.C │ │ │ │ │ │ ├── ody_attribute_accessors_manual.H │ │ │ │ │ │ ├── ody_dqs_track_host_utils.C │ │ │ │ │ │ ├── ody_dqs_track_host_utils.H │ │ │ │ │ │ ├── ody_dqs_track_utils.C │ │ │ │ │ │ ├── ody_dqs_track_utils.H │ │ │ │ │ │ ├── omi │ │ │ │ │ │ │ ├── ody_omi_traits.H │ │ │ │ │ │ │ └── ody_system_specific_omi.H │ │ │ │ │ │ ├── phy │ │ │ │ │ │ │ ├── dwc_ddrphy_phyinit_I_loadPIEImage.C │ │ │ │ │ │ │ ├── dwc_ddrphy_phyinit_I_loadPIEImage.H │ │ │ │ │ │ │ ├── dwc_ddrphy_phyinit_LoadPieProdCode.C │ │ │ │ │ │ │ ├── dwc_ddrphy_phyinit_LoadPieProdCode.H │ │ │ │ │ │ │ ├── dwc_ddrphy_phyinit_LoadPieProdCode_rdimm.C │ │ │ │ │ │ │ ├── ody_ddrphy_csr_defines.H │ │ │ │ │ │ │ ├── ody_ddrphy_phyinit_config.C │ │ │ │ │ │ │ ├── ody_ddrphy_phyinit_config.H │ │ │ │ │ │ │ ├── ody_ddrphy_phyinit_structs.H │ │ │ │ │ │ │ ├── ody_draminit_procedure.C │ │ │ │ │ │ │ ├── ody_draminit_procedure.H │ │ │ │ │ │ │ ├── ody_draminit_utils.C │ │ │ │ │ │ │ ├── ody_draminit_utils.H │ │ │ │ │ │ │ ├── ody_phy_access.C │ │ │ │ │ │ │ ├── ody_phy_access.H │ │ │ │ │ │ │ ├── ody_phy_reset.C │ │ │ │ │ │ │ ├── ody_phy_reset.H │ │ │ │ │ │ │ ├── ody_phy_utils.C │ │ │ │ │ │ │ ├── ody_phy_utils.H │ │ │ │ │ │ │ └── ody_snps_dram_train_msg_blk.H │ │ │ │ │ │ ├── power_thermal │ │ │ │ │ │ │ ├── ody_decoder.C │ │ │ │ │ │ │ ├── ody_temp_sensor_traits.H │ │ │ │ │ │ │ ├── ody_thermal_init_utils.C │ │ │ │ │ │ │ ├── ody_thermal_init_utils.H │ │ │ │ │ │ │ ├── ody_throttle.C │ │ │ │ │ │ │ ├── ody_throttle.H │ │ │ │ │ │ │ └── ody_throttle_traits.H │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ └── ody_consts.H │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── ody_bad_bits.H │ │ │ │ │ │ │ └── odyssey_pos.C │ │ │ │ │ │ └── workarounds │ │ │ │ │ │ │ ├── ody_ccs_des_insert_workaround.C │ │ │ │ │ │ │ ├── ody_dfi_complete_workarounds.C │ │ │ │ │ │ │ ├── ody_dfi_complete_workarounds.H │ │ │ │ │ │ │ ├── ody_phy_workarounds.C │ │ │ │ │ │ │ └── ody_phy_workarounds.H │ │ │ │ │ ├── ody_blame_firs.C │ │ │ │ │ ├── ody_blame_firs.H │ │ │ │ │ ├── ody_bulk_pwr_throttles.C │ │ │ │ │ ├── ody_bulk_pwr_throttles.H │ │ │ │ │ ├── ody_check_for_ready.C │ │ │ │ │ ├── ody_check_for_ready.H │ │ │ │ │ ├── ody_ddrphyinit.C │ │ │ │ │ ├── ody_ddrphyinit.H │ │ │ │ │ ├── ody_deploy_row_repairs.C │ │ │ │ │ ├── ody_deploy_row_repairs.H │ │ │ │ │ ├── ody_draminit_mc.C │ │ │ │ │ ├── ody_draminit_mc.H │ │ │ │ │ ├── ody_enable_ecc.C │ │ │ │ │ ├── ody_enable_ecc.H │ │ │ │ │ ├── ody_enable_ecc.mk │ │ │ │ │ ├── ody_getecid.C │ │ │ │ │ ├── ody_getecid.H │ │ │ │ │ ├── ody_getecid.mk │ │ │ │ │ ├── ody_getidec.C │ │ │ │ │ ├── ody_getidec.H │ │ │ │ │ ├── ody_host_draminit.C │ │ │ │ │ ├── ody_host_draminit.H │ │ │ │ │ ├── ody_load_dmem.C │ │ │ │ │ ├── ody_load_dmem.H │ │ │ │ │ ├── ody_load_imem.C │ │ │ │ │ ├── ody_load_imem.H │ │ │ │ │ ├── ody_load_pie.C │ │ │ │ │ ├── ody_load_pie.H │ │ │ │ │ ├── ody_load_pie.mk │ │ │ │ │ ├── ody_mask_firs_omi_init.C │ │ │ │ │ ├── ody_mask_firs_omi_init.H │ │ │ │ │ ├── ody_mss_eff_config_thermal.C │ │ │ │ │ ├── ody_mss_eff_config_thermal.H │ │ │ │ │ ├── ody_mss_memdiag.C │ │ │ │ │ ├── ody_mss_memdiag.H │ │ │ │ │ ├── ody_omi_init.C │ │ │ │ │ ├── ody_omi_init.H │ │ │ │ │ ├── ody_omi_init.mk │ │ │ │ │ ├── ody_putsram.C │ │ │ │ │ ├── ody_putsram.H │ │ │ │ │ ├── ody_putsram_io_ppe.C │ │ │ │ │ ├── ody_putsram_io_ppe.H │ │ │ │ │ ├── ody_scominit.C │ │ │ │ │ ├── ody_scominit.H │ │ │ │ │ ├── ody_scominit.mk │ │ │ │ │ ├── ody_scrub.C │ │ │ │ │ ├── ody_scrub.H │ │ │ │ │ ├── ody_sppe_draminit.C │ │ │ │ │ ├── ody_sppe_draminit.H │ │ │ │ │ ├── ody_thermal_init.C │ │ │ │ │ └── ody_thermal_init.H │ │ │ │ ├── perv │ │ │ │ │ ├── ody_cbs_start.C │ │ │ │ │ ├── ody_cbs_start.H │ │ │ │ │ ├── ody_dts_read.C │ │ │ │ │ ├── ody_dts_read.H │ │ │ │ │ ├── ody_extract_sbe_rc.C │ │ │ │ │ ├── ody_extract_sbe_rc.H │ │ │ │ │ ├── ody_sbe_hreset.C │ │ │ │ │ ├── ody_sbe_hreset.H │ │ │ │ │ ├── ody_scratch_regs.C │ │ │ │ │ ├── ody_scratch_regs.H │ │ │ │ │ ├── ody_scratch_regs_utils.C │ │ │ │ │ ├── ody_scratch_regs_utils.H │ │ │ │ │ ├── ody_sppe_check_for_ready.C │ │ │ │ │ ├── ody_sppe_check_for_ready.H │ │ │ │ │ ├── ody_sppe_config_update.C │ │ │ │ │ ├── ody_sppe_config_update.H │ │ │ │ │ ├── poz_perv_common_params.H │ │ │ │ │ ├── poz_perv_mod_misc.C │ │ │ │ │ ├── poz_perv_mod_misc.H │ │ │ │ │ ├── poz_perv_mod_misc_regs.H │ │ │ │ │ ├── poz_perv_utils.C │ │ │ │ │ ├── poz_perv_utils.H │ │ │ │ │ ├── poz_ring_ids.H │ │ │ │ │ ├── poz_sbe_hreset.C │ │ │ │ │ ├── poz_sbe_hreset.H │ │ │ │ │ ├── poz_sppe_check_for_ready.C │ │ │ │ │ ├── poz_sppe_check_for_ready.H │ │ │ │ │ └── poz_sppe_check_for_ready_regs.H │ │ │ │ ├── sppe │ │ │ │ │ ├── ody_chipop_codeupdate.H │ │ │ │ │ ├── ody_chipop_getcodelevels.H │ │ │ │ │ ├── ody_chipop_tsns_dqs_period.H │ │ │ │ │ ├── ody_code_getlevels.C │ │ │ │ │ ├── ody_code_getlevels.H │ │ │ │ │ ├── ody_code_getlevels.mk │ │ │ │ │ ├── ody_code_update.C │ │ │ │ │ ├── ody_code_update.H │ │ │ │ │ ├── ody_code_update.mk │ │ │ │ │ ├── ody_sbe_utils.H │ │ │ │ │ ├── ody_tsns_dqs_period.C │ │ │ │ │ └── ody_tsns_dqs_period.H │ │ │ │ └── utils │ │ │ │ │ ├── ody_analyze_sbe_attr_response.C │ │ │ │ │ ├── ody_analyze_sbe_attr_response.H │ │ │ │ │ ├── ody_apply_sbe_attribute_data.C │ │ │ │ │ ├── ody_apply_sbe_attribute_data.H │ │ │ │ │ ├── ody_generate_sbe_attribute_data.C │ │ │ │ │ └── ody_generate_sbe_attribute_data.H │ │ │ │ └── xml │ │ │ │ ├── attribute_info │ │ │ │ ├── ody_attributes.xml │ │ │ │ ├── ody_chip_ec_attributes.xml │ │ │ │ ├── ody_omi_attributes.xml │ │ │ │ ├── ody_omi_init.xml │ │ │ │ ├── ody_perv_attributes.xml │ │ │ │ └── ody_sppefw_attributes.xml │ │ │ │ └── error_info │ │ │ │ ├── io_ppe_errors.xml │ │ │ │ ├── ody_attr_exchange_errors.xml │ │ │ │ ├── ody_ccs_errors.xml │ │ │ │ ├── ody_draminit_errors.xml │ │ │ │ ├── ody_dts_read_errors.xml │ │ │ │ ├── ody_ecs_errors.xml │ │ │ │ ├── ody_extract_sbe_rc_errors.xml │ │ │ │ ├── ody_i2c_errors.xml │ │ │ │ ├── ody_mcbist_errors.xml │ │ │ │ ├── ody_omi_hss_ppe_load_errors.xml │ │ │ │ ├── ody_omi_init_errors.xml │ │ │ │ ├── ody_phyinit_errors.xml │ │ │ │ ├── ody_row_repair_errors.xml │ │ │ │ ├── ody_sbe_common_errors.xml │ │ │ │ ├── ody_sbe_hreset_errors.xml │ │ │ │ ├── ody_sbe_tracearray_errors.xml │ │ │ │ ├── ody_scratch_regs_errors.xml │ │ │ │ ├── poz_bist_errors.xml │ │ │ │ ├── poz_chiplet_reset_errors.xml │ │ │ │ ├── poz_hss_errors.xml │ │ │ │ ├── poz_perv_common_params_errors.xml │ │ │ │ ├── poz_perv_mod_chip_clocking_errors.xml │ │ │ │ ├── poz_perv_mod_chiplet_clocking_errors.xml │ │ │ │ ├── poz_perv_mod_misc_errors.xml │ │ │ │ ├── poz_putRingBackend_errors.xml │ │ │ │ ├── poz_putRingUtils_errors.xml │ │ │ │ ├── poz_sbe_i2c_errors.xml │ │ │ │ ├── poz_sbe_plat_errors.xml │ │ │ │ ├── poz_sbe_spi_cmd_errors.xml │ │ │ │ ├── poz_sppe_check_for_ready_errors.xml │ │ │ │ ├── poz_tracearray_errors.xml │ │ │ │ └── sbe_ody_golden_side_errors.xml │ │ └── procedures │ │ │ └── hwp │ │ │ └── initfiles │ │ │ ├── explorer_mds_scom.C │ │ │ ├── explorer_mds_scom.H │ │ │ ├── explorer_mds_scom.mk │ │ │ ├── explorer_scom.C │ │ │ ├── explorer_scom.H │ │ │ ├── explorer_scom.mk │ │ │ ├── odyssey_mp_scom.C │ │ │ ├── odyssey_mp_scom.H │ │ │ ├── odyssey_mp_scom.mk │ │ │ ├── odyssey_scom.C │ │ │ ├── odyssey_scom.H │ │ │ └── odyssey_scom.mk │ └── p10 │ │ ├── common │ │ ├── include │ │ │ ├── c │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── eq │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── iohs │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ ├── reg00021.H │ │ │ │ ├── reg00022.H │ │ │ │ ├── reg00023.H │ │ │ │ ├── reg00024.H │ │ │ │ ├── reg00025.H │ │ │ │ ├── reg00026.H │ │ │ │ ├── reg00027.H │ │ │ │ ├── reg00028.H │ │ │ │ ├── reg00029.H │ │ │ │ ├── reg00030.H │ │ │ │ ├── reg00031.H │ │ │ │ ├── reg00032.H │ │ │ │ ├── reg00033.H │ │ │ │ ├── reg00034.H │ │ │ │ ├── reg00035.H │ │ │ │ ├── reg00036.H │ │ │ │ ├── reg00037.H │ │ │ │ ├── reg00038.H │ │ │ │ ├── reg00039.H │ │ │ │ ├── reg00040.H │ │ │ │ ├── reg00041.H │ │ │ │ ├── reg00042.H │ │ │ │ ├── reg00043.H │ │ │ │ ├── reg00044.H │ │ │ │ ├── reg00045.H │ │ │ │ ├── reg00046.H │ │ │ │ ├── reg00047.H │ │ │ │ ├── reg00048.H │ │ │ │ ├── reg00049.H │ │ │ │ ├── reg00050.H │ │ │ │ ├── reg00051.H │ │ │ │ ├── reg00052.H │ │ │ │ ├── reg00053.H │ │ │ │ ├── reg00054.H │ │ │ │ ├── reg00055.H │ │ │ │ ├── reg00056.H │ │ │ │ ├── reg00057.H │ │ │ │ ├── reg00058.H │ │ │ │ ├── reg00059.H │ │ │ │ ├── reg00060.H │ │ │ │ ├── reg00061.H │ │ │ │ ├── reg00062.H │ │ │ │ ├── reg00063.H │ │ │ │ ├── reg00064.H │ │ │ │ ├── reg00065.H │ │ │ │ ├── reg00066.H │ │ │ │ ├── reg00067.H │ │ │ │ ├── reg00068.H │ │ │ │ ├── reg00069.H │ │ │ │ └── reg00070.H │ │ │ ├── mc │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── mcc │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── multicast_group_defs.H │ │ │ ├── nmmu │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── omi │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ ├── reg00021.H │ │ │ │ ├── reg00022.H │ │ │ │ ├── reg00023.H │ │ │ │ ├── reg00024.H │ │ │ │ ├── reg00025.H │ │ │ │ ├── reg00026.H │ │ │ │ ├── reg00027.H │ │ │ │ ├── reg00028.H │ │ │ │ ├── reg00029.H │ │ │ │ ├── reg00030.H │ │ │ │ ├── reg00031.H │ │ │ │ ├── reg00032.H │ │ │ │ ├── reg00033.H │ │ │ │ ├── reg00034.H │ │ │ │ ├── reg00035.H │ │ │ │ ├── reg00036.H │ │ │ │ ├── reg00037.H │ │ │ │ ├── reg00038.H │ │ │ │ ├── reg00039.H │ │ │ │ ├── reg00040.H │ │ │ │ ├── reg00041.H │ │ │ │ ├── reg00042.H │ │ │ │ ├── reg00043.H │ │ │ │ ├── reg00044.H │ │ │ │ ├── reg00045.H │ │ │ │ ├── reg00046.H │ │ │ │ ├── reg00047.H │ │ │ │ ├── reg00048.H │ │ │ │ ├── reg00049.H │ │ │ │ ├── reg00050.H │ │ │ │ ├── reg00051.H │ │ │ │ ├── reg00052.H │ │ │ │ ├── reg00053.H │ │ │ │ ├── reg00054.H │ │ │ │ ├── reg00055.H │ │ │ │ ├── reg00056.H │ │ │ │ ├── reg00057.H │ │ │ │ ├── reg00058.H │ │ │ │ ├── reg00059.H │ │ │ │ ├── reg00060.H │ │ │ │ ├── reg00061.H │ │ │ │ ├── reg00062.H │ │ │ │ └── reg00063.H │ │ │ ├── omic │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ ├── reg00021.H │ │ │ │ ├── reg00022.H │ │ │ │ ├── reg00023.H │ │ │ │ ├── reg00024.H │ │ │ │ ├── reg00025.H │ │ │ │ ├── reg00026.H │ │ │ │ ├── reg00027.H │ │ │ │ ├── reg00028.H │ │ │ │ ├── reg00029.H │ │ │ │ ├── reg00030.H │ │ │ │ ├── reg00031.H │ │ │ │ ├── reg00032.H │ │ │ │ ├── reg00033.H │ │ │ │ ├── reg00034.H │ │ │ │ ├── reg00035.H │ │ │ │ ├── reg00036.H │ │ │ │ ├── reg00037.H │ │ │ │ ├── reg00038.H │ │ │ │ ├── reg00039.H │ │ │ │ ├── reg00040.H │ │ │ │ ├── reg00041.H │ │ │ │ ├── reg00042.H │ │ │ │ ├── reg00043.H │ │ │ │ ├── reg00044.H │ │ │ │ ├── reg00045.H │ │ │ │ ├── reg00046.H │ │ │ │ ├── reg00047.H │ │ │ │ ├── reg00048.H │ │ │ │ ├── reg00049.H │ │ │ │ ├── reg00050.H │ │ │ │ ├── reg00051.H │ │ │ │ ├── reg00052.H │ │ │ │ ├── reg00053.H │ │ │ │ ├── reg00054.H │ │ │ │ ├── reg00055.H │ │ │ │ ├── reg00056.H │ │ │ │ ├── reg00057.H │ │ │ │ ├── reg00058.H │ │ │ │ ├── reg00059.H │ │ │ │ ├── reg00060.H │ │ │ │ ├── reg00061.H │ │ │ │ └── reg00062.H │ │ │ ├── p10_frequency_buckets.H │ │ │ ├── p10_scom_c.H │ │ │ ├── p10_scom_c_0.H │ │ │ ├── p10_scom_c_1.H │ │ │ ├── p10_scom_c_2.H │ │ │ ├── p10_scom_c_3.H │ │ │ ├── p10_scom_c_4.H │ │ │ ├── p10_scom_c_5.H │ │ │ ├── p10_scom_c_6.H │ │ │ ├── p10_scom_c_7.H │ │ │ ├── p10_scom_c_8.H │ │ │ ├── p10_scom_c_9.H │ │ │ ├── p10_scom_c_a.H │ │ │ ├── p10_scom_c_b.H │ │ │ ├── p10_scom_c_c.H │ │ │ ├── p10_scom_c_d.H │ │ │ ├── p10_scom_c_e.H │ │ │ ├── p10_scom_c_f.H │ │ │ ├── p10_scom_eq.H │ │ │ ├── p10_scom_eq_0.H │ │ │ ├── p10_scom_eq_1.H │ │ │ ├── p10_scom_eq_2.H │ │ │ ├── p10_scom_eq_3.H │ │ │ ├── p10_scom_eq_4.H │ │ │ ├── p10_scom_eq_5.H │ │ │ ├── p10_scom_eq_6.H │ │ │ ├── p10_scom_eq_7.H │ │ │ ├── p10_scom_eq_8.H │ │ │ ├── p10_scom_eq_9.H │ │ │ ├── p10_scom_eq_a.H │ │ │ ├── p10_scom_eq_b.H │ │ │ ├── p10_scom_eq_c.H │ │ │ ├── p10_scom_eq_d.H │ │ │ ├── p10_scom_eq_e.H │ │ │ ├── p10_scom_eq_f.H │ │ │ ├── p10_scom_iohs.H │ │ │ ├── p10_scom_iohs_0.H │ │ │ ├── p10_scom_iohs_1.H │ │ │ ├── p10_scom_iohs_2.H │ │ │ ├── p10_scom_iohs_3.H │ │ │ ├── p10_scom_iohs_4.H │ │ │ ├── p10_scom_iohs_5.H │ │ │ ├── p10_scom_iohs_6.H │ │ │ ├── p10_scom_iohs_7.H │ │ │ ├── p10_scom_iohs_8.H │ │ │ ├── p10_scom_iohs_9.H │ │ │ ├── p10_scom_iohs_a.H │ │ │ ├── p10_scom_iohs_b.H │ │ │ ├── p10_scom_iohs_c.H │ │ │ ├── p10_scom_iohs_d.H │ │ │ ├── p10_scom_iohs_e.H │ │ │ ├── p10_scom_iohs_f.H │ │ │ ├── p10_scom_mc.H │ │ │ ├── p10_scom_mc_0.H │ │ │ ├── p10_scom_mc_1.H │ │ │ ├── p10_scom_mc_2.H │ │ │ ├── p10_scom_mc_3.H │ │ │ ├── p10_scom_mc_4.H │ │ │ ├── p10_scom_mc_5.H │ │ │ ├── p10_scom_mc_6.H │ │ │ ├── p10_scom_mc_7.H │ │ │ ├── p10_scom_mc_8.H │ │ │ ├── p10_scom_mc_9.H │ │ │ ├── p10_scom_mc_a.H │ │ │ ├── p10_scom_mc_b.H │ │ │ ├── p10_scom_mc_c.H │ │ │ ├── p10_scom_mc_d.H │ │ │ ├── p10_scom_mc_e.H │ │ │ ├── p10_scom_mc_f.H │ │ │ ├── p10_scom_mcc.H │ │ │ ├── p10_scom_mcc_0.H │ │ │ ├── p10_scom_mcc_1.H │ │ │ ├── p10_scom_mcc_2.H │ │ │ ├── p10_scom_mcc_3.H │ │ │ ├── p10_scom_mcc_4.H │ │ │ ├── p10_scom_mcc_5.H │ │ │ ├── p10_scom_mcc_6.H │ │ │ ├── p10_scom_mcc_7.H │ │ │ ├── p10_scom_mcc_8.H │ │ │ ├── p10_scom_mcc_9.H │ │ │ ├── p10_scom_mcc_a.H │ │ │ ├── p10_scom_mcc_b.H │ │ │ ├── p10_scom_mcc_c.H │ │ │ ├── p10_scom_mcc_d.H │ │ │ ├── p10_scom_mcc_e.H │ │ │ ├── p10_scom_mcc_f.H │ │ │ ├── p10_scom_nmmu.H │ │ │ ├── p10_scom_nmmu_0.H │ │ │ ├── p10_scom_nmmu_1.H │ │ │ ├── p10_scom_nmmu_2.H │ │ │ ├── p10_scom_nmmu_3.H │ │ │ ├── p10_scom_nmmu_4.H │ │ │ ├── p10_scom_nmmu_5.H │ │ │ ├── p10_scom_nmmu_6.H │ │ │ ├── p10_scom_nmmu_7.H │ │ │ ├── p10_scom_nmmu_8.H │ │ │ ├── p10_scom_nmmu_9.H │ │ │ ├── p10_scom_nmmu_a.H │ │ │ ├── p10_scom_nmmu_b.H │ │ │ ├── p10_scom_nmmu_c.H │ │ │ ├── p10_scom_nmmu_d.H │ │ │ ├── p10_scom_nmmu_e.H │ │ │ ├── p10_scom_nmmu_f.H │ │ │ ├── p10_scom_omi.H │ │ │ ├── p10_scom_omi_0.H │ │ │ ├── p10_scom_omi_1.H │ │ │ ├── p10_scom_omi_2.H │ │ │ ├── p10_scom_omi_3.H │ │ │ ├── p10_scom_omi_4.H │ │ │ ├── p10_scom_omi_5.H │ │ │ ├── p10_scom_omi_6.H │ │ │ ├── p10_scom_omi_7.H │ │ │ ├── p10_scom_omi_8.H │ │ │ ├── p10_scom_omi_9.H │ │ │ ├── p10_scom_omi_a.H │ │ │ ├── p10_scom_omi_b.H │ │ │ ├── p10_scom_omi_c.H │ │ │ ├── p10_scom_omi_d.H │ │ │ ├── p10_scom_omi_e.H │ │ │ ├── p10_scom_omi_f.H │ │ │ ├── p10_scom_omic.H │ │ │ ├── p10_scom_omic_0.H │ │ │ ├── p10_scom_omic_1.H │ │ │ ├── p10_scom_omic_2.H │ │ │ ├── p10_scom_omic_3.H │ │ │ ├── p10_scom_omic_4.H │ │ │ ├── p10_scom_omic_5.H │ │ │ ├── p10_scom_omic_6.H │ │ │ ├── p10_scom_omic_7.H │ │ │ ├── p10_scom_omic_8.H │ │ │ ├── p10_scom_omic_9.H │ │ │ ├── p10_scom_omic_a.H │ │ │ ├── p10_scom_omic_b.H │ │ │ ├── p10_scom_omic_c.H │ │ │ ├── p10_scom_omic_d.H │ │ │ ├── p10_scom_omic_e.H │ │ │ ├── p10_scom_omic_f.H │ │ │ ├── p10_scom_pau.H │ │ │ ├── p10_scom_pau_0.H │ │ │ ├── p10_scom_pau_1.H │ │ │ ├── p10_scom_pau_2.H │ │ │ ├── p10_scom_pau_3.H │ │ │ ├── p10_scom_pau_4.H │ │ │ ├── p10_scom_pau_5.H │ │ │ ├── p10_scom_pau_6.H │ │ │ ├── p10_scom_pau_7.H │ │ │ ├── p10_scom_pau_8.H │ │ │ ├── p10_scom_pau_9.H │ │ │ ├── p10_scom_pau_a.H │ │ │ ├── p10_scom_pau_b.H │ │ │ ├── p10_scom_pau_c.H │ │ │ ├── p10_scom_pau_d.H │ │ │ ├── p10_scom_pau_e.H │ │ │ ├── p10_scom_pau_f.H │ │ │ ├── p10_scom_pauc.H │ │ │ ├── p10_scom_pauc_0.H │ │ │ ├── p10_scom_pauc_1.H │ │ │ ├── p10_scom_pauc_2.H │ │ │ ├── p10_scom_pauc_3.H │ │ │ ├── p10_scom_pauc_4.H │ │ │ ├── p10_scom_pauc_5.H │ │ │ ├── p10_scom_pauc_6.H │ │ │ ├── p10_scom_pauc_7.H │ │ │ ├── p10_scom_pauc_8.H │ │ │ ├── p10_scom_pauc_9.H │ │ │ ├── p10_scom_pauc_a.H │ │ │ ├── p10_scom_pauc_b.H │ │ │ ├── p10_scom_pauc_c.H │ │ │ ├── p10_scom_pauc_d.H │ │ │ ├── p10_scom_pauc_e.H │ │ │ ├── p10_scom_pauc_f.H │ │ │ ├── p10_scom_pec.H │ │ │ ├── p10_scom_pec_0.H │ │ │ ├── p10_scom_pec_1.H │ │ │ ├── p10_scom_pec_2.H │ │ │ ├── p10_scom_pec_3.H │ │ │ ├── p10_scom_pec_4.H │ │ │ ├── p10_scom_pec_5.H │ │ │ ├── p10_scom_pec_6.H │ │ │ ├── p10_scom_pec_7.H │ │ │ ├── p10_scom_pec_8.H │ │ │ ├── p10_scom_pec_9.H │ │ │ ├── p10_scom_pec_a.H │ │ │ ├── p10_scom_pec_b.H │ │ │ ├── p10_scom_pec_c.H │ │ │ ├── p10_scom_pec_d.H │ │ │ ├── p10_scom_pec_e.H │ │ │ ├── p10_scom_pec_f.H │ │ │ ├── p10_scom_perv.H │ │ │ ├── p10_scom_perv_0.H │ │ │ ├── p10_scom_perv_1.H │ │ │ ├── p10_scom_perv_2.H │ │ │ ├── p10_scom_perv_3.H │ │ │ ├── p10_scom_perv_4.H │ │ │ ├── p10_scom_perv_5.H │ │ │ ├── p10_scom_perv_6.H │ │ │ ├── p10_scom_perv_7.H │ │ │ ├── p10_scom_perv_8.H │ │ │ ├── p10_scom_perv_9.H │ │ │ ├── p10_scom_perv_a.H │ │ │ ├── p10_scom_perv_b.H │ │ │ ├── p10_scom_perv_c.H │ │ │ ├── p10_scom_perv_d.H │ │ │ ├── p10_scom_perv_e.H │ │ │ ├── p10_scom_perv_f.H │ │ │ ├── p10_scom_phb.H │ │ │ ├── p10_scom_phb_0.H │ │ │ ├── p10_scom_phb_1.H │ │ │ ├── p10_scom_phb_2.H │ │ │ ├── p10_scom_phb_3.H │ │ │ ├── p10_scom_phb_4.H │ │ │ ├── p10_scom_phb_5.H │ │ │ ├── p10_scom_phb_6.H │ │ │ ├── p10_scom_phb_7.H │ │ │ ├── p10_scom_phb_8.H │ │ │ ├── p10_scom_phb_9.H │ │ │ ├── p10_scom_phb_a.H │ │ │ ├── p10_scom_phb_b.H │ │ │ ├── p10_scom_phb_c.H │ │ │ ├── p10_scom_phb_d.H │ │ │ ├── p10_scom_phb_e.H │ │ │ ├── p10_scom_phb_f.H │ │ │ ├── p10_scom_proc.H │ │ │ ├── p10_scom_proc_0.H │ │ │ ├── p10_scom_proc_1.H │ │ │ ├── p10_scom_proc_2.H │ │ │ ├── p10_scom_proc_3.H │ │ │ ├── p10_scom_proc_4.H │ │ │ ├── p10_scom_proc_5.H │ │ │ ├── p10_scom_proc_6.H │ │ │ ├── p10_scom_proc_7.H │ │ │ ├── p10_scom_proc_8.H │ │ │ ├── p10_scom_proc_9.H │ │ │ ├── p10_scom_proc_a.H │ │ │ ├── p10_scom_proc_b.H │ │ │ ├── p10_scom_proc_c.H │ │ │ ├── p10_scom_proc_d.H │ │ │ ├── p10_scom_proc_e.H │ │ │ ├── p10_scom_proc_f.H │ │ │ ├── pau │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ └── reg00021.H │ │ │ ├── pauc │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── pec │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── perv │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ ├── reg00021.H │ │ │ │ ├── reg00022.H │ │ │ │ ├── reg00023.H │ │ │ │ ├── reg00024.H │ │ │ │ ├── reg00025.H │ │ │ │ ├── reg00026.H │ │ │ │ ├── reg00027.H │ │ │ │ ├── reg00028.H │ │ │ │ ├── reg00029.H │ │ │ │ ├── reg00030.H │ │ │ │ ├── reg00031.H │ │ │ │ └── reg00032.H │ │ │ ├── phb │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ └── reg00015.H │ │ │ ├── proc │ │ │ │ ├── reg00000.H │ │ │ │ ├── reg00001.H │ │ │ │ ├── reg00002.H │ │ │ │ ├── reg00003.H │ │ │ │ ├── reg00004.H │ │ │ │ ├── reg00005.H │ │ │ │ ├── reg00006.H │ │ │ │ ├── reg00007.H │ │ │ │ ├── reg00008.H │ │ │ │ ├── reg00009.H │ │ │ │ ├── reg00010.H │ │ │ │ ├── reg00011.H │ │ │ │ ├── reg00012.H │ │ │ │ ├── reg00013.H │ │ │ │ ├── reg00014.H │ │ │ │ ├── reg00015.H │ │ │ │ ├── reg00016.H │ │ │ │ ├── reg00017.H │ │ │ │ ├── reg00018.H │ │ │ │ ├── reg00019.H │ │ │ │ ├── reg00020.H │ │ │ │ ├── reg00021.H │ │ │ │ ├── reg00022.H │ │ │ │ ├── reg00023.H │ │ │ │ ├── reg00024.H │ │ │ │ ├── reg00025.H │ │ │ │ ├── reg00026.H │ │ │ │ ├── reg00027.H │ │ │ │ ├── reg00028.H │ │ │ │ ├── reg00029.H │ │ │ │ ├── reg00030.H │ │ │ │ ├── reg00031.H │ │ │ │ ├── reg00032.H │ │ │ │ ├── reg00033.H │ │ │ │ ├── reg00034.H │ │ │ │ ├── reg00035.H │ │ │ │ ├── reg00036.H │ │ │ │ ├── reg00037.H │ │ │ │ ├── reg00038.H │ │ │ │ ├── reg00039.H │ │ │ │ ├── reg00040.H │ │ │ │ ├── reg00041.H │ │ │ │ ├── reg00042.H │ │ │ │ ├── reg00043.H │ │ │ │ ├── reg00044.H │ │ │ │ ├── reg00045.H │ │ │ │ ├── reg00046.H │ │ │ │ ├── reg00047.H │ │ │ │ ├── reg00048.H │ │ │ │ ├── reg00049.H │ │ │ │ ├── reg00050.H │ │ │ │ ├── reg00051.H │ │ │ │ ├── reg00052.H │ │ │ │ ├── reg00053.H │ │ │ │ ├── reg00054.H │ │ │ │ ├── reg00055.H │ │ │ │ ├── reg00056.H │ │ │ │ ├── reg00057.H │ │ │ │ ├── reg00058.H │ │ │ │ ├── reg00059.H │ │ │ │ ├── reg00060.H │ │ │ │ ├── reg00061.H │ │ │ │ ├── reg00062.H │ │ │ │ ├── reg00063.H │ │ │ │ ├── reg00064.H │ │ │ │ ├── reg00065.H │ │ │ │ ├── reg00066.H │ │ │ │ ├── reg00067.H │ │ │ │ ├── reg00068.H │ │ │ │ ├── reg00069.H │ │ │ │ ├── reg00070.H │ │ │ │ ├── reg00071.H │ │ │ │ ├── reg00072.H │ │ │ │ ├── reg00073.H │ │ │ │ ├── reg00074.H │ │ │ │ ├── reg00075.H │ │ │ │ ├── reg00076.H │ │ │ │ ├── reg00077.H │ │ │ │ ├── reg00078.H │ │ │ │ ├── reg00079.H │ │ │ │ ├── reg00080.H │ │ │ │ ├── reg00081.H │ │ │ │ ├── reg00082.H │ │ │ │ └── reg00083.H │ │ │ └── target_filters.H │ │ ├── pmlib │ │ │ └── include │ │ │ │ └── registers │ │ │ │ └── ocb_firmware_registers.h │ │ └── scominfo │ │ │ ├── p10_cu.H │ │ │ ├── p10_scom_addr.C │ │ │ ├── p10_scom_addr.H │ │ │ ├── p10_scominfo.C │ │ │ └── p10_scominfo.H │ │ ├── procedures │ │ ├── hwp │ │ │ ├── accessors │ │ │ │ ├── ddimm_get_efd.C │ │ │ │ ├── ddimm_get_efd.H │ │ │ │ ├── ddimm_get_efd.mk │ │ │ │ ├── p10_get_mvpd_ring.C │ │ │ │ ├── p10_get_mvpd_ring.H │ │ │ │ ├── p10_get_mvpd_ring.mk │ │ │ │ ├── p10_mvpd_ring_funcs.C │ │ │ │ ├── p10_mvpd_ring_funcs.H │ │ │ │ └── p10_mvpd_ring_funcs.mk │ │ │ ├── core │ │ │ │ ├── p10_sbe_instruct_start.C │ │ │ │ ├── p10_sbe_instruct_start.H │ │ │ │ ├── p10_sbe_instruct_start.mk │ │ │ │ ├── p10_thread_control.C │ │ │ │ ├── p10_thread_control.H │ │ │ │ └── p10_thread_control.mk │ │ │ ├── corecache │ │ │ │ ├── p10_hcd_cache_poweroff.C │ │ │ │ ├── p10_hcd_cache_poweroff.H │ │ │ │ ├── p10_hcd_cache_poweroff.mk │ │ │ │ ├── p10_hcd_cache_stopclocks.C │ │ │ │ ├── p10_hcd_cache_stopclocks.H │ │ │ │ ├── p10_hcd_cache_stopclocks.mk │ │ │ │ ├── p10_hcd_chtm_purge.C │ │ │ │ ├── p10_hcd_chtm_purge.H │ │ │ │ ├── p10_hcd_chtm_purge.mk │ │ │ │ ├── p10_hcd_core_poweroff.C │ │ │ │ ├── p10_hcd_core_poweroff.H │ │ │ │ ├── p10_hcd_core_poweroff.mk │ │ │ │ ├── p10_hcd_core_shadows_disable.C │ │ │ │ ├── p10_hcd_core_shadows_disable.H │ │ │ │ ├── p10_hcd_core_shadows_disable.mk │ │ │ │ ├── p10_hcd_core_stopclocks.C │ │ │ │ ├── p10_hcd_core_stopclocks.H │ │ │ │ ├── p10_hcd_core_stopclocks.mk │ │ │ │ ├── p10_hcd_core_stopgrid.C │ │ │ │ ├── p10_hcd_core_stopgrid.H │ │ │ │ ├── p10_hcd_core_stopgrid.mk │ │ │ │ ├── p10_hcd_corecache_clock_control.C │ │ │ │ ├── p10_hcd_corecache_clock_control.H │ │ │ │ ├── p10_hcd_corecache_clock_control.mk │ │ │ │ ├── p10_hcd_corecache_power_control.C │ │ │ │ ├── p10_hcd_corecache_power_control.H │ │ │ │ ├── p10_hcd_corecache_power_control.mk │ │ │ │ ├── p10_hcd_corecache_realign.C │ │ │ │ ├── p10_hcd_corecache_realign.H │ │ │ │ ├── p10_hcd_corecache_realign.mk │ │ │ │ ├── p10_hcd_l2_purge.C │ │ │ │ ├── p10_hcd_l2_purge.H │ │ │ │ ├── p10_hcd_l2_purge.mk │ │ │ │ ├── p10_hcd_l2_tlbie_quiesce.C │ │ │ │ ├── p10_hcd_l2_tlbie_quiesce.H │ │ │ │ ├── p10_hcd_l2_tlbie_quiesce.mk │ │ │ │ ├── p10_hcd_l3_purge.C │ │ │ │ ├── p10_hcd_l3_purge.H │ │ │ │ ├── p10_hcd_l3_purge.mk │ │ │ │ ├── p10_hcd_mma_poweroff.C │ │ │ │ ├── p10_hcd_mma_poweroff.H │ │ │ │ ├── p10_hcd_mma_poweroff.mk │ │ │ │ ├── p10_hcd_mma_stopclocks.C │ │ │ │ ├── p10_hcd_mma_stopclocks.H │ │ │ │ ├── p10_hcd_mma_stopclocks.mk │ │ │ │ ├── p10_hcd_ncu_purge.C │ │ │ │ ├── p10_hcd_ncu_purge.H │ │ │ │ ├── p10_hcd_ncu_purge.mk │ │ │ │ ├── p10_hcd_powerbus_purge.C │ │ │ │ ├── p10_hcd_powerbus_purge.H │ │ │ │ ├── p10_hcd_powerbus_purge.mk │ │ │ │ ├── p10_l2err_extract.C │ │ │ │ ├── p10_l2err_extract.H │ │ │ │ ├── p10_l2err_extract.mk │ │ │ │ ├── p10_l2err_linedelete.C │ │ │ │ ├── p10_l2err_linedelete.H │ │ │ │ ├── p10_l2err_linedelete.mk │ │ │ │ ├── p10_l3err_extract.C │ │ │ │ ├── p10_l3err_extract.H │ │ │ │ ├── p10_l3err_extract.mk │ │ │ │ ├── p10_l3err_linedelete.C │ │ │ │ ├── p10_l3err_linedelete.H │ │ │ │ ├── p10_l3err_linedelete.mk │ │ │ │ ├── p10_ncu_enable_darn.C │ │ │ │ ├── p10_ncu_enable_darn.H │ │ │ │ └── p10_ncu_enable_darn.mk │ │ │ ├── customize │ │ │ │ ├── p10_boot_mode.C │ │ │ │ ├── p10_boot_mode.H │ │ │ │ ├── p10_dyninit_bitvec.H │ │ │ │ ├── p10_dyninit_bitvec_utils.C │ │ │ │ ├── p10_dyninit_bitvec_utils.H │ │ │ │ ├── p10_ipl_customize.C │ │ │ │ ├── p10_ipl_customize.H │ │ │ │ ├── p10_ipl_customize.mk │ │ │ │ ├── p10_ipl_section_append.C │ │ │ │ ├── p10_ipl_section_append.H │ │ │ │ ├── p10_ipl_section_append.mk │ │ │ │ ├── p10_qme_customize.C │ │ │ │ ├── p10_qme_customize.H │ │ │ │ └── p10_qme_customize.mk │ │ │ ├── ffdc │ │ │ │ ├── exp_collect_explorer_active_log.C │ │ │ │ ├── exp_collect_explorer_active_log.H │ │ │ │ ├── exp_collect_explorer_log.C │ │ │ │ ├── exp_collect_explorer_log.H │ │ │ │ ├── exp_collect_explorer_saved_A_log.C │ │ │ │ ├── exp_collect_explorer_saved_A_log.H │ │ │ │ ├── exp_collect_explorer_saved_B_log.C │ │ │ │ ├── exp_collect_explorer_saved_B_log.H │ │ │ │ ├── ffdc_includes.H │ │ │ │ ├── ody_pack_ecs_data.C │ │ │ │ └── ody_pack_ecs_data.H │ │ │ ├── initfiles │ │ │ │ ├── p10_fbc_ab_hp_scom.C │ │ │ │ ├── p10_fbc_ab_hp_scom.H │ │ │ │ ├── p10_fbc_dlp_scom.C │ │ │ │ ├── p10_fbc_dlp_scom.H │ │ │ │ ├── p10_fbc_no_hp_scom.C │ │ │ │ ├── p10_fbc_no_hp_scom.H │ │ │ │ ├── p10_fbc_ptl_scom.C │ │ │ │ ├── p10_fbc_ptl_scom.H │ │ │ │ ├── p10_int_scom.C │ │ │ │ ├── p10_int_scom.H │ │ │ │ ├── p10_int_scom.mk │ │ │ │ ├── p10_iohs_scom.C │ │ │ │ ├── p10_iohs_scom.H │ │ │ │ ├── p10_mcc_omi_pretrain_scom.C │ │ │ │ ├── p10_mcc_omi_pretrain_scom.H │ │ │ │ ├── p10_mcc_omi_scom.C │ │ │ │ ├── p10_mcc_omi_scom.H │ │ │ │ ├── p10_mi_omi_pretrain_scom.C │ │ │ │ ├── p10_mi_omi_pretrain_scom.H │ │ │ │ ├── p10_mi_omi_scom.C │ │ │ │ ├── p10_mi_omi_scom.H │ │ │ │ ├── p10_nmmu_scom.C │ │ │ │ ├── p10_nmmu_scom.H │ │ │ │ ├── p10_nx_scom.C │ │ │ │ ├── p10_nx_scom.H │ │ │ │ ├── p10_omi_init_scom.C │ │ │ │ ├── p10_omi_init_scom.H │ │ │ │ ├── p10_omi_scom.C │ │ │ │ ├── p10_omi_scom.H │ │ │ │ ├── p10_omic_scom.C │ │ │ │ ├── p10_omic_scom.H │ │ │ │ ├── p10_pau_scom.C │ │ │ │ ├── p10_pau_scom.H │ │ │ │ ├── p10_pcie_scom.C │ │ │ │ ├── p10_pcie_scom.H │ │ │ │ ├── p10_psi_scom.C │ │ │ │ ├── p10_psi_scom.H │ │ │ │ ├── p10_psi_scom.mk │ │ │ │ ├── p10_vas_scom.C │ │ │ │ └── p10_vas_scom.H │ │ │ ├── io │ │ │ │ ├── p10_io_dynamic_vio.C │ │ │ │ ├── p10_io_dynamic_vio.H │ │ │ │ ├── p10_io_dynamic_vio.mk │ │ │ │ ├── p10_io_init_done.C │ │ │ │ ├── p10_io_init_done.H │ │ │ │ ├── p10_io_init_start_ppe.C │ │ │ │ ├── p10_io_init_start_ppe.H │ │ │ │ ├── p10_io_iohs_firmask_save_restore.C │ │ │ │ ├── p10_io_iohs_firmask_save_restore.H │ │ │ │ ├── p10_io_iohs_poll_recal.C │ │ │ │ ├── p10_io_iohs_poll_recal.H │ │ │ │ ├── p10_io_lib.C │ │ │ │ ├── p10_io_lib.H │ │ │ │ ├── p10_io_omi_post_trainadv.C │ │ │ │ ├── p10_io_omi_post_trainadv.H │ │ │ │ ├── p10_io_omi_prbs.C │ │ │ │ ├── p10_io_omi_prbs.H │ │ │ │ ├── p10_io_omi_pre_trainadv.C │ │ │ │ ├── p10_io_omi_pre_trainadv.H │ │ │ │ ├── p10_io_omi_scominit.C │ │ │ │ ├── p10_io_omi_scominit.H │ │ │ │ ├── p10_io_power.C │ │ │ │ ├── p10_io_power.H │ │ │ │ ├── p10_io_ppe_lib.C │ │ │ │ ├── p10_io_ppe_lib.H │ │ │ │ ├── p10_io_ppe_regs.C │ │ │ │ ├── p10_io_ppe_regs.H │ │ │ │ ├── p10_io_quiesce_lane.C │ │ │ │ ├── p10_io_quiesce_lane.H │ │ │ │ ├── p10_io_tdr.C │ │ │ │ ├── p10_io_tdr.H │ │ │ │ ├── p10_iohs_reset.C │ │ │ │ ├── p10_iohs_reset.H │ │ │ │ ├── p10_iohs_scominit.C │ │ │ │ ├── p10_iohs_scominit.H │ │ │ │ ├── p10_omi_isolation.C │ │ │ │ ├── p10_omi_isolation.H │ │ │ │ ├── p10_omi_scominit.C │ │ │ │ └── p10_omi_scominit.H │ │ │ ├── lib │ │ │ │ ├── p10_avsbus_lib.C │ │ │ │ ├── p10_avsbus_lib.H │ │ │ │ ├── p10_avsbus_scom.H │ │ │ │ ├── p10_hcd_common.H │ │ │ │ ├── p10_hcd_header_defs.H │ │ │ │ ├── p10_hcd_memmap_base.H │ │ │ │ ├── p10_hcd_memmap_homer.H │ │ │ │ ├── p10_hcd_memmap_occ_sram.H │ │ │ │ ├── p10_hcd_memmap_qme_sram.H │ │ │ │ ├── p10_hcode_image_defines.H │ │ │ │ ├── p10_io_pwr.H │ │ │ │ ├── p10_io_pwr_types.H │ │ │ │ ├── p10_pm_hcd_flags.h │ │ │ │ ├── p10_pm_utils.C │ │ │ │ ├── p10_pm_utils.H │ │ │ │ ├── p10_ppe_common.C │ │ │ │ ├── p10_ppe_common.H │ │ │ │ ├── p10_ppe_defs.H │ │ │ │ ├── p10_ppe_instance_defs.H │ │ │ │ ├── p10_ppe_utils.C │ │ │ │ ├── p10_ppe_utils.H │ │ │ │ ├── p10_qme_meta_data.H │ │ │ │ ├── p10_stop_util.H │ │ │ │ ├── pstates_common.H │ │ │ │ ├── pstates_occ.H │ │ │ │ ├── pstates_pgpe.H │ │ │ │ └── pstates_table.H │ │ │ ├── memory │ │ │ │ ├── lib │ │ │ │ │ ├── eff_config │ │ │ │ │ │ ├── p10_base_engine.H │ │ │ │ │ │ ├── p10_common_engine.H │ │ │ │ │ │ ├── p10_ddimm_efd_engine.H │ │ │ │ │ │ ├── p10_ddimm_engine.H │ │ │ │ │ │ ├── p10_ddr5_base_engine.H │ │ │ │ │ │ ├── p10_ddr5_ddimm_efd_engine.H │ │ │ │ │ │ ├── p10_ddr5_ddimm_engine.H │ │ │ │ │ │ ├── p10_factory.C │ │ │ │ │ │ ├── p10_factory.H │ │ │ │ │ │ ├── p10_module_specific_engine.H │ │ │ │ │ │ ├── p10_mss_voltage.C │ │ │ │ │ │ ├── p10_planar_rdimm_efd_engine.H │ │ │ │ │ │ ├── p10_planar_rdimm_engine.H │ │ │ │ │ │ ├── p10_spd_utils.C │ │ │ │ │ │ └── p10_spd_utils.H │ │ │ │ │ ├── fir │ │ │ │ │ │ ├── p10_fir.H │ │ │ │ │ │ └── p10_fir_traits.H │ │ │ │ │ ├── freq │ │ │ │ │ │ ├── p10_freq_traits.H │ │ │ │ │ │ ├── p10_mss_freq_utils.C │ │ │ │ │ │ ├── p10_mss_freq_utils.H │ │ │ │ │ │ ├── p10_sync.C │ │ │ │ │ │ └── p10_sync.H │ │ │ │ │ ├── mc │ │ │ │ │ │ └── host_mc_traits.H │ │ │ │ │ ├── omi │ │ │ │ │ │ ├── p10_omi_utils.C │ │ │ │ │ │ └── p10_omi_utils.H │ │ │ │ │ ├── p10_attribute_accessors_manual.C │ │ │ │ │ ├── p10_attribute_accessors_manual.H │ │ │ │ │ ├── plug_rules │ │ │ │ │ │ ├── p10_plug_rules.C │ │ │ │ │ │ └── p10_plug_rules.H │ │ │ │ │ ├── power_thermal │ │ │ │ │ │ ├── p10_throttle_sync_utils.C │ │ │ │ │ │ └── p10_throttle_sync_utils.H │ │ │ │ │ ├── shared │ │ │ │ │ │ └── p10_consts.H │ │ │ │ │ └── workarounds │ │ │ │ │ │ ├── p10_fir_workarounds.C │ │ │ │ │ │ ├── p10_fir_workarounds.H │ │ │ │ │ │ ├── p10_mc_workarounds.C │ │ │ │ │ │ ├── p10_mc_workarounds.H │ │ │ │ │ │ ├── p10_omi_workarounds.C │ │ │ │ │ │ └── p10_omi_workarounds.H │ │ │ │ ├── p10_disable_ocmb_i2c.C │ │ │ │ ├── p10_disable_ocmb_i2c.H │ │ │ │ ├── p10_mss_attr_update.C │ │ │ │ ├── p10_mss_attr_update.H │ │ │ │ ├── p10_mss_attr_update.mk │ │ │ │ ├── p10_mss_eff_config.C │ │ │ │ ├── p10_mss_eff_config.H │ │ │ │ ├── p10_mss_eff_config.mk │ │ │ │ ├── p10_mss_freq.C │ │ │ │ ├── p10_mss_freq.H │ │ │ │ ├── p10_mss_freq.mk │ │ │ │ ├── p10_mss_freq_system.C │ │ │ │ ├── p10_mss_freq_system.H │ │ │ │ ├── p10_mss_freq_system.mk │ │ │ │ ├── p10_mss_utils_to_throttle.C │ │ │ │ ├── p10_mss_utils_to_throttle.H │ │ │ │ ├── p10_mss_volt.C │ │ │ │ ├── p10_mss_volt.H │ │ │ │ ├── p10_mss_volt.mk │ │ │ │ ├── p10_omi_ddr4_edpl.C │ │ │ │ ├── p10_omi_ddr4_edpl.H │ │ │ │ ├── p10_omi_ddr4_edpl.mk │ │ │ │ ├── p10_omi_init.C │ │ │ │ ├── p10_omi_init.H │ │ │ │ ├── p10_omi_setup.C │ │ │ │ ├── p10_omi_setup.H │ │ │ │ ├── p10_omi_setup.mk │ │ │ │ ├── p10_omi_train.C │ │ │ │ ├── p10_omi_train.H │ │ │ │ ├── p10_omi_train.mk │ │ │ │ ├── p10_omi_train_check.C │ │ │ │ ├── p10_omi_train_check.H │ │ │ │ ├── p10_omi_train_check.mk │ │ │ │ ├── p10_throttle_sync.C │ │ │ │ ├── p10_throttle_sync.H │ │ │ │ └── p10_throttle_sync.mk │ │ │ ├── nest │ │ │ │ ├── p10_adu_access.C │ │ │ │ ├── p10_adu_access.H │ │ │ │ ├── p10_adu_access.mk │ │ │ │ ├── p10_adu_constants.H │ │ │ │ ├── p10_adu_setup.C │ │ │ │ ├── p10_adu_setup.H │ │ │ │ ├── p10_adu_setup.mk │ │ │ │ ├── p10_adu_utils.C │ │ │ │ ├── p10_adu_utils.H │ │ │ │ ├── p10_attr_update.C │ │ │ │ ├── p10_attr_update.H │ │ │ │ ├── p10_attr_update.mk │ │ │ │ ├── p10_build_smp.C │ │ │ │ ├── p10_build_smp.H │ │ │ │ ├── p10_build_smp_adu.C │ │ │ │ ├── p10_build_smp_adu.H │ │ │ │ ├── p10_build_smp_fbc_ab.C │ │ │ │ ├── p10_build_smp_fbc_ab.H │ │ │ │ ├── p10_chiplet_fabric_scominit.C │ │ │ │ ├── p10_chiplet_fabric_scominit.H │ │ │ │ ├── p10_chiplet_scominit.C │ │ │ │ ├── p10_chiplet_scominit.H │ │ │ │ ├── p10_exit_cache_contained.C │ │ │ │ ├── p10_exit_cache_contained.H │ │ │ │ ├── p10_exit_cache_contained.mk │ │ │ │ ├── p10_fabric_dl_post_trainadv.C │ │ │ │ ├── p10_fabric_dl_post_trainadv.H │ │ │ │ ├── p10_fabric_dl_post_trainadv.mk │ │ │ │ ├── p10_fabric_dl_pre_trainadv.C │ │ │ │ ├── p10_fabric_dl_pre_trainadv.H │ │ │ │ ├── p10_fabric_dl_pre_trainadv.mk │ │ │ │ ├── p10_fabric_dl_setup_linktrain.C │ │ │ │ ├── p10_fabric_dl_setup_linktrain.H │ │ │ │ ├── p10_fabric_iovalid.C │ │ │ │ ├── p10_fabric_iovalid.H │ │ │ │ ├── p10_fabric_link_layer.C │ │ │ │ ├── p10_fabric_link_layer.H │ │ │ │ ├── p10_fbc_async_utils.C │ │ │ │ ├── p10_fbc_async_utils.H │ │ │ │ ├── p10_fbc_core_topo.C │ │ │ │ ├── p10_fbc_core_topo.H │ │ │ │ ├── p10_fbc_core_topo.mk │ │ │ │ ├── p10_fbc_eff_config.C │ │ │ │ ├── p10_fbc_eff_config.H │ │ │ │ ├── p10_fbc_eff_config.mk │ │ │ │ ├── p10_fbc_eff_config_aggregate.C │ │ │ │ ├── p10_fbc_eff_config_aggregate.H │ │ │ │ ├── p10_fbc_eff_config_aggregate.mk │ │ │ │ ├── p10_fbc_eff_config_links.C │ │ │ │ ├── p10_fbc_eff_config_links.H │ │ │ │ ├── p10_fbc_eff_config_links.mk │ │ │ │ ├── p10_fbc_tdm_inject.C │ │ │ │ ├── p10_fbc_tdm_inject.H │ │ │ │ ├── p10_fbc_tdm_utils.C │ │ │ │ ├── p10_fbc_tdm_utils.H │ │ │ │ ├── p10_fbc_utils.C │ │ │ │ ├── p10_fbc_utils.H │ │ │ │ ├── p10_fbc_utils.mk │ │ │ │ ├── p10_gen_fbc_rt_settings.C │ │ │ │ ├── p10_gen_fbc_rt_settings.H │ │ │ │ ├── p10_gen_fbc_rt_settings.mk │ │ │ │ ├── p10_gen_xscom_init.C │ │ │ │ ├── p10_gen_xscom_init.H │ │ │ │ ├── p10_getputmemproc_utils.C │ │ │ │ ├── p10_getputmemproc_utils.H │ │ │ │ ├── p10_getputsram_utils.C │ │ │ │ ├── p10_getputsram_utils.H │ │ │ │ ├── p10_htm_adu_ctrl.C │ │ │ │ ├── p10_htm_adu_ctrl.H │ │ │ │ ├── p10_htm_adu_ctrl.mk │ │ │ │ ├── p10_htm_def.H │ │ │ │ ├── p10_htm_reset.C │ │ │ │ ├── p10_htm_reset.H │ │ │ │ ├── p10_htm_setup.C │ │ │ │ ├── p10_htm_setup.H │ │ │ │ ├── p10_htm_setup.mk │ │ │ │ ├── p10_htm_start.C │ │ │ │ ├── p10_htm_start.H │ │ │ │ ├── p10_htm_start.mk │ │ │ │ ├── p10_htm_structs.H │ │ │ │ ├── p10_init_mem_encryption.C │ │ │ │ ├── p10_init_mem_encryption.H │ │ │ │ ├── p10_init_mem_encryption.mk │ │ │ │ ├── p10_io_load_ppe.C │ │ │ │ ├── p10_io_load_ppe.H │ │ │ │ ├── p10_io_ppe_utils.C │ │ │ │ ├── p10_io_ppe_utils.H │ │ │ │ ├── p10_iop_xram_utils.C │ │ │ │ ├── p10_iop_xram_utils.H │ │ │ │ ├── p10_l2_flush.C │ │ │ │ ├── p10_l2_flush.H │ │ │ │ ├── p10_l2_flush.mk │ │ │ │ ├── p10_l3_flush.C │ │ │ │ ├── p10_l3_flush.H │ │ │ │ ├── p10_l3_flush.mk │ │ │ │ ├── p10_load_iop_xram.C │ │ │ │ ├── p10_load_iop_xram.H │ │ │ │ ├── p10_load_iop_xram.mk │ │ │ │ ├── p10_mss_eff_grouping.C │ │ │ │ ├── p10_mss_eff_grouping.H │ │ │ │ ├── p10_mss_eff_grouping.mk │ │ │ │ ├── p10_omi_degrade_dl_reconfig.C │ │ │ │ ├── p10_omi_degrade_dl_reconfig.H │ │ │ │ ├── p10_omi_setup_bars.C │ │ │ │ ├── p10_omi_setup_bars.H │ │ │ │ ├── p10_pau_scominit.C │ │ │ │ ├── p10_pau_scominit.H │ │ │ │ ├── p10_pcie_config.C │ │ │ │ ├── p10_pcie_config.H │ │ │ │ ├── p10_pcie_config.mk │ │ │ │ ├── p10_pcie_scominit.C │ │ │ │ ├── p10_pcie_scominit.H │ │ │ │ ├── p10_pcie_utils.C │ │ │ │ ├── p10_pcie_utils.H │ │ │ │ ├── p10_pcie_utils.mk │ │ │ │ ├── p10_phb_constants.H │ │ │ │ ├── p10_phb_hv_access.C │ │ │ │ ├── p10_phb_hv_access.H │ │ │ │ ├── p10_phb_hv_utils.C │ │ │ │ ├── p10_phb_hv_utils.H │ │ │ │ ├── p10_psi_scominit.C │ │ │ │ ├── p10_psi_scominit.H │ │ │ │ ├── p10_psi_scominit.mk │ │ │ │ ├── p10_putmemproc.C │ │ │ │ ├── p10_putmemproc.H │ │ │ │ ├── p10_putsram.C │ │ │ │ ├── p10_putsram.H │ │ │ │ ├── p10_putsram_io_ppe.C │ │ │ │ ├── p10_putsram_io_ppe.H │ │ │ │ ├── p10_revert_sbe_mcs_setup.C │ │ │ │ ├── p10_revert_sbe_mcs_setup.H │ │ │ │ ├── p10_revert_sbe_mcs_setup.mk │ │ │ │ ├── p10_rng_init_phase1.C │ │ │ │ ├── p10_rng_init_phase1.H │ │ │ │ ├── p10_rng_init_phase2.C │ │ │ │ ├── p10_rng_init_phase2.H │ │ │ │ ├── p10_sbe_apply_xscom_inits.C │ │ │ │ ├── p10_sbe_apply_xscom_inits.H │ │ │ │ ├── p10_sbe_apply_xscom_inits.mk │ │ │ │ ├── p10_sbe_exit_cache_contained.C │ │ │ │ ├── p10_sbe_exit_cache_contained.H │ │ │ │ ├── p10_sbe_exit_cache_contained.mk │ │ │ │ ├── p10_sbe_hb_structures.H │ │ │ │ ├── p10_sbe_purge_hb.C │ │ │ │ ├── p10_sbe_purge_hb.H │ │ │ │ ├── p10_sbe_purge_hb.mk │ │ │ │ ├── p10_sbe_stop_hb.C │ │ │ │ ├── p10_sbe_stop_hb.H │ │ │ │ ├── p10_sbe_stop_hb.mk │ │ │ │ ├── p10_scomoverride_chiplets.C │ │ │ │ ├── p10_scomoverride_chiplets.H │ │ │ │ ├── p10_setup_bars_defs.H │ │ │ │ ├── p10_setup_mmio_bars.C │ │ │ │ ├── p10_setup_mmio_bars.H │ │ │ │ ├── p10_setup_mmio_bars.mk │ │ │ │ ├── p10_smp_link_firs.C │ │ │ │ ├── p10_smp_link_firs.H │ │ │ │ ├── p10_smp_wrap.C │ │ │ │ ├── p10_smp_wrap.H │ │ │ │ ├── p10_tod_init.C │ │ │ │ ├── p10_tod_init.H │ │ │ │ ├── p10_tod_init.mk │ │ │ │ ├── p10_tod_save_config.C │ │ │ │ ├── p10_tod_save_config.H │ │ │ │ ├── p10_tod_save_config.mk │ │ │ │ ├── p10_tod_setup.C │ │ │ │ ├── p10_tod_setup.H │ │ │ │ ├── p10_tod_setup.mk │ │ │ │ ├── p10_tod_utils.H │ │ │ │ ├── p10_write_xram.C │ │ │ │ ├── p10_write_xram.H │ │ │ │ └── p10_write_xram.mk │ │ │ ├── perv │ │ │ │ ├── p10_chiplet_enable_ridi.C │ │ │ │ ├── p10_chiplet_enable_ridi.H │ │ │ │ ├── p10_chiplet_enable_ridi.mk │ │ │ │ ├── p10_clock_test.C │ │ │ │ ├── p10_clock_test.H │ │ │ │ ├── p10_clock_test.mk │ │ │ │ ├── p10_clock_test_cmn.C │ │ │ │ ├── p10_clock_test_cmn.H │ │ │ │ ├── p10_core_checkstop_handler.C │ │ │ │ ├── p10_core_checkstop_handler.H │ │ │ │ ├── p10_core_checkstop_handler.mk │ │ │ │ ├── p10_determine_eco_mode.C │ │ │ │ ├── p10_determine_eco_mode.H │ │ │ │ ├── p10_enable_ridi.C │ │ │ │ ├── p10_enable_ridi.H │ │ │ │ ├── p10_extract_sbe_rc.C │ │ │ │ ├── p10_extract_sbe_rc.H │ │ │ │ ├── p10_getecid.C │ │ │ │ ├── p10_getecid.H │ │ │ │ ├── p10_hang_pulse_mc_setup_tables.H │ │ │ │ ├── p10_iohs_enable_ridi.C │ │ │ │ ├── p10_iohs_enable_ridi.H │ │ │ │ ├── p10_iohs_enable_ridi.mk │ │ │ │ ├── p10_lpc_test.C │ │ │ │ ├── p10_lpc_test.H │ │ │ │ ├── p10_lpc_utils.C │ │ │ │ ├── p10_lpc_utils.H │ │ │ │ ├── p10_ocmb_enable.C │ │ │ │ ├── p10_ocmb_enable.H │ │ │ │ ├── p10_perv_sbe_cmn.C │ │ │ │ ├── p10_perv_sbe_cmn.H │ │ │ │ ├── p10_pre_poweroff.C │ │ │ │ ├── p10_pre_poweroff.H │ │ │ │ ├── p10_proc_gettracearray.C │ │ │ │ ├── p10_proc_gettracearray.H │ │ │ │ ├── p10_proc_gettracearray.mk │ │ │ │ ├── p10_rcs_transient_check.C │ │ │ │ ├── p10_rcs_transient_check.H │ │ │ │ ├── p10_sbe_hreset.C │ │ │ │ ├── p10_sbe_hreset.H │ │ │ │ ├── p10_sbe_lpc_init.C │ │ │ │ ├── p10_sbe_lpc_init.H │ │ │ │ ├── p10_sbe_scratch_regs.C │ │ │ │ ├── p10_sbe_scratch_regs.H │ │ │ │ ├── p10_sbe_tp_chiplet_init.H │ │ │ │ ├── p10_sbe_tracearray.C │ │ │ │ ├── p10_sbe_tracearray.H │ │ │ │ ├── p10_sbe_tracearray.mk │ │ │ │ ├── p10_set_fsi_gp_shadow.C │ │ │ │ ├── p10_set_fsi_gp_shadow.H │ │ │ │ ├── p10_set_fsi_gp_shadow.mk │ │ │ │ ├── p10_setup_ref_clock.C │ │ │ │ ├── p10_setup_ref_clock.H │ │ │ │ ├── p10_setup_ref_clock.mk │ │ │ │ ├── p10_setup_sbe_config.C │ │ │ │ ├── p10_setup_sbe_config.H │ │ │ │ ├── p10_setup_sbe_config.mk │ │ │ │ ├── p10_start_cbs.C │ │ │ │ ├── p10_start_cbs.H │ │ │ │ ├── p10_start_cbs.mk │ │ │ │ ├── p10_tracearray_defs.H │ │ │ │ ├── p10_update_security_ctrl.C │ │ │ │ └── p10_update_security_ctrl.H │ │ │ ├── pm │ │ │ │ ├── p10_block_wakeup_intr.C │ │ │ │ ├── p10_block_wakeup_intr.H │ │ │ │ ├── p10_block_wakeup_intr.mk │ │ │ │ ├── p10_check_freq_compat.C │ │ │ │ ├── p10_check_freq_compat.H │ │ │ │ ├── p10_check_freq_compat.mk │ │ │ │ ├── p10_check_proc_config.C │ │ │ │ ├── p10_check_proc_config.H │ │ │ │ ├── p10_check_proc_config.mk │ │ │ │ ├── p10_core_special_wakeup.C │ │ │ │ ├── p10_core_special_wakeup.H │ │ │ │ ├── p10_core_special_wakeup.mk │ │ │ │ ├── p10_dump_pstate_table.C │ │ │ │ ├── p10_dump_pstate_table.H │ │ │ │ ├── p10_get_freq_compat_settings.C │ │ │ │ ├── p10_get_freq_compat_settings.H │ │ │ │ ├── p10_get_freq_compat_settings.mk │ │ │ │ ├── p10_hcode_image_build.C │ │ │ │ ├── p10_hcode_image_build.H │ │ │ │ ├── p10_hcode_image_build.mk │ │ │ │ ├── p10_pm.H │ │ │ │ ├── p10_pm_callout.C │ │ │ │ ├── p10_pm_callout.H │ │ │ │ ├── p10_pm_callout.mk │ │ │ │ ├── p10_pm_collate_dump.C │ │ │ │ ├── p10_pm_collate_dump.H │ │ │ │ ├── p10_pm_dump.C │ │ │ │ ├── p10_pm_dump.H │ │ │ │ ├── p10_pm_fir_class.H │ │ │ │ ├── p10_pm_firinit.C │ │ │ │ ├── p10_pm_firinit.H │ │ │ │ ├── p10_pm_get_poundv_bucket.C │ │ │ │ ├── p10_pm_get_poundv_bucket.H │ │ │ │ ├── p10_pm_get_poundv_bucket_attr.C │ │ │ │ ├── p10_pm_get_poundv_bucket_attr.H │ │ │ │ ├── p10_pm_get_poundv_bucket_attr.mk │ │ │ │ ├── p10_pm_get_poundw_bucket.C │ │ │ │ ├── p10_pm_get_poundw_bucket.H │ │ │ │ ├── p10_pm_get_poundw_bucket_attr.C │ │ │ │ ├── p10_pm_get_poundw_bucket_attr.H │ │ │ │ ├── p10_pm_get_poundw_bucket_attr.mk │ │ │ │ ├── p10_pm_halt.C │ │ │ │ ├── p10_pm_halt.H │ │ │ │ ├── p10_pm_halt.mk │ │ │ │ ├── p10_pm_ocb_indir_access.C │ │ │ │ ├── p10_pm_ocb_indir_access.H │ │ │ │ ├── p10_pm_ocb_indir_access.mk │ │ │ │ ├── p10_pm_ocb_indir_setup_circular.C │ │ │ │ ├── p10_pm_ocb_indir_setup_circular.H │ │ │ │ ├── p10_pm_ocb_indir_setup_circular.mk │ │ │ │ ├── p10_pm_ocb_indir_setup_linear.C │ │ │ │ ├── p10_pm_ocb_indir_setup_linear.H │ │ │ │ ├── p10_pm_ocb_indir_setup_linear.mk │ │ │ │ ├── p10_pm_ocb_init.C │ │ │ │ ├── p10_pm_ocb_init.H │ │ │ │ ├── p10_pm_ocb_init.mk │ │ │ │ ├── p10_pm_occ_control.C │ │ │ │ ├── p10_pm_occ_control.H │ │ │ │ ├── p10_pm_occ_control.mk │ │ │ │ ├── p10_pm_occ_firinit.C │ │ │ │ ├── p10_pm_occ_firinit.H │ │ │ │ ├── p10_pm_occ_firinit.mk │ │ │ │ ├── p10_pm_occ_gpe_init.C │ │ │ │ ├── p10_pm_occ_gpe_init.H │ │ │ │ ├── p10_pm_occ_gpe_init.mk │ │ │ │ ├── p10_pm_pba_bar_config.C │ │ │ │ ├── p10_pm_pba_bar_config.H │ │ │ │ ├── p10_pm_pba_bar_config.mk │ │ │ │ ├── p10_pm_pba_firinit.C │ │ │ │ ├── p10_pm_pba_firinit.H │ │ │ │ ├── p10_pm_pba_init.C │ │ │ │ ├── p10_pm_pba_init.H │ │ │ │ ├── p10_pm_pba_init.mk │ │ │ │ ├── p10_pm_pgpe_init.C │ │ │ │ ├── p10_pm_pgpe_init.H │ │ │ │ ├── p10_pm_pgpe_init.mk │ │ │ │ ├── p10_pm_pss_init.C │ │ │ │ ├── p10_pm_pss_init.H │ │ │ │ ├── p10_pm_pss_init.mk │ │ │ │ ├── p10_pm_qme_firinit.C │ │ │ │ ├── p10_pm_qme_firinit.H │ │ │ │ ├── p10_pm_qme_init.C │ │ │ │ ├── p10_pm_qme_init.H │ │ │ │ ├── p10_pm_qme_init.mk │ │ │ │ ├── p10_pm_set_homer_bar.C │ │ │ │ ├── p10_pm_set_homer_bar.H │ │ │ │ ├── p10_pm_set_homer_bar.mk │ │ │ │ ├── p10_pm_set_system_freq.C │ │ │ │ ├── p10_pm_set_system_freq.H │ │ │ │ ├── p10_pm_sram_access_utils.C │ │ │ │ ├── p10_pm_sram_access_utils.H │ │ │ │ ├── p10_pm_sram_access_utils.mk │ │ │ │ ├── p10_pm_start.C │ │ │ │ ├── p10_pm_start.H │ │ │ │ ├── p10_pm_start.mk │ │ │ │ ├── p10_pm_util.C │ │ │ │ ├── p10_pm_util.H │ │ │ │ ├── p10_pm_util.mk │ │ │ │ ├── p10_pm_xgpe_init.C │ │ │ │ ├── p10_pm_xgpe_init.H │ │ │ │ ├── p10_pm_xgpe_init.mk │ │ │ │ ├── p10_pstate_parameter_block.C │ │ │ │ ├── p10_pstate_parameter_block.H │ │ │ │ ├── p10_pstate_parameter_block_int_vpd.H │ │ │ │ ├── p10_qme_build_attributes.C │ │ │ │ ├── p10_qme_build_attributes.H │ │ │ │ ├── p10_qme_build_attributes.mk │ │ │ │ ├── p10_qme_sram_access.C │ │ │ │ ├── p10_qme_sram_access.H │ │ │ │ ├── p10_query_core_stop_state.C │ │ │ │ ├── p10_query_core_stop_state.H │ │ │ │ ├── p10_scan_ring_util.C │ │ │ │ ├── p10_scan_ring_util.H │ │ │ │ ├── p10_scan_ring_util.mk │ │ │ │ ├── p10_setup_evid.C │ │ │ │ ├── p10_setup_evid.H │ │ │ │ ├── p10_setup_runtime_wakeup_mode.C │ │ │ │ ├── p10_setup_runtime_wakeup_mode.H │ │ │ │ ├── p10_setup_runtime_wakeup_mode.mk │ │ │ │ ├── p10_update_ec_state.C │ │ │ │ ├── p10_update_ec_state.H │ │ │ │ └── p10_update_ec_state.mk │ │ │ ├── sbe │ │ │ │ ├── p10_get_sbe_msg_register.C │ │ │ │ ├── p10_get_sbe_msg_register.H │ │ │ │ └── p10_sbe_ext_defs.H │ │ │ └── spi │ │ │ │ ├── p10_sbe_spi_cmd.C │ │ │ │ ├── p10_sbe_spi_cmd.H │ │ │ │ ├── p10_sbe_spi_cmd.mk │ │ │ │ ├── p10_spi_clear_status_errors.C │ │ │ │ ├── p10_spi_clear_status_errors.H │ │ │ │ ├── p10_spi_clear_status_errors.mk │ │ │ │ ├── p10_spi_init_fsi.C │ │ │ │ ├── p10_spi_init_fsi.H │ │ │ │ ├── p10_spi_init_pib.C │ │ │ │ ├── p10_spi_init_pib.H │ │ │ │ └── p10_spi_init_pib.mk │ │ ├── ppe │ │ │ └── fw_tools │ │ │ │ ├── srcparsers │ │ │ │ ├── b2900 │ │ │ │ │ └── b2900.py │ │ │ │ ├── b2e00 │ │ │ │ │ └── b2e00.py │ │ │ │ └── b2f00 │ │ │ │ │ └── b2f00.py │ │ │ │ └── udparsers │ │ │ │ ├── b2900 │ │ │ │ ├── b2900.py │ │ │ │ └── pmPpe2fsp.py │ │ │ │ ├── b2e00 │ │ │ │ └── b2e00.py │ │ │ │ └── b2f00 │ │ │ │ └── b2f00.py │ │ ├── utils │ │ │ └── stopreg │ │ │ │ ├── p10_cpu_reg_restore_instruction.H │ │ │ │ ├── p10_stop_api.C │ │ │ │ ├── p10_stop_api.H │ │ │ │ ├── p10_stop_api.mk │ │ │ │ ├── p10_stop_data_struct.H │ │ │ │ ├── p10_stop_util.C │ │ │ │ └── p10_stop_util.mk │ │ └── xml │ │ │ ├── attribute_info │ │ │ ├── memory_spd_attributes.xml │ │ │ ├── p10_bars_attributes.xml │ │ │ ├── p10_chip_ec_attributes.xml │ │ │ ├── p10_clock_attributes.xml │ │ │ ├── p10_dynamic_init_attributes.xml │ │ │ ├── p10_freq_attributes.xml │ │ │ ├── p10_hcode_image_build_attributes.xml │ │ │ ├── p10_htm_setup_attributes.xml │ │ │ ├── p10_io_attributes.xml │ │ │ ├── p10_ipl_attributes.xml │ │ │ ├── p10_ipl_customize_attributes.xml │ │ │ ├── p10_memory_bars_attributes.xml │ │ │ ├── p10_nest_attributes.xml │ │ │ ├── p10_omi_init.xml │ │ │ ├── p10_omi_setup_bars.xml │ │ │ ├── p10_pcie_attributes.xml │ │ │ ├── p10_pervasive_attributes.xml │ │ │ ├── p10_qme_attributes.xml │ │ │ ├── p10_runn_attributes.xml │ │ │ ├── p10_sbe_load_bootloader_attributes.xml │ │ │ ├── pm_hwp_attributes.xml │ │ │ └── pm_plat_attributes.xml │ │ │ └── error_info │ │ │ ├── ddimm_get_efd.xml │ │ │ ├── p10_adu_errors.xml │ │ │ ├── p10_attr_update_errors.xml │ │ │ ├── p10_avsbus_lib_errors.xml │ │ │ ├── p10_block_wakeup_intr_errors.xml │ │ │ ├── p10_boot_mode_errors.xml │ │ │ ├── p10_build_smp_errors.xml │ │ │ ├── p10_check_proc_errors.xml │ │ │ ├── p10_chiplet_fabric_scominit.xml │ │ │ ├── p10_clock_test_errors.xml │ │ │ ├── p10_core_special_wakeup_errors.xml │ │ │ ├── p10_determine_eco_mode_errors.xml │ │ │ ├── p10_exit_cache_contained_errors.xml │ │ │ ├── p10_extract_sbe_rc_errors.xml │ │ │ ├── p10_fabric_dl_setup_linktrain_errors.xml │ │ │ ├── p10_fabric_iovalid_errors.xml │ │ │ ├── p10_fbc_core_topo_errors.xml │ │ │ ├── p10_fbc_eff_config_aggregate_errors.xml │ │ │ ├── p10_fbc_eff_config_errors.xml │ │ │ ├── p10_fbc_eff_config_links_errors.xml │ │ │ ├── p10_fbc_tdm_inject_errors.xml │ │ │ ├── p10_fbc_tdm_utils_errors.xml │ │ │ ├── p10_freq_errors.xml │ │ │ ├── p10_gen_xscom_init_errors.xml │ │ │ ├── p10_getputmemproc_errors.xml │ │ │ ├── p10_getputsram_errors.xml │ │ │ ├── p10_hcd_cache_stopclocks_errors.xml │ │ │ ├── p10_hcd_chtm_purge.xml │ │ │ ├── p10_hcd_core_shadows_disable.xml │ │ │ ├── p10_hcd_core_stopclocks_errors.xml │ │ │ ├── p10_hcd_corecache_clock_control_errors.xml │ │ │ ├── p10_hcd_corecache_power_control_errors.xml │ │ │ ├── p10_hcd_corecache_realign_errors.xml │ │ │ ├── p10_hcd_l2_purge.xml │ │ │ ├── p10_hcd_l3_purge.xml │ │ │ ├── p10_hcd_ncu_purge.xml │ │ │ ├── p10_hcd_powerbus_purge.xml │ │ │ ├── p10_hcode_image_build_errors.xml │ │ │ ├── p10_htm_setup_errors.xml │ │ │ ├── p10_io_init_done_errors.xml │ │ │ ├── p10_io_iohs_poll_recal_errors.xml │ │ │ ├── p10_io_lib_errors.xml │ │ │ ├── p10_io_load_ppe_errors.xml │ │ │ ├── p10_io_power_errors.xml │ │ │ ├── p10_io_quiesce_lane_errors.xml │ │ │ ├── p10_io_tdr_errors.xml │ │ │ ├── p10_iohs_reset.xml │ │ │ ├── p10_ipl_customize_errors.xml │ │ │ ├── p10_ipl_section_append_errors.xml │ │ │ ├── p10_l2_flush_errors.xml │ │ │ ├── p10_l2err_extract_errors.xml │ │ │ ├── p10_l3_flush_errors.xml │ │ │ ├── p10_l3err_extract_errors.xml │ │ │ ├── p10_load_iop_xram_errors.xml │ │ │ ├── p10_memory_mss_freq.xml │ │ │ ├── p10_mss_eff_grouping_errors.xml │ │ │ ├── p10_mvpd_ring_funcs_errors.xml │ │ │ ├── p10_ncu_enable_darn_errors.xml │ │ │ ├── p10_ocmb_enable_errors.xml │ │ │ ├── p10_omi_init_errors.xml │ │ │ ├── p10_omi_setup_bars_errors.xml │ │ │ ├── p10_omi_train_check_errors.xml │ │ │ ├── p10_pau_scominit_errors.xml │ │ │ ├── p10_perst_phb.xml │ │ │ ├── p10_perv_sbe_cmn_errors.xml │ │ │ ├── p10_phb_hv_utils_errors.xml │ │ │ ├── p10_pm_callout_errors.xml │ │ │ ├── p10_pm_get_poundv_bucket_errors.xml │ │ │ ├── p10_pm_get_poundw_bucket_errors.xml │ │ │ ├── p10_pm_ocb_indir_access_errors.xml │ │ │ ├── p10_pm_ocb_init_errors.xml │ │ │ ├── p10_pm_occ_control_errors.xml │ │ │ ├── p10_pm_occ_firinit_errors.xml │ │ │ ├── p10_pm_occ_gpe_init_errors.xml │ │ │ ├── p10_pm_pba_bar_config_errors.xml │ │ │ ├── p10_pm_pba_firinit_errors.xml │ │ │ ├── p10_pm_pba_init_errors.xml │ │ │ ├── p10_pm_pgpe_init_errors.xml │ │ │ ├── p10_pm_pss_errors.xml │ │ │ ├── p10_pm_qme_bar_config_errors.xml │ │ │ ├── p10_pm_qme_firinit_errors.xml │ │ │ ├── p10_pm_qme_init_errors.xml │ │ │ ├── p10_pm_registers.xml │ │ │ ├── p10_pm_set_homer_bar_errors.xml │ │ │ ├── p10_pm_xgpe_init_errors.xml │ │ │ ├── p10_ppe_common_errors.xml │ │ │ ├── p10_ppe_state_errors.xml │ │ │ ├── p10_pstate_parameter_block_errors.xml │ │ │ ├── p10_qme_build_attributes.xml │ │ │ ├── p10_qme_customize_errors.xml │ │ │ ├── p10_qme_sram_access_errors.xml │ │ │ ├── p10_query_core_stop_state.xml │ │ │ ├── p10_ram_errors.xml │ │ │ ├── p10_read_write_iop_xram_errors.xml │ │ │ ├── p10_revert_sbe_mcs_setup_errors.xml │ │ │ ├── p10_rng_init_errors.xml │ │ │ ├── p10_sbe_check_quiesce_errors.xml │ │ │ ├── p10_sbe_chiplet_init_errors.xml │ │ │ ├── p10_sbe_chiplet_pll_initf_errors.xml │ │ │ ├── p10_sbe_chiplet_pll_setup_errors.xml │ │ │ ├── p10_sbe_common_errors.xml │ │ │ ├── p10_sbe_core_spr_setup_errors.xml │ │ │ ├── p10_sbe_exit_cache_contained_errors.xml │ │ │ ├── p10_sbe_fabricinit_errors.xml │ │ │ ├── p10_sbe_i2c_errors.xml │ │ │ ├── p10_sbe_load_bootloader_errors.xml │ │ │ ├── p10_sbe_lpc_init_errors.xml │ │ │ ├── p10_sbe_mcs_setup_errors.xml │ │ │ ├── p10_sbe_npll_setup_errors.xml │ │ │ ├── p10_sbe_plat_errors.xml │ │ │ ├── p10_sbe_powerdown_backing_caches_error.xml │ │ │ ├── p10_sbe_rcs_setup_errors.xml │ │ │ ├── p10_sbe_ring_errors.xml │ │ │ ├── p10_sbe_scominit_errors.xml │ │ │ ├── p10_sbe_scratch_regs_errors.xml │ │ │ ├── p10_sbe_select_ex_errors.xml │ │ │ ├── p10_sbe_spi_cmd_errors.xml │ │ │ ├── p10_sbe_tp_chiplet_reset_errors.xml │ │ │ ├── p10_sbe_tracearray_errors.xml │ │ │ ├── p10_setup_mmio_bars_errors.xml │ │ │ ├── p10_setup_ref_clock_errors.xml │ │ │ ├── p10_smp_link_firs_errors.xml │ │ │ ├── p10_smp_wrap_errors.xml │ │ │ ├── p10_spi_init_fsi_errors.xml │ │ │ ├── p10_start_cbs_errors.xml │ │ │ ├── p10_thread_control_errors.xml │ │ │ ├── p10_tod_errors.xml │ │ │ └── p10_update_ec_errors.xml │ │ └── utils │ │ └── imageProcs │ │ ├── p10_ddco.C │ │ ├── p10_ddco.H │ │ ├── p10_ddco.mk │ │ ├── p10_dynamic.C │ │ ├── p10_dynamic.H │ │ ├── p10_infrastruct_help.H │ │ ├── p10_ipl_image.C │ │ ├── p10_ipl_image.H │ │ ├── p10_ipl_image.mk │ │ ├── p10_ringId.C │ │ ├── p10_ringId.H │ │ ├── p10_ringId.mk │ │ ├── p10_ring_id.H │ │ ├── p10_ring_properties.H │ │ ├── p10_scan_compression.C │ │ ├── p10_scan_compression.H │ │ ├── p10_scan_compression.mk │ │ ├── p10_tor.C │ │ ├── p10_tor.H │ │ └── p10_tor.mk ├── generic │ ├── memory │ │ ├── lib │ │ │ ├── ccs │ │ │ │ ├── ccs.H │ │ │ │ ├── ccs_ddr4_commands.H │ │ │ │ ├── ccs_ddr5_commands.H │ │ │ │ ├── ccs_instruction.H │ │ │ │ ├── ccs_traits.H │ │ │ │ └── row_repair.H │ │ │ ├── data_engine │ │ │ │ ├── data_engine.H │ │ │ │ ├── data_engine_traits_def.H │ │ │ │ ├── data_engine_utils.C │ │ │ │ └── data_engine_utils.H │ │ │ ├── dimm │ │ │ │ ├── ddr4 │ │ │ │ │ ├── control_word_ddr4.H │ │ │ │ │ ├── data_buffer_ddr4.H │ │ │ │ │ ├── latch_wr_vref.H │ │ │ │ │ ├── mrs00.H │ │ │ │ │ ├── mrs01.H │ │ │ │ │ ├── mrs02.H │ │ │ │ │ ├── mrs03.H │ │ │ │ │ ├── mrs04.H │ │ │ │ │ ├── mrs05.H │ │ │ │ │ ├── mrs06.H │ │ │ │ │ ├── mrs_load_ddr4.H │ │ │ │ │ └── pda.H │ │ │ │ ├── ddr5 │ │ │ │ │ ├── ddr5_mr0.H │ │ │ │ │ ├── ddr5_mr10.H │ │ │ │ │ ├── ddr5_mr11.H │ │ │ │ │ ├── ddr5_mr111.H │ │ │ │ │ ├── ddr5_mr112.H │ │ │ │ │ ├── ddr5_mr12.H │ │ │ │ │ ├── ddr5_mr13.H │ │ │ │ │ ├── ddr5_mr14.H │ │ │ │ │ ├── ddr5_mr15.H │ │ │ │ │ ├── ddr5_mr2.H │ │ │ │ │ ├── ddr5_mr3.H │ │ │ │ │ ├── ddr5_mr32.H │ │ │ │ │ ├── ddr5_mr32_per_dram.H │ │ │ │ │ ├── ddr5_mr33.H │ │ │ │ │ ├── ddr5_mr33_per_dram.H │ │ │ │ │ ├── ddr5_mr34.H │ │ │ │ │ ├── ddr5_mr35.H │ │ │ │ │ ├── ddr5_mr37.H │ │ │ │ │ ├── ddr5_mr38.H │ │ │ │ │ ├── ddr5_mr39.H │ │ │ │ │ ├── ddr5_mr4.H │ │ │ │ │ ├── ddr5_mr5.H │ │ │ │ │ ├── ddr5_mr50.H │ │ │ │ │ ├── ddr5_mr51.H │ │ │ │ │ ├── ddr5_mr52.H │ │ │ │ │ ├── ddr5_mr6.H │ │ │ │ │ ├── ddr5_mr8.H │ │ │ │ │ ├── ddr5_mr_base.H │ │ │ │ │ └── ddr5_mr_generic.H │ │ │ │ ├── mrs_load.H │ │ │ │ └── mrs_traits.H │ │ │ ├── ecc │ │ │ │ ├── ecc.H │ │ │ │ ├── ecc_traits.H │ │ │ │ ├── fw_mark_store.H │ │ │ │ ├── galois.H │ │ │ │ ├── hw_mark_store.H │ │ │ │ ├── mainline_aue_trap.H │ │ │ │ ├── mainline_mpe_trap.H │ │ │ │ ├── mainline_nce_trap.H │ │ │ │ ├── mainline_rce_trap.H │ │ │ │ ├── mainline_ue_trap.H │ │ │ │ ├── maint_current_trap.H │ │ │ │ ├── mark_shadow_reg.H │ │ │ │ ├── mbs_error_vector_trap.H │ │ │ │ ├── modal_symbol_count.H │ │ │ │ └── read_error_count_regs.H │ │ │ ├── generic_attribute_accessors_manual.H │ │ │ ├── plug_rules │ │ │ │ └── plug_rules.H │ │ │ ├── prd │ │ │ │ └── hwp_wrappers.H │ │ │ ├── spd │ │ │ │ ├── common │ │ │ │ │ ├── ddr4 │ │ │ │ │ │ └── spd_decoder_ddr4.H │ │ │ │ │ └── rcw_settings.H │ │ │ │ ├── ddimm │ │ │ │ │ ├── ddr4 │ │ │ │ │ │ ├── efd_fields_ddr4.C │ │ │ │ │ │ └── efd_fields_ddr4.H │ │ │ │ │ └── ddr5 │ │ │ │ │ │ ├── efd_fields_ddr5.C │ │ │ │ │ │ └── efd_fields_ddr5.H │ │ │ │ ├── lrdimm │ │ │ │ │ └── ddr4 │ │ │ │ │ │ ├── lrdimm_decoder_ddr4.H │ │ │ │ │ │ ├── lrdimm_raw_cards.C │ │ │ │ │ │ └── lrdimm_raw_cards.H │ │ │ │ ├── rdimm │ │ │ │ │ └── ddr4 │ │ │ │ │ │ ├── rdimm_decoder_ddr4.H │ │ │ │ │ │ ├── rdimm_raw_cards.C │ │ │ │ │ │ └── rdimm_raw_cards.H │ │ │ │ ├── spd_checker.H │ │ │ │ ├── spd_field.C │ │ │ │ ├── spd_field.H │ │ │ │ ├── spd_fields_ddr4.C │ │ │ │ ├── spd_fields_ddr4.H │ │ │ │ ├── spd_fields_ddr5.C │ │ │ │ ├── spd_fields_ddr5.H │ │ │ │ ├── spd_traits_ddr4.H │ │ │ │ ├── spd_utils.H │ │ │ │ ├── spd_utils_ddr4.C │ │ │ │ ├── spd_utils_ddr4.H │ │ │ │ ├── spd_utils_ddr5.C │ │ │ │ └── spd_utils_ddr5.H │ │ │ ├── utils │ │ │ │ ├── assert_noexit.H │ │ │ │ ├── bit_count.H │ │ │ │ ├── buffer_ops.H │ │ │ │ ├── c_str.C │ │ │ │ ├── c_str.H │ │ │ │ ├── conversions.H │ │ │ │ ├── count_dimm.H │ │ │ │ ├── dimm │ │ │ │ │ ├── kind.H │ │ │ │ │ └── mss_ddr4_timing.H │ │ │ │ ├── dump_regs.H │ │ │ │ ├── endian_utils.H │ │ │ │ ├── fapi_try_lambda.H │ │ │ │ ├── find.H │ │ │ │ ├── fir │ │ │ │ │ ├── gen_mss_fir.H │ │ │ │ │ └── gen_mss_unmask.H │ │ │ │ ├── freq │ │ │ │ │ ├── cas_latency.C │ │ │ │ │ ├── cas_latency.H │ │ │ │ │ ├── gen_mss_freq.H │ │ │ │ │ ├── gen_mss_freq_traits.H │ │ │ │ │ ├── mss_freq_scoreboard.C │ │ │ │ │ └── mss_freq_scoreboard.H │ │ │ │ ├── index.H │ │ │ │ ├── mc │ │ │ │ │ ├── gen_mss_port.H │ │ │ │ │ ├── gen_mss_port_traits.H │ │ │ │ │ └── gen_mss_restore_repairs.H │ │ │ │ ├── mcbist │ │ │ │ │ ├── gen_maint_cmds.H │ │ │ │ │ ├── gen_mss_mcbist.H │ │ │ │ │ ├── gen_mss_mcbist_address.H │ │ │ │ │ ├── gen_mss_mcbist_ecc_trap_address.H │ │ │ │ │ ├── gen_mss_mcbist_fwms_address.H │ │ │ │ │ ├── gen_mss_mcbist_patterns.C │ │ │ │ │ ├── gen_mss_mcbist_patterns.H │ │ │ │ │ ├── gen_mss_mcbist_settings.H │ │ │ │ │ ├── gen_mss_mcbist_traits.H │ │ │ │ │ └── gen_mss_memdiags.H │ │ │ │ ├── memory_size.H │ │ │ │ ├── mss_bad_bits.H │ │ │ │ ├── mss_buffer_utils.H │ │ │ │ ├── mss_field.H │ │ │ │ ├── mss_generic_check.H │ │ │ │ ├── mss_log_utils.H │ │ │ │ ├── mss_math.H │ │ │ │ ├── mss_pair.H │ │ │ │ ├── mss_rank.H │ │ │ │ ├── num.H │ │ │ │ ├── omi │ │ │ │ │ ├── gen_omi_traits.H │ │ │ │ │ └── gen_omi_utils.H │ │ │ │ ├── poll.H │ │ │ │ ├── pos.H │ │ │ │ ├── power_thermal │ │ │ │ │ ├── gen_decoder.H │ │ │ │ │ ├── gen_temp_sensor_traits.H │ │ │ │ │ ├── gen_thermal_init_utils.H │ │ │ │ │ ├── gen_throttle.H │ │ │ │ │ └── gen_throttle_traits.H │ │ │ │ ├── scom.H │ │ │ │ ├── shared │ │ │ │ │ └── mss_generic_consts.H │ │ │ │ ├── spd_c_str.H │ │ │ │ └── voltage │ │ │ │ │ ├── gen_mss_volt.H │ │ │ │ │ └── gen_mss_voltage_traits.H │ │ │ └── workarounds │ │ │ │ └── ccs_des_insert_workaround.H │ │ ├── mss_git_data_helper.H │ │ ├── proc_specific │ │ │ └── mss_target_abstractions.H │ │ └── tools │ │ │ ├── gen_accessors.pl │ │ │ └── gen_accessors.pm │ └── procedures │ │ └── xml │ │ ├── attribute_info │ │ ├── generic_dq_attributes.xml │ │ ├── generic_memory_attributes.xml │ │ ├── generic_memory_ddr5_eff_attributes.xml │ │ ├── generic_memory_ddr5_mr_attributes.xml │ │ ├── generic_memory_eff_attributes.xml │ │ ├── generic_memory_mrw_attributes.xml │ │ ├── generic_memory_si_attributes.xml │ │ ├── generic_memory_thermal_sensor_attributes.xml │ │ └── ocmb_power_thermal.xml │ │ └── error_info │ │ ├── generic_ddr5_mr_error.xml │ │ ├── generic_error.xml │ │ └── test_sbe_ffdc.xml ├── hwpf │ ├── fapi2 │ │ ├── .empty │ │ ├── docs │ │ │ ├── Doxyfile │ │ │ ├── README │ │ │ └── topics │ │ │ │ ├── Attributes.md │ │ │ │ ├── Buffers.md │ │ │ │ ├── DEPRECATED.md │ │ │ │ ├── Examples.md │ │ │ │ ├── Ffdc.md │ │ │ │ ├── README.md │ │ │ │ └── multicast_doc.C │ │ ├── include │ │ │ ├── buffer.H │ │ │ ├── buffer_parameters.H │ │ │ ├── buffer_traits.H │ │ │ ├── collect_reg_ffdc.H │ │ │ ├── error_info.H │ │ │ ├── error_info_defs.H │ │ │ ├── error_scope.H │ │ │ ├── fapi2.H │ │ │ ├── fapi2_attribute_service.H │ │ │ ├── fapi2_error_scope.H │ │ │ ├── fapi2_hw_access.H │ │ │ ├── fapi2_hwp_executor.H │ │ │ ├── fapi2_i2c_access.H │ │ │ ├── fapi2_mem_access.H │ │ │ ├── fapi2_mmio_access.H │ │ │ ├── fapi2_spd_access.H │ │ │ ├── fapi2_subroutine_executor.H │ │ │ ├── fapi2_target.H │ │ │ ├── fapi2_vpd_access.H │ │ │ ├── ffdc.H │ │ │ ├── hw_access_def.H │ │ │ ├── hwp_data_stream.H │ │ │ ├── multicast_defs.H │ │ │ ├── mvpd_access.H │ │ │ ├── mvpd_access_defs.H │ │ │ ├── plat_types.H │ │ │ ├── return_code.H │ │ │ ├── return_code_defs.H │ │ │ ├── target_states.H │ │ │ ├── target_types.H │ │ │ ├── utils.H │ │ │ ├── variable_buffer.H │ │ │ └── vpd_access_defs.H │ │ ├── src │ │ │ ├── error_info.C │ │ │ ├── fapi2.mk │ │ │ ├── fapi2_utils.C │ │ │ ├── fapi2_utils.mk │ │ │ └── ffdc.C │ │ ├── test │ │ │ ├── fapi2_mmio_test.C │ │ │ └── fapi2_mmio_test.mk │ │ ├── tools │ │ │ ├── createIfAttrService.mk │ │ │ ├── createIfAttrService.pl │ │ │ ├── createPlatAttrService.mk │ │ │ ├── parseAttributeInfo.mk │ │ │ ├── parseAttributeInfo.pl │ │ │ ├── parseErrorInfo.mk │ │ │ ├── parseErrorInfo.pl │ │ │ └── parseErrorInfo_p10.pl │ │ └── xml │ │ │ ├── attribute_info │ │ │ ├── chip_attributes.xml │ │ │ ├── common_attributes.xml │ │ │ ├── hb_temp_defaults.xml │ │ │ ├── i2cslave_attributes.xml │ │ │ ├── system_attributes.xml │ │ │ └── unit_attributes.xml │ │ │ └── error_info │ │ │ ├── buffer_errors.xml │ │ │ └── sample_errors.xml │ └── sbe_utils │ │ ├── gentool │ │ └── attrtool │ │ │ ├── attrdatatype.py │ │ │ ├── attrdb.py │ │ │ ├── attrmodule.py │ │ │ ├── attrtank.py │ │ │ ├── attrtool │ │ │ ├── attrtoolutils.py │ │ │ ├── targetlist.json │ │ │ └── templates │ │ │ ├── ody_apply_attribute_generated.C.t │ │ │ ├── ody_generate_attribute_generated.C.t │ │ │ └── ody_sbe_attribute_data_size.H.t │ │ ├── include │ │ ├── sbe_attribute_utils.H │ │ └── sbe_targets.H │ │ ├── src │ │ ├── sbe_attribute_utils.C │ │ └── sbe_targets.C │ │ └── xml │ │ └── error_info │ │ └── sbe_utils_error.xml └── tools │ ├── build │ └── common.dir │ │ └── script.rules.mk │ └── wof │ ├── p10_wof_override_structure.H │ ├── p10_wof_table_set_structure.H │ └── wof_data_xlator.pl ├── include ├── algorithm ├── arch │ ├── magic.H │ ├── memorymap.H │ ├── pirformat.H │ ├── ppc.H │ └── pvrformat.H ├── array ├── asm │ └── byteorder.h ├── assert.h ├── bootloader │ ├── bl_console.H │ ├── bl_pnorAccess.H │ ├── bl_tpm_spidd.H │ ├── bl_xscom.H │ ├── bootloader.H │ ├── bootloader_data.H │ ├── bootloader_trace.H │ ├── bootloaderif.H │ ├── hbblreasoncodes.H │ ├── hw_access.H │ ├── hwp_executor.H │ ├── plat_attribute_service.H │ ├── plat_error_scope.H │ ├── plat_hw_access.H │ ├── plat_hwp_executor.H │ ├── plat_hwp_invoker.H │ ├── plat_target.H │ ├── plat_trace.H │ ├── plat_utils.H │ └── target.H ├── builtins.h ├── cassert ├── cstdarg ├── cstddef ├── cstdint ├── cstdlib ├── cstring ├── ctype.h ├── endian.h ├── errno.h ├── functional ├── initializer_list ├── inttypes.h ├── iterator ├── kernel │ ├── barrier.H │ ├── basesegment.H │ ├── block.H │ ├── blockmsghdlr.H │ ├── bltohbdatamgr.H │ ├── console.H │ ├── cpu.H │ ├── cpuid.H │ ├── cpumgr.H │ ├── deferred.H │ ├── devicesegment.H │ ├── doorbell.H │ ├── futexmgr.H │ ├── hbdescriptor.H │ ├── hbterminatetypes.H │ ├── heapmgr.H │ ├── idebug.H │ ├── intmsghandler.H │ ├── ipc.H │ ├── kernel_reasoncodes.H │ ├── machchk.H │ ├── memstate.H │ ├── misc.H │ ├── msg.H │ ├── msghandler.H │ ├── pagemgr.H │ ├── ppcconsts.S │ ├── ptmgr.H │ ├── scheduler.H │ ├── segment.H │ ├── segmentmgr.H │ ├── spinlock.H │ ├── spte.H │ ├── stacksegment.H │ ├── syscalls.H │ ├── task.H │ ├── taskmgr.H │ ├── terminate.H │ ├── timemgr.H │ ├── types.h │ ├── vmmmgr.H │ └── workitem.H ├── limits ├── limits.h ├── list ├── map ├── math.h ├── memory ├── new ├── runtime │ ├── README.md │ ├── generic_hbrt_fsp_message.H │ ├── hbrt_utilities.H │ └── interface.h ├── securerom │ ├── ROM.H │ ├── contrib │ │ ├── LICENSE_PROLOG │ │ └── sha512.H │ ├── ecverify.H │ ├── hw_utils.H │ ├── sha512.H │ └── status_codes.H ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── string_ext.h ├── sys │ ├── internode.h │ ├── misc.h │ ├── mm.h │ ├── mmio.h │ ├── msg.h │ ├── sync.h │ ├── syscall.h │ ├── task.h │ ├── time.h │ ├── types.h │ └── vfs.h ├── time.h ├── tuple ├── type_traits ├── usr │ ├── console │ │ ├── console_reasoncodes.H │ │ ├── consoleif.H │ │ └── uartif.H │ ├── conversions.H │ ├── cxxtest │ │ ├── TestInject.H │ │ ├── TestInject_defs.H │ │ ├── TestSuite.H │ │ └── cxxtest_data.H │ ├── debugpointers.H │ ├── devicefw │ │ ├── devfwreasoncodes.H │ │ ├── driverif.H │ │ ├── driverif_common.H │ │ └── userif.H │ ├── devtree │ │ ├── devtree.H │ │ └── devtreereasoncodes.H │ ├── diag │ │ ├── attn │ │ │ ├── attn.H │ │ │ └── attnreasoncodes.H │ │ ├── mdia │ │ │ ├── mdia.H │ │ │ └── mdiareasoncodes.H │ │ └── prdf │ │ │ ├── common │ │ │ ├── prdfAttnTypes.H │ │ │ ├── prdfMain_common.H │ │ │ └── prdf_service_codes.H │ │ │ ├── prdfMain.H │ │ │ └── prdfMain_ipl.H │ ├── dump │ │ ├── dumpif.H │ │ └── dumpreasoncodes.H │ ├── ecc │ │ └── vpd_ecc_api_wrapper.h │ ├── ecmddatabuffer │ │ ├── ecmdDataBufferBase.H │ │ └── prdfCompressBuffer.H │ ├── eeprom │ │ ├── eeprom_const.H │ │ ├── eepromddreasoncodes.H │ │ └── eepromif.H │ ├── errl │ │ ├── backtrace.H │ │ ├── errled.H │ │ ├── errleh.H │ │ ├── errlentry.H │ │ ├── errli2c.H │ │ ├── errlmanager.H │ │ ├── errlmt.H │ │ ├── errlprvt.H │ │ ├── errlreasoncodes.H │ │ ├── errlsctn.H │ │ ├── errlsctnhdr.H │ │ ├── errlsrc.H │ │ ├── errlud.H │ │ ├── errludattribute.H │ │ ├── errludbacktrace.H │ │ ├── errludcallout.H │ │ ├── errludlogregister.H │ │ ├── errludprintk.H │ │ ├── errludstate.H │ │ ├── errludstring.H │ │ ├── errluh.H │ │ ├── errluserdetails.H │ │ └── hberrltypes.H │ ├── errldisplay │ │ └── errldisplay.H │ ├── expscom │ │ ├── expscom_errlog.H │ │ └── expscom_reasoncodes.H │ ├── fapi2 │ │ ├── attribute_service.H │ │ ├── dimmBadDqBitmapFuncs.H │ │ ├── fapiPlatTrace.H │ │ ├── hw_access.H │ │ ├── hwp_executor.H │ │ ├── hwpf_fapi2_reasoncodes.H │ │ ├── i2c_access.H │ │ ├── mmio_access.H │ │ ├── plat_attr_override_sync.H │ │ ├── plat_attribute_service.H │ │ ├── plat_chip_ec_feature.H │ │ ├── plat_error_scope.H │ │ ├── plat_hw_access.H │ │ ├── plat_hwp_executor.H │ │ ├── plat_hwp_invoker.H │ │ ├── plat_i2c_access.H │ │ ├── plat_mmio_access.H │ │ ├── plat_spd_access.H │ │ ├── plat_target.H │ │ ├── plat_target_filter.H │ │ ├── plat_trace.H │ │ ├── plat_utils.H │ │ ├── plat_vpd_access.H │ │ ├── rowRepairsFuncs.H │ │ ├── subroutine_executor.H │ │ ├── target.H │ │ └── vpd_access.H │ ├── fapiwrap │ │ └── fapiWrapif.H │ ├── fsi │ │ ├── fsi_reasoncodes.H │ │ └── fsiif.H │ ├── fsiscom │ │ └── fsiscom_reasoncodes.H │ ├── gcov.h │ ├── gpio │ │ ├── gpioddreasoncodes.H │ │ └── gpioif.H │ ├── hbotcompid.H │ ├── hdat │ │ ├── hdat.H │ │ ├── hdat_reasoncodes.H │ │ └── hdatnaca.H │ ├── htmgt │ │ ├── htmgt.H │ │ └── htmgt_reasoncodes.H │ ├── hwas │ │ ├── common │ │ │ ├── deconfigGard.H │ │ │ ├── fieldCoreOverride.H │ │ │ ├── hwas.H │ │ │ ├── hwasCallout.H │ │ │ ├── hwasCommon.H │ │ │ ├── hwasError.H │ │ │ ├── hwas_reasoncodes.H │ │ │ ├── pgLogic.H │ │ │ └── vpdConstants.H │ │ ├── hwasPlat.H │ │ ├── hwasPlatAssert.H │ │ ├── hwasPlatDeconfigGard.H │ │ ├── hwasPlatError.H │ │ ├── hwasPlatReasonCodes.H │ │ ├── hwasPlatThread.H │ │ └── hwasPlatTrace.H │ ├── i2c │ │ ├── i2c.H │ │ ├── i2c_common.H │ │ ├── i2cif.H │ │ └── i2creasoncodes.H │ ├── i2cr │ │ └── i2cr_reasoncodes.H │ ├── ibscom │ │ ├── ibscomif.H │ │ └── ibscomreasoncodes.H │ ├── initservice │ │ ├── bootconfigif.H │ │ ├── extinitserviceif.H │ │ ├── initserviceif.H │ │ ├── initsvcbreakpoint.H │ │ ├── initsvcreasoncodes.H │ │ ├── initsvcstructs.H │ │ ├── initsvcudistep.H │ │ ├── istepdispatcherif.H │ │ ├── isteps_trace.H │ │ ├── mboxRegs.H │ │ └── taskargs.H │ ├── intr │ │ ├── interrupt.H │ │ └── intr_reasoncodes.H │ ├── isteps │ │ ├── bios_attr_accessors │ │ │ ├── bios_attr_parsers.H │ │ │ └── bios_attr_setters.H │ │ ├── hwpf_reasoncodes.H │ │ ├── hwpisteperror.H │ │ ├── hwpistepud.H │ │ ├── istep06list.H │ │ ├── istep07list.H │ │ ├── istep08list.H │ │ ├── istep09list.H │ │ ├── istep10list.H │ │ ├── istep11list.H │ │ ├── istep124list.H │ │ ├── istep12list.H │ │ ├── istep13list.H │ │ ├── istep14list.H │ │ ├── istep15list.H │ │ ├── istep16list.H │ │ ├── istep18list.H │ │ ├── istep20list.H │ │ ├── istep21list.H │ │ ├── istep_reasoncodes.H │ │ ├── istepmasterlist.H │ │ ├── mem_utils.H │ │ ├── nvdimm │ │ │ └── nvdimmreasoncodes.H │ │ ├── pm │ │ │ ├── occAccess.H │ │ │ ├── pm_common_ext.H │ │ │ └── scopedHomerMapper.H │ │ ├── spless_255list.H │ │ ├── tod │ │ │ ├── TodTypes.H │ │ │ └── runtime │ │ │ │ └── rt_todintf.H │ │ ├── tod_init_reasoncodes.H │ │ └── ucd │ │ │ └── updateUcdFlash.H │ ├── lpc │ │ ├── lpc_const.H │ │ ├── lpc_reasoncodes.H │ │ └── lpcif.H │ ├── mbox │ │ ├── ipc_msg_types.H │ │ ├── ipc_reasoncodes.H │ │ ├── mboxUdParser.H │ │ ├── mbox_queues.H │ │ ├── mbox_reasoncodes.H │ │ └── mboxif.H │ ├── mctp │ │ ├── mctp_const.H │ │ ├── mctp_errl.H │ │ ├── mctp_message_types.H │ │ ├── mctp_reasoncodes.H │ │ ├── mctpif.H │ │ └── mctpif_rt.H │ ├── mdsaccess │ │ └── mdsaccess_reasoncodes.H │ ├── mmio │ │ ├── mmio.H │ │ └── mmio_reasoncodes.H │ ├── nvram │ │ ├── import │ │ │ ├── nvram.h │ │ │ └── skiboot.h │ │ ├── nvram_interface.H │ │ └── nvram_reasoncodes.H │ ├── ocmbupd │ │ ├── ocmbFwImage_const.H │ │ ├── ocmbupd.H │ │ ├── ocmbupd_reasoncodes.H │ │ └── ody_upd_fsm.H │ ├── pldm │ │ ├── base │ │ │ ├── hb_bios_attrs.H │ │ │ ├── hb_bios_attrs_if.H │ │ │ └── pldm_shutdown.H │ │ ├── extended │ │ │ ├── hb_fru.H │ │ │ ├── hb_pdrs.H │ │ │ ├── pdr_manager.H │ │ │ ├── pldm_entity_ids.H │ │ │ ├── pldm_fru.H │ │ │ ├── pldm_watchdog.H │ │ │ └── sbe_dump.H │ │ ├── libpldm_config.h │ │ ├── pldm_const.H │ │ ├── pldm_errl.H │ │ ├── pldm_reasoncodes.H │ │ ├── pldm_request.H │ │ ├── pldm_response.H │ │ ├── pldm_trace.H │ │ ├── pldm_util.H │ │ ├── pldmif.H │ │ ├── requests │ │ │ ├── pldm_bios_attr_requests.H │ │ │ ├── pldm_datetime_requests.H │ │ │ ├── pldm_fileio_requests.H │ │ │ ├── pldm_fru_requests.H │ │ │ ├── pldm_pdr_requests.H │ │ │ └── pldm_tid_requests.H │ │ └── responses │ │ │ ├── pldm_discovery_control_responders.H │ │ │ ├── pldm_fru_data_responders.H │ │ │ ├── pldm_monitor_control_responders.H │ │ │ └── pldm_oem_responders.H │ ├── pnor │ │ ├── ecc.H │ │ ├── pnor_const.H │ │ ├── pnor_pldm_utils.H │ │ ├── pnor_reasoncodes.H │ │ └── pnorif.H │ ├── runtime │ │ ├── common │ │ │ └── runtime_utils.H │ │ ├── customize_attrs_for_payload.H │ │ ├── populate_hbruntime.H │ │ ├── preverifiedlidmgr.H │ │ ├── runtime.H │ │ └── runtime_reasoncodes.H │ ├── sbe │ │ ├── sbe_common.H │ │ ├── sbe_update.H │ │ ├── sbeif.H │ │ └── sbereasoncodes.H │ ├── sbeio │ │ ├── errlud_sbeio.H │ │ ├── runtime │ │ │ ├── sbe_msg_passing.H │ │ │ ├── sbeio_attr_override.H │ │ │ ├── sbeio_vital_attn.H │ │ │ └── sbeio_vpd_override.H │ │ ├── sbe_attn.H │ │ ├── sbe_ffdc_package_parser.H │ │ ├── sbe_ffdc_parser.H │ │ ├── sbe_psudd.H │ │ ├── sbe_retry_handler.H │ │ ├── sbe_sp_intf.H │ │ ├── sbe_utils.H │ │ ├── sbeioif.H │ │ └── sbeioreasoncodes.H │ ├── scan │ │ ├── scan_reasoncodes.H │ │ └── scanif.H │ ├── scom │ │ ├── errlud_pib.H │ │ ├── runtime │ │ │ └── rt_scomif.H │ │ ├── scomif.H │ │ ├── scomreasoncodes.H │ │ └── wakeup.H │ ├── secureboot │ │ ├── containerheader.H │ │ ├── header.H │ │ ├── key_clear_if.H │ │ ├── nodecommif.H │ │ ├── ody_secureboot.H │ │ ├── phys_presence_if.H │ │ ├── secure_reasoncodes.H │ │ ├── service.H │ │ ├── service_ext.H │ │ ├── settings.H │ │ ├── settings_common.H │ │ ├── smf.H │ │ ├── smf_utils.H │ │ ├── trustedboot_reasoncodes.H │ │ └── trustedbootif.H │ ├── sio │ │ └── sio.H │ ├── spi │ │ ├── spi.H │ │ ├── spireasoncodes.H │ │ ├── tpmdd_common.H │ │ ├── tpmddif.H │ │ └── tpmddreasoncodes.H │ ├── targeting │ │ ├── adapters │ │ │ ├── assertadapter.H │ │ │ ├── erroradapter.H │ │ │ ├── mutexadapter.H │ │ │ ├── targetadapter.H │ │ │ ├── traceadapter.H │ │ │ └── types.H │ │ ├── attrPlatOverride.H │ │ ├── attrTextOverride.H │ │ ├── attrrp.H │ │ ├── attrsync.H │ │ ├── common │ │ │ ├── DCMUtils.H │ │ │ ├── associationmanager.H │ │ │ ├── attributeTank.H │ │ │ ├── attributes.H │ │ │ ├── attrsyncdefs.H │ │ │ ├── commontargeting.H │ │ │ ├── entitypath.H │ │ │ ├── error.H │ │ │ ├── hbrt_target.H │ │ │ ├── iterators │ │ │ │ ├── iterators.H │ │ │ │ ├── rangefilter.H │ │ │ │ ├── rawtargetiterator.H │ │ │ │ └── targetiterator.H │ │ │ ├── mfgFlagAccessors.H │ │ │ ├── pointer.H │ │ │ ├── predicates │ │ │ │ ├── predicateattr.H │ │ │ │ ├── predicateattrtanktargetpos.H │ │ │ │ ├── predicateattrval.H │ │ │ │ ├── predicatebase.H │ │ │ │ ├── predicatectm.H │ │ │ │ ├── predicatehwas.H │ │ │ │ ├── predicatehwaschanged.H │ │ │ │ ├── predicateisfunctional.H │ │ │ │ ├── predicateisnonfunctional.H │ │ │ │ ├── predicatelogic.H │ │ │ │ ├── predicatepostfixexpr.H │ │ │ │ └── predicates.H │ │ │ ├── target.H │ │ │ ├── targetUtil.H │ │ │ ├── targetservice.H │ │ │ ├── targreasoncodes.H │ │ │ ├── trace.H │ │ │ ├── util.H │ │ │ └── utilFilter.H │ │ ├── namedtarget.H │ │ ├── odyutil.H │ │ ├── runtime │ │ │ └── rt_targeting.H │ │ ├── targplatreasoncodes.H │ │ ├── targplatutil.H │ │ └── translateTarget.H │ ├── trace │ │ ├── compiletime_tracehash.H │ │ ├── interface.H │ │ └── trace.H │ ├── tracinterface.H │ ├── ucd │ │ └── ucd_reasoncodes.H │ ├── util │ │ ├── impl │ │ │ └── threadpool.H │ │ ├── runtime │ │ │ ├── rt_fwreq_helper.H │ │ │ └── util_rt.H │ │ ├── threadpool.H │ │ ├── util_reasoncodes.H │ │ ├── utilbyte.H │ │ ├── utilcommonattr.H │ │ ├── utilfile.H │ │ ├── utillidmgr.H │ │ ├── utillidpnor.H │ │ ├── utilmbox_scratch.H │ │ ├── utilmclmgr.H │ │ ├── utilmem.H │ │ ├── utilrsvdmem.H │ │ ├── utilsemipersist.H │ │ ├── utilstream.H │ │ ├── utiltce.H │ │ ├── utiltime.H │ │ └── utilxipimage.H │ ├── vfs │ │ ├── vfs.H │ │ └── vfs_reasoncodes.H │ ├── vmmconst.h │ ├── vpd │ │ ├── ipvpdenums.H │ │ ├── ipz_vpd_consts.H │ │ ├── mvpdenums.H │ │ ├── pvpdenums.H │ │ ├── spdenums.H │ │ ├── vpd_if.H │ │ └── vpdreasoncodes.H │ ├── xscom │ │ ├── piberror.H │ │ ├── piberror_common.H │ │ ├── xscom_common.H │ │ ├── xscomif.H │ │ └── xscomreasoncodes.H │ └── xz │ │ ├── LICENSE_PROLOG │ │ ├── xz.h │ │ ├── xz_config.h │ │ ├── xz_lzma2.h │ │ ├── xz_private.h │ │ └── xz_stream.h ├── util │ ├── algorithm.H │ ├── align.H │ ├── comptime_util.H │ ├── crc32.H │ ├── impl │ │ ├── enable_if.H │ │ ├── integral.H │ │ ├── is_array.H │ │ ├── is_integral.H │ │ ├── is_ptr.H │ │ ├── is_same.H │ │ ├── iterator.h │ │ ├── qsort.H │ │ ├── shared_ptr.H │ │ ├── splaytree.H │ │ ├── stlmap.H │ │ ├── type_add.H │ │ ├── type_remove.H │ │ └── unique_ptr.H │ ├── locked │ │ ├── list.H │ │ ├── lock.H │ │ ├── pqueue.H │ │ └── queue.H │ ├── lockfree │ │ ├── abaptr.H │ │ ├── atomic_construct.H │ │ ├── counter.H │ │ └── stack.H │ ├── memoize.H │ ├── misc.H │ ├── nolockfree │ │ └── stack.H │ ├── pp │ │ └── for_each.h │ ├── random.H │ ├── singleton.H │ ├── sprintf.H │ ├── traits │ │ ├── has_lessthan.H │ │ ├── has_minus.H │ │ ├── has_plusequals.H │ │ ├── impl │ │ │ └── has_comparison.H │ │ └── remove_const.H │ └── typed_msg.H ├── utility └── vector ├── kernel.ld ├── kernel ├── README.md ├── barrier.C ├── basesegment.C ├── block.C ├── blockmsghdlr.C ├── bltohbdatamgr.C ├── console.C ├── cpuid.C ├── cpumgr.C ├── deferred.C ├── devicesegment.C ├── doorbell.C ├── exception.C ├── forceattn_p9.S ├── futexmgr.C ├── heapmgr.C ├── idebug.C ├── intmsghandler.C ├── ipc.C ├── kernel.C ├── machchk.C ├── makefile ├── misc.C ├── msghandler.C ├── pagemgr.C ├── ptmgr.C ├── scheduler.C ├── segmentmgr.C ├── shutdown.S ├── softpatch_p8.S ├── spinlock.C ├── stacksegment.C ├── start.S ├── syscall.C ├── taskmgr.C ├── terminate.C ├── timemgr.C ├── vmmmgr.C └── workitem.C ├── lib ├── HBconfig ├── assert.C ├── crc32.C ├── ctype.C ├── cxxtest_data.C ├── errno.C ├── makefile ├── math.C ├── rand.S ├── random.C ├── splaytree.C ├── sprintf.C ├── stdio.C ├── stdlib.C ├── string.C ├── string_ext.C ├── string_utils.C ├── sync.C ├── syscall_misc.C ├── syscall_mm.C ├── syscall_mmio.C ├── syscall_msg.C ├── syscall_stub.S ├── syscall_task.C ├── syscall_time.C ├── tls.C ├── tlsrt.C └── utilmisc.C ├── libc++ ├── builtins.C ├── makefile └── rt_builtins.C ├── makefile ├── module.ld ├── runtime ├── makefile ├── rt_assert.C ├── rt_console.C ├── rt_main.C ├── rt_start.S ├── rt_stdlib.C ├── rt_sync.C ├── rt_task.C ├── rt_time.C └── rt_vfs.C ├── securerom.ld ├── securerom ├── ROM.C ├── contrib │ ├── LICENSE_PROLOG │ └── sha512.C ├── ecverify.C ├── hw_utils.C ├── inttypes.H ├── makefile ├── rom_entry.S └── secureromasm.S ├── subtree ├── latest_commit_sync └── openbmc │ ├── libmctp │ ├── .clang-format │ ├── .clang-ignore │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── MAINTAINERS │ ├── Makefile.am │ ├── Makefile.inc │ ├── OWNERS │ ├── README.md │ ├── alloc.c │ ├── astlpc.c │ ├── bootstrap.sh │ ├── compiler.h │ ├── configure.ac │ ├── container_of.h │ ├── core.c │ ├── crc32.c │ ├── crc32.h │ ├── docs │ │ └── bindings │ │ │ ├── Makefile │ │ │ └── vendor-ibm-astlpc.md │ ├── format-code.sh │ ├── libmctp-alloc.h │ ├── libmctp-astlpc.h │ ├── libmctp-cmds.h │ ├── libmctp-log.h │ ├── libmctp-serial.h │ ├── libmctp.h │ ├── libmctp.pc.in │ ├── log.c │ ├── range.h │ ├── serial.c │ ├── systemd │ │ └── system │ │ │ ├── mctp-demux.service │ │ │ └── mctp-demux.socket │ ├── tests │ │ ├── test-utils.c │ │ ├── test-utils.h │ │ ├── test_astlpc.c │ │ ├── test_bridge.c │ │ ├── test_cmds.c │ │ ├── test_core.c │ │ ├── test_eid.c │ │ ├── test_seq.c │ │ └── test_serial.c │ ├── udev │ │ └── rules.d │ │ │ ├── mctp0-raw-kcs3.rules.in │ │ │ └── mctp0-raw-kcs4.rules.in │ └── utils │ │ ├── mctp-astlpc-daemon.c │ │ ├── mctp-capture.c │ │ ├── mctp-capture.h │ │ ├── mctp-demux-daemon.c │ │ ├── mctp-in.c │ │ ├── mctp-pipe.c │ │ └── mctp-test-client.c │ └── pldm │ ├── .clang-format │ ├── .eslintignore │ ├── .gitignore │ ├── .linter-ignore │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── common │ ├── bios_utils.hpp │ ├── flight_recorder.hpp │ ├── test │ │ ├── meson.build │ │ ├── mocked_utils.hpp │ │ └── pldm_utils_test.cpp │ ├── types.hpp │ ├── utils.cpp │ └── utils.hpp │ ├── configurations │ ├── events │ │ └── stateSensorPdrs.json │ ├── fru_master.json │ ├── host │ │ ├── dbus_to_host_effecter.json │ │ └── host_frus.json │ ├── meson.build │ └── pdr │ │ ├── 11.json │ │ └── 4.json │ ├── fw-update │ ├── activation.hpp │ ├── device_updater.cpp │ ├── device_updater.hpp │ ├── inventory_manager.cpp │ ├── inventory_manager.hpp │ ├── manager.hpp │ ├── package_parser.cpp │ ├── package_parser.hpp │ ├── test │ │ ├── device_updater_test.cpp │ │ ├── inventory_manager_test.cpp │ │ ├── meson.build │ │ ├── package_parser_test.cpp │ │ └── test_pkg │ ├── update_manager.cpp │ ├── update_manager.hpp │ ├── watch.cpp │ └── watch.hpp │ ├── host-bmc │ ├── dbus_to_event_handler.cpp │ ├── dbus_to_event_handler.hpp │ ├── dbus_to_host_effecters.cpp │ ├── dbus_to_host_effecters.hpp │ ├── host_condition.cpp │ ├── host_condition.hpp │ ├── host_pdr_handler.cpp │ ├── host_pdr_handler.hpp │ └── test │ │ ├── dbus_to_host_effecter_test.cpp │ │ ├── host_effecter_jsons │ │ ├── good │ │ │ └── dbus_to_host_effecter.json │ │ ├── malformed │ │ │ └── dbus_to_host_effecter.json │ │ └── no_json │ │ │ └── dummy.json │ │ └── meson.build │ ├── libpldm │ ├── .clang-format │ ├── .clang-tidy │ ├── CHANGELOG.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── abi │ │ ├── aarch64 │ │ │ └── gcc.dump │ │ └── x86_64 │ │ │ └── gcc.dump │ ├── include │ │ └── libpldm │ │ │ ├── base.h │ │ │ ├── bios.h │ │ │ ├── bios_table.h │ │ │ ├── entity.h │ │ │ ├── firmware_update.h │ │ │ ├── fru.h │ │ │ ├── instance-id.h │ │ │ ├── meson.build │ │ │ ├── oem │ │ │ └── ibm │ │ │ │ └── libpldm │ │ │ │ ├── entity_oem_ibm.h │ │ │ │ ├── file_io.h │ │ │ │ ├── fru_oem_ibm.h │ │ │ │ ├── host.h │ │ │ │ ├── platform_oem_ibm.h │ │ │ │ └── state_set_oem_ibm.h │ │ │ ├── pdr.h │ │ │ ├── platform.h │ │ │ ├── pldm.h │ │ │ ├── pldm_types.h │ │ │ ├── requester │ │ │ ├── instance-id.h │ │ │ └── pldm.h │ │ │ ├── state_set.h │ │ │ ├── states.h │ │ │ ├── transport.h │ │ │ ├── transport │ │ │ ├── af-mctp.h │ │ │ └── mctp-demux.h │ │ │ └── utils.h │ ├── instance-db │ │ └── default │ ├── libpldm.pc.in │ ├── meson.build │ ├── meson_options.txt │ ├── src │ │ ├── array.h │ │ ├── base.c │ │ ├── bios.c │ │ ├── bios_table.c │ │ ├── firmware_update.c │ │ ├── fru.c │ │ ├── mctp-defines.h │ │ ├── meson.build │ │ ├── msgbuf.h │ │ ├── msgbuf │ │ │ └── platform.h │ │ ├── oem │ │ │ └── ibm │ │ │ │ ├── file_io.c │ │ │ │ ├── host.c │ │ │ │ ├── meson.build │ │ │ │ └── platform.c │ │ ├── pdr.c │ │ ├── platform.c │ │ ├── requester │ │ │ ├── instance-id.c │ │ │ ├── meson.build │ │ │ └── pldm.c │ │ ├── transport │ │ │ ├── af-mctp.c │ │ │ ├── container-of.h │ │ │ ├── mctp-demux.c │ │ │ ├── meson.build │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── test.c │ │ │ ├── test.h │ │ │ ├── transport.c │ │ │ └── transport.h │ │ └── utils.c │ ├── subprojects │ │ └── googletest.wrap │ └── tests │ │ ├── .clang-format │ │ ├── bios_table_iter.c │ │ ├── instance-id.cpp │ │ ├── libpldm_base_test.cpp │ │ ├── libpldm_bios_table_test.cpp │ │ ├── libpldm_bios_test.cpp │ │ ├── libpldm_firmware_update_test.cpp │ │ ├── libpldm_fru_test.cpp │ │ ├── libpldm_pdr_test.cpp │ │ ├── libpldm_platform_test.cpp │ │ ├── libpldm_utils_test.cpp │ │ ├── meson.build │ │ ├── msgbuf.cpp │ │ ├── msgbuf_generic.c │ │ ├── oem │ │ └── ibm │ │ │ ├── libpldm_fileio_test.cpp │ │ │ └── libpldm_host_test.cpp │ │ └── transport.cpp │ ├── libpldmresponder │ ├── base.cpp │ ├── base.hpp │ ├── bios.cpp │ ├── bios.hpp │ ├── bios_attribute.cpp │ ├── bios_attribute.hpp │ ├── bios_config.cpp │ ├── bios_config.hpp │ ├── bios_enum_attribute.cpp │ ├── bios_enum_attribute.hpp │ ├── bios_integer_attribute.cpp │ ├── bios_integer_attribute.hpp │ ├── bios_string_attribute.cpp │ ├── bios_string_attribute.hpp │ ├── bios_table.cpp │ ├── bios_table.hpp │ ├── event_parser.cpp │ ├── event_parser.hpp │ ├── examples │ │ ├── bios │ │ │ ├── enum_attrs.json │ │ │ ├── integer_attrs.json │ │ │ └── string_attrs.json │ │ ├── effecter │ │ │ └── dbus_to_host_effecter.json │ │ ├── events │ │ │ └── event_state_sensor.json │ │ ├── fru │ │ │ ├── Board_General.json │ │ │ ├── Board_VINI.json │ │ │ ├── Cpu_General.json │ │ │ ├── FRU_Master.json │ │ │ └── host_frus.json │ │ └── pdr │ │ │ ├── effecter_pdr.json │ │ │ └── sensor_pdr.json │ ├── fru.cpp │ ├── fru.hpp │ ├── fru_parser.cpp │ ├── fru_parser.hpp │ ├── meson.build │ ├── oem_handler.hpp │ ├── pdr.cpp │ ├── pdr.hpp │ ├── pdr_numeric_effecter.hpp │ ├── pdr_state_effecter.hpp │ ├── pdr_state_sensor.hpp │ ├── pdr_utils.cpp │ ├── pdr_utils.hpp │ ├── platform.cpp │ ├── platform.hpp │ ├── platform_numeric_effecter.hpp │ ├── platform_state_effecter.hpp │ ├── platform_state_sensor.hpp │ └── test │ │ ├── bios_jsons │ │ ├── enum_attrs.json │ │ ├── integer_attrs.json │ │ └── string_attrs.json │ │ ├── event_jsons │ │ └── good │ │ │ └── event_state_sensor.json │ │ ├── files │ │ ├── NVRAM-IMAGE │ │ └── NVRAM-IMAGE-CKSUM │ │ ├── fru_jsons │ │ ├── fru_master │ │ │ └── fru_master.json │ │ └── good │ │ │ ├── Board_General.json │ │ │ ├── Board_VINI.json │ │ │ ├── Cpu_General.json │ │ │ └── FRU_Master.json │ │ ├── libpldmresponder_base_test.cpp │ │ ├── libpldmresponder_bios_attribute_test.cpp │ │ ├── libpldmresponder_bios_config_test.cpp │ │ ├── libpldmresponder_bios_enum_attribute_test.cpp │ │ ├── libpldmresponder_bios_integer_attribute_test.cpp │ │ ├── libpldmresponder_bios_string_attribute_test.cpp │ │ ├── libpldmresponder_bios_table_test.cpp │ │ ├── libpldmresponder_bios_test.cpp │ │ ├── libpldmresponder_fru_test.cpp │ │ ├── libpldmresponder_pdr_effecter_test.cpp │ │ ├── libpldmresponder_pdr_sensor_test.cpp │ │ ├── libpldmresponder_platform_test.cpp │ │ ├── meson.build │ │ ├── mocked_bios.hpp │ │ ├── pdr_jsons │ │ ├── state_effecter │ │ │ ├── good │ │ │ │ └── effecter_pdr.json │ │ │ └── malformed │ │ │ │ └── effecter_pdr.json │ │ └── state_sensor │ │ │ ├── good │ │ │ └── sensor_pdr.json │ │ │ └── malformed │ │ │ └── sensor_pdr.json │ │ └── system_type1 │ │ └── bios_jsons │ │ ├── enum_attrs.json │ │ ├── integer_attrs.json │ │ └── string_attrs.json │ ├── meson.build │ ├── meson.options │ ├── meson_options.txt │ ├── oem │ └── ibm │ │ ├── configurations │ │ ├── bios │ │ │ ├── enum_attrs.json │ │ │ ├── integer_attrs.json │ │ │ └── string_attrs.json │ │ ├── events │ │ │ └── oem_ibm_event_state_sensor.json │ │ ├── fileTable.json │ │ ├── fru │ │ │ ├── Battery_LocationCode.json │ │ │ ├── Bmc_LocationCode.json │ │ │ ├── Bmc_VINI.json │ │ │ ├── Bmc_VR10.json │ │ │ ├── Bmc_VW10.json │ │ │ ├── Chassis_LocationCode.json │ │ │ ├── Chassis_VCEN.json │ │ │ ├── Chassis_VINI.json │ │ │ ├── Connector_LocationCode.json │ │ │ ├── DiskBackplane_LocationCode.json │ │ │ ├── DiskBackplane_VINI.json │ │ │ ├── Fan_LocationCode.json │ │ │ ├── Fan_VINI.json │ │ │ ├── Motherboard_DINF.json │ │ │ ├── Motherboard_LXR0.json │ │ │ ├── Motherboard_LocationCode.json │ │ │ ├── Motherboard_PSPD.json │ │ │ ├── Motherboard_UTIL.json │ │ │ ├── Motherboard_VCEN.json │ │ │ ├── Motherboard_VINI.json │ │ │ ├── Motherboard_VSYS.json │ │ │ ├── PCIeDevice_LocationCode.json │ │ │ ├── PCIeDevice_VINI.json │ │ │ ├── PCIeSlot_LocationCode.json │ │ │ ├── Panel_LocationCode.json │ │ │ ├── Panel_VINI.json │ │ │ ├── PowerSupply_LocationCode.json │ │ │ ├── PowerSupply_VINI.json │ │ │ ├── System_LocationCode.json │ │ │ ├── System_VSYS.json │ │ │ ├── Tpm_LocationCode.json │ │ │ ├── Tpm_VINI.json │ │ │ ├── Vrm_LocationCode.json │ │ │ └── Vrm_VINI.json │ │ ├── fru_master.json │ │ └── host_eid │ │ ├── libpldmresponder │ │ ├── bios_oem_ibm.cpp │ │ ├── bios_oem_ibm.hpp │ │ ├── file_io.cpp │ │ ├── file_io.hpp │ │ ├── file_io_by_type.cpp │ │ ├── file_io_by_type.hpp │ │ ├── file_io_type_cert.cpp │ │ ├── file_io_type_cert.hpp │ │ ├── file_io_type_dump.cpp │ │ ├── file_io_type_dump.hpp │ │ ├── file_io_type_lid.hpp │ │ ├── file_io_type_pel.cpp │ │ ├── file_io_type_pel.hpp │ │ ├── file_io_type_progress_src.cpp │ │ ├── file_io_type_progress_src.hpp │ │ ├── file_io_type_vpd.cpp │ │ ├── file_io_type_vpd.hpp │ │ ├── file_table.cpp │ │ ├── file_table.hpp │ │ ├── inband_code_update.cpp │ │ ├── inband_code_update.hpp │ │ ├── oem_ibm_handler.cpp │ │ ├── oem_ibm_handler.hpp │ │ ├── platform_oem_ibm.cpp │ │ ├── platform_oem_ibm.hpp │ │ ├── utils.cpp │ │ └── utils.hpp │ │ ├── requester │ │ ├── dbus_to_file_handler.cpp │ │ └── dbus_to_file_handler.hpp │ │ ├── service_files │ │ ├── meson.build │ │ ├── pldm-create-phyp-nvram-cksum.service │ │ ├── pldm-create-phyp-nvram.service │ │ └── scripts │ │ │ ├── create-NVRAM-cksum-file │ │ │ ├── create-NVRAM-file │ │ │ └── meson.build │ │ └── test │ │ ├── libpldmresponder_fileio_test.cpp │ │ └── libpldmresponder_oem_platform_test.cpp │ ├── pldmd │ ├── dbus_impl_pdr.cpp │ ├── dbus_impl_pdr.hpp │ ├── dbus_impl_requester.cpp │ ├── dbus_impl_requester.hpp │ ├── handler.hpp │ ├── instance_id.cpp │ ├── instance_id.hpp │ ├── invoker.hpp │ ├── pldmd.cpp │ └── service_files │ │ └── pldmd.service │ ├── pldmtool │ ├── README.md │ ├── meson.build │ ├── oem │ │ └── ibm │ │ │ ├── oem_ibm_state_set.hpp │ │ │ ├── pldm_oem_ibm.cpp │ │ │ └── pldm_oem_ibm.hpp │ ├── pldm_base_cmd.cpp │ ├── pldm_base_cmd.hpp │ ├── pldm_bios_cmd.cpp │ ├── pldm_bios_cmd.hpp │ ├── pldm_cmd_helper.cpp │ ├── pldm_cmd_helper.hpp │ ├── pldm_fru_cmd.cpp │ ├── pldm_fru_cmd.hpp │ ├── pldm_fw_update_cmd.cpp │ ├── pldm_fw_update_cmd.hpp │ ├── pldm_platform_cmd.cpp │ ├── pldm_platform_cmd.hpp │ └── pldmtool.cpp │ ├── requester │ ├── README.md │ ├── handler.hpp │ ├── mctp_endpoint_discovery.cpp │ ├── mctp_endpoint_discovery.hpp │ ├── request.hpp │ └── test │ │ ├── handler_test.cpp │ │ ├── meson.build │ │ ├── mock_request.hpp │ │ └── request_test.cpp │ ├── setup.cfg │ ├── softoff │ ├── main.cpp │ ├── meson.build │ ├── services │ │ └── pldmSoftPowerOff.service │ ├── softoff.cpp │ └── softoff.hpp │ ├── subprojects │ ├── CLI11.wrap │ ├── function2.wrap │ ├── googletest.wrap │ ├── libpldm.wrap │ ├── nlohmann-json.wrap │ ├── phosphor-dbus-interfaces.wrap │ ├── phosphor-logging.wrap │ ├── sdbusplus.wrap │ ├── sdeventplus.wrap │ └── stdplus.wrap │ ├── test │ ├── meson.build │ ├── pldmd_instanceid_test.cpp │ ├── pldmd_registration_test.cpp │ └── test_instance_id.hpp │ ├── tools │ ├── fw-update │ │ ├── README.md │ │ ├── metadata-example.json │ │ └── pldm_fwup_pkg_creator.py │ └── visualize-pdr │ │ ├── README.md │ │ ├── pldm_visualise_pdrs.py │ │ └── requirements.txt │ └── utilities │ ├── meson.build │ └── requester │ ├── set_state_effecter.cpp │ └── set_state_effecter_async.cpp ├── sys ├── init │ ├── init_main.C │ └── makefile ├── makefile ├── prof │ ├── gcov.C │ ├── idletask.C │ └── makefile └── vfs │ ├── makefile │ ├── vfs_init.C │ └── vfs_main.C └── usr ├── console ├── HBconfig ├── ast2400.C ├── console.C ├── daemon.C ├── daemon.H ├── makefile ├── uart.C ├── uart.H └── uartconfig.C ├── cxxtest ├── HBconfig ├── README.md ├── TestInject.C ├── TestSuite.C ├── cxxtestexec.C ├── cxxtestgen.pl ├── makefile ├── runtime │ ├── makefile │ └── rt_cxxtestexec.C └── test │ ├── cxxtesttest.H │ └── makefile ├── devicefw ├── assoccontain.C ├── assoccontain.H ├── associator.C ├── associator.H ├── devicefw.mk ├── driverif.C ├── makefile ├── runtime │ ├── makefile │ └── test │ │ └── makefile ├── test │ ├── assoccontaintest.H │ ├── associatortest.H │ └── makefile └── userif.C ├── devtree ├── HBconfig ├── devtree.C ├── extern │ └── dtc │ │ └── libfdt │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_addresses.c │ │ ├── fdt_check.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_overlay.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt.h │ │ ├── libfdt.mk │ │ ├── libfdt_env.h │ │ └── libfdt_internal.h ├── makefile └── test │ ├── devtreetest.H │ └── makefile ├── diag ├── HBconfig ├── attn │ ├── common │ │ ├── attn_common.mk │ │ ├── attnbits.C │ │ ├── attnbits.H │ │ ├── attnfwd.H │ │ ├── attnlist.C │ │ ├── attnlist.H │ │ ├── attnmem.C │ │ ├── attnmem.H │ │ ├── attnops.H │ │ ├── attnprd.C │ │ ├── attnprd.H │ │ ├── attnproc.C │ │ ├── attnproc.H │ │ ├── attnscom.C │ │ ├── attnscom.H │ │ ├── attnsvc_common.C │ │ ├── attnsvc_common.H │ │ ├── attntarget.C │ │ ├── attntarget.H │ │ ├── attntrace.C │ │ └── attntrace.H │ ├── ipl │ │ ├── attn.C │ │ ├── attn_hb.mk │ │ ├── attnsvc.C │ │ ├── attnsvc.H │ │ ├── makefile │ │ └── test │ │ │ ├── attncomp.H │ │ │ ├── attnfakeelement.H │ │ │ ├── attnfakegfir.C │ │ │ ├── attnfakegfir.H │ │ │ ├── attnfakegp1.C │ │ │ ├── attnfakegp1.H │ │ │ ├── attnfakeipoll.C │ │ │ ├── attnfakeipoll.H │ │ │ ├── attnfakemcs.C │ │ │ ├── attnfakemcs.H │ │ │ ├── attnfakeprd.C │ │ │ ├── attnfakeprd.H │ │ │ ├── attnfakepresenter.C │ │ │ ├── attnfakepresenter.H │ │ │ ├── attnfakesys.C │ │ │ ├── attnfakesys.H │ │ │ ├── attnfaketarget.C │ │ │ ├── attnfaketarget.H │ │ │ ├── attninject.H │ │ │ ├── attnmeminject.C │ │ │ ├── attnmeminject.H │ │ │ ├── attnrand.S │ │ │ ├── attnrandsource.C │ │ │ ├── attnrandsource.H │ │ │ ├── attntest.C │ │ │ ├── attntest.H │ │ │ ├── attntestipl.H │ │ │ ├── attntestlist.H │ │ │ ├── attntestmem.H │ │ │ ├── attntestops.H │ │ │ ├── attntestproc.H │ │ │ ├── attntestscom.H │ │ │ ├── attntestsvc.H │ │ │ ├── attntesttest.H │ │ │ ├── attntesttrace.H │ │ │ ├── attnvalidate.C │ │ │ ├── attnvalidate.H │ │ │ └── makefile │ ├── makefile │ └── runtime │ │ ├── attn_rt.C │ │ ├── attn_rt.mk │ │ ├── attnsvc.C │ │ ├── attnsvc.H │ │ ├── makefile │ │ └── test │ │ ├── attnfakeprd.C │ │ ├── attnfakeprd.H │ │ ├── attnfakereg.C │ │ ├── attnfakereg.H │ │ ├── attntestRtAttns.H │ │ ├── attntest_rt.H │ │ └── makefile ├── makefile ├── mdia │ ├── makefile │ ├── mdia.C │ ├── mdiafwd.H │ ├── mdiaglobals.H │ ├── mdiamba.C │ ├── mdiamonitor.C │ ├── mdiamonitor.H │ ├── mdiasm.C │ ├── mdiasm.H │ ├── mdiasmimpl.H │ ├── mdiatrace.C │ ├── mdiatrace.H │ ├── mdiaworkitem.C │ ├── mdiaworkitem.H │ └── test │ │ ├── makefile │ │ ├── mdiaTestTimeoutFfdc.H │ │ ├── mdiafakecm.C │ │ ├── mdiafakecm.H │ │ ├── mdiafakesm.C │ │ ├── mdiafakesm.H │ │ ├── mdiatest.H │ │ ├── mdiatestmba.H │ │ ├── mdiatestmonitor.H │ │ ├── mdiatestsm.H │ │ ├── mdiatesttrace.H │ │ └── mdiatestworkitem.H └── prdf │ ├── common │ ├── framework │ │ ├── config │ │ │ ├── iipConfigurator.C │ │ │ ├── iipConfigurator.h │ │ │ ├── iipDomain.C │ │ │ ├── iipDomain.h │ │ │ ├── iipDomainContainer.C │ │ │ ├── iipDomainContainer.h │ │ │ ├── iipDomainContainer.inl │ │ │ ├── iipSystem.C │ │ │ ├── iipSystem.h │ │ │ ├── iipchip.C │ │ │ ├── iipchip.h │ │ │ ├── prdfExtensibleChip.H │ │ │ ├── prdfExtensibleDomain.C │ │ │ ├── prdfExtensibleDomain.H │ │ │ ├── prdfRuleChipDomain.C │ │ │ └── prdfRuleChipDomain.H │ │ ├── prdf_framework.mk │ │ ├── register │ │ │ ├── iipCaptureData.h │ │ │ ├── iipErrorRegister.h │ │ │ ├── iipErrorRegisterFilter.h │ │ │ ├── iipErrorRegisterMask.h │ │ │ ├── iipErrorRegisterType.h │ │ │ ├── iipResetErrorRegister.h │ │ │ ├── iipscr.C │ │ │ ├── iipscr.h │ │ │ ├── prdfCaptureData.C │ │ │ ├── prdfErrorRegister.C │ │ │ ├── prdfErrorRegisterMask.C │ │ │ ├── prdfHomRegisterAccess.C │ │ │ ├── prdfHomRegisterAccess.H │ │ │ ├── prdfOperatorRegister.H │ │ │ ├── prdfRegisterCache.C │ │ │ ├── prdfRegisterCache.H │ │ │ ├── prdfResetErrorRegister.C │ │ │ ├── prdfResetOperators.H │ │ │ ├── prdfScanFacility.C │ │ │ ├── prdfScanFacility.H │ │ │ ├── prdfScomRegister.C │ │ │ ├── prdfScomRegister.H │ │ │ ├── prdfScomRegisterAccess.C │ │ │ └── prdfScomRegisterAccess.H │ │ ├── resolution │ │ │ ├── iipCallAttnResolution.h │ │ │ ├── iipEregResolution.h │ │ │ ├── iipResolution.C │ │ │ ├── iipResolution.h │ │ │ ├── iipResolutionFactory.C │ │ │ ├── iipResolutionFactory.h │ │ │ ├── prdDumpResolution.H │ │ │ ├── prdfAnalyzeConnected.H │ │ │ ├── prdfCalloutConnectedGard.H │ │ │ ├── prdfCalloutGard.H │ │ │ ├── prdfCalloutMap.H │ │ │ ├── prdfCallouts.H │ │ │ ├── prdfCaptureResolution.C │ │ │ ├── prdfCaptureResolution.H │ │ │ ├── prdfPluginCallResolution.H │ │ │ ├── prdfResolutionList.H │ │ │ ├── prdfResolutionMap.C │ │ │ ├── prdfResolutionMap.H │ │ │ ├── prdfThresholdResolutions.C │ │ │ ├── prdfThresholdResolutions.H │ │ │ ├── xspprdFlagResolution.C │ │ │ ├── xspprdFlagResolution.h │ │ │ └── xspprdTryResolution.h │ │ └── service │ │ │ ├── iipServiceDataCollector.h │ │ │ ├── iipServiceDataCollector.inl │ │ │ ├── iipsdbug.h │ │ │ ├── iipstep.h │ │ │ ├── prdfServiceDataCollector.C │ │ │ ├── xspprdService.h │ │ │ └── xspprdsdbug.C │ ├── iipconst.h │ ├── mnfgtools │ │ ├── prdfMfgThreshold.C │ │ ├── prdfMfgThreshold.H │ │ ├── prdfMfgThresholdAttrs.pl │ │ ├── prdfMfgThresholdMgr.C │ │ └── prdfMfgThresholdMgr.H │ ├── plat │ │ ├── explorer │ │ │ ├── explorer_ocmb.rule │ │ │ ├── explorer_ocmb_actions.rule │ │ │ ├── explorer_ocmb_regs.rule │ │ │ ├── prdfExplorerPlugins_common.C │ │ │ └── prdf_plat_explorer.mk │ │ ├── mem │ │ │ ├── prdfMemAddress.C │ │ │ ├── prdfMemAddress.H │ │ │ ├── prdfMemCaptureData.C │ │ │ ├── prdfMemCaptureData.H │ │ │ ├── prdfMemCeTable.C │ │ │ ├── prdfMemCeTable.H │ │ │ ├── prdfMemConst.H │ │ │ ├── prdfMemDbUtils.H │ │ │ ├── prdfMemDqBitmap.C │ │ │ ├── prdfMemDqBitmap.H │ │ │ ├── prdfMemEccAnalysis.C │ │ │ ├── prdfMemEccAnalysis.H │ │ │ ├── prdfMemExtraSig.H │ │ │ ├── prdfMemMark.C │ │ │ ├── prdfMemMark.H │ │ │ ├── prdfMemRank.H │ │ │ ├── prdfMemRowRepair.C │ │ │ ├── prdfMemRowRepair.H │ │ │ ├── prdfMemSymbol.C │ │ │ ├── prdfMemSymbol.H │ │ │ ├── prdfMemThresholds.C │ │ │ ├── prdfMemThresholds.H │ │ │ ├── prdfMemUeTable.C │ │ │ ├── prdfMemUeTable.H │ │ │ ├── prdfMemUtils.C │ │ │ ├── prdfMemUtils.H │ │ │ ├── prdfMemoryMru.C │ │ │ ├── prdfMemoryMru.H │ │ │ ├── prdfOcmbAddrConfig.C │ │ │ ├── prdfOcmbAddrConfig.H │ │ │ ├── prdfOcmbChipDomain.C │ │ │ ├── prdfOcmbChipDomain.H │ │ │ ├── prdfOcmbDataBundle.H │ │ │ └── prdf_plat_mem.mk │ │ ├── odyssey │ │ │ ├── odyssey_ocmb.rule │ │ │ ├── odyssey_ocmb_actions.rule │ │ │ ├── odyssey_ocmb_regs.rule │ │ │ ├── prdfOdyExtraSig.H │ │ │ ├── prdfOdyPllDomain.C │ │ │ ├── prdfOdyPllDomain.H │ │ │ ├── prdfOdyPllPlugins.C │ │ │ ├── prdfOdysseyPlugins_common.C │ │ │ └── prdf_plat_odyssey.mk │ │ ├── p10 │ │ │ ├── ClockDomainAnalysis.md │ │ │ ├── p10_common_actions.rule │ │ │ ├── p10_core.rule │ │ │ ├── p10_core_actions.rule │ │ │ ├── p10_core_regs.rule │ │ │ ├── p10_eq.rule │ │ │ ├── p10_eq_actions.rule │ │ │ ├── p10_eq_regs.rule │ │ │ ├── p10_iohs.rule │ │ │ ├── p10_iohs_actions.rule │ │ │ ├── p10_iohs_regs.rule │ │ │ ├── p10_mc.rule │ │ │ ├── p10_mc_actions.rule │ │ │ ├── p10_mc_regs.rule │ │ │ ├── p10_mcc.rule │ │ │ ├── p10_mcc_actions.rule │ │ │ ├── p10_mcc_regs.rule │ │ │ ├── p10_nmmu.rule │ │ │ ├── p10_nmmu_actions.rule │ │ │ ├── p10_nmmu_regs.rule │ │ │ ├── p10_omic.rule │ │ │ ├── p10_omic_actions.rule │ │ │ ├── p10_omic_regs.rule │ │ │ ├── p10_pau.rule │ │ │ ├── p10_pauc.rule │ │ │ ├── p10_pauc_actions.rule │ │ │ ├── p10_pauc_regs.rule │ │ │ ├── p10_pec.rule │ │ │ ├── p10_pec_actions.rule │ │ │ ├── p10_pec_regs.rule │ │ │ ├── p10_phb.rule │ │ │ ├── p10_phb_actions.rule │ │ │ ├── p10_phb_regs.rule │ │ │ ├── p10_proc.rule │ │ │ ├── p10_proc_actions.rule │ │ │ ├── p10_proc_regs.rule │ │ │ ├── prdfCommonPlugins.C │ │ │ ├── prdfFsiCapUtil.C │ │ │ ├── prdfFsiCapUtil.H │ │ │ ├── prdfLineDelete.C │ │ │ ├── prdfLineDelete.H │ │ │ ├── prdfMccPlugins.C │ │ │ ├── prdfOmicPlugins.C │ │ │ ├── prdfP10Configurator.C │ │ │ ├── prdfP10CoreDataBundle.H │ │ │ ├── prdfP10CoreExtraSig.H │ │ │ ├── prdfP10Core_common.C │ │ │ ├── prdfP10Eq.C │ │ │ ├── prdfP10GenericDomain.H │ │ │ ├── prdfP10IohsExtraSig.H │ │ │ ├── prdfP10Iohs_common.C │ │ │ ├── prdfP10Pll.C │ │ │ ├── prdfP10PllDomain.C │ │ │ ├── prdfP10PllDomain.H │ │ │ ├── prdfP10Proc.C │ │ │ ├── prdfP10ProcDomain.C │ │ │ ├── prdfP10ProcDomain.H │ │ │ ├── prdfP10ProcExtraSig.H │ │ │ ├── prdfP10TodPlugins.C │ │ │ ├── prdfPaucPlugins.C │ │ │ └── prdf_plat_p10.mk │ │ ├── prdfPlatConfigurator.H │ │ ├── prdfPlatServices_common.C │ │ ├── prdfPlatServices_common.H │ │ ├── prdfPllDomain.H │ │ ├── prdfRasServices_common.C │ │ ├── prdfRasServices_common.H │ │ ├── prdfTargetServices.C │ │ └── prdfTargetServices.H │ ├── plugins │ │ ├── plugins.mk │ │ ├── prdfBufferStream.H │ │ ├── prdfCalloutsData.H │ │ ├── prdfDramRepairUsrData.H │ │ ├── prdfLogParse_common.C │ │ ├── prdfLogParse_common.H │ │ ├── prdfMemLogParse.C │ │ ├── prdfMemLogParse.H │ │ ├── prdfMemoryMruData.H │ │ ├── prdfParserEnums.H │ │ ├── prdfParserUtils.C │ │ ├── prdfParserUtils.H │ │ ├── prdfPfa5Data.h │ │ ├── prdfPlatProcConst.H │ │ ├── prdfProcLogParse.C │ │ ├── prdfProcLogParse.H │ │ ├── prdrErrlPluginsSupt.C │ │ └── prdrErrlPluginsSupt.H │ ├── prdfEnums.H │ ├── prdfGlobal_common.H │ ├── prdfMain_common.C │ ├── prdfTargetFwdRef.H │ ├── prdfTrace.C │ ├── prdfTrace.H │ ├── prdf_common_fsp_and_hb.mk │ ├── prdf_types.h │ ├── rule │ │ ├── iipTemplates.C │ │ ├── prdfGroup.C │ │ ├── prdfGroup.H │ │ ├── prdfPluginDef.H │ │ ├── prdfPluginMap.C │ │ ├── prdfPluginMap.H │ │ ├── prdfRuleChip.C │ │ ├── prdfRuleChip.H │ │ ├── prdfRuleFiles.C │ │ ├── prdfRuleFiles.H │ │ ├── prdfRuleMetaData.C │ │ ├── prdfRuleMetaData.H │ │ ├── prdf_rule.mk │ │ ├── prdrChip.H │ │ ├── prdrCommon.H │ │ ├── prdrCompile.C │ │ ├── prdrCompile.lex │ │ ├── prdrCompile.y │ │ ├── prdrExpr.H │ │ ├── prdrGroup.H │ │ ├── prdrLoadChip.C │ │ ├── prdrLoadChip.H │ │ ├── prdrLoadChipCache.C │ │ ├── prdrLoadChipCache.H │ │ ├── prdrRegister.H │ │ ├── prdrSignatures.H │ │ ├── prdrToken.H │ │ ├── prdrpp │ │ └── tables.mk │ └── util │ │ ├── UtilFunct.H │ │ ├── UtilHash.H │ │ ├── prdfAssert.C │ │ ├── prdfAssert.h │ │ ├── prdfBitKey.C │ │ ├── prdfBitKey.H │ │ ├── prdfBitString.C │ │ ├── prdfBitString.H │ │ ├── prdfErrlSmartPtr.C │ │ ├── prdfErrlSmartPtr.H │ │ ├── prdfErrorSignature.C │ │ ├── prdfErrorSignature.H │ │ ├── prdfFilters.C │ │ ├── prdfFilters.H │ │ ├── prdfFlyWeight.C │ │ ├── prdfFlyWeight.H │ │ ├── prdfFlyWeightS.C │ │ ├── prdfFlyWeightS.H │ │ ├── prdfHeapBucketSize.H │ │ ├── prdfThresholdUtils.C │ │ ├── prdfThresholdUtils.H │ │ └── prdfTimer.H │ ├── data │ └── error_analysis_data.md │ ├── framework │ └── prdfDumpResolution.C │ ├── makefile │ ├── mnfgtools │ ├── prdfMfgSync.C │ └── prdfMfgSync.H │ ├── peltool │ ├── common │ │ ├── parserdata.py │ │ ├── regdata │ │ │ ├── __init__.py │ │ │ ├── explorer_ocmb_regs.json │ │ │ ├── odyssey_ocmb_regs.json │ │ │ ├── p10_core_regs.json │ │ │ ├── p10_eq_regs.json │ │ │ ├── p10_iohs_regs.json │ │ │ ├── p10_mc_regs.json │ │ │ ├── p10_mcc_regs.json │ │ │ ├── p10_nmmu_regs.json │ │ │ ├── p10_omic_regs.json │ │ │ ├── p10_pau_regs.json │ │ │ ├── p10_pauc_regs.json │ │ │ ├── p10_pec_regs.json │ │ │ ├── p10_phb_regs.json │ │ │ └── p10_proc_regs.json │ │ └── sigdata │ │ │ ├── __init__.py │ │ │ ├── explorer_ocmb_signatures.json │ │ │ ├── odyssey_ocmb_signatures.json │ │ │ ├── p10_core_signatures.json │ │ │ ├── p10_eq_signatures.json │ │ │ ├── p10_iohs_signatures.json │ │ │ ├── p10_mc_signatures.json │ │ │ ├── p10_mcc_signatures.json │ │ │ ├── p10_nmmu_signatures.json │ │ │ ├── p10_omic_signatures.json │ │ │ ├── p10_pau_signatures.json │ │ │ ├── p10_pauc_signatures.json │ │ │ ├── p10_pec_signatures.json │ │ │ ├── p10_phb_signatures.json │ │ │ └── p10_proc_signatures.json │ ├── src │ │ └── be500.py │ ├── test │ │ ├── test_srcparser_be500.py │ │ └── test_udparser_be500.py │ └── ud │ │ └── be500.py │ ├── plat │ ├── explorer │ │ ├── prdfExplorerPlugins.C │ │ ├── prdfExplorerPlugins_ipl.C │ │ ├── prdfExplorerPlugins_rt.C │ │ └── prdf_plat_explorer_hb_only.mk │ ├── mem │ │ ├── prdfMemBgScrub.H │ │ ├── prdfMemDsd.C │ │ ├── prdfMemDsd.H │ │ ├── prdfMemDynDealloc.C │ │ ├── prdfMemDynDealloc.H │ │ ├── prdfMemIplCeStats.C │ │ ├── prdfMemIplCeStats.H │ │ ├── prdfMemRrd.C │ │ ├── prdfMemRrd.H │ │ ├── prdfMemScrubUtils.C │ │ ├── prdfMemScrubUtils.H │ │ ├── prdfMemTdCtlr.C │ │ ├── prdfMemTdCtlr.H │ │ ├── prdfMemTdCtlr_ipl.C │ │ ├── prdfMemTdCtlr_rt.C │ │ ├── prdfMemTdFalseAlarm.H │ │ ├── prdfMemTdQueue.H │ │ ├── prdfMemTdRankList.H │ │ ├── prdfMemTps.H │ │ ├── prdfMemTps_ipl.C │ │ ├── prdfMemTps_rt.C │ │ ├── prdfMemVcm.C │ │ ├── prdfMemVcm.H │ │ ├── prdfMemVcm_ipl.C │ │ ├── prdfMemVcm_rt.C │ │ ├── prdfRestoreDramRepairs.C │ │ └── prdf_plat_mem_hb_only.mk │ ├── odyssey │ │ ├── prdfOdysseyPlugins_ipl.C │ │ ├── prdfOdysseyPlugins_rt.C │ │ └── prdf_plat_odyssey_hb_only.mk │ ├── p10 │ │ ├── prdfP10Core.C │ │ ├── prdfP10Iohs.C │ │ └── prdf_plat_p10_hb_only.mk │ ├── prdfPlatServices.C │ ├── prdfPlatServices.H │ ├── prdfPlatServices_ipl.C │ ├── prdfPlatServices_ipl.H │ ├── prdfPlatServices_rt.C │ ├── prdfPlatServices_rt.H │ ├── prdfRasServices.C │ └── prdfRasServices.H │ ├── plugins │ ├── Makefile_errl │ ├── makefile │ ├── prdfLogParse.C │ └── prdrErrlDisplaySupt.H │ ├── prdfErrlUtil.H │ ├── prdfGlobal.H │ ├── prdfMain.C │ ├── prdfMain_ipl.C │ ├── prdf_hb_only.mk │ ├── rule │ └── makefile │ ├── runtime │ ├── makefile │ └── test │ │ └── makefile │ └── test │ ├── makefile │ ├── prdfTest.H │ ├── prdfTest_ABus.H │ ├── prdfTest_BadDqBitmap.H │ ├── prdfTest_Ex.H │ ├── prdfTest_MfgSync.H │ ├── prdfTest_NimbusTpLFir.H │ ├── prdfTest_Proc.H │ ├── prdfTest_ProcCentFir.H │ ├── prdfTest_ProcTpLFir.H │ ├── prdfTest_ScomAccessInterface.H │ ├── prdfTest_XBus.H │ ├── prdf_hb_common_test.mk │ ├── prdfsimFspSyncSvc.C │ ├── prdfsimFspSyncSvc.H │ ├── prdfsimHomRegisterAccess.C │ ├── prdfsimHomRegisterAccess.H │ ├── prdfsimMacros.H │ ├── prdfsimMfgSync.C │ ├── prdfsimMfgSync.H │ ├── prdfsimRasServices.C │ ├── prdfsimRasServices.H │ ├── prdfsimScrDB.C │ ├── prdfsimScrDB.H │ ├── prdfsimScrDataSet.C │ ├── prdfsimScrDataSet.H │ ├── prdfsimServices.C │ ├── prdfsimServices.H │ ├── prdfsimUtil.C │ ├── prdfsimUtil.H │ ├── prdsimSignatureParser.C │ └── prdsimSignatureParser.H ├── dump ├── dumpCollect.C ├── dumpCollect.H ├── makefile └── test │ ├── dumptest.H │ └── makefile ├── ecc ├── makefile ├── vpd_ecc_api.c └── vpd_ecc_api_no_op.c ├── ecmddatabuffer ├── ecmdDataBufferBase.C ├── makefile └── test │ ├── ecmddatabuffertest.H │ └── makefile ├── eeprom ├── README ├── eeprom.mk ├── eepromCache.C ├── eepromCache.H ├── eepromCache_common.C ├── eeprom_utils.C ├── eepromdd.C ├── eepromdd_hardware.C ├── eepromdd_hardware.H ├── makefile ├── plugins │ ├── EEPROM_COMP_ID_Parse.C │ └── ebmc │ │ └── b0e00.py ├── runtime │ ├── makefile │ └── rt_eepromCache.C └── test │ ├── eecachetest.H │ ├── eepromUtilstest.H │ ├── eepromddHWtest.H │ ├── eepromddtest.H │ └── makefile ├── errl ├── HBconfig ├── backtrace.C ├── errl.mk ├── errled.C ├── errlentry.C ├── errlentry_consts.H ├── errli2c.C ├── errlmanager.C ├── errlmanager_common.C ├── errlprvt.C ├── errlsctn.C ├── errlsctn.H ├── errlsctnhdr.C ├── errlsrc.C ├── errlud.C ├── errludattribute.C ├── errludbacktrace.C ├── errludcallout.C ├── errludlogregister.C ├── errludprintk.C ├── errludstate.C ├── errludstring.C ├── errluh.C ├── errluserdetails.C ├── makefile ├── parser │ ├── .gitignore │ ├── ebmc │ │ ├── bsrc.py │ │ └── srcdisplaydata.py │ ├── errlparser.C │ ├── genErrlParsers.pl │ └── makefile ├── plugins │ ├── ERRL_COMP_ID_Parse.C │ ├── ebmc │ │ ├── b0100 │ │ │ ├── b0100.py │ │ │ ├── errludattributeP_gen.py │ │ │ └── errludtarget.py │ │ ├── b3100 │ │ │ └── b3100.py │ │ └── procedures │ │ │ └── bcallouts.py │ ├── errludattributeP.H │ ├── errludbacktrace.H │ ├── errludbuild.H │ ├── errludcallout.H │ ├── errludlogregister.H │ ├── errludparser.H │ ├── errludparserfactory.H │ ├── errludparserfactoryerrl.H │ ├── errludstate.H │ ├── errludstring.H │ ├── errludwofdata.H │ ├── errluserdetails.H │ ├── symbols.C │ └── symbols.H ├── runtime │ ├── makefile │ ├── rt_errlmanager.C │ ├── rt_vfs.C │ └── test │ │ ├── makefile │ │ ├── rt_errltest.H │ │ └── test_runtimeDeconfig.H └── test │ ├── errlAggregateTest.H │ ├── errlReportTest.H │ ├── errltest.H │ ├── errluserdetailtest.H │ └── makefile ├── errldisplay ├── HBconfig ├── errldisplay.C └── makefile ├── expaccess ├── README.md ├── errlud_expscom.C ├── errlud_expscom.H ├── expaccess.mk ├── expscom_trace.C ├── expscom_trace.H ├── expscom_utils.C ├── expscom_utils.H ├── i2cscomdd.C ├── i2cscomdd.H ├── makefile ├── mmioscomdd.C ├── mmioscomdd.H ├── plugins │ ├── EXPSCOM_COMP_ID_Parse.C │ ├── ebmc │ │ └── b3600.py │ ├── errludP_expscom.H │ └── expscomUdParserFactory.H ├── runtime │ ├── makefile │ └── test │ │ └── makefile └── test │ ├── expErrlTest.C │ ├── expErrlTest.H │ ├── expscomtest.H │ ├── exptest_utils.C │ ├── exptest_utils.H │ ├── makefile │ ├── ocmbcommtest.H │ ├── rcExpLog.C │ ├── rcExpLog.H │ └── test.mk ├── fapi2 ├── attribute_service.C ├── dimmBadDqBitmapFuncs.C ├── fapi2.mk ├── makefile ├── platCreateHwpErrParser.pl ├── plat_attr_override_sync.C ├── plat_attr_task.C ├── plat_hw_access.C ├── plat_i2c_access.C ├── plat_mmio_access.C ├── plat_mvpd_access.C ├── plat_spd_access.C ├── plat_utils.C ├── plat_vpd_access.C ├── plat_wof_access.C ├── rowRepairsFuncs.C ├── runtime │ ├── makefile │ └── test │ │ └── makefile ├── target.C └── test │ ├── fapi2BasicTryTest.H │ ├── fapi2ChipEcTest.H │ ├── fapi2CreatePlatLogTest.H │ ├── fapi2DdimmGetEfdTest.C │ ├── fapi2DdimmGetEfdTest.H │ ├── fapi2GetChildrenTest.H │ ├── fapi2GetChipletNumTest.H │ ├── fapi2GetOtherEndTest.H │ ├── fapi2GetParentTest.H │ ├── fapi2GetTargetTest.H │ ├── fapi2GetVpdTest.H │ ├── fapi2HwAccessTest.H │ ├── fapi2HwpErrorBufferTest.H │ ├── fapi2HwpTest.H │ ├── fapi2I2cAccessTest.H │ ├── fapi2IsFunctionalTest.H │ ├── fapi2MmioAccessTest.H │ ├── fapi2MulticastTest.H │ ├── fapi2MvpdTestCxx.H │ ├── fapi2PlatGetVpdOcmbChipTest.C │ ├── fapi2PlatGetVpdOcmbChipTest.H │ ├── fapi2ReduceTypeTest.H │ ├── fapi2SpdTestCxx.H │ ├── fapi2SubroutineExecutorTest.H │ ├── fapi2Test.mk │ ├── fapi2TestUtils.C │ ├── fapi2TestUtils.H │ ├── fapi2ToStringTest.H │ ├── fapi2VerifyCalloutTest.C │ ├── fapi2VerifyCalloutTest.H │ ├── fapi2VerifyPrdAttrTest.C │ ├── fapi2VerifyPrdAttrTest.H │ ├── getVpdTest.C │ ├── getVpdTest.H │ ├── makefile │ ├── p10_hwtests.C │ ├── p10_hwtests.H │ ├── p10_i2ctests.C │ ├── p10_i2ctests.H │ ├── p10_mmiotests.C │ ├── p10_mmiotests.H │ ├── p10_sample_procedure.C │ ├── p10_sample_procedure.H │ ├── rcSupport.C │ ├── rcSupport.H │ ├── rcTest.C │ ├── rcTest.H │ └── serial │ ├── fapi2WOFTest.H │ └── makefile ├── fapiwrap ├── fapiWrap.C └── makefile ├── fsi ├── errlud_fsi.C ├── errlud_fsi.H ├── fsi_common.C ├── fsi_common.H ├── fsidd.C ├── fsidd.H ├── fsipres.C ├── makefile ├── plugins │ ├── FSI_COMP_ID_Parse.C │ ├── ebmc │ │ └── b0a00.py │ ├── errludP_fsi.H │ └── fsiUdParserFactory.H ├── runtime │ ├── makefile │ ├── rt_fsi.C │ └── rt_fsi.H └── test │ ├── fsiddtest.H │ ├── fsiprestest.H │ └── makefile ├── fsiscom ├── fsiscom.C ├── fsiscom.H ├── makefile ├── runtime │ ├── makefile │ └── rt_fsiscom.C └── test │ ├── fsiscomtest.H │ └── makefile ├── gpio ├── HBconfig ├── gpio_pca9551.C ├── gpiodd.C ├── gpiodd.H └── makefile ├── hdat ├── HBconfig ├── genHdatBin.pl ├── hdatBinLayout.xml ├── hdatbldda.C ├── hdatbldda.H ├── hdatcommonutil.C ├── hdathbrt.C ├── hdathbrt.H ├── hdathdif.C ├── hdathdif.H ├── hdathostservices.C ├── hdathostservices.H ├── hdathostslcadata.C ├── hdathostslcadata.H ├── hdatiohub.C ├── hdatiohub.H ├── hdatiplparms.C ├── hdatiplparms.H ├── hdatmsarea.C ├── hdatmsarea.H ├── hdatmsvpd.C ├── hdatmsvpd.H ├── hdatnaca.C ├── hdatnodedata.C ├── hdatnodedata.H ├── hdatpcia.C ├── hdatpcia.H ├── hdatpcrd.C ├── hdatpcrd.H ├── hdatram.C ├── hdatram.H ├── hdatspiraH.C ├── hdatspiraH.H ├── hdatspiraS.C ├── hdatspiraS.H ├── hdatspsubsys.C ├── hdatspsubsys.H ├── hdattpmdata.C ├── hdattpmdata.H ├── hdatutil.C ├── hdatutil.H ├── hdatvpd.C ├── hdatvpd.H └── makefile ├── htmgt ├── HBconfig ├── htmgt.C ├── htmgt_activate.C ├── htmgt_activate.H ├── htmgt_cfgdata.C ├── htmgt_cfgdata.H ├── htmgt_common.mk ├── htmgt_occ.C ├── htmgt_occ.H ├── htmgt_occcmd.C ├── htmgt_occcmd.H ├── htmgt_occmanager.C ├── htmgt_occmanager.H ├── htmgt_poll.C ├── htmgt_poll.H ├── htmgt_utility.C ├── htmgt_utility.H ├── makefile ├── occError.C ├── occError.H ├── plugins │ ├── HTMGT_COMP_ID_Parse.C │ ├── ebmc │ │ ├── b2600.py │ │ ├── b2a00.py │ │ └── src │ │ │ └── b2a00.py │ ├── errludP_htmgt.H │ └── htmgtUdParserFactory.H ├── runtime │ ├── makefile │ └── rt_occ.C └── test │ ├── htmgt_occcmd_test.H │ ├── htmgt_test.H │ ├── htmgtcfgtest.H │ └── makefile ├── hwas ├── HBconfig ├── common │ ├── README.md │ ├── deconfigGard.C │ ├── fco-readme.md │ ├── fieldCoreOverride.C │ ├── hwas.C │ ├── hwasCallout.C │ ├── pgLogic.C │ └── test │ │ ├── common.mk │ │ └── hwasCalloutTest.H ├── errlud_pgData.C ├── errlud_pgData.H ├── hwasPlat.C ├── hwasPlatCallout.C ├── hwasPlatDeconfigGard.C ├── hwasPlatError.C ├── makefile ├── plugins │ ├── HWAS_COMP_ID_Parse.C │ ├── ebmc │ │ └── b0c00.py │ ├── errludParser_pgData.H │ └── hwasUdParserFactory.H ├── test │ ├── hwas1test.H │ ├── hwasGardTest.H │ ├── hwasPlatErrorTest.H │ ├── hwasSysAvailSvcTest.H │ └── makefile └── testHWP.C ├── hwplibs ├── makefile ├── nest │ ├── makefile │ └── nestmemutils.mk └── runtime │ ├── concurrent_inits.C │ └── makefile ├── i2c ├── README.md ├── errlud_i2c.C ├── errlud_i2c.H ├── fapi_i2c_dd.C ├── fapi_i2c_dd.H ├── i2c.C ├── i2c.mk ├── i2cTargetPres.C ├── i2c_utils.C ├── makefile ├── plugins │ ├── I2C_COMP_ID_Parse.C │ ├── ebmc │ │ └── b0700.py │ ├── errludP_i2c.H │ └── i2cUdParserFactory.H ├── runtime │ ├── makefile │ ├── rt_i2c.C │ └── test │ │ ├── i2ctest_rt.H │ │ └── makefile └── test │ ├── i2ctest.H │ ├── i2ctest_common.H │ └── makefile ├── i2cr ├── i2cr.C ├── i2cr.H ├── makefile └── test │ ├── i2crtest.H │ └── makefile ├── imageprocs ├── imageprocs.mk ├── makefile └── runtime │ └── makefile ├── initservice ├── README.md ├── baseinitsvc │ ├── initservice.C │ ├── initservice.H │ ├── initsvctasks.H │ └── makefile ├── bootconfig │ ├── bootconfig.C │ ├── bootconfig.H │ ├── bootconfig_ast2400.C │ ├── bootconfig_ast2400.H │ ├── bootconfigif.C │ └── makefile ├── build │ └── makefile ├── extinitsvc │ ├── extinitsvc.C │ ├── extinitsvc.H │ ├── extinitsvctasks.H │ ├── makefile │ └── test │ │ └── makefile ├── initsvctesttask │ ├── makefile │ ├── tasktest2.C │ └── tasktest2.H ├── istepdispatcher │ ├── HBconfig │ ├── README.md │ ├── initsvcudistep.C │ ├── istep_mbox_msgs.H │ ├── istepdispatcher.C │ ├── istepdispatcher.H │ ├── makefile │ ├── progressSrc.C │ ├── progressSrc.H │ ├── splesscommon.C │ ├── splesscommon.H │ └── sptask.C ├── makefile ├── plugins │ ├── INITSVC_COMP_ID_Parse.C │ ├── ebmc │ │ └── b0500.py │ ├── initsvcudistep.H │ └── initsvcudparserfactory.H └── test │ ├── initservicetest.H │ └── makefile ├── intr ├── intrrp.C ├── intrrp.H ├── makefile └── test │ ├── intrtest.H │ └── makefile ├── isteps ├── HBconfig ├── bios_attr_accessors │ ├── bios_attr_parsers.C │ ├── bios_attr_setters.C │ └── makefile ├── cpuWkup │ └── makefile ├── fab_iovalid │ └── makefile ├── hbToHwsvVoltageMsg.C ├── hbToHwsvVoltageMsg.H ├── hwpThread.C ├── hwpThread.H ├── hwpThreadHelper.H ├── hwpisteperror.C ├── hwpistepud.C ├── istep06 │ ├── call_host_update_primary_tpm.C │ ├── call_host_voltage_config.C │ ├── host_discover_targets.C │ ├── host_gard.C │ ├── host_init_fsi.C │ ├── host_set_ipl_parms.C │ ├── makefile │ └── thread_activate │ │ ├── makefile │ │ └── thread_activate.C ├── istep07 │ ├── call_mss_attr_update.C │ ├── call_mss_eff_config.C │ ├── call_mss_freq.C │ ├── call_mss_volt.C │ ├── host_mss_attr_cleanup.C │ └── makefile ├── istep08 │ ├── call_host_attnlisten_proc.C │ ├── call_host_cbs_start.C │ ├── call_host_secondary_sbe_config.C │ ├── call_host_set_voltages.C │ ├── call_host_setup_sbe.C │ ├── call_proc_attr_update.C │ ├── call_proc_check_secondary_sbe_seeprom_complete.C │ ├── call_proc_chiplet_fabric_scominit.C │ ├── call_proc_eff_config_links.C │ ├── call_proc_fbc_eff_config.C │ ├── call_proc_init_ioppe.C │ ├── call_proc_io_scominit.C │ ├── call_proc_iohs_enable_ridi.C │ ├── call_proc_load_ioppe.C │ └── makefile ├── istep09 │ ├── call_fabric_dl_post_trainadv.C │ ├── call_fabric_dl_pre_trainadv.C │ ├── call_fabric_dl_setup_training.C │ ├── call_proc_fabric_iovalid.C │ ├── call_proc_fabric_link_layer.C │ ├── call_proc_fbc_eff_config_aggregate.C │ ├── call_proc_io_dccal_done.C │ ├── iterate_buses.H │ └── makefile ├── istep10 │ ├── call_host_rng_bist.C │ ├── call_host_sbe_update.C │ ├── call_host_secureboot_lockdown.C │ ├── call_proc_build_smp.C │ ├── call_proc_build_smp.H │ ├── call_proc_chiplet_scominit.C │ ├── call_proc_pau_scominit.C │ ├── call_proc_pcie_scominit.C │ ├── call_proc_scomoverride_chiplets.C │ ├── host_proc_pcie_scominit.C │ ├── host_proc_pcie_scominit.H │ ├── makefile │ ├── monitor_sbe_halt.C │ ├── monitor_sbe_halt.H │ └── sensor_based_bifurcation.C ├── istep11 │ ├── call_host_prd_hwreconfig.C │ ├── call_host_set_mem_volt.C │ ├── call_ocmb_check_for_ready.C │ ├── call_proc_ocmb_enable.C │ └── makefile ├── istep12 │ ├── call_host_attnlisten_memb.C │ ├── call_host_omi_init.C │ ├── call_mss_getecid.C │ ├── call_ocmb_omi_scominit.C │ ├── call_omi_attr_update.C │ ├── call_omi_io_run_training.C │ ├── call_omi_post_trainadv.C │ ├── call_omi_pre_trainadv.C │ ├── call_omi_setup.C │ ├── call_omi_train_check.C │ ├── call_proc_omi_scominit.C │ ├── call_update_omi_firmware.C │ └── makefile ├── istep124 │ ├── call_ody_omi_hss_bist_cleanup.C │ ├── call_ody_omi_hss_bist_init.C │ ├── call_ody_omi_hss_bist_poll.C │ ├── call_ody_omi_hss_bist_start.C │ ├── call_ody_omi_hss_config.C │ ├── call_ody_omi_hss_dccal_poll.C │ ├── call_ody_omi_hss_dccal_start.C │ ├── call_ody_omi_hss_init.C │ ├── call_ody_omi_hss_ppe_load.C │ ├── call_ody_omi_hss_ppe_start.C │ └── makefile ├── istep13 │ ├── call_mss_draminit.C │ ├── call_mss_draminit_mc.C │ ├── call_mss_scominit.C │ └── makefile ├── istep14 │ ├── call_host_enable_memory_encryption.C │ ├── call_host_mpipl_service.C │ ├── call_host_secure_rng.C │ ├── call_mss_memdiag.C │ ├── call_mss_thermal_init.C │ ├── call_proc_exit_cache_contained.C │ ├── call_proc_htm_setup.C │ ├── call_proc_load_iop_xram.C │ ├── call_proc_pcie_config.C │ ├── call_proc_setup_mmio_bars.C │ └── makefile ├── istep15 │ ├── host_build_stop_image.C │ ├── host_establish_ec_chiplet.C │ ├── host_start_stop_engine.C │ ├── makefile │ └── proc_set_homer_bar.C ├── istep16 │ ├── call_host_activate_boot_core.C │ ├── call_host_activate_secondary_cores.C │ ├── call_host_ipl_complete.C │ ├── call_mss_scrub.C │ └── makefile ├── istep18 │ ├── call_tod_init.C │ ├── call_tod_setup.C │ ├── establish_system_smp.C │ ├── establish_system_smp.H │ ├── htmgt_memthrottles.C │ ├── htmgt_memthrottles.H │ └── makefile ├── istep20 │ ├── call_host_load_payload.C │ └── makefile ├── istep21 │ ├── call_host_runtime_setup.C │ ├── call_host_start_payload.C │ ├── call_host_verify_hdat.C │ ├── call_update_ucd_flash.C │ ├── call_update_ucd_flash.H │ ├── freqAttrData.C │ ├── freqAttrData.H │ └── makefile ├── istepHelperFuncs.C ├── istepHelperFuncs.H ├── makefile ├── mem_utils.C ├── mss │ ├── HBconfig │ ├── makefile │ └── runtime │ │ └── makefile ├── nest │ ├── makefile │ ├── nestHwpHelperFuncs.C │ └── nestHwpHelperFuncs.H ├── ocmbupd │ ├── README.md │ ├── expupd.C │ ├── makefile │ ├── ocmbFwImage.C │ ├── ocmbFwImage.H │ ├── ocmbupd.mk │ ├── ocmbupd_trace.H │ ├── ody_upd_fsm.C │ ├── odyssey-code-update-notes.html │ ├── odyssey-code-update-notes.org │ ├── odyupd.C │ └── test │ │ ├── makefile │ │ ├── ocmbupdatetest.H │ │ └── test.mk ├── ocmbupd_helpers.H ├── openpower_vddr.C ├── p9_fab_iovalid │ └── makefile ├── p9_phbPerst │ └── makefile ├── pbusLinkSvc.C ├── pbusLinkSvc.H ├── platform_vddr.H ├── plugins │ ├── HWPF_COMP_ID_Parse.C │ ├── ebmc │ │ ├── b0900.py │ │ ├── hbfwPlatHwpErrParser.py │ │ └── hbfwPlatHwpErrParserFFDC.py │ ├── fapi2PlatUdParserHwp.H │ ├── hwpfUdParserFactory.H │ └── hwpistepud.H ├── pm │ ├── makefile │ ├── occAccess.C │ ├── pm.mk │ ├── pm_common.C │ ├── pm_common.H │ ├── runtime │ │ ├── makefile │ │ ├── rt_pm.C │ │ └── test │ │ │ ├── firmwareRequestTest.H │ │ │ ├── makefile │ │ │ ├── pmtestRt.H │ │ │ └── scopedHomerMapperRuntimeTest.H │ └── scopedHomerMapper.C ├── tod │ ├── HBconfig │ ├── TodAssert.H │ ├── TodControls.C │ ├── TodControls.H │ ├── TodDrawer.C │ ├── TodDrawer.H │ ├── TodHwpIntf.C │ ├── TodHwpIntf.H │ ├── TodProc.C │ ├── TodProc.H │ ├── TodSvc.C │ ├── TodSvc.H │ ├── TodSvcUtil.C │ ├── TodSvcUtil.H │ ├── TodTopologyManager.C │ ├── TodTopologyManager.H │ ├── TodTrace.H │ ├── TodUtils.C │ ├── TodUtils.H │ ├── makefile │ ├── runtime │ │ ├── makefile │ │ └── rt_todintf.C │ └── tod.mk └── ucd │ ├── HBconfig │ ├── makefile │ └── updateUcdFlash.C ├── lpc ├── lpcdd.C ├── lpcdd.H ├── lpcxscom.C ├── lpcxscom.H ├── makefile └── test │ ├── lpcddtest.H │ └── makefile ├── makefile ├── mbox ├── HBconfig ├── ipcSp.C ├── ipcSp.H ├── mailboxsp.C ├── mailboxsp.H ├── makefile ├── mbox_dma_buffer.C ├── mbox_dma_buffer.H ├── mboxdd.C ├── mboxdd.H ├── plugins │ ├── MBOX_COMP_ID_Parse.C │ ├── mboxUdParser.H │ └── mboxUdParserFactory.H └── test │ ├── makefile │ ├── mboxddtest.H │ └── mboxsptest.H ├── mctp ├── HBconfig ├── common.mk ├── err.h ├── hostboot_mctp.C ├── hostboot_mctp.H ├── makefile ├── mctp_plat_core.C ├── mctp_plat_core.H ├── mctp_trace.C ├── mctp_trace.H ├── mctprp.C ├── mctprp.H └── runtime │ ├── hbrt_mctp.C │ ├── hbrt_mctp.H │ ├── hbrtvirt.c │ ├── libmctp-hbrtvirt.h │ ├── makefile │ ├── mctprp_rt.C │ ├── mctprp_rt.H │ └── test │ ├── makefile │ ├── testMctpReceive.H │ └── testMctpSend.H ├── mdsaccess ├── makefile ├── mdsAccessTrace.C ├── mdsAccessTrace.H ├── mdsAccessUtils.C ├── mdsAccessUtils.H ├── mdsI2cScomdd.C ├── mdsI2cScomdd.H ├── mdsaccess.mk └── test │ ├── makefile │ └── mdsI2cScomTest.H ├── mmio ├── makefile ├── mmio.C ├── mmio.H ├── mmio_explorer.C ├── mmio_explorer.H ├── mmio_ocmb_common.C ├── mmio_ocmb_common.H ├── mmio_odyssey.C ├── mmio_odyssey.H ├── runtime │ ├── makefile │ ├── rt_mmio.C │ └── test │ │ ├── makefile │ │ └── rt_mmiotest.H └── test │ ├── makefile │ ├── mmiotest.H │ └── mmiotest_common.H ├── module_init.C ├── nvram ├── import │ └── nvram-format.C ├── makefile ├── nvram_interface.C └── test │ ├── makefile │ └── testnvram.H ├── parser.mk ├── pldm ├── HBconfig ├── README.md ├── base │ ├── errlud_pldm.C │ ├── errlud_pldm.H │ ├── hb_bios_attrs.C │ ├── makefile │ ├── pldm_base_init.C │ ├── pldm_fr.C │ ├── pldm_fr.H │ ├── pldm_msg_queues.C │ ├── pldm_msg_queues.H │ ├── pldm_msg_router.C │ ├── pldm_msg_timeout.C │ ├── pldm_msg_timeout.H │ ├── pldm_requester.C │ ├── pldm_requester.H │ └── pldm_shutdown.C ├── common │ ├── common.mk │ ├── pldm_request.C │ ├── pldm_trace.C │ ├── pldm_utils.C │ └── pldm_utils.H ├── extended │ ├── hb_fru.C │ ├── hb_pdrs.C │ ├── makefile │ ├── pdr_manager.C │ ├── pldm_entity_ids.C │ ├── pldm_extended_init.C │ ├── pldm_fru.C │ ├── pldm_fru_to_ipz_mapping.H │ ├── pldm_responder.C │ ├── pldm_responder.H │ ├── pldm_watchdog.C │ ├── sbe_dump.C │ └── test │ │ ├── makefile │ │ └── test_pldm_pdr.H ├── makefile ├── plugins │ └── ebmc │ │ └── b4700.py ├── requests │ ├── pldm_bios_attr_requests.C │ ├── pldm_datetime_requests.C │ ├── pldm_fileio_requests.C │ ├── pldm_fru_requests.C │ ├── pldm_pdr_requests.C │ ├── pldm_request_utils.H │ └── pldm_tid_requests.C ├── responses │ ├── pldm_dce_responder.C │ ├── pldm_discovery_control_responders.C │ ├── pldm_fru_data_responders.C │ ├── pldm_monitor_control_responders.C │ └── pldm_oem_responders.C └── runtime │ ├── makefile │ ├── pldmrp_rt.C │ └── pldmrp_rt.H ├── pnor ├── HBconfig ├── ast_mboxdd.C ├── ast_mboxdd.H ├── common │ └── ffs_hb.H ├── ecc.C ├── ffs.h ├── makefile ├── nor_micron.C ├── norflash.H ├── pnor_common.C ├── pnor_common.H ├── pnor_hiomapdd.C ├── pnor_hiomapdd.H ├── pnor_mboxdd.C ├── pnor_mboxdd.H ├── pnor_pldm_utils.C ├── pnor_pldmdd.C ├── pnor_pldmdd.H ├── pnor_sfcdd.C ├── pnor_sfcdd.H ├── pnor_utils.C ├── pnor_utils.H ├── pnoraltsync.C ├── pnorif.H ├── pnorrp.C ├── pnorrp.H ├── pnorvalid.C ├── runtime │ ├── makefile │ ├── rt_pnor.C │ ├── rt_pnor.H │ └── test │ │ ├── makefile │ │ └── testpnor_rt.H ├── sfc_ast2400.C ├── sfc_ast2400.H ├── sfc_ast2500.C ├── sfc_ast2500.H ├── sfc_ast2X00.C ├── sfc_ast2X00.H ├── sfc_fake.C ├── sfc_fake.H ├── sfc_ibm.C ├── sfc_ibm.H ├── sfcdd.C ├── sfcdd.H ├── spnorrp.C ├── spnorrp.H └── test │ ├── ecctest.H │ ├── makefile │ ├── pnorUtilsTestResources.H │ ├── pnorddtest.H │ ├── pnorrptest.H │ ├── pnorutilsTest.H │ ├── sfc_ast2400test.H │ ├── sfc_ast2500test.H │ └── sfc_ibmtest.H ├── runtime ├── common │ ├── common.mk │ └── runtime_utils.C ├── customize_attrs_for_payload.C ├── errlud_hdat.C ├── errlud_hdat.H ├── fakepayload.C ├── fakepayload.H ├── hdatservice.C ├── hdatservice.H ├── hdatstructs.H ├── makefile ├── occ │ └── test │ │ ├── occAccessTest.H │ │ └── rt_occtest.H ├── plugins │ ├── RUNTIME_COMP_ID_Parse.C │ ├── ebmc │ │ └── b1a00.py │ ├── errludP_hdat.H │ └── runtimeUdParserFactory.H ├── populate_hbruntime.C ├── preverifiedlidmgr.C └── test │ ├── hdatservicetest.H │ ├── makefile │ ├── test_checkHbResMemLimit.H │ └── testpreverifiedlidmgr.H ├── sbe ├── HBconfig ├── makefile ├── plugins │ ├── SBE_COMP_ID_Parse.C │ ├── ebmc │ │ └── b2200.py │ ├── errludP_sbe.H │ └── sbeUdParserFactory.H ├── sbe_update.C └── test │ ├── makefile │ └── sbeupdatetest.H ├── sbeio ├── common │ ├── common.mk │ ├── ody_sbe_retry_handler.C │ ├── sbe_attn.C │ ├── sbe_psudd_common.C │ └── sbe_retry_handler.C ├── errlud_sbeio.C ├── makefile ├── plugins │ ├── SBEIO_COMP_ID_Parse.C │ ├── ebmc │ │ └── b2800.py │ ├── sbeIoErrlUd.H │ ├── sbeIoFfdcType.H │ ├── sbeIoUdParserFactory.H │ └── sbeffdctypecommon.H ├── runtime │ ├── makefile │ ├── rt_sbe_psudd.C │ ├── rt_sbeio.C │ ├── rt_sbescom.C │ ├── sbeio_attr_override.C │ ├── sbeio_vital_attn.C │ ├── sbeio_vpd_override.C │ └── test │ │ ├── makefile │ │ ├── sbeioAttrOverrideTests.H │ │ ├── sbeioVpdOverrideTests.H │ │ ├── sbeiotestRt.H │ │ └── sbemsg-utils.sh ├── sbe_attributeAccess.C ├── sbe_codeUpdate.C ├── sbe_continueMpipl.C ├── sbe_coreStateControl.C ├── sbe_exitCacheContained.C ├── sbe_ffdc_package_parser.C ├── sbe_ffdc_parser.C ├── sbe_fifo_buffer.C ├── sbe_fifo_buffer.H ├── sbe_fifodd.C ├── sbe_fifodd.H ├── sbe_flashCheck.C ├── sbe_getCapabilities.C ├── sbe_getCodeLevels.C ├── sbe_getCodeLevels.H ├── sbe_getSBEFFDC.C ├── sbe_getScratchData.C ├── sbe_halt.C ├── sbe_iplControl.C ├── sbe_memRegionMgr.C ├── sbe_memRegionMgr.H ├── sbe_ody_hw_dump.C ├── sbe_psuGetHwReg.C ├── sbe_psuQuiesce.C ├── sbe_psuReadSeeprom.C ├── sbe_psuSendCoreConfig.C ├── sbe_psuSendMemConfig.C ├── sbe_psuSyncFabTopoIdTable.C ├── sbe_psuTPMExtendMode.C ├── sbe_psudd.C ├── sbe_scomAccess.C ├── sbe_scomAccessdd.C ├── sbe_secureHwp.C ├── sbe_securityListBinDump.C ├── sbe_setFFDCAddr.C ├── sbe_stashKeyAddr.C ├── sbe_systemConfig.C ├── sbe_telemetry.C ├── sbe_testFfdc.C ├── sbe_utils.C └── test │ ├── makefile │ ├── sbe_common_tests.mk │ ├── sbe_ffdc_chipop_test.H │ ├── sbe_ffdc_package_parser_test.H │ ├── sbe_ffdctest.H │ ├── sbe_fifo_buffer_test.H │ ├── sbe_getsbeffdctest.H │ ├── sbe_memregiontest.H │ ├── sbe_ody_retry_handler.H │ ├── sbe_psuSendCoreConfigTest.H │ ├── sbe_psuSendMemConfigTest.H │ ├── sbe_psucommandstest.H │ ├── sbe_retry_handler_test.H │ └── sbe_test_support.H ├── scom ├── DmiScomWorkaround.C ├── DmiScomWorkaround.H ├── errlud_pib.C ├── handleSpecialWakeup.C ├── handleSpecialWakeup.H ├── ibscom.C ├── ibscom_retry.C ├── ibscom_retry.H ├── makefile ├── plugins │ ├── SCOM_COMP_ID_Parse.C │ ├── ebmc │ │ └── b0300.py │ ├── errludP_scom.H │ └── scomUdParserFactory.H ├── postopchecks.C ├── postopchecks.H ├── preopchecks.C ├── runtime │ ├── makefile │ ├── rt_scom.C │ └── test │ │ ├── makefile │ │ └── testscom_rt.H ├── scom.C ├── scom.H ├── scom.mk ├── scomtrans.C ├── scomtrans.H └── test │ ├── DmiScomWorkaround_for_test.H │ ├── DmiScomWorkaround_test.H │ ├── ibscom_retry_test.H │ ├── makefile │ ├── postopchecks_test.H │ ├── retryWorkaroundTestData.C │ ├── retryWorkaroundTestData.H │ └── scomtest.H ├── secureboot ├── HBconfig ├── README.md ├── base │ ├── README.md │ ├── header.C │ ├── makefile │ ├── purge.H │ ├── securerommgr.C │ ├── securerommgr.H │ ├── service.C │ ├── settings.C │ └── test │ │ ├── makefile │ │ └── securerommgrtest.H ├── common │ ├── README.md │ ├── common.mk │ ├── containerheader.C │ ├── errlud_secure.C │ ├── errlud_secure.H │ ├── plugins │ │ ├── SECURE_COMP_ID_Parse.C │ │ ├── ebmc │ │ │ └── b1e00.py │ │ ├── errludP_secure.H │ │ └── secureUdParserFactory.H │ ├── securetrace.C │ └── securetrace.H ├── ext │ ├── README.md │ ├── key_clear.C │ ├── makefile │ ├── ody_secureboot.C │ ├── phys_presence.C │ ├── service_ext.C │ └── test │ │ ├── makefile │ │ └── seepromSecurityTest.H ├── makefile ├── node_comm │ ├── README.md │ ├── makefile │ ├── node_comm.C │ ├── node_comm.H │ ├── node_comm_dd.C │ ├── node_comm_dd.H │ ├── node_comm_exchange.C │ ├── node_comm_exchange_helper.C │ ├── node_comm_exchange_helper.H │ ├── node_comm_test.C │ ├── node_comm_transfer.C │ └── node_comm_transfer.H ├── runtime │ ├── README.md │ ├── makefile │ ├── rt_secureboot.C │ └── test │ │ ├── makefile │ │ └── testsecureboot_rt.H ├── smf │ ├── README.md │ ├── makefile │ ├── smf.C │ ├── smf_utils.C │ └── test │ │ ├── makefile │ │ ├── testmemutils.H │ │ ├── testsmf.H │ │ └── testsmfutils.H └── trusted │ ├── README.md │ ├── base │ ├── trustedbootMsg.C │ ├── trustedbootMsg.H │ └── trustedboot_base.C │ ├── makefile │ ├── test │ ├── makefile │ ├── tpmLogMgrTest.H │ └── trustedbootTest.H │ ├── tpmLogMgr.C │ ├── tpmLogMgr.H │ ├── trustedTypes.C │ ├── trustedTypes.H │ ├── trustedboot.C │ ├── trustedboot.H │ ├── trustedbootCmds.C │ ├── trustedbootCmds.H │ ├── trustedbootUtils.C │ └── trustedbootUtils.H ├── sio ├── HBconfig ├── makefile ├── siodd.C ├── siodd.H └── test │ ├── makefile │ └── sioddtest.H ├── spi ├── HBconfig ├── README.md ├── errlud_spi.C ├── errlud_spi.H ├── makefile ├── plugins │ ├── SPI_COMP_ID_Parse.C │ ├── ebmc │ │ └── b4500.py │ ├── errludP_spi.H │ └── spiUdParserFactory.H ├── spi.C ├── spidd.C ├── spidd.H ├── test │ ├── makefile │ ├── serial │ │ ├── makefile │ │ └── testspiserial.H │ ├── testspi.H │ └── tpmddtest.H ├── tpmdd.C └── tpmdd.H ├── targeting ├── HBconfig ├── attrPlatOverride.C ├── attrTextOverride.C ├── attrcheck_errl.C ├── attroverride │ ├── README.attr_override │ ├── attrTextToBinaryBlob.C │ ├── attrTextToBinaryBlob.H │ ├── attr_override_examples.txt │ └── makefile ├── attrrp.C ├── attrrp_common.C ├── attrsync.C ├── common │ ├── BusFruCallouts.pm │ ├── DCMUtils.C │ ├── Targets.pm │ ├── associationmanager.C │ ├── attributeTank.C │ ├── common.mk │ ├── entitypath.C │ ├── filter_out_unwanted_attributes.pl │ ├── genHDATstructures.pl │ ├── genNodeMrwXml.pl │ ├── genStandaloneMrw.sh │ ├── hbrt_target.C │ ├── iterators │ │ ├── rangefilter.C │ │ ├── rawtargetiterator.C │ │ └── targetiterator.C │ ├── mfgFlagAccessors.C │ ├── predicates │ │ ├── predicatebase.C │ │ ├── predicatectm.C │ │ ├── predicatehwas.C │ │ ├── predicatehwaschanged.C │ │ ├── predicateisfunctional.C │ │ ├── predicateisnonfunctional.C │ │ └── predicatepostfixexpr.C │ ├── processMrw.pl │ ├── target.C │ ├── targetservice.C │ ├── targutilbase.C │ ├── test │ │ ├── common.mk │ │ ├── testMfgFlag.H │ │ ├── testcommontargeting.H │ │ └── unittest.H │ ├── util.C │ ├── utilFilter.C │ └── xmltohb │ │ ├── attribute_types.xml │ │ ├── attribute_types_cfm.xml │ │ ├── attribute_types_hb.xml │ │ ├── attribute_types_openpower.xml │ │ ├── attribute_types_oppowervm.xml │ │ ├── bios.xsd │ │ ├── bios_metadata_petitboot.xslt │ │ ├── common.mk │ │ ├── create_ekb_targattr.pl │ │ ├── deleteme_temp_hb_attrs.xml │ │ ├── ekb_customized_attrs.xml │ │ ├── ekb_customized_attrs_fsp.xml │ │ ├── ekb_customized_attrs_op.xml │ │ ├── handle_duplicate.pl │ │ ├── handle_fapi_attr_mapping.pl │ │ ├── mergexml.sh │ │ ├── remove_hb_fapi_maps.pl │ │ ├── simics_BONITO.mrw.xml │ │ ├── simics_BONITO.system.xml │ │ ├── simics_P10.mrw.xml │ │ ├── simics_P10.system.xml │ │ ├── target_types.xml │ │ ├── target_types_cfm.xml │ │ ├── target_types_empty.xml │ │ ├── target_types_hb.xml │ │ ├── target_types_openpower.xml │ │ ├── target_types_oppowervm.xml │ │ ├── tempdefaults.xml │ │ ├── vbu_P10.mrw.xml │ │ ├── vbu_P10.system.xml │ │ └── xmltohb.pl ├── hostboot_common.mk ├── makefile ├── namedtarget.C ├── runtime │ ├── attrPlatOverride_rt.C │ ├── attrrp_rt.C │ ├── makefile │ ├── rt_startup.C │ ├── rt_targeting.C │ ├── start_rt.C │ └── test │ │ ├── makefile │ │ └── testtargeting.H ├── targetservicestart.C ├── targplatutil.C ├── test │ ├── makefile │ ├── testAttribute.H │ ├── testTargPlatUtil.H │ ├── testTargetUtil.H │ ├── testattrrules.H │ ├── testattrsync.H │ ├── testattrtank.H │ ├── testtargeting.H │ └── unittestadapter.H ├── translateTarget.C └── xmltohb │ ├── fapi_utils.pl │ ├── makefile │ ├── updatetargetxml.pl │ └── updatetempsxml.pl ├── testcore ├── kernel │ ├── makefile │ ├── misctest.H │ ├── msgtest.H │ ├── ptmgrtest.H │ ├── segmenttest.H │ ├── taskwaittest.H │ ├── vmmbasetest.H │ └── vmmpagetest.H ├── lib │ ├── decay.H │ ├── enable_if.H │ ├── fptest.H │ ├── integral.H │ ├── is_integral.H │ ├── is_ptr.H │ ├── is_same.H │ ├── makefile │ ├── remove_all_extents.H │ ├── runtime │ │ └── makefile │ ├── shared_ptr.H │ ├── stl_functional.H │ ├── stltest.H │ ├── string.H │ ├── synctest.H │ ├── time.H │ ├── tls.H │ └── unique_ptr.H ├── makefile ├── memoize │ ├── makefile │ └── test_memoize.H ├── pir │ ├── makefile │ └── test_pirformat.H ├── rtloader │ ├── loader.H │ └── makefile └── tlsmod │ ├── makefile │ ├── nontrivial.C │ ├── nontrivial.H │ ├── nontrivialctor.H │ ├── tlsfile.C │ ├── tlsfile.H │ ├── tlsmod.C │ ├── tlsmod.H │ ├── trivial.C │ ├── trivial.H │ └── trivialctor.H ├── trace ├── HBconfig ├── assert.C ├── buffer.C ├── buffer.H ├── bufferpage.C ├── bufferpage.H ├── compdesc.C ├── compdesc.H ├── daemon │ ├── complist.C │ ├── daemon.C │ ├── daemon.H │ └── makefile ├── daemonif.C ├── daemonif.H ├── debug.C ├── debug.H ├── entry.H ├── interface.C ├── makefile ├── runtime │ ├── makefile │ ├── rt_buffer.C │ ├── rt_daemon.C │ ├── rt_rsvdtracebuffer.C │ ├── rt_rsvdtracebuffer.H │ ├── rt_rsvdtracebufservice.C │ ├── rt_rsvdtracebufservice.H │ ├── rt_service.C │ └── test │ │ ├── makefile │ │ └── testrsvdtracebuf.H ├── service.C ├── service.H └── test │ ├── makefile │ ├── testbuffer.H │ └── testcomplist.H ├── util ├── makefile ├── runtime │ ├── makefile │ ├── rt_cmds.C │ ├── rt_fwnotify.C │ ├── rt_fwreq_helper.C │ ├── rt_utiltime.C │ ├── test │ │ ├── makefile │ │ ├── testlidmgr_rt.H │ │ └── testruncommand.H │ ├── util_rt.C │ └── utillidmgr_rt.C ├── test │ ├── makefile │ ├── testlidmgr.H │ ├── testmclmgr.H │ ├── testtcemgr.H │ └── threadpool.H ├── threadpool.C ├── utilbase.C ├── utilbase.H ├── utilcommonattr.C ├── utilfile.C ├── utillidmgr.C ├── utillidmgrdefs.H ├── utillidpnor.C ├── utilmbox_scratch.C ├── utilmclmgr.C ├── utilmem.C ├── utilrsvdmem.C ├── utilsemipersist.C ├── utilstream.C ├── utiltcemgr.C ├── utiltcemgr.H ├── utiltime.C ├── utiltime_common.C └── utilxipimage.C ├── vfs ├── makefile ├── test │ ├── makefile │ └── vfstest.H ├── vfsrp.C └── vfsrp.H ├── vpd ├── HBconfig ├── dimmPres.C ├── errlud_vpd.C ├── errlud_vpd.H ├── ipvpd.C ├── ipvpd.H ├── makefile ├── mvpd.C ├── mvpd.H ├── ocmb_spd.C ├── ocmb_spd.H ├── plugins │ ├── VPD_COMP_ID_Parse.C │ ├── ebmc │ │ └── b1d00.py │ ├── errludP_vpd.H │ └── vpdUdParserFactory.H ├── pvpd.C ├── pvpd.H ├── rtvpd_load.C ├── runtime │ ├── makefile │ ├── rt_vpd.C │ └── test │ │ └── makefile ├── spd.C ├── spd.H ├── spdDDR3.H ├── spdDDR4.H ├── spdDDR4_DDIMM.H ├── spdDDR5_DDIMM.H ├── spd_planar.H ├── test │ ├── dimmPrestest.H │ ├── makefile │ ├── mvpdtest.H │ ├── spdtest.H │ └── vpdEccApiTest.H ├── vpd.C ├── vpd.H ├── vpd.mk ├── vpd_common.C └── vpd_ecc_api_algorithms.C ├── xscom ├── makefile ├── piberror.C ├── runtime │ ├── makefile │ ├── rt_xscom.C │ └── test │ │ ├── makefile │ │ └── testxscom_rt.H ├── test │ ├── makefile │ └── xscomtest.H ├── xscom.C └── xscom.H └── xz ├── LICENSE_PROLOG ├── makefile ├── xz_crc32.c ├── xz_dec_lzma2.c └── xz_dec_stream.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_PROLOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/LICENSE_PROLOG -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/README.md -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/config.mk -------------------------------------------------------------------------------- /env.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/env.bash -------------------------------------------------------------------------------- /example_customrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/example_customrc -------------------------------------------------------------------------------- /hb: -------------------------------------------------------------------------------- 1 | src/build/tools/hb -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/makefile -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- 1 | *.C 2 | gcov/* 3 | modules/* 4 | -------------------------------------------------------------------------------- /obj/beam/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /obj/cscope/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /obj/doxygen/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /obj/genfiles/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /procedure.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/procedure.rules.mk -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/setup.py -------------------------------------------------------------------------------- /src/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/HBconfig -------------------------------------------------------------------------------- /src/bootloader.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader.ld -------------------------------------------------------------------------------- /src/bootloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/README.md -------------------------------------------------------------------------------- /src/bootloader/bl_builtins.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_builtins.C -------------------------------------------------------------------------------- /src/bootloader/bl_console.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_console.C -------------------------------------------------------------------------------- /src/bootloader/bl_pnorAccess.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_pnorAccess.C -------------------------------------------------------------------------------- /src/bootloader/bl_pnor_ecc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_pnor_ecc.C -------------------------------------------------------------------------------- /src/bootloader/bl_pnor_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_pnor_utils.C -------------------------------------------------------------------------------- /src/bootloader/bl_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_start.S -------------------------------------------------------------------------------- /src/bootloader/bl_terminate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_terminate.C -------------------------------------------------------------------------------- /src/bootloader/bl_tpm_spidd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_tpm_spidd.C -------------------------------------------------------------------------------- /src/bootloader/bl_xscom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bl_xscom.C -------------------------------------------------------------------------------- /src/bootloader/bootloader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/bootloader.C -------------------------------------------------------------------------------- /src/bootloader/fapi2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/fapi2/makefile -------------------------------------------------------------------------------- /src/bootloader/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/bootloader/makefile -------------------------------------------------------------------------------- /src/build/beam/beam_parms.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/beam/beam_parms.tcl -------------------------------------------------------------------------------- /src/build/beam/core/assert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/beam/core/assert.C -------------------------------------------------------------------------------- /src/build/beam/core/pagemgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/beam/core/pagemgr.C -------------------------------------------------------------------------------- /src/build/beam/i2c/i2c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/beam/i2c/i2c.C -------------------------------------------------------------------------------- /src/build/buildpnor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/buildpnor/makefile -------------------------------------------------------------------------------- /src/build/buildpnor/parse-pnor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/buildpnor/parse-pnor -------------------------------------------------------------------------------- /src/build/citest/autocitest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/autocitest -------------------------------------------------------------------------------- /src/build/citest/build-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/build-script -------------------------------------------------------------------------------- /src/build/citest/etc/bbuild: -------------------------------------------------------------------------------- 1 | /esw/fips1060/Builds/b0206a2406.1060 2 | -------------------------------------------------------------------------------- /src/build/citest/etc/cfmtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/cfmtest -------------------------------------------------------------------------------- /src/build/citest/etc/cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/cppcheck -------------------------------------------------------------------------------- /src/build/citest/etc/devtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/devtree -------------------------------------------------------------------------------- /src/build/citest/etc/ffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/ffs -------------------------------------------------------------------------------- /src/build/citest/etc/hcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/hcode -------------------------------------------------------------------------------- /src/build/citest/etc/hdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/hdat -------------------------------------------------------------------------------- /src/build/citest/etc/occ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/occ -------------------------------------------------------------------------------- /src/build/citest/etc/sbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/sbe -------------------------------------------------------------------------------- /src/build/citest/etc/simbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/simbuild -------------------------------------------------------------------------------- /src/build/citest/etc/wof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/etc/wof -------------------------------------------------------------------------------- /src/build/citest/setup-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/citest/setup-env -------------------------------------------------------------------------------- /src/build/configs/op_sim.config: -------------------------------------------------------------------------------- 1 | set CONSOLE 2 | set BMC_AST2400 3 | -------------------------------------------------------------------------------- /src/build/configs/vpo.cnfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/configs/vpo.cnfg -------------------------------------------------------------------------------- /src/build/debug/Hostboot/Ps.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/Hostboot/Ps.pm -------------------------------------------------------------------------------- /src/build/debug/decodeRc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/decodeRc -------------------------------------------------------------------------------- /src/build/debug/eSEL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/eSEL.pl -------------------------------------------------------------------------------- /src/build/debug/ffdcExpander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/ffdcExpander -------------------------------------------------------------------------------- /src/build/debug/hb-dump-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/hb-dump-debug -------------------------------------------------------------------------------- /src/build/debug/hb-memdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/hb-memdump.sh -------------------------------------------------------------------------------- /src/build/debug/memalloc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/memalloc.pl -------------------------------------------------------------------------------- /src/build/debug/xlate_stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/debug/xlate_stack -------------------------------------------------------------------------------- /src/build/doxygen/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/doxygen/doxygen.conf -------------------------------------------------------------------------------- /src/build/ifcompiler/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | lex.yy.c 3 | y.tab.* 4 | -------------------------------------------------------------------------------- /src/build/linker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/linker/.gitignore -------------------------------------------------------------------------------- /src/build/linker/genlist.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/linker/genlist.C -------------------------------------------------------------------------------- /src/build/linker/gensyms.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/linker/gensyms.C -------------------------------------------------------------------------------- /src/build/linker/linker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/linker/linker.C -------------------------------------------------------------------------------- /src/build/linker/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/linker/makefile -------------------------------------------------------------------------------- /src/build/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/makefile -------------------------------------------------------------------------------- /src/build/mkrules/beam.env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/beam.env.mk -------------------------------------------------------------------------------- /src/build/mkrules/beam.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/beam.rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/cc.env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/cc.env.mk -------------------------------------------------------------------------------- /src/build/mkrules/cc.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/cc.rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/cflags.env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/cflags.env.mk -------------------------------------------------------------------------------- /src/build/mkrules/dce.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/dce.mk -------------------------------------------------------------------------------- /src/build/mkrules/dep.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/dep.rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/dist.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/dist.rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/env.mk -------------------------------------------------------------------------------- /src/build/mkrules/gcov.env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/gcov.env.mk -------------------------------------------------------------------------------- /src/build/mkrules/gcov.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/gcov.rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/hbfw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/hbfw/makefile -------------------------------------------------------------------------------- /src/build/mkrules/passes.env.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/passes.env.mk -------------------------------------------------------------------------------- /src/build/mkrules/passes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/passes.mk -------------------------------------------------------------------------------- /src/build/mkrules/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/rules.mk -------------------------------------------------------------------------------- /src/build/mkrules/util.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/mkrules/util.mk -------------------------------------------------------------------------------- /src/build/simics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/simics/README.md -------------------------------------------------------------------------------- /src/build/simics/ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/simics/ecc.py -------------------------------------------------------------------------------- /src/build/simics/eecache-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/simics/eecache-gen.py -------------------------------------------------------------------------------- /src/build/simics/hb-simdebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/simics/hb-simdebug.py -------------------------------------------------------------------------------- /src/build/simics/startup.simics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/simics/startup.simics -------------------------------------------------------------------------------- /src/build/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/README.md -------------------------------------------------------------------------------- /src/build/tools/addCopyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/addCopyright -------------------------------------------------------------------------------- /src/build/tools/addimgid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/addimgid -------------------------------------------------------------------------------- /src/build/tools/auto_scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/auto_scp -------------------------------------------------------------------------------- /src/build/tools/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/build -------------------------------------------------------------------------------- /src/build/tools/build-cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/build-cppcheck -------------------------------------------------------------------------------- /src/build/tools/build-ffs-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/build-ffs-tools -------------------------------------------------------------------------------- /src/build/tools/builddriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/builddriver -------------------------------------------------------------------------------- /src/build/tools/calc-attribute-size-info/.gitignore: -------------------------------------------------------------------------------- 1 | calc-size-info 2 | -------------------------------------------------------------------------------- /src/build/tools/cflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/cflags.sh -------------------------------------------------------------------------------- /src/build/tools/conv_rel_branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/conv_rel_branch -------------------------------------------------------------------------------- /src/build/tools/dce/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/.gitignore -------------------------------------------------------------------------------- /src/build/tools/dce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/README.md -------------------------------------------------------------------------------- /src/build/tools/dce/dce-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/dce-compile -------------------------------------------------------------------------------- /src/build/tools/dce/dce.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/dce.ld -------------------------------------------------------------------------------- /src/build/tools/dce/preplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/preplib.py -------------------------------------------------------------------------------- /src/build/tools/dce/start.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/dce/start.C -------------------------------------------------------------------------------- /src/build/tools/duplibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/duplibs.sh -------------------------------------------------------------------------------- /src/build/tools/ebmc/patch-bmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/ebmc/patch-bmc -------------------------------------------------------------------------------- /src/build/tools/ebmc/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/ebmc/symbols.py -------------------------------------------------------------------------------- /src/build/tools/editimgid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/editimgid -------------------------------------------------------------------------------- /src/build/tools/extern/.gitignore: -------------------------------------------------------------------------------- 1 | ibm-fw-proprietary -------------------------------------------------------------------------------- /src/build/tools/extern/ibm-fw-proprietary/LIBECC_COMMIT_HASH: -------------------------------------------------------------------------------- 1 | e036aedbe8d22948989a539e69f99daf0a0668d2 2 | -------------------------------------------------------------------------------- /src/build/tools/genIStep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/genIStep.pl -------------------------------------------------------------------------------- /src/build/tools/gerrit-hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/gerrit-hostname -------------------------------------------------------------------------------- /src/build/tools/gerrit_fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/gerrit_fetch -------------------------------------------------------------------------------- /src/build/tools/hb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/hb -------------------------------------------------------------------------------- /src/build/tools/hbDistribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/hbDistribute -------------------------------------------------------------------------------- /src/build/tools/hbGenConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/hbGenConfig -------------------------------------------------------------------------------- /src/build/tools/hwp_id.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/hwp_id.pl -------------------------------------------------------------------------------- /src/build/tools/listdeps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/listdeps.pl -------------------------------------------------------------------------------- /src/build/tools/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/post-commit -------------------------------------------------------------------------------- /src/build/tools/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/pre-commit -------------------------------------------------------------------------------- /src/build/tools/pre-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/pre-receive -------------------------------------------------------------------------------- /src/build/tools/syncparsers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/syncparsers.sh -------------------------------------------------------------------------------- /src/build/tools/test_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/test_text.txt -------------------------------------------------------------------------------- /src/build/tools/verify-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/tools/verify-commit -------------------------------------------------------------------------------- /src/build/trace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/trace/.gitignore -------------------------------------------------------------------------------- /src/build/trace/extracthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/trace/extracthash.c -------------------------------------------------------------------------------- /src/build/trace/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/trace/makefile -------------------------------------------------------------------------------- /src/build/trace/tracehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/trace/tracehash.c -------------------------------------------------------------------------------- /src/build/trace/tracehash_hb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/trace/tracehash_hb.pl -------------------------------------------------------------------------------- /src/build/vpo/Setup_Env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/Setup_Env -------------------------------------------------------------------------------- /src/build/vpo/VBU_Cacheline.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/VBU_Cacheline.pm -------------------------------------------------------------------------------- /src/build/vpo/do_sprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/do_sprint -------------------------------------------------------------------------------- /src/build/vpo/hb-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/hb-dump -------------------------------------------------------------------------------- /src/build/vpo/hb-istep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/hb-istep -------------------------------------------------------------------------------- /src/build/vpo/hb-virtdebug.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/hb-virtdebug.pl -------------------------------------------------------------------------------- /src/build/vpo/vpo.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/build/vpo/vpo.config -------------------------------------------------------------------------------- /src/import/hwpf/fapi2/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/algorithm -------------------------------------------------------------------------------- /src/include/arch/magic.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/arch/magic.H -------------------------------------------------------------------------------- /src/include/arch/memorymap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/arch/memorymap.H -------------------------------------------------------------------------------- /src/include/arch/pirformat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/arch/pirformat.H -------------------------------------------------------------------------------- /src/include/arch/ppc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/arch/ppc.H -------------------------------------------------------------------------------- /src/include/arch/pvrformat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/arch/pvrformat.H -------------------------------------------------------------------------------- /src/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/array -------------------------------------------------------------------------------- /src/include/asm/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/asm/byteorder.h -------------------------------------------------------------------------------- /src/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/assert.h -------------------------------------------------------------------------------- /src/include/bootloader/target.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/bootloader/target.H -------------------------------------------------------------------------------- /src/include/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/builtins.h -------------------------------------------------------------------------------- /src/include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cassert -------------------------------------------------------------------------------- /src/include/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cstdarg -------------------------------------------------------------------------------- /src/include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cstddef -------------------------------------------------------------------------------- /src/include/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cstdint -------------------------------------------------------------------------------- /src/include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cstdlib -------------------------------------------------------------------------------- /src/include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/cstring -------------------------------------------------------------------------------- /src/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/ctype.h -------------------------------------------------------------------------------- /src/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/endian.h -------------------------------------------------------------------------------- /src/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/errno.h -------------------------------------------------------------------------------- /src/include/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/functional -------------------------------------------------------------------------------- /src/include/initializer_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/initializer_list -------------------------------------------------------------------------------- /src/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/inttypes.h -------------------------------------------------------------------------------- /src/include/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/iterator -------------------------------------------------------------------------------- /src/include/kernel/barrier.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/barrier.H -------------------------------------------------------------------------------- /src/include/kernel/block.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/block.H -------------------------------------------------------------------------------- /src/include/kernel/console.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/console.H -------------------------------------------------------------------------------- /src/include/kernel/cpu.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/cpu.H -------------------------------------------------------------------------------- /src/include/kernel/cpuid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/cpuid.H -------------------------------------------------------------------------------- /src/include/kernel/cpumgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/cpumgr.H -------------------------------------------------------------------------------- /src/include/kernel/deferred.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/deferred.H -------------------------------------------------------------------------------- /src/include/kernel/doorbell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/doorbell.H -------------------------------------------------------------------------------- /src/include/kernel/futexmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/futexmgr.H -------------------------------------------------------------------------------- /src/include/kernel/heapmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/heapmgr.H -------------------------------------------------------------------------------- /src/include/kernel/idebug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/idebug.H -------------------------------------------------------------------------------- /src/include/kernel/ipc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/ipc.H -------------------------------------------------------------------------------- /src/include/kernel/machchk.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/machchk.H -------------------------------------------------------------------------------- /src/include/kernel/memstate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/memstate.H -------------------------------------------------------------------------------- /src/include/kernel/misc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/misc.H -------------------------------------------------------------------------------- /src/include/kernel/msg.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/msg.H -------------------------------------------------------------------------------- /src/include/kernel/msghandler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/msghandler.H -------------------------------------------------------------------------------- /src/include/kernel/pagemgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/pagemgr.H -------------------------------------------------------------------------------- /src/include/kernel/ppcconsts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/ppcconsts.S -------------------------------------------------------------------------------- /src/include/kernel/ptmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/ptmgr.H -------------------------------------------------------------------------------- /src/include/kernel/scheduler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/scheduler.H -------------------------------------------------------------------------------- /src/include/kernel/segment.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/segment.H -------------------------------------------------------------------------------- /src/include/kernel/segmentmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/segmentmgr.H -------------------------------------------------------------------------------- /src/include/kernel/spinlock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/spinlock.H -------------------------------------------------------------------------------- /src/include/kernel/spte.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/spte.H -------------------------------------------------------------------------------- /src/include/kernel/syscalls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/syscalls.H -------------------------------------------------------------------------------- /src/include/kernel/task.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/task.H -------------------------------------------------------------------------------- /src/include/kernel/taskmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/taskmgr.H -------------------------------------------------------------------------------- /src/include/kernel/terminate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/terminate.H -------------------------------------------------------------------------------- /src/include/kernel/timemgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/timemgr.H -------------------------------------------------------------------------------- /src/include/kernel/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/types.h -------------------------------------------------------------------------------- /src/include/kernel/vmmmgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/vmmmgr.H -------------------------------------------------------------------------------- /src/include/kernel/workitem.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/kernel/workitem.H -------------------------------------------------------------------------------- /src/include/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/limits -------------------------------------------------------------------------------- /src/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/limits.h -------------------------------------------------------------------------------- /src/include/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/list -------------------------------------------------------------------------------- /src/include/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/map -------------------------------------------------------------------------------- /src/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/math.h -------------------------------------------------------------------------------- /src/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/memory -------------------------------------------------------------------------------- /src/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/new -------------------------------------------------------------------------------- /src/include/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/runtime/README.md -------------------------------------------------------------------------------- /src/include/runtime/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/runtime/interface.h -------------------------------------------------------------------------------- /src/include/securerom/ROM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/securerom/ROM.H -------------------------------------------------------------------------------- /src/include/securerom/sha512.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/securerom/sha512.H -------------------------------------------------------------------------------- /src/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stdarg.h -------------------------------------------------------------------------------- /src/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stdbool.h -------------------------------------------------------------------------------- /src/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stddef.h -------------------------------------------------------------------------------- /src/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stdint.h -------------------------------------------------------------------------------- /src/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stdio.h -------------------------------------------------------------------------------- /src/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/stdlib.h -------------------------------------------------------------------------------- /src/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/string.h -------------------------------------------------------------------------------- /src/include/string_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/string_ext.h -------------------------------------------------------------------------------- /src/include/sys/internode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/internode.h -------------------------------------------------------------------------------- /src/include/sys/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/misc.h -------------------------------------------------------------------------------- /src/include/sys/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/mm.h -------------------------------------------------------------------------------- /src/include/sys/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/mmio.h -------------------------------------------------------------------------------- /src/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/msg.h -------------------------------------------------------------------------------- /src/include/sys/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/sync.h -------------------------------------------------------------------------------- /src/include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/syscall.h -------------------------------------------------------------------------------- /src/include/sys/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/task.h -------------------------------------------------------------------------------- /src/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/time.h -------------------------------------------------------------------------------- /src/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/types.h -------------------------------------------------------------------------------- /src/include/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/sys/vfs.h -------------------------------------------------------------------------------- /src/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/time.h -------------------------------------------------------------------------------- /src/include/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/tuple -------------------------------------------------------------------------------- /src/include/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/type_traits -------------------------------------------------------------------------------- /src/include/usr/conversions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/conversions.H -------------------------------------------------------------------------------- /src/include/usr/debugpointers.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/debugpointers.H -------------------------------------------------------------------------------- /src/include/usr/dump/dumpif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/dump/dumpif.H -------------------------------------------------------------------------------- /src/include/usr/errl/errled.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errled.H -------------------------------------------------------------------------------- /src/include/usr/errl/errleh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errleh.H -------------------------------------------------------------------------------- /src/include/usr/errl/errli2c.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errli2c.H -------------------------------------------------------------------------------- /src/include/usr/errl/errlmt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errlmt.H -------------------------------------------------------------------------------- /src/include/usr/errl/errlprvt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errlprvt.H -------------------------------------------------------------------------------- /src/include/usr/errl/errlsctn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errlsctn.H -------------------------------------------------------------------------------- /src/include/usr/errl/errlsrc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errlsrc.H -------------------------------------------------------------------------------- /src/include/usr/errl/errlud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errlud.H -------------------------------------------------------------------------------- /src/include/usr/errl/errluh.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/errl/errluh.H -------------------------------------------------------------------------------- /src/include/usr/fapi2/target.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/fapi2/target.H -------------------------------------------------------------------------------- /src/include/usr/fsi/fsiif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/fsi/fsiif.H -------------------------------------------------------------------------------- /src/include/usr/gcov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/gcov.h -------------------------------------------------------------------------------- /src/include/usr/gpio/gpioif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/gpio/gpioif.H -------------------------------------------------------------------------------- /src/include/usr/hbotcompid.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/hbotcompid.H -------------------------------------------------------------------------------- /src/include/usr/hdat/hdat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/hdat/hdat.H -------------------------------------------------------------------------------- /src/include/usr/hdat/hdatnaca.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/hdat/hdatnaca.H -------------------------------------------------------------------------------- /src/include/usr/htmgt/htmgt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/htmgt/htmgt.H -------------------------------------------------------------------------------- /src/include/usr/hwas/hwasPlat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/hwas/hwasPlat.H -------------------------------------------------------------------------------- /src/include/usr/i2c/i2c.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/i2c/i2c.H -------------------------------------------------------------------------------- /src/include/usr/i2c/i2cif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/i2c/i2cif.H -------------------------------------------------------------------------------- /src/include/usr/lpc/lpc_const.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/lpc/lpc_const.H -------------------------------------------------------------------------------- /src/include/usr/lpc/lpcif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/lpc/lpcif.H -------------------------------------------------------------------------------- /src/include/usr/mbox/mboxif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/mbox/mboxif.H -------------------------------------------------------------------------------- /src/include/usr/mctp/mctpif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/mctp/mctpif.H -------------------------------------------------------------------------------- /src/include/usr/mmio/mmio.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/mmio/mmio.H -------------------------------------------------------------------------------- /src/include/usr/pldm/pldmif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/pldm/pldmif.H -------------------------------------------------------------------------------- /src/include/usr/pnor/ecc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/pnor/ecc.H -------------------------------------------------------------------------------- /src/include/usr/pnor/pnorif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/pnor/pnorif.H -------------------------------------------------------------------------------- /src/include/usr/sbe/sbeif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/sbe/sbeif.H -------------------------------------------------------------------------------- /src/include/usr/sbeio/sbeioif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/sbeio/sbeioif.H -------------------------------------------------------------------------------- /src/include/usr/scan/scanif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/scan/scanif.H -------------------------------------------------------------------------------- /src/include/usr/scom/scomif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/scom/scomif.H -------------------------------------------------------------------------------- /src/include/usr/scom/wakeup.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/scom/wakeup.H -------------------------------------------------------------------------------- /src/include/usr/sio/sio.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/sio/sio.H -------------------------------------------------------------------------------- /src/include/usr/spi/spi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/spi/spi.H -------------------------------------------------------------------------------- /src/include/usr/spi/tpmddif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/spi/tpmddif.H -------------------------------------------------------------------------------- /src/include/usr/trace/trace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/trace/trace.H -------------------------------------------------------------------------------- /src/include/usr/tracinterface.H: -------------------------------------------------------------------------------- 1 | ./trace/interface.H -------------------------------------------------------------------------------- /src/include/usr/util/utilbyte.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/util/utilbyte.H -------------------------------------------------------------------------------- /src/include/usr/util/utilfile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/util/utilfile.H -------------------------------------------------------------------------------- /src/include/usr/util/utilmem.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/util/utilmem.H -------------------------------------------------------------------------------- /src/include/usr/util/utiltce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/util/utiltce.H -------------------------------------------------------------------------------- /src/include/usr/util/utiltime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/util/utiltime.H -------------------------------------------------------------------------------- /src/include/usr/vfs/vfs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vfs/vfs.H -------------------------------------------------------------------------------- /src/include/usr/vmmconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vmmconst.h -------------------------------------------------------------------------------- /src/include/usr/vpd/mvpdenums.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vpd/mvpdenums.H -------------------------------------------------------------------------------- /src/include/usr/vpd/pvpdenums.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vpd/pvpdenums.H -------------------------------------------------------------------------------- /src/include/usr/vpd/spdenums.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vpd/spdenums.H -------------------------------------------------------------------------------- /src/include/usr/vpd/vpd_if.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/vpd/vpd_if.H -------------------------------------------------------------------------------- /src/include/usr/xz/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/xz/xz.h -------------------------------------------------------------------------------- /src/include/usr/xz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/usr/xz/xz_lzma2.h -------------------------------------------------------------------------------- /src/include/util/algorithm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/algorithm.H -------------------------------------------------------------------------------- /src/include/util/align.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/align.H -------------------------------------------------------------------------------- /src/include/util/crc32.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/crc32.H -------------------------------------------------------------------------------- /src/include/util/impl/qsort.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/impl/qsort.H -------------------------------------------------------------------------------- /src/include/util/memoize.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/memoize.H -------------------------------------------------------------------------------- /src/include/util/misc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/misc.H -------------------------------------------------------------------------------- /src/include/util/random.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/random.H -------------------------------------------------------------------------------- /src/include/util/singleton.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/singleton.H -------------------------------------------------------------------------------- /src/include/util/sprintf.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/sprintf.H -------------------------------------------------------------------------------- /src/include/util/typed_msg.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/util/typed_msg.H -------------------------------------------------------------------------------- /src/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/utility -------------------------------------------------------------------------------- /src/include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/include/vector -------------------------------------------------------------------------------- /src/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel.ld -------------------------------------------------------------------------------- /src/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/README.md -------------------------------------------------------------------------------- /src/kernel/barrier.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/barrier.C -------------------------------------------------------------------------------- /src/kernel/basesegment.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/basesegment.C -------------------------------------------------------------------------------- /src/kernel/block.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/block.C -------------------------------------------------------------------------------- /src/kernel/blockmsghdlr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/blockmsghdlr.C -------------------------------------------------------------------------------- /src/kernel/bltohbdatamgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/bltohbdatamgr.C -------------------------------------------------------------------------------- /src/kernel/console.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/console.C -------------------------------------------------------------------------------- /src/kernel/cpuid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/cpuid.C -------------------------------------------------------------------------------- /src/kernel/cpumgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/cpumgr.C -------------------------------------------------------------------------------- /src/kernel/deferred.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/deferred.C -------------------------------------------------------------------------------- /src/kernel/devicesegment.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/devicesegment.C -------------------------------------------------------------------------------- /src/kernel/doorbell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/doorbell.C -------------------------------------------------------------------------------- /src/kernel/exception.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/exception.C -------------------------------------------------------------------------------- /src/kernel/forceattn_p9.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/forceattn_p9.S -------------------------------------------------------------------------------- /src/kernel/futexmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/futexmgr.C -------------------------------------------------------------------------------- /src/kernel/heapmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/heapmgr.C -------------------------------------------------------------------------------- /src/kernel/idebug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/idebug.C -------------------------------------------------------------------------------- /src/kernel/intmsghandler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/intmsghandler.C -------------------------------------------------------------------------------- /src/kernel/ipc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/ipc.C -------------------------------------------------------------------------------- /src/kernel/kernel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/kernel.C -------------------------------------------------------------------------------- /src/kernel/machchk.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/machchk.C -------------------------------------------------------------------------------- /src/kernel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/makefile -------------------------------------------------------------------------------- /src/kernel/misc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/misc.C -------------------------------------------------------------------------------- /src/kernel/msghandler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/msghandler.C -------------------------------------------------------------------------------- /src/kernel/pagemgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/pagemgr.C -------------------------------------------------------------------------------- /src/kernel/ptmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/ptmgr.C -------------------------------------------------------------------------------- /src/kernel/scheduler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/scheduler.C -------------------------------------------------------------------------------- /src/kernel/segmentmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/segmentmgr.C -------------------------------------------------------------------------------- /src/kernel/shutdown.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/shutdown.S -------------------------------------------------------------------------------- /src/kernel/softpatch_p8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/softpatch_p8.S -------------------------------------------------------------------------------- /src/kernel/spinlock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/spinlock.C -------------------------------------------------------------------------------- /src/kernel/stacksegment.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/stacksegment.C -------------------------------------------------------------------------------- /src/kernel/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/start.S -------------------------------------------------------------------------------- /src/kernel/syscall.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/syscall.C -------------------------------------------------------------------------------- /src/kernel/taskmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/taskmgr.C -------------------------------------------------------------------------------- /src/kernel/terminate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/terminate.C -------------------------------------------------------------------------------- /src/kernel/timemgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/timemgr.C -------------------------------------------------------------------------------- /src/kernel/vmmmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/vmmmgr.C -------------------------------------------------------------------------------- /src/kernel/workitem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/kernel/workitem.C -------------------------------------------------------------------------------- /src/lib/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/HBconfig -------------------------------------------------------------------------------- /src/lib/assert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/assert.C -------------------------------------------------------------------------------- /src/lib/crc32.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/crc32.C -------------------------------------------------------------------------------- /src/lib/ctype.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/ctype.C -------------------------------------------------------------------------------- /src/lib/cxxtest_data.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/cxxtest_data.C -------------------------------------------------------------------------------- /src/lib/errno.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/errno.C -------------------------------------------------------------------------------- /src/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/makefile -------------------------------------------------------------------------------- /src/lib/math.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/math.C -------------------------------------------------------------------------------- /src/lib/rand.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/rand.S -------------------------------------------------------------------------------- /src/lib/random.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/random.C -------------------------------------------------------------------------------- /src/lib/splaytree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/splaytree.C -------------------------------------------------------------------------------- /src/lib/sprintf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/sprintf.C -------------------------------------------------------------------------------- /src/lib/stdio.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/stdio.C -------------------------------------------------------------------------------- /src/lib/stdlib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/stdlib.C -------------------------------------------------------------------------------- /src/lib/string.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/string.C -------------------------------------------------------------------------------- /src/lib/string_ext.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/string_ext.C -------------------------------------------------------------------------------- /src/lib/string_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/string_utils.C -------------------------------------------------------------------------------- /src/lib/sync.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/sync.C -------------------------------------------------------------------------------- /src/lib/syscall_misc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_misc.C -------------------------------------------------------------------------------- /src/lib/syscall_mm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_mm.C -------------------------------------------------------------------------------- /src/lib/syscall_mmio.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_mmio.C -------------------------------------------------------------------------------- /src/lib/syscall_msg.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_msg.C -------------------------------------------------------------------------------- /src/lib/syscall_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_stub.S -------------------------------------------------------------------------------- /src/lib/syscall_task.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_task.C -------------------------------------------------------------------------------- /src/lib/syscall_time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/syscall_time.C -------------------------------------------------------------------------------- /src/lib/tls.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/tls.C -------------------------------------------------------------------------------- /src/lib/tlsrt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/tlsrt.C -------------------------------------------------------------------------------- /src/lib/utilmisc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/lib/utilmisc.C -------------------------------------------------------------------------------- /src/libc++/builtins.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/libc++/builtins.C -------------------------------------------------------------------------------- /src/libc++/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/libc++/makefile -------------------------------------------------------------------------------- /src/libc++/rt_builtins.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/libc++/rt_builtins.C -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/makefile -------------------------------------------------------------------------------- /src/module.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/module.ld -------------------------------------------------------------------------------- /src/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/makefile -------------------------------------------------------------------------------- /src/runtime/rt_assert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_assert.C -------------------------------------------------------------------------------- /src/runtime/rt_console.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_console.C -------------------------------------------------------------------------------- /src/runtime/rt_main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_main.C -------------------------------------------------------------------------------- /src/runtime/rt_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_start.S -------------------------------------------------------------------------------- /src/runtime/rt_stdlib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_stdlib.C -------------------------------------------------------------------------------- /src/runtime/rt_sync.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_sync.C -------------------------------------------------------------------------------- /src/runtime/rt_task.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_task.C -------------------------------------------------------------------------------- /src/runtime/rt_time.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_time.C -------------------------------------------------------------------------------- /src/runtime/rt_vfs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/runtime/rt_vfs.C -------------------------------------------------------------------------------- /src/securerom.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom.ld -------------------------------------------------------------------------------- /src/securerom/ROM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/ROM.C -------------------------------------------------------------------------------- /src/securerom/ecverify.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/ecverify.C -------------------------------------------------------------------------------- /src/securerom/hw_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/hw_utils.C -------------------------------------------------------------------------------- /src/securerom/inttypes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/inttypes.H -------------------------------------------------------------------------------- /src/securerom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/makefile -------------------------------------------------------------------------------- /src/securerom/rom_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/rom_entry.S -------------------------------------------------------------------------------- /src/securerom/secureromasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/securerom/secureromasm.S -------------------------------------------------------------------------------- /src/subtree/openbmc/libmctp/utils/mctp-test-client.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subtree/openbmc/pldm/libpldm/include/libpldm/pldm.h: -------------------------------------------------------------------------------- 1 | requester/pldm.h -------------------------------------------------------------------------------- /src/subtree/openbmc/pldm/libpldmresponder/test/files/NVRAM-IMAGE-CKSUM: -------------------------------------------------------------------------------- 1 | c`@ -------------------------------------------------------------------------------- /src/subtree/openbmc/pldm/oem/ibm/configurations/host_eid: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /src/subtree/openbmc/pldm/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sys/init/init_main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/init/init_main.C -------------------------------------------------------------------------------- /src/sys/init/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/init/makefile -------------------------------------------------------------------------------- /src/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/makefile -------------------------------------------------------------------------------- /src/sys/prof/gcov.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/prof/gcov.C -------------------------------------------------------------------------------- /src/sys/prof/idletask.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/prof/idletask.C -------------------------------------------------------------------------------- /src/sys/prof/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/prof/makefile -------------------------------------------------------------------------------- /src/sys/vfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/vfs/makefile -------------------------------------------------------------------------------- /src/sys/vfs/vfs_init.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/vfs/vfs_init.C -------------------------------------------------------------------------------- /src/sys/vfs/vfs_main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/sys/vfs/vfs_main.C -------------------------------------------------------------------------------- /src/usr/console/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/HBconfig -------------------------------------------------------------------------------- /src/usr/console/ast2400.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/ast2400.C -------------------------------------------------------------------------------- /src/usr/console/console.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/console.C -------------------------------------------------------------------------------- /src/usr/console/daemon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/daemon.C -------------------------------------------------------------------------------- /src/usr/console/daemon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/daemon.H -------------------------------------------------------------------------------- /src/usr/console/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/makefile -------------------------------------------------------------------------------- /src/usr/console/uart.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/uart.C -------------------------------------------------------------------------------- /src/usr/console/uart.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/uart.H -------------------------------------------------------------------------------- /src/usr/console/uartconfig.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/console/uartconfig.C -------------------------------------------------------------------------------- /src/usr/cxxtest/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/HBconfig -------------------------------------------------------------------------------- /src/usr/cxxtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/README.md -------------------------------------------------------------------------------- /src/usr/cxxtest/TestInject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/TestInject.C -------------------------------------------------------------------------------- /src/usr/cxxtest/TestSuite.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/TestSuite.C -------------------------------------------------------------------------------- /src/usr/cxxtest/cxxtestexec.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/cxxtestexec.C -------------------------------------------------------------------------------- /src/usr/cxxtest/cxxtestgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/cxxtestgen.pl -------------------------------------------------------------------------------- /src/usr/cxxtest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/makefile -------------------------------------------------------------------------------- /src/usr/cxxtest/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/cxxtest/test/makefile -------------------------------------------------------------------------------- /src/usr/devicefw/associator.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/associator.C -------------------------------------------------------------------------------- /src/usr/devicefw/associator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/associator.H -------------------------------------------------------------------------------- /src/usr/devicefw/devicefw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/devicefw.mk -------------------------------------------------------------------------------- /src/usr/devicefw/driverif.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/driverif.C -------------------------------------------------------------------------------- /src/usr/devicefw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/makefile -------------------------------------------------------------------------------- /src/usr/devicefw/userif.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devicefw/userif.C -------------------------------------------------------------------------------- /src/usr/devtree/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devtree/HBconfig -------------------------------------------------------------------------------- /src/usr/devtree/devtree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devtree/devtree.C -------------------------------------------------------------------------------- /src/usr/devtree/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devtree/makefile -------------------------------------------------------------------------------- /src/usr/devtree/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/devtree/test/makefile -------------------------------------------------------------------------------- /src/usr/diag/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/HBconfig -------------------------------------------------------------------------------- /src/usr/diag/attn/ipl/attn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/attn/ipl/attn.C -------------------------------------------------------------------------------- /src/usr/diag/attn/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/attn/makefile -------------------------------------------------------------------------------- /src/usr/diag/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/makefile -------------------------------------------------------------------------------- /src/usr/diag/mdia/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/makefile -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdia.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdia.C -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiafwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiafwd.H -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiamba.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiamba.C -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiasm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiasm.C -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiasm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiasm.H -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiatrace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiatrace.C -------------------------------------------------------------------------------- /src/usr/diag/mdia/mdiatrace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/mdia/mdiatrace.H -------------------------------------------------------------------------------- /src/usr/diag/prdf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/prdf/makefile -------------------------------------------------------------------------------- /src/usr/diag/prdf/prdfMain.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/diag/prdf/prdfMain.C -------------------------------------------------------------------------------- /src/usr/dump/dumpCollect.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/dump/dumpCollect.C -------------------------------------------------------------------------------- /src/usr/dump/dumpCollect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/dump/dumpCollect.H -------------------------------------------------------------------------------- /src/usr/dump/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/dump/makefile -------------------------------------------------------------------------------- /src/usr/dump/test/dumptest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/dump/test/dumptest.H -------------------------------------------------------------------------------- /src/usr/dump/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/dump/test/makefile -------------------------------------------------------------------------------- /src/usr/ecc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/ecc/makefile -------------------------------------------------------------------------------- /src/usr/ecc/vpd_ecc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/ecc/vpd_ecc_api.c -------------------------------------------------------------------------------- /src/usr/eeprom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/README -------------------------------------------------------------------------------- /src/usr/eeprom/eeprom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/eeprom.mk -------------------------------------------------------------------------------- /src/usr/eeprom/eepromCache.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/eepromCache.C -------------------------------------------------------------------------------- /src/usr/eeprom/eepromCache.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/eepromCache.H -------------------------------------------------------------------------------- /src/usr/eeprom/eeprom_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/eeprom_utils.C -------------------------------------------------------------------------------- /src/usr/eeprom/eepromdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/eepromdd.C -------------------------------------------------------------------------------- /src/usr/eeprom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/makefile -------------------------------------------------------------------------------- /src/usr/eeprom/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/eeprom/test/makefile -------------------------------------------------------------------------------- /src/usr/errl/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/HBconfig -------------------------------------------------------------------------------- /src/usr/errl/backtrace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/backtrace.C -------------------------------------------------------------------------------- /src/usr/errl/errl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errl.mk -------------------------------------------------------------------------------- /src/usr/errl/errled.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errled.C -------------------------------------------------------------------------------- /src/usr/errl/errlentry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlentry.C -------------------------------------------------------------------------------- /src/usr/errl/errli2c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errli2c.C -------------------------------------------------------------------------------- /src/usr/errl/errlmanager.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlmanager.C -------------------------------------------------------------------------------- /src/usr/errl/errlprvt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlprvt.C -------------------------------------------------------------------------------- /src/usr/errl/errlsctn.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlsctn.C -------------------------------------------------------------------------------- /src/usr/errl/errlsctn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlsctn.H -------------------------------------------------------------------------------- /src/usr/errl/errlsctnhdr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlsctnhdr.C -------------------------------------------------------------------------------- /src/usr/errl/errlsrc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlsrc.C -------------------------------------------------------------------------------- /src/usr/errl/errlud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errlud.C -------------------------------------------------------------------------------- /src/usr/errl/errludcallout.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errludcallout.C -------------------------------------------------------------------------------- /src/usr/errl/errludprintk.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errludprintk.C -------------------------------------------------------------------------------- /src/usr/errl/errludstate.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errludstate.C -------------------------------------------------------------------------------- /src/usr/errl/errludstring.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errludstring.C -------------------------------------------------------------------------------- /src/usr/errl/errluh.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/errluh.C -------------------------------------------------------------------------------- /src/usr/errl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/makefile -------------------------------------------------------------------------------- /src/usr/errl/parser/.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | -------------------------------------------------------------------------------- /src/usr/errl/parser/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/parser/makefile -------------------------------------------------------------------------------- /src/usr/errl/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/runtime/makefile -------------------------------------------------------------------------------- /src/usr/errl/runtime/rt_vfs.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/runtime/rt_vfs.C -------------------------------------------------------------------------------- /src/usr/errl/test/errltest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/test/errltest.H -------------------------------------------------------------------------------- /src/usr/errl/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errl/test/makefile -------------------------------------------------------------------------------- /src/usr/errldisplay/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errldisplay/HBconfig -------------------------------------------------------------------------------- /src/usr/errldisplay/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/errldisplay/makefile -------------------------------------------------------------------------------- /src/usr/expaccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/expaccess/README.md -------------------------------------------------------------------------------- /src/usr/expaccess/i2cscomdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/expaccess/i2cscomdd.C -------------------------------------------------------------------------------- /src/usr/expaccess/i2cscomdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/expaccess/i2cscomdd.H -------------------------------------------------------------------------------- /src/usr/expaccess/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/expaccess/makefile -------------------------------------------------------------------------------- /src/usr/fapi2/fapi2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/fapi2.mk -------------------------------------------------------------------------------- /src/usr/fapi2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/makefile -------------------------------------------------------------------------------- /src/usr/fapi2/plat_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/plat_utils.C -------------------------------------------------------------------------------- /src/usr/fapi2/target.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/target.C -------------------------------------------------------------------------------- /src/usr/fapi2/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/test/makefile -------------------------------------------------------------------------------- /src/usr/fapi2/test/rcTest.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/test/rcTest.C -------------------------------------------------------------------------------- /src/usr/fapi2/test/rcTest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapi2/test/rcTest.H -------------------------------------------------------------------------------- /src/usr/fapiwrap/fapiWrap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapiwrap/fapiWrap.C -------------------------------------------------------------------------------- /src/usr/fapiwrap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fapiwrap/makefile -------------------------------------------------------------------------------- /src/usr/fsi/errlud_fsi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/errlud_fsi.C -------------------------------------------------------------------------------- /src/usr/fsi/errlud_fsi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/errlud_fsi.H -------------------------------------------------------------------------------- /src/usr/fsi/fsi_common.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/fsi_common.C -------------------------------------------------------------------------------- /src/usr/fsi/fsi_common.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/fsi_common.H -------------------------------------------------------------------------------- /src/usr/fsi/fsidd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/fsidd.C -------------------------------------------------------------------------------- /src/usr/fsi/fsidd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/fsidd.H -------------------------------------------------------------------------------- /src/usr/fsi/fsipres.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/fsipres.C -------------------------------------------------------------------------------- /src/usr/fsi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/makefile -------------------------------------------------------------------------------- /src/usr/fsi/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/runtime/makefile -------------------------------------------------------------------------------- /src/usr/fsi/runtime/rt_fsi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/runtime/rt_fsi.C -------------------------------------------------------------------------------- /src/usr/fsi/runtime/rt_fsi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/runtime/rt_fsi.H -------------------------------------------------------------------------------- /src/usr/fsi/test/fsiddtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/test/fsiddtest.H -------------------------------------------------------------------------------- /src/usr/fsi/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsi/test/makefile -------------------------------------------------------------------------------- /src/usr/fsiscom/fsiscom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsiscom/fsiscom.C -------------------------------------------------------------------------------- /src/usr/fsiscom/fsiscom.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsiscom/fsiscom.H -------------------------------------------------------------------------------- /src/usr/fsiscom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsiscom/makefile -------------------------------------------------------------------------------- /src/usr/fsiscom/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/fsiscom/test/makefile -------------------------------------------------------------------------------- /src/usr/gpio/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/gpio/HBconfig -------------------------------------------------------------------------------- /src/usr/gpio/gpio_pca9551.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/gpio/gpio_pca9551.C -------------------------------------------------------------------------------- /src/usr/gpio/gpiodd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/gpio/gpiodd.C -------------------------------------------------------------------------------- /src/usr/gpio/gpiodd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/gpio/gpiodd.H -------------------------------------------------------------------------------- /src/usr/gpio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/gpio/makefile -------------------------------------------------------------------------------- /src/usr/hdat/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/HBconfig -------------------------------------------------------------------------------- /src/usr/hdat/genHdatBin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/genHdatBin.pl -------------------------------------------------------------------------------- /src/usr/hdat/hdatbldda.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatbldda.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatbldda.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatbldda.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatcommonutil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatcommonutil.C -------------------------------------------------------------------------------- /src/usr/hdat/hdathbrt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdathbrt.C -------------------------------------------------------------------------------- /src/usr/hdat/hdathbrt.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdathbrt.H -------------------------------------------------------------------------------- /src/usr/hdat/hdathdif.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdathdif.C -------------------------------------------------------------------------------- /src/usr/hdat/hdathdif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdathdif.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatiohub.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatiohub.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatiohub.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatiohub.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatiplparms.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatiplparms.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatiplparms.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatiplparms.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatmsarea.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatmsarea.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatmsarea.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatmsarea.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatmsvpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatmsvpd.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatmsvpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatmsvpd.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatnaca.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatnaca.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatnodedata.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatnodedata.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatnodedata.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatnodedata.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatpcia.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatpcia.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatpcia.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatpcia.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatpcrd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatpcrd.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatpcrd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatpcrd.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatram.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatram.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatram.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatram.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatspiraH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspiraH.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatspiraH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspiraH.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatspiraS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspiraS.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatspiraS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspiraS.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatspsubsys.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspsubsys.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatspsubsys.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatspsubsys.H -------------------------------------------------------------------------------- /src/usr/hdat/hdattpmdata.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdattpmdata.C -------------------------------------------------------------------------------- /src/usr/hdat/hdattpmdata.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdattpmdata.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatutil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatutil.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatutil.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatutil.H -------------------------------------------------------------------------------- /src/usr/hdat/hdatvpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatvpd.C -------------------------------------------------------------------------------- /src/usr/hdat/hdatvpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/hdatvpd.H -------------------------------------------------------------------------------- /src/usr/hdat/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hdat/makefile -------------------------------------------------------------------------------- /src/usr/htmgt/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/HBconfig -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_cfgdata.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_cfgdata.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_cfgdata.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_cfgdata.H -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_common.mk -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_occ.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_occ.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_occ.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_occ.H -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_occcmd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_occcmd.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_occcmd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_occcmd.H -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_poll.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_poll.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_poll.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_poll.H -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_utility.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_utility.C -------------------------------------------------------------------------------- /src/usr/htmgt/htmgt_utility.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/htmgt_utility.H -------------------------------------------------------------------------------- /src/usr/htmgt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/makefile -------------------------------------------------------------------------------- /src/usr/htmgt/occError.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/occError.C -------------------------------------------------------------------------------- /src/usr/htmgt/occError.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/occError.H -------------------------------------------------------------------------------- /src/usr/htmgt/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/htmgt/test/makefile -------------------------------------------------------------------------------- /src/usr/hwas/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/HBconfig -------------------------------------------------------------------------------- /src/usr/hwas/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/common/README.md -------------------------------------------------------------------------------- /src/usr/hwas/common/hwas.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/common/hwas.C -------------------------------------------------------------------------------- /src/usr/hwas/common/pgLogic.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/common/pgLogic.C -------------------------------------------------------------------------------- /src/usr/hwas/errlud_pgData.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/errlud_pgData.C -------------------------------------------------------------------------------- /src/usr/hwas/errlud_pgData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/errlud_pgData.H -------------------------------------------------------------------------------- /src/usr/hwas/hwasPlat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/hwasPlat.C -------------------------------------------------------------------------------- /src/usr/hwas/hwasPlatError.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/hwasPlatError.C -------------------------------------------------------------------------------- /src/usr/hwas/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/makefile -------------------------------------------------------------------------------- /src/usr/hwas/test/hwas1test.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/test/hwas1test.H -------------------------------------------------------------------------------- /src/usr/hwas/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/test/makefile -------------------------------------------------------------------------------- /src/usr/hwas/testHWP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwas/testHWP.C -------------------------------------------------------------------------------- /src/usr/hwplibs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwplibs/makefile -------------------------------------------------------------------------------- /src/usr/hwplibs/nest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/hwplibs/nest/makefile -------------------------------------------------------------------------------- /src/usr/i2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/README.md -------------------------------------------------------------------------------- /src/usr/i2c/errlud_i2c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/errlud_i2c.C -------------------------------------------------------------------------------- /src/usr/i2c/errlud_i2c.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/errlud_i2c.H -------------------------------------------------------------------------------- /src/usr/i2c/fapi_i2c_dd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/fapi_i2c_dd.C -------------------------------------------------------------------------------- /src/usr/i2c/fapi_i2c_dd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/fapi_i2c_dd.H -------------------------------------------------------------------------------- /src/usr/i2c/i2c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/i2c.C -------------------------------------------------------------------------------- /src/usr/i2c/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/i2c.mk -------------------------------------------------------------------------------- /src/usr/i2c/i2cTargetPres.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/i2cTargetPres.C -------------------------------------------------------------------------------- /src/usr/i2c/i2c_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/i2c_utils.C -------------------------------------------------------------------------------- /src/usr/i2c/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/makefile -------------------------------------------------------------------------------- /src/usr/i2c/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/runtime/makefile -------------------------------------------------------------------------------- /src/usr/i2c/runtime/rt_i2c.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/runtime/rt_i2c.C -------------------------------------------------------------------------------- /src/usr/i2c/test/i2ctest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/test/i2ctest.H -------------------------------------------------------------------------------- /src/usr/i2c/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2c/test/makefile -------------------------------------------------------------------------------- /src/usr/i2cr/i2cr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2cr/i2cr.C -------------------------------------------------------------------------------- /src/usr/i2cr/i2cr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2cr/i2cr.H -------------------------------------------------------------------------------- /src/usr/i2cr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2cr/makefile -------------------------------------------------------------------------------- /src/usr/i2cr/test/i2crtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2cr/test/i2crtest.H -------------------------------------------------------------------------------- /src/usr/i2cr/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/i2cr/test/makefile -------------------------------------------------------------------------------- /src/usr/imageprocs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/imageprocs/makefile -------------------------------------------------------------------------------- /src/usr/initservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/initservice/README.md -------------------------------------------------------------------------------- /src/usr/initservice/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/initservice/makefile -------------------------------------------------------------------------------- /src/usr/intr/intrrp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/intr/intrrp.C -------------------------------------------------------------------------------- /src/usr/intr/intrrp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/intr/intrrp.H -------------------------------------------------------------------------------- /src/usr/intr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/intr/makefile -------------------------------------------------------------------------------- /src/usr/intr/test/intrtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/intr/test/intrtest.H -------------------------------------------------------------------------------- /src/usr/intr/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/intr/test/makefile -------------------------------------------------------------------------------- /src/usr/isteps/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/HBconfig -------------------------------------------------------------------------------- /src/usr/isteps/hwpThread.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/hwpThread.C -------------------------------------------------------------------------------- /src/usr/isteps/hwpThread.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/hwpThread.H -------------------------------------------------------------------------------- /src/usr/isteps/hwpistepud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/hwpistepud.C -------------------------------------------------------------------------------- /src/usr/isteps/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/makefile -------------------------------------------------------------------------------- /src/usr/isteps/mem_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/mem_utils.C -------------------------------------------------------------------------------- /src/usr/isteps/mss/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/mss/HBconfig -------------------------------------------------------------------------------- /src/usr/isteps/mss/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/mss/makefile -------------------------------------------------------------------------------- /src/usr/isteps/nest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/nest/makefile -------------------------------------------------------------------------------- /src/usr/isteps/pbusLinkSvc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pbusLinkSvc.C -------------------------------------------------------------------------------- /src/usr/isteps/pbusLinkSvc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pbusLinkSvc.H -------------------------------------------------------------------------------- /src/usr/isteps/pm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pm/makefile -------------------------------------------------------------------------------- /src/usr/isteps/pm/occAccess.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pm/occAccess.C -------------------------------------------------------------------------------- /src/usr/isteps/pm/pm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pm/pm.mk -------------------------------------------------------------------------------- /src/usr/isteps/pm/pm_common.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pm/pm_common.C -------------------------------------------------------------------------------- /src/usr/isteps/pm/pm_common.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/pm/pm_common.H -------------------------------------------------------------------------------- /src/usr/isteps/tod/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/HBconfig -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodProc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodProc.C -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodProc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodProc.H -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodSvc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodSvc.C -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodSvc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodSvc.H -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodTrace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodTrace.H -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodUtils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodUtils.C -------------------------------------------------------------------------------- /src/usr/isteps/tod/TodUtils.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/TodUtils.H -------------------------------------------------------------------------------- /src/usr/isteps/tod/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/makefile -------------------------------------------------------------------------------- /src/usr/isteps/tod/tod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/tod/tod.mk -------------------------------------------------------------------------------- /src/usr/isteps/ucd/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/ucd/HBconfig -------------------------------------------------------------------------------- /src/usr/isteps/ucd/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/isteps/ucd/makefile -------------------------------------------------------------------------------- /src/usr/lpc/lpcdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/lpcdd.C -------------------------------------------------------------------------------- /src/usr/lpc/lpcdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/lpcdd.H -------------------------------------------------------------------------------- /src/usr/lpc/lpcxscom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/lpcxscom.C -------------------------------------------------------------------------------- /src/usr/lpc/lpcxscom.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/lpcxscom.H -------------------------------------------------------------------------------- /src/usr/lpc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/makefile -------------------------------------------------------------------------------- /src/usr/lpc/test/lpcddtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/test/lpcddtest.H -------------------------------------------------------------------------------- /src/usr/lpc/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/lpc/test/makefile -------------------------------------------------------------------------------- /src/usr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/makefile -------------------------------------------------------------------------------- /src/usr/mbox/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/HBconfig -------------------------------------------------------------------------------- /src/usr/mbox/ipcSp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/ipcSp.C -------------------------------------------------------------------------------- /src/usr/mbox/ipcSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/ipcSp.H -------------------------------------------------------------------------------- /src/usr/mbox/mailboxsp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/mailboxsp.C -------------------------------------------------------------------------------- /src/usr/mbox/mailboxsp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/mailboxsp.H -------------------------------------------------------------------------------- /src/usr/mbox/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/makefile -------------------------------------------------------------------------------- /src/usr/mbox/mboxdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/mboxdd.C -------------------------------------------------------------------------------- /src/usr/mbox/mboxdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/mboxdd.H -------------------------------------------------------------------------------- /src/usr/mbox/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mbox/test/makefile -------------------------------------------------------------------------------- /src/usr/mctp/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/HBconfig -------------------------------------------------------------------------------- /src/usr/mctp/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/common.mk -------------------------------------------------------------------------------- /src/usr/mctp/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/err.h -------------------------------------------------------------------------------- /src/usr/mctp/hostboot_mctp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/hostboot_mctp.C -------------------------------------------------------------------------------- /src/usr/mctp/hostboot_mctp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/hostboot_mctp.H -------------------------------------------------------------------------------- /src/usr/mctp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/makefile -------------------------------------------------------------------------------- /src/usr/mctp/mctp_plat_core.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctp_plat_core.C -------------------------------------------------------------------------------- /src/usr/mctp/mctp_plat_core.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctp_plat_core.H -------------------------------------------------------------------------------- /src/usr/mctp/mctp_trace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctp_trace.C -------------------------------------------------------------------------------- /src/usr/mctp/mctp_trace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctp_trace.H -------------------------------------------------------------------------------- /src/usr/mctp/mctprp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctprp.C -------------------------------------------------------------------------------- /src/usr/mctp/mctprp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/mctprp.H -------------------------------------------------------------------------------- /src/usr/mctp/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mctp/runtime/makefile -------------------------------------------------------------------------------- /src/usr/mdsaccess/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mdsaccess/makefile -------------------------------------------------------------------------------- /src/usr/mmio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/makefile -------------------------------------------------------------------------------- /src/usr/mmio/mmio.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio.C -------------------------------------------------------------------------------- /src/usr/mmio/mmio.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio.H -------------------------------------------------------------------------------- /src/usr/mmio/mmio_explorer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio_explorer.C -------------------------------------------------------------------------------- /src/usr/mmio/mmio_explorer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio_explorer.H -------------------------------------------------------------------------------- /src/usr/mmio/mmio_odyssey.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio_odyssey.C -------------------------------------------------------------------------------- /src/usr/mmio/mmio_odyssey.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/mmio_odyssey.H -------------------------------------------------------------------------------- /src/usr/mmio/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/runtime/makefile -------------------------------------------------------------------------------- /src/usr/mmio/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/test/makefile -------------------------------------------------------------------------------- /src/usr/mmio/test/mmiotest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/mmio/test/mmiotest.H -------------------------------------------------------------------------------- /src/usr/module_init.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/module_init.C -------------------------------------------------------------------------------- /src/usr/nvram/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/nvram/makefile -------------------------------------------------------------------------------- /src/usr/nvram/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/nvram/test/makefile -------------------------------------------------------------------------------- /src/usr/parser.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/parser.mk -------------------------------------------------------------------------------- /src/usr/pldm/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/HBconfig -------------------------------------------------------------------------------- /src/usr/pldm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/README.md -------------------------------------------------------------------------------- /src/usr/pldm/base/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/base/makefile -------------------------------------------------------------------------------- /src/usr/pldm/base/pldm_fr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/base/pldm_fr.C -------------------------------------------------------------------------------- /src/usr/pldm/base/pldm_fr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/base/pldm_fr.H -------------------------------------------------------------------------------- /src/usr/pldm/common/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/common/common.mk -------------------------------------------------------------------------------- /src/usr/pldm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/makefile -------------------------------------------------------------------------------- /src/usr/pldm/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pldm/runtime/makefile -------------------------------------------------------------------------------- /src/usr/pnor/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/HBconfig -------------------------------------------------------------------------------- /src/usr/pnor/ast_mboxdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/ast_mboxdd.C -------------------------------------------------------------------------------- /src/usr/pnor/ast_mboxdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/ast_mboxdd.H -------------------------------------------------------------------------------- /src/usr/pnor/common/ffs_hb.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/common/ffs_hb.H -------------------------------------------------------------------------------- /src/usr/pnor/ecc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/ecc.C -------------------------------------------------------------------------------- /src/usr/pnor/ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/ffs.h -------------------------------------------------------------------------------- /src/usr/pnor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/makefile -------------------------------------------------------------------------------- /src/usr/pnor/nor_micron.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/nor_micron.C -------------------------------------------------------------------------------- /src/usr/pnor/norflash.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/norflash.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_common.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_common.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_common.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_common.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_hiomapdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_hiomapdd.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_hiomapdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_hiomapdd.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_mboxdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_mboxdd.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_mboxdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_mboxdd.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_pldmdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_pldmdd.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_pldmdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_pldmdd.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_sfcdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_sfcdd.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_sfcdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_sfcdd.H -------------------------------------------------------------------------------- /src/usr/pnor/pnor_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_utils.C -------------------------------------------------------------------------------- /src/usr/pnor/pnor_utils.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnor_utils.H -------------------------------------------------------------------------------- /src/usr/pnor/pnoraltsync.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnoraltsync.C -------------------------------------------------------------------------------- /src/usr/pnor/pnorif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnorif.H -------------------------------------------------------------------------------- /src/usr/pnor/pnorrp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnorrp.C -------------------------------------------------------------------------------- /src/usr/pnor/pnorrp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnorrp.H -------------------------------------------------------------------------------- /src/usr/pnor/pnorvalid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/pnorvalid.C -------------------------------------------------------------------------------- /src/usr/pnor/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/runtime/makefile -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2400.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2400.C -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2400.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2400.H -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2500.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2500.C -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2500.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2500.H -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2X00.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2X00.C -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ast2X00.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ast2X00.H -------------------------------------------------------------------------------- /src/usr/pnor/sfc_fake.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_fake.C -------------------------------------------------------------------------------- /src/usr/pnor/sfc_fake.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_fake.H -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ibm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ibm.C -------------------------------------------------------------------------------- /src/usr/pnor/sfc_ibm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfc_ibm.H -------------------------------------------------------------------------------- /src/usr/pnor/sfcdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfcdd.C -------------------------------------------------------------------------------- /src/usr/pnor/sfcdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/sfcdd.H -------------------------------------------------------------------------------- /src/usr/pnor/spnorrp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/spnorrp.C -------------------------------------------------------------------------------- /src/usr/pnor/spnorrp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/spnorrp.H -------------------------------------------------------------------------------- /src/usr/pnor/test/ecctest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/test/ecctest.H -------------------------------------------------------------------------------- /src/usr/pnor/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/pnor/test/makefile -------------------------------------------------------------------------------- /src/usr/runtime/errlud_hdat.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/errlud_hdat.C -------------------------------------------------------------------------------- /src/usr/runtime/errlud_hdat.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/errlud_hdat.H -------------------------------------------------------------------------------- /src/usr/runtime/fakepayload.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/fakepayload.C -------------------------------------------------------------------------------- /src/usr/runtime/fakepayload.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/fakepayload.H -------------------------------------------------------------------------------- /src/usr/runtime/hdatservice.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/hdatservice.C -------------------------------------------------------------------------------- /src/usr/runtime/hdatservice.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/hdatservice.H -------------------------------------------------------------------------------- /src/usr/runtime/hdatstructs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/hdatstructs.H -------------------------------------------------------------------------------- /src/usr/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/makefile -------------------------------------------------------------------------------- /src/usr/runtime/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/runtime/test/makefile -------------------------------------------------------------------------------- /src/usr/sbe/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbe/HBconfig -------------------------------------------------------------------------------- /src/usr/sbe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbe/makefile -------------------------------------------------------------------------------- /src/usr/sbe/sbe_update.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbe/sbe_update.C -------------------------------------------------------------------------------- /src/usr/sbe/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbe/test/makefile -------------------------------------------------------------------------------- /src/usr/sbeio/errlud_sbeio.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/errlud_sbeio.C -------------------------------------------------------------------------------- /src/usr/sbeio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/makefile -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_fifodd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_fifodd.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_fifodd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_fifodd.H -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_halt.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_halt.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_psudd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_psudd.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_secureHwp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_secureHwp.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_telemetry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_telemetry.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_testFfdc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_testFfdc.C -------------------------------------------------------------------------------- /src/usr/sbeio/sbe_utils.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/sbe_utils.C -------------------------------------------------------------------------------- /src/usr/sbeio/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sbeio/test/makefile -------------------------------------------------------------------------------- /src/usr/scom/errlud_pib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/errlud_pib.C -------------------------------------------------------------------------------- /src/usr/scom/ibscom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/ibscom.C -------------------------------------------------------------------------------- /src/usr/scom/ibscom_retry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/ibscom_retry.C -------------------------------------------------------------------------------- /src/usr/scom/ibscom_retry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/ibscom_retry.H -------------------------------------------------------------------------------- /src/usr/scom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/makefile -------------------------------------------------------------------------------- /src/usr/scom/postopchecks.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/postopchecks.C -------------------------------------------------------------------------------- /src/usr/scom/postopchecks.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/postopchecks.H -------------------------------------------------------------------------------- /src/usr/scom/preopchecks.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/preopchecks.C -------------------------------------------------------------------------------- /src/usr/scom/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/runtime/makefile -------------------------------------------------------------------------------- /src/usr/scom/scom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/scom.C -------------------------------------------------------------------------------- /src/usr/scom/scom.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/scom.H -------------------------------------------------------------------------------- /src/usr/scom/scom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/scom.mk -------------------------------------------------------------------------------- /src/usr/scom/scomtrans.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/scomtrans.C -------------------------------------------------------------------------------- /src/usr/scom/scomtrans.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/scomtrans.H -------------------------------------------------------------------------------- /src/usr/scom/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/test/makefile -------------------------------------------------------------------------------- /src/usr/scom/test/scomtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/scom/test/scomtest.H -------------------------------------------------------------------------------- /src/usr/secureboot/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/secureboot/HBconfig -------------------------------------------------------------------------------- /src/usr/secureboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/secureboot/README.md -------------------------------------------------------------------------------- /src/usr/secureboot/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/secureboot/makefile -------------------------------------------------------------------------------- /src/usr/secureboot/smf/smf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/secureboot/smf/smf.C -------------------------------------------------------------------------------- /src/usr/sio/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/HBconfig -------------------------------------------------------------------------------- /src/usr/sio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/makefile -------------------------------------------------------------------------------- /src/usr/sio/siodd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/siodd.C -------------------------------------------------------------------------------- /src/usr/sio/siodd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/siodd.H -------------------------------------------------------------------------------- /src/usr/sio/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/test/makefile -------------------------------------------------------------------------------- /src/usr/sio/test/sioddtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/sio/test/sioddtest.H -------------------------------------------------------------------------------- /src/usr/spi/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/HBconfig -------------------------------------------------------------------------------- /src/usr/spi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/README.md -------------------------------------------------------------------------------- /src/usr/spi/errlud_spi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/errlud_spi.C -------------------------------------------------------------------------------- /src/usr/spi/errlud_spi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/errlud_spi.H -------------------------------------------------------------------------------- /src/usr/spi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/makefile -------------------------------------------------------------------------------- /src/usr/spi/spi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/spi.C -------------------------------------------------------------------------------- /src/usr/spi/spidd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/spidd.C -------------------------------------------------------------------------------- /src/usr/spi/spidd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/spidd.H -------------------------------------------------------------------------------- /src/usr/spi/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/test/makefile -------------------------------------------------------------------------------- /src/usr/spi/test/testspi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/test/testspi.H -------------------------------------------------------------------------------- /src/usr/spi/test/tpmddtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/test/tpmddtest.H -------------------------------------------------------------------------------- /src/usr/spi/tpmdd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/tpmdd.C -------------------------------------------------------------------------------- /src/usr/spi/tpmdd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/spi/tpmdd.H -------------------------------------------------------------------------------- /src/usr/targeting/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/targeting/HBconfig -------------------------------------------------------------------------------- /src/usr/targeting/attrrp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/targeting/attrrp.C -------------------------------------------------------------------------------- /src/usr/targeting/attrsync.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/targeting/attrsync.C -------------------------------------------------------------------------------- /src/usr/targeting/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/targeting/makefile -------------------------------------------------------------------------------- /src/usr/testcore/lib/decay.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/decay.H -------------------------------------------------------------------------------- /src/usr/testcore/lib/fptest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/fptest.H -------------------------------------------------------------------------------- /src/usr/testcore/lib/is_ptr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/is_ptr.H -------------------------------------------------------------------------------- /src/usr/testcore/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/makefile -------------------------------------------------------------------------------- /src/usr/testcore/lib/string.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/string.H -------------------------------------------------------------------------------- /src/usr/testcore/lib/time.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/time.H -------------------------------------------------------------------------------- /src/usr/testcore/lib/tls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/lib/tls.H -------------------------------------------------------------------------------- /src/usr/testcore/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/makefile -------------------------------------------------------------------------------- /src/usr/testcore/pir/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/testcore/pir/makefile -------------------------------------------------------------------------------- /src/usr/trace/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/HBconfig -------------------------------------------------------------------------------- /src/usr/trace/assert.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/assert.C -------------------------------------------------------------------------------- /src/usr/trace/buffer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/buffer.C -------------------------------------------------------------------------------- /src/usr/trace/buffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/buffer.H -------------------------------------------------------------------------------- /src/usr/trace/bufferpage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/bufferpage.C -------------------------------------------------------------------------------- /src/usr/trace/bufferpage.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/bufferpage.H -------------------------------------------------------------------------------- /src/usr/trace/compdesc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/compdesc.C -------------------------------------------------------------------------------- /src/usr/trace/compdesc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/compdesc.H -------------------------------------------------------------------------------- /src/usr/trace/daemon/daemon.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/daemon/daemon.C -------------------------------------------------------------------------------- /src/usr/trace/daemon/daemon.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/daemon/daemon.H -------------------------------------------------------------------------------- /src/usr/trace/daemon/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/daemon/makefile -------------------------------------------------------------------------------- /src/usr/trace/daemonif.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/daemonif.C -------------------------------------------------------------------------------- /src/usr/trace/daemonif.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/daemonif.H -------------------------------------------------------------------------------- /src/usr/trace/debug.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/debug.C -------------------------------------------------------------------------------- /src/usr/trace/debug.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/debug.H -------------------------------------------------------------------------------- /src/usr/trace/entry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/entry.H -------------------------------------------------------------------------------- /src/usr/trace/interface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/interface.C -------------------------------------------------------------------------------- /src/usr/trace/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/makefile -------------------------------------------------------------------------------- /src/usr/trace/service.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/service.C -------------------------------------------------------------------------------- /src/usr/trace/service.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/service.H -------------------------------------------------------------------------------- /src/usr/trace/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/trace/test/makefile -------------------------------------------------------------------------------- /src/usr/util/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/makefile -------------------------------------------------------------------------------- /src/usr/util/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/runtime/makefile -------------------------------------------------------------------------------- /src/usr/util/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/test/makefile -------------------------------------------------------------------------------- /src/usr/util/threadpool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/threadpool.C -------------------------------------------------------------------------------- /src/usr/util/utilbase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilbase.C -------------------------------------------------------------------------------- /src/usr/util/utilbase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilbase.H -------------------------------------------------------------------------------- /src/usr/util/utilcommonattr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilcommonattr.C -------------------------------------------------------------------------------- /src/usr/util/utilfile.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilfile.C -------------------------------------------------------------------------------- /src/usr/util/utillidmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utillidmgr.C -------------------------------------------------------------------------------- /src/usr/util/utillidmgrdefs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utillidmgrdefs.H -------------------------------------------------------------------------------- /src/usr/util/utillidpnor.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utillidpnor.C -------------------------------------------------------------------------------- /src/usr/util/utilmclmgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilmclmgr.C -------------------------------------------------------------------------------- /src/usr/util/utilmem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilmem.C -------------------------------------------------------------------------------- /src/usr/util/utilrsvdmem.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilrsvdmem.C -------------------------------------------------------------------------------- /src/usr/util/utilstream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilstream.C -------------------------------------------------------------------------------- /src/usr/util/utiltcemgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utiltcemgr.C -------------------------------------------------------------------------------- /src/usr/util/utiltcemgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utiltcemgr.H -------------------------------------------------------------------------------- /src/usr/util/utiltime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utiltime.C -------------------------------------------------------------------------------- /src/usr/util/utilxipimage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/util/utilxipimage.C -------------------------------------------------------------------------------- /src/usr/vfs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vfs/makefile -------------------------------------------------------------------------------- /src/usr/vfs/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vfs/test/makefile -------------------------------------------------------------------------------- /src/usr/vfs/test/vfstest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vfs/test/vfstest.H -------------------------------------------------------------------------------- /src/usr/vfs/vfsrp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vfs/vfsrp.C -------------------------------------------------------------------------------- /src/usr/vfs/vfsrp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vfs/vfsrp.H -------------------------------------------------------------------------------- /src/usr/vpd/HBconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/HBconfig -------------------------------------------------------------------------------- /src/usr/vpd/dimmPres.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/dimmPres.C -------------------------------------------------------------------------------- /src/usr/vpd/errlud_vpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/errlud_vpd.C -------------------------------------------------------------------------------- /src/usr/vpd/errlud_vpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/errlud_vpd.H -------------------------------------------------------------------------------- /src/usr/vpd/ipvpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/ipvpd.C -------------------------------------------------------------------------------- /src/usr/vpd/ipvpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/ipvpd.H -------------------------------------------------------------------------------- /src/usr/vpd/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/makefile -------------------------------------------------------------------------------- /src/usr/vpd/mvpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/mvpd.C -------------------------------------------------------------------------------- /src/usr/vpd/mvpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/mvpd.H -------------------------------------------------------------------------------- /src/usr/vpd/ocmb_spd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/ocmb_spd.C -------------------------------------------------------------------------------- /src/usr/vpd/ocmb_spd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/ocmb_spd.H -------------------------------------------------------------------------------- /src/usr/vpd/pvpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/pvpd.C -------------------------------------------------------------------------------- /src/usr/vpd/pvpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/pvpd.H -------------------------------------------------------------------------------- /src/usr/vpd/rtvpd_load.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/rtvpd_load.C -------------------------------------------------------------------------------- /src/usr/vpd/runtime/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/runtime/makefile -------------------------------------------------------------------------------- /src/usr/vpd/runtime/rt_vpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/runtime/rt_vpd.C -------------------------------------------------------------------------------- /src/usr/vpd/spd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spd.C -------------------------------------------------------------------------------- /src/usr/vpd/spd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spd.H -------------------------------------------------------------------------------- /src/usr/vpd/spdDDR3.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spdDDR3.H -------------------------------------------------------------------------------- /src/usr/vpd/spdDDR4.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spdDDR4.H -------------------------------------------------------------------------------- /src/usr/vpd/spdDDR4_DDIMM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spdDDR4_DDIMM.H -------------------------------------------------------------------------------- /src/usr/vpd/spdDDR5_DDIMM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spdDDR5_DDIMM.H -------------------------------------------------------------------------------- /src/usr/vpd/spd_planar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/spd_planar.H -------------------------------------------------------------------------------- /src/usr/vpd/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/test/makefile -------------------------------------------------------------------------------- /src/usr/vpd/test/mvpdtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/test/mvpdtest.H -------------------------------------------------------------------------------- /src/usr/vpd/test/spdtest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/test/spdtest.H -------------------------------------------------------------------------------- /src/usr/vpd/vpd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/vpd.C -------------------------------------------------------------------------------- /src/usr/vpd/vpd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/vpd.H -------------------------------------------------------------------------------- /src/usr/vpd/vpd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/vpd.mk -------------------------------------------------------------------------------- /src/usr/vpd/vpd_common.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/vpd/vpd_common.C -------------------------------------------------------------------------------- /src/usr/xscom/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xscom/makefile -------------------------------------------------------------------------------- /src/usr/xscom/piberror.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xscom/piberror.C -------------------------------------------------------------------------------- /src/usr/xscom/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xscom/test/makefile -------------------------------------------------------------------------------- /src/usr/xscom/xscom.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xscom/xscom.C -------------------------------------------------------------------------------- /src/usr/xscom/xscom.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xscom/xscom.H -------------------------------------------------------------------------------- /src/usr/xz/LICENSE_PROLOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xz/LICENSE_PROLOG -------------------------------------------------------------------------------- /src/usr/xz/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xz/makefile -------------------------------------------------------------------------------- /src/usr/xz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xz/xz_crc32.c -------------------------------------------------------------------------------- /src/usr/xz/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xz/xz_dec_lzma2.c -------------------------------------------------------------------------------- /src/usr/xz/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/hostboot/HEAD/src/usr/xz/xz_dec_stream.c --------------------------------------------------------------------------------