├── .github ├── pull_request_template.md └── workflows │ ├── build-docs.yml │ └── docker-builds-checks.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENCE ├── Makefile ├── Makefile.main ├── Makefile.rules ├── README.md ├── asm ├── Makefile.inc ├── asm-offsets.c ├── cvc_entry.S ├── dummy_map.S ├── head.S ├── kernel-wrapper.S ├── misc.S └── real_map.S ├── ccan ├── Makefile.check ├── Makefile.inc ├── README.skiboot ├── array_size │ ├── LICENSE │ ├── _info │ ├── array_size.h │ └── test │ │ ├── compile_fail-function-param.c │ │ ├── compile_fail.c │ │ └── run.c ├── build_assert │ ├── LICENSE │ ├── _info │ ├── build_assert.h │ └── test │ │ ├── compile_fail-expr.c │ │ ├── compile_fail.c │ │ ├── compile_ok.c │ │ └── run-BUILD_ASSERT_OR_ZERO.c ├── check_type │ ├── LICENSE │ ├── _info │ ├── check_type.h │ └── test │ │ ├── compile_fail-check_type.c │ │ ├── compile_fail-check_type_unsigned.c │ │ ├── compile_fail-check_types_match.c │ │ └── run.c ├── config.h ├── container_of │ ├── LICENSE │ ├── _info │ ├── container_of.h │ └── test │ │ ├── compile_fail-bad-type.c │ │ ├── compile_fail-types.c │ │ ├── compile_fail-var-types.c │ │ └── run.c ├── endian │ ├── LICENSE │ ├── _info │ ├── endian.h │ └── test │ │ ├── compile_ok-constant.c │ │ └── run.c ├── heap │ ├── LICENSE │ ├── _info │ ├── heap.c │ ├── heap.h │ └── test │ │ └── run.c ├── list │ ├── LICENSE │ ├── _info │ ├── list.c │ ├── list.h │ └── test │ │ ├── compile_ok-constant.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── run-CCAN_LIST_DEBUG.c │ │ ├── run-check-corrupt.c │ │ ├── run-check-nonconst.c │ │ ├── run-list_del_from-assert.c │ │ ├── run-list_prev-list_next.c │ │ ├── run-prepend_list.c │ │ ├── run-single-eval.c │ │ ├── run-with-debug.c │ │ └── run.c ├── short_types │ ├── LICENSE │ ├── _info │ ├── short_types.h │ └── test │ │ ├── run-endian.c │ │ └── run.c ├── str │ ├── LICENSE │ ├── _info │ ├── debug.c │ ├── str.c │ ├── str.h │ ├── str_debug.h │ └── test │ │ ├── compile_fail-STR_MAX_CHARS.c │ │ ├── compile_fail-isalnum.c │ │ ├── compile_fail-isalpha.c │ │ ├── compile_fail-isascii.c │ │ ├── compile_fail-isblank.c │ │ ├── compile_fail-iscntrl.c │ │ ├── compile_fail-isdigit.c │ │ ├── compile_fail-islower.c │ │ ├── compile_fail-isprint.c │ │ ├── compile_fail-ispunct.c │ │ ├── compile_fail-isspace.c │ │ ├── compile_fail-isupper.c │ │ ├── compile_fail-isxdigit.c │ │ ├── compile_fail-strchr.c │ │ ├── compile_fail-strrchr.c │ │ ├── compile_fail-strstr.c │ │ ├── compile_ok-STR_MAX_CHARS-static.c │ │ ├── debug.c │ │ ├── run-STR_MAX_CHARS.c │ │ └── run.c └── tap │ └── tap.h ├── core ├── Makefile.inc ├── affinity.c ├── bitmap.c ├── buddy.c ├── chip.c ├── console-log.c ├── console.c ├── cpu.c ├── cpufeatures.c ├── device.c ├── direct-controls.c ├── errorlog.c ├── exceptions.c ├── fast-reboot.c ├── fdt.c ├── flash-firmware-versions.c ├── flash-subpartition.c ├── flash.c ├── gcov-profiling.c ├── hmi.c ├── hwprobe.c ├── i2c.c ├── init.c ├── interrupts.c ├── ipmi-opal.c ├── ipmi.c ├── lock.c ├── malloc.c ├── mce.c ├── mem_region.c ├── nvram-format.c ├── nvram.c ├── opal-dump.c ├── opal-msg.c ├── opal.c ├── pci-dt-slot.c ├── pci-opal.c ├── pci-quirk.c ├── pci-slot.c ├── pci-virt.c ├── pci.c ├── pcie-slot.c ├── pel.c ├── platform.c ├── pldm │ ├── Makefile.inc │ ├── pldm-base-requests.c │ ├── pldm-bios-requests.c │ ├── pldm-file-io-requests.c │ ├── pldm-fru-requests.c │ ├── pldm-lid-files.c │ ├── pldm-mctp.c │ ├── pldm-opal.c │ ├── pldm-platform-requests.c │ ├── pldm-requester.c │ ├── pldm-responder.c │ ├── pldm-rtc.c │ ├── pldm-watchdog.c │ └── pldm.h ├── pool.c ├── powercap.c ├── psr.c ├── relocate.c ├── rtc.c ├── sensor.c ├── stack.c ├── test │ ├── Makefile.check │ ├── dummy-cpu.h │ ├── firmware-versions-input │ │ ├── version-0 │ │ ├── version-1 │ │ ├── version-10 │ │ ├── version-11 │ │ ├── version-16 │ │ ├── version-2 │ │ ├── version-26 │ │ ├── version-27 │ │ ├── version-29 │ │ ├── version-long │ │ ├── version-nodash │ │ └── version-trunc │ ├── run-api-test.c │ ├── run-bitmap.c │ ├── run-buddy.c │ ├── run-console-log-buf-overrun.c │ ├── run-console-log-pr_fmt.c │ ├── run-console-log.c │ ├── run-cpufeatures.c │ ├── run-device.c │ ├── run-flash-firmware-versions.c │ ├── run-flash-subpartition.c │ ├── run-malloc-speed.c │ ├── run-malloc.c │ ├── run-mem_range_is_reserved.c │ ├── run-mem_region.c │ ├── run-mem_region_init.c │ ├── run-mem_region_next.c │ ├── run-mem_region_release_unused.c │ ├── run-mem_region_release_unused_noalloc.c │ ├── run-mem_region_reservations.c │ ├── run-msg.c │ ├── run-nvram-format.c │ ├── run-pci-quirk.c │ ├── run-pel.c │ ├── run-pool.c │ ├── run-time-utils.c │ ├── run-timebase.c │ ├── run-timer.c │ ├── run-trace.c │ └── stubs.c ├── time-utils.c ├── timebase.c ├── timer.c ├── trace.c ├── utils.c └── vpd.c ├── coverity-model.c ├── doc ├── DtsLexer.py ├── Makefile ├── _static │ └── .a_file_for_git_to_keep_empty_directory_around ├── bmc.rst ├── conf.py ├── console-log.rst ├── device-tree.rst ├── device-tree │ ├── ibm,cvc.rst │ ├── ibm,firmware-versions.rst │ ├── ibm,opal.rst │ ├── ibm,opal │ │ ├── diagnostics.rst │ │ ├── dump.rst │ │ ├── firmware.rst │ │ ├── flash.rst │ │ ├── led.rst │ │ ├── nvram.rst │ │ ├── oppanel.rst │ │ ├── power-mgt.rst │ │ ├── power-mgt │ │ │ ├── occ.rst │ │ │ ├── powercap.rst │ │ │ └── psr.rst │ │ ├── secvar.rst │ │ ├── sensor-groups.rst │ │ ├── sensors.rst │ │ └── sysparams.rst │ ├── ibm,powerpc-cpu-features │ │ ├── binding.rst │ │ └── design.rst │ ├── ibm,secureboot.rst │ ├── imc.rst │ ├── index.rst │ ├── memory-hierarchy.rst │ ├── nvlink.rst │ ├── nx.rst │ ├── opencapi.rst │ ├── pci.rst │ ├── reserved-memory.rst │ ├── tpm.rst │ ├── vas.rst │ └── vpd.rst ├── error-logging.rst ├── gcov.rst ├── ghpages-skeleton │ ├── .nojekyll │ └── index.html ├── imc.rst ├── index.rst ├── memory.rst ├── mpipl.rst ├── nvlink.rst ├── opal-api │ ├── index.rst │ ├── opal-cec-power-down-5.rst │ ├── opal-cec-reboot-6-116.rst │ ├── opal-check-async-completion-86.rst │ ├── opal-check-token-80.rst │ ├── opal-code-update-76-77-78.rst │ ├── opal-config-cpu-idle-state-99.rst │ ├── opal-console-read-write-1-2.rst │ ├── opal-dump-81-82-83-84-94-101-102.rst │ ├── opal-elog-71-72-73-74-75.rst │ ├── opal-flash-110-111-112.rst │ ├── opal-get-device-tree-118.rst │ ├── opal-get-epow-status-56.rst │ ├── opal-get-msg-85.rst │ ├── opal-get-msi-39-40.rst │ ├── opal-get-xive-20.rst │ ├── opal-handle-hmi-98-166.rst │ ├── opal-handle-interrupt.rst │ ├── opal-i2c-request-109.rst │ ├── opal-imc-counters.rst │ ├── opal-int-eoi-124.rst │ ├── opal-int-get-xirr-122.rst │ ├── opal-int-set-cppr-123.rst │ ├── opal-int-set-mfrr-125.rst │ ├── opal-invalid-call--1.rst │ ├── opal-ipmi-send-recv-107-108.rst │ ├── opal-led-get-set-114-115.rst │ ├── opal-lpc-read-write-67-68.rst │ ├── opal-messages.rst │ ├── opal-mpipl-173-174.rst │ ├── opal-nmmu-set-ptcr-127.rst │ ├── opal-npu2-146-147-148.rst │ ├── opal-npu2-get-set-relaxed-order-168-169.rst │ ├── opal-npu2-opencapi-159-160-161-171-172.rst │ ├── opal-nvram-read-write-7-8.rst │ ├── opal-param-89-90.rst │ ├── opal-pci-config-read-write-13-14-15-16-17-18.rst │ ├── opal-pci-eeh-freeze-clear-26.rst │ ├── opal-pci-eeh-freeze-set-97.rst │ ├── opal-pci-eeh-freeze-status-23.rst │ ├── opal-pci-err-inject-96.rst │ ├── opal-pci-get-hub-diag-data-50.rst │ ├── opal-pci-get-phb-diag-data2-64.rst │ ├── opal-pci-get-power-state-120.rst │ ├── opal-pci-get-presence-state-119.rst │ ├── opal-pci-get-set-pbcq-tunnel-bar-164-165.rst │ ├── opal-pci-map-pe-dma-window-44.rst │ ├── opal-pci-map-pe-dma-window-real-45.rst │ ├── opal-pci-map-pe-mmio-window-29.rst │ ├── opal-pci-msi-eoi-63.rst │ ├── opal-pci-next-error-60.rst │ ├── opal-pci-phb-mmio-enable-27.rst │ ├── opal-pci-poll-62.rst │ ├── opal-pci-reinit-53.rst │ ├── opal-pci-reset-49.rst │ ├── opal-pci-set-p2p-157.rst │ ├── opal-pci-set-pe-31.rst │ ├── opal-pci-set-peltv-32.rst │ ├── opal-pci-set-phb-capi-mode-93.rst │ ├── opal-pci-set-phb-mem-window-28.rst │ ├── opal-pci-set-power-state-121.rst │ ├── opal-pci-set-xive-pe-37.rst │ ├── opal-pci-tce-kill-126.rst │ ├── opal-phb-flag-set-get-179-180.rst │ ├── opal-poll-events.rst │ ├── opal-power-shift-ratio.rst │ ├── opal-powercap.rst │ ├── opal-prd-msg-113.rst │ ├── opal-query-cpu-status-42.rst │ ├── opal-quiesce-158.rst │ ├── opal-read-write-tpo-dpo-103-104-105.rst │ ├── opal-reinit-cpus-70.rst │ ├── opal-resync-timebase-79.rst │ ├── opal-rtc-read-write-3-4.rst │ ├── opal-secvar.rst │ ├── opal-sensor-group-enable-clear-163-156.rst │ ├── opal-sensor-read-88.rst │ ├── opal-set-xive-19.rst │ ├── opal-signal-system-reset-145.rst │ ├── opal-slw-set-reg-100.rst │ ├── opal-start-return-cpu-41-69.rst │ ├── opal-sync-host-reboot-87.rst │ ├── opal-test-0.rst │ ├── opal-write-oppanel-async-95.rst │ ├── opal-xscom-read-write-65-66.rst │ ├── opal_nx_coproc_init-167.rst │ ├── power9-changes.rst │ └── return-codes.rst ├── opal-spec.rst ├── overview.rst ├── pci-slot.rst ├── pci.rst ├── platforms-and-cpus.rst ├── power-management.rst ├── process │ ├── CONTRIBUTING.md │ ├── dev-release-process.rst │ ├── stable-skiboot-rules.rst │ └── versioning.rst ├── release-notes │ ├── index.rst │ ├── skiboot-4.0.rst │ ├── skiboot-4.1.1.rst │ ├── skiboot-4.1.rst │ ├── skiboot-5.0.rst │ ├── skiboot-5.1.0-beta1.rst │ ├── skiboot-5.1.0-beta2.rst │ ├── skiboot-5.1.0.rst │ ├── skiboot-5.1.1.rst │ ├── skiboot-5.1.10.rst │ ├── skiboot-5.1.11.rst │ ├── skiboot-5.1.12.rst │ ├── skiboot-5.1.13.rst │ ├── skiboot-5.1.14.rst │ ├── skiboot-5.1.15.rst │ ├── skiboot-5.1.16.rst │ ├── skiboot-5.1.17.rst │ ├── skiboot-5.1.18.rst │ ├── skiboot-5.1.19.rst │ ├── skiboot-5.1.2.rst │ ├── skiboot-5.1.20.rst │ ├── skiboot-5.1.21.rst │ ├── skiboot-5.1.3.rst │ ├── skiboot-5.1.4.rst │ ├── skiboot-5.1.5.rst │ ├── skiboot-5.1.6.rst │ ├── skiboot-5.1.7.rst │ ├── skiboot-5.1.8.rst │ ├── skiboot-5.1.9.rst │ ├── skiboot-5.10-rc1.rst │ ├── skiboot-5.10-rc2.rst │ ├── skiboot-5.10-rc3.rst │ ├── skiboot-5.10-rc4.rst │ ├── skiboot-5.10.1.rst │ ├── skiboot-5.10.2.rst │ ├── skiboot-5.10.3.rst │ ├── skiboot-5.10.4.rst │ ├── skiboot-5.10.5.rst │ ├── skiboot-5.10.6.rst │ ├── skiboot-5.10.rst │ ├── skiboot-5.11-rc1.rst │ ├── skiboot-5.11.rst │ ├── skiboot-5.2.0-rc1.rst │ ├── skiboot-5.2.0-rc2.rst │ ├── skiboot-5.2.0.rst │ ├── skiboot-5.2.1.rst │ ├── skiboot-5.2.2.rst │ ├── skiboot-5.2.3.rst │ ├── skiboot-5.2.4.rst │ ├── skiboot-5.2.5.rst │ ├── skiboot-5.3.0-rc1.rst │ ├── skiboot-5.3.0-rc2.rst │ ├── skiboot-5.3.0.rst │ ├── skiboot-5.3.1.rst │ ├── skiboot-5.3.2.rst │ ├── skiboot-5.3.3.rst │ ├── skiboot-5.3.4.rst │ ├── skiboot-5.3.5.rst │ ├── skiboot-5.3.6.rst │ ├── skiboot-5.3.7.rst │ ├── skiboot-5.4.0-rc1.rst │ ├── skiboot-5.4.0-rc2.rst │ ├── skiboot-5.4.0-rc3.rst │ ├── skiboot-5.4.0-rc4.rst │ ├── skiboot-5.4.0.rst │ ├── skiboot-5.4.1.rst │ ├── skiboot-5.4.10.rst │ ├── skiboot-5.4.11.rst │ ├── skiboot-5.4.12.rst │ ├── skiboot-5.4.2.rst │ ├── skiboot-5.4.3.rst │ ├── skiboot-5.4.4.rst │ ├── skiboot-5.4.5.rst │ ├── skiboot-5.4.6.rst │ ├── skiboot-5.4.7.rst │ ├── skiboot-5.4.8.rst │ ├── skiboot-5.4.9.rst │ ├── skiboot-5.5.0-rc1.rst │ ├── skiboot-5.5.0-rc2.rst │ ├── skiboot-5.5.0-rc3.rst │ ├── skiboot-5.5.0.rst │ ├── skiboot-5.6.0-rc1.rst │ ├── skiboot-5.6.0-rc2.rst │ ├── skiboot-5.6.0.rst │ ├── skiboot-5.7-rc1.rst │ ├── skiboot-5.7-rc2.rst │ ├── skiboot-5.7.rst │ ├── skiboot-5.8-rc1.rst │ ├── skiboot-5.8.rst │ ├── skiboot-5.9-rc1.rst │ ├── skiboot-5.9-rc2.rst │ ├── skiboot-5.9-rc3.rst │ ├── skiboot-5.9-rc4.rst │ ├── skiboot-5.9-rc5.rst │ ├── skiboot-5.9.1.rst │ ├── skiboot-5.9.2.rst │ ├── skiboot-5.9.3.rst │ ├── skiboot-5.9.4.rst │ ├── skiboot-5.9.5.rst │ ├── skiboot-5.9.6.rst │ ├── skiboot-5.9.7.rst │ ├── skiboot-5.9.8.rst │ ├── skiboot-5.9.9.rst │ ├── skiboot-5.9.rst │ ├── skiboot-6.0-rc1.rst │ ├── skiboot-6.0-rc2.rst │ ├── skiboot-6.0.1.rst │ ├── skiboot-6.0.10.rst │ ├── skiboot-6.0.11.rst │ ├── skiboot-6.0.12.rst │ ├── skiboot-6.0.13.rst │ ├── skiboot-6.0.14.rst │ ├── skiboot-6.0.15.rst │ ├── skiboot-6.0.16.rst │ ├── skiboot-6.0.17.rst │ ├── skiboot-6.0.18.rst │ ├── skiboot-6.0.19.rst │ ├── skiboot-6.0.2.rst │ ├── skiboot-6.0.20.rst │ ├── skiboot-6.0.21.rst │ ├── skiboot-6.0.22.rst │ ├── skiboot-6.0.23.rst │ ├── skiboot-6.0.24.rst │ ├── skiboot-6.0.3.rst │ ├── skiboot-6.0.4.rst │ ├── skiboot-6.0.5.rst │ ├── skiboot-6.0.6.rst │ ├── skiboot-6.0.7.rst │ ├── skiboot-6.0.8.rst │ ├── skiboot-6.0.9.rst │ ├── skiboot-6.0.rst │ ├── skiboot-6.1-rc1.rst │ ├── skiboot-6.1.rst │ ├── skiboot-6.2-rc1.rst │ ├── skiboot-6.2-rc2.rst │ ├── skiboot-6.2.1.rst │ ├── skiboot-6.2.2.rst │ ├── skiboot-6.2.3.rst │ ├── skiboot-6.2.4.rst │ ├── skiboot-6.2.rst │ ├── skiboot-6.3-rc1.rst │ ├── skiboot-6.3-rc2.rst │ ├── skiboot-6.3-rc3.rst │ ├── skiboot-6.3.1.rst │ ├── skiboot-6.3.2.rst │ ├── skiboot-6.3.3.rst │ ├── skiboot-6.3.4.rst │ ├── skiboot-6.3.5.rst │ ├── skiboot-6.3.rst │ ├── skiboot-6.4-rc1.rst │ ├── skiboot-6.4.rst │ ├── skiboot-6.5.1.rst │ ├── skiboot-6.5.2.rst │ ├── skiboot-6.5.3.rst │ ├── skiboot-6.5.4.rst │ ├── skiboot-6.5.rst │ ├── skiboot-6.6.1.rst │ ├── skiboot-6.6.2.rst │ ├── skiboot-6.6.3.rst │ ├── skiboot-6.6.4.rst │ ├── skiboot-6.6.6.rst │ ├── skiboot-6.6.rst │ ├── skiboot-6.7.1.rst │ ├── skiboot-6.7.2.rst │ ├── skiboot-6.7.3.rst │ ├── skiboot-6.7.rst │ ├── skiboot-6.8.1.rst │ ├── skiboot-6.8.rst │ ├── skiboot-7.0.rst │ └── skiboot-7.1.rst ├── requirements.txt ├── secvar │ ├── driver-api.rst │ ├── edk2.rst │ └── secboot_tpm.rst ├── stb.rst ├── vas.rst ├── xive.rst └── xscom-node-bindings.rst ├── external ├── Makefile.check ├── awan │ ├── README.md │ ├── p10_chip_2ex_smt4.dts │ └── p10_core_1ex_smt4.dts ├── boot-tests │ ├── bmc_support.sh │ ├── boot_test.sh │ ├── extract_gcov.sh │ ├── fsp_support.sh │ ├── openbmc_support.sh │ └── smc_support.sh ├── common │ ├── .gitignore │ ├── arch_flash.h │ ├── arch_flash_arm.c │ ├── arch_flash_arm_io.h │ ├── arch_flash_common.c │ ├── arch_flash_powerpc.c │ ├── arch_flash_powerpc_io.h │ ├── arch_flash_unknown.c │ ├── arch_flash_unknown_io.h │ ├── get_arch.sh │ └── rules.mk ├── devicetree │ ├── .gitignore │ ├── Makefile │ ├── p9-simics.dts │ └── p9.dts ├── ffspart │ ├── .gitignore │ ├── Makefile │ ├── config.h │ ├── ffspart.c │ ├── rules.mk │ └── test │ │ ├── files │ │ ├── 03-tiny-pnor.in │ │ ├── 03-tiny-pnor.out │ │ ├── 04-tiny-pnor2.in │ │ ├── 04-tiny-pnor2.out │ │ ├── 05-hdr-overlap.in │ │ ├── 06-small-flash.in │ │ ├── 07-big-files.in │ │ ├── 08-small-files.in │ │ ├── 10-bad-input.in │ │ ├── 11-long-name.in │ │ ├── 12-bad-numbers-base.in │ │ ├── 13-bad-numbers-size.in │ │ ├── 14-bad-input-flags.in │ │ ├── 15-overlapping-partitions.in │ │ ├── 16-create-blank.in │ │ ├── 16-create-blank.out │ │ ├── 17-toc.in │ │ ├── 17-toc.out │ │ └── 18-eraseblock-gt-first-partition.in │ │ ├── make-check-test │ │ ├── results │ │ ├── 00-usage.err │ │ ├── 00-usage.out │ │ ├── 01-param-sanity.err │ │ ├── 01-param-sanity.out │ │ ├── 01.1-param-sanity.err │ │ ├── 01.1-param-sanity.out │ │ ├── 05-hdr-overlap.err │ │ ├── 05-hdr-overlap.out │ │ ├── 06-small-flash.err │ │ ├── 06-small-flash.out │ │ ├── 07-big-files.err │ │ ├── 07-big-files.out │ │ ├── 08-small-files.err │ │ ├── 08-small-files.out │ │ ├── 10-bad-input.err │ │ ├── 10-bad-input.out │ │ ├── 11-long-name.err │ │ ├── 11-long-name.out │ │ ├── 12-bad-numbers-base.err │ │ ├── 12-bad-numbers-base.out │ │ ├── 13-bad-numbers-size.err │ │ ├── 13-bad-numbers-size.out │ │ ├── 14-bad-input-flags.err │ │ ├── 14-bad-input-flags.out │ │ ├── 15-overlapping-partitions.err │ │ └── 15-overlapping-partitions.out │ │ ├── test-ffspart │ │ └── tests │ │ ├── 00-usage │ │ ├── 01-param-sanity │ │ ├── 01.1-param-sanity │ │ ├── 03-tiny-pnor │ │ ├── 04-tiny-pnor2 │ │ ├── 05-hdr-overlap │ │ ├── 06-small-flash │ │ ├── 07-big-files │ │ ├── 08-small-files │ │ ├── 10-bad-input │ │ ├── 11-long-name │ │ ├── 12-bad-numbers-base │ │ ├── 13-bad-numbers-size │ │ ├── 14-bad-input-flags │ │ ├── 15-overlapping-partitions │ │ ├── 16-create-blank │ │ ├── 17-toc │ │ └── 18-eraseblock-gt-first-partition ├── fwts │ ├── generate-fwts-olog │ └── merge-fwts-olog ├── gard │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dist │ ├── config.h │ ├── gard.c │ ├── gard.h │ ├── opal-gard.1 │ ├── rules.mk │ ├── test │ │ ├── add_test.sh │ │ ├── files │ │ │ ├── blank.bin │ │ │ ├── data-p9.bin │ │ │ └── data1.bin │ │ ├── make-check-test │ │ ├── results │ │ │ ├── 00-list.err │ │ │ ├── 00-list.out │ │ │ ├── 01-show_1.err │ │ │ ├── 01-show_1.out │ │ │ ├── 02-usage.err │ │ │ ├── 02-usage.out │ │ │ ├── 03-show_1-p9.err │ │ │ ├── 03-show_1-p9.out │ │ │ ├── 04-create-bad-instance.err │ │ │ ├── 04-create-bad-instance.out │ │ │ ├── 05-create-bad-unit.err │ │ │ ├── 05-create-bad-unit.out │ │ │ ├── 06-create-long-path.err │ │ │ ├── 06-create-long-path.out │ │ │ ├── 07-create-slash.err │ │ │ ├── 07-create-slash.out │ │ │ ├── 08-create-duplicate.err │ │ │ ├── 08-create-duplicate.out │ │ │ ├── 09-create-last-unit.err │ │ │ ├── 09-create-last-unit.out │ │ │ ├── 10-clear-single.err │ │ │ ├── 10-clear-single.out │ │ │ ├── 11-clear-first.err │ │ │ └── 11-clear-first.out │ │ ├── test-gard │ │ └── tests │ │ │ ├── 00-list │ │ │ ├── 01-show_1 │ │ │ ├── 02-usage │ │ │ ├── 03-show_1-p9 │ │ │ ├── 04-create-bad-instance │ │ │ ├── 05-create-bad-unit │ │ │ ├── 06-create-long-path │ │ │ ├── 07-create-slash │ │ │ ├── 08-create-duplicate │ │ │ ├── 09-create-last-unit │ │ │ ├── 10-clear-single │ │ │ └── 11-clear-first │ └── units.c ├── lpc │ ├── Makefile │ └── lpc.c ├── mambo │ ├── Makefile │ ├── README.md │ ├── cvc.bin │ ├── mambo-socket-proxy.c │ ├── mambo_utils.tcl │ ├── qtrace_utils.tcl │ └── skiboot.tcl ├── memboot │ ├── Makefile │ ├── README │ └── memboot.c ├── npu │ └── run_procedure.sh ├── opal-prd │ ├── .gitignore │ ├── Makefile │ ├── config.h │ ├── hostboot-interface.h │ ├── i2c.c │ ├── i2c.h │ ├── module.c │ ├── module.h │ ├── opal-prd.8 │ ├── opal-prd.c │ ├── opal-prd.h │ ├── opal-prd.service.in │ ├── pnor.c │ ├── pnor.h │ ├── test │ │ ├── test_pnor.c │ │ └── test_pnor_ops.c │ └── thunk.S ├── pci-scripts │ ├── phberr.py │ └── ppc.py ├── pflash │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dist │ ├── TODO │ ├── build-all-arch.sh │ ├── config.h │ ├── pflash.1 │ ├── pflash.c │ ├── progress.c │ ├── progress.h │ ├── rules.mk │ └── test │ │ ├── files │ │ ├── 01-info.ffs │ │ ├── 02-erase.ffs │ │ ├── 03-erase-parts.ffs │ │ ├── 04-program-rand.ffs │ │ ├── 05-bad-numbers.ffs │ │ └── 06-miscprint.ffs │ │ ├── make-check-test │ │ ├── results │ │ ├── 00-usage.err │ │ ├── 00-usage.out │ │ ├── 01-info.err │ │ ├── 01-info.out │ │ ├── 02-erase.err │ │ ├── 02-erase.out │ │ ├── 03-erase-parts.err │ │ ├── 03-erase-parts.out │ │ ├── 04-program-rand.err │ │ ├── 04-program-rand.out │ │ ├── 05-bad-numbers.err │ │ ├── 05-bad-numbers.out │ │ ├── 06-miscprint.err │ │ └── 06-miscprint.out │ │ ├── test-pflash │ │ └── tests │ │ ├── 00-usage │ │ ├── 01-info │ │ ├── 02-erase │ │ ├── 03-erase-parts │ │ ├── 04-program-rand │ │ ├── 05-bad-numbers │ │ └── 06-miscprint ├── read_esel.sh ├── shared │ ├── Makefile │ ├── config.h │ └── rules.mk ├── test │ └── test.sh ├── trace │ ├── Makefile │ ├── dump_trace.c │ ├── trace.c │ └── trace.h └── xscom-utils │ ├── .gitignore │ ├── Makefile │ ├── adu_scoms.py │ ├── getscom.1 │ ├── getscom.c │ ├── getsram.1 │ ├── getsram.c │ ├── putscom.1 │ ├── putscom.c │ ├── sram.c │ ├── sram.h │ ├── xscom.c │ └── xscom.h ├── extract-gcov.c ├── hdata ├── Makefile.inc ├── cpu-common.c ├── fsp.c ├── hdata.h ├── hdif.c ├── hdif.h ├── hostservices.c ├── i2c.c ├── iohub.c ├── memory.c ├── naca.c ├── naca.h ├── pcia.c ├── slca.c ├── spira.c ├── spira.h ├── test │ ├── Makefile.check │ ├── dtdiff_wrap.sh │ ├── hdata_to_dt.c │ ├── op920.wsp.dts │ ├── op920.wsp.heap │ ├── p10-rainier.dts │ ├── p10-rainier.spiras │ ├── p8-840-spira.dts │ ├── p8-840-spira.spirah │ ├── p8-840-spira.spiras │ ├── p81-811.spira │ ├── p81-811.spira.dts │ ├── p81-811.spira.heap │ └── stubs.c ├── tpmrel.c ├── vpd-common.c └── vpd.c ├── hw ├── Makefile.inc ├── ast-bmc │ ├── Makefile.inc │ ├── ast-io.c │ ├── ast-mctp.c │ └── ast-sf-ctrl.c ├── bt.c ├── cache-p9.c ├── capp.c ├── centaur.c ├── chiptod.c ├── dio-p9.c ├── dts.c ├── fake-nvram.c ├── fake-rtc.c ├── fsi-master.c ├── fsp │ ├── Makefile.inc │ ├── fsp-attn.c │ ├── fsp-chiptod.c │ ├── fsp-codeupdate.c │ ├── fsp-codeupdate.h │ ├── fsp-console.c │ ├── fsp-diag.c │ ├── fsp-dpo.c │ ├── fsp-dump.c │ ├── fsp-elog-read.c │ ├── fsp-elog-write.c │ ├── fsp-epow.c │ ├── fsp-epow.h │ ├── fsp-ipmi.c │ ├── fsp-leds.c │ ├── fsp-mem-err.c │ ├── fsp-nvram.c │ ├── fsp-occ.c │ ├── fsp-op-panel.c │ ├── fsp-psi.c │ ├── fsp-rtc.c │ ├── fsp-sensor.c │ ├── fsp-surveillance.c │ ├── fsp-sysdump.c │ ├── fsp-sysparam.c │ └── fsp.c ├── homer.c ├── imc.c ├── ipmi │ ├── Makefile.inc │ ├── ipmi-attn.c │ ├── ipmi-fru.c │ ├── ipmi-info.c │ ├── ipmi-power.c │ ├── ipmi-rtc.c │ ├── ipmi-sel.c │ ├── ipmi-sensor.c │ ├── ipmi-watchdog.c │ └── test │ │ ├── Makefile.check │ │ └── run-fru.c ├── lpc-mbox.c ├── lpc-port80h.c ├── lpc-rtc.c ├── lpc-uart.c ├── lpc.c ├── npu-hw-procedures.c ├── npu-opal.c ├── npu.c ├── npu2-common.c ├── npu2-hw-procedures.c ├── npu2-opencapi.c ├── npu2.c ├── nx-842.c ├── nx-compress.c ├── nx-crypto.c ├── nx-gzip.c ├── nx-rng.c ├── nx.c ├── occ-sensor.c ├── occ.c ├── ocmb.c ├── p8-i2c.c ├── pau-hw-procedures.c ├── pau.c ├── phb3.c ├── phb4.c ├── phys-map.c ├── prd.c ├── psi.c ├── sbe-p8.c ├── sbe-p9.c ├── sbe.c ├── sfc-ctrl.c ├── slw-p8.c ├── slw.c ├── test │ ├── Makefile.check │ ├── phys-map-test.c │ └── run-port80h.c ├── vas.c ├── xive.c ├── xive2.c └── xscom.c ├── include ├── affinity.h ├── asm-utils.h ├── asm │ └── byteorder.h ├── ast.h ├── bitmap.h ├── bitutils.h ├── bt.h ├── buddy.h ├── cache-p9.h ├── capp.h ├── cec.h ├── centaur.h ├── chip.h ├── chiptod.h ├── cmpxchg.h ├── compiler.h ├── config.h ├── console.h ├── cpu.h ├── debug_descriptor.h ├── device.h ├── dio-p9.h ├── direct-controls.h ├── dts.h ├── elf-abi.h ├── elf.h ├── errorlog.h ├── fsi-master.h ├── fsp-attn.h ├── fsp-elog.h ├── fsp-leds.h ├── fsp-sysparam.h ├── fsp.h ├── hiomap.h ├── hostservices.h ├── i2c.h ├── imc.h ├── interrupts.h ├── inttypes.h ├── io.h ├── ipmi.h ├── lock.h ├── lpc-mbox.h ├── lpc.h ├── mem-map.h ├── mem_region-malloc.h ├── mem_region.h ├── npu-regs.h ├── npu.h ├── npu2-regs.h ├── npu2.h ├── nvram.h ├── nx.h ├── occ.h ├── ocmb.h ├── op-panel.h ├── opal-api.h ├── opal-dump.h ├── opal-internal.h ├── opal-msg.h ├── opal.h ├── p10_stop_api.H ├── p9_stop_api.H ├── pau-regs.h ├── pau.h ├── pci-cfg.h ├── pci-quirk.h ├── pci-slot.h ├── pci-virt.h ├── pci.h ├── pel.h ├── phb3-capp.h ├── phb3-regs.h ├── phb3.h ├── phb4-capp.h ├── phb4-regs.h ├── phb4.h ├── phys-map.h ├── platform.h ├── pldm.h ├── pool.h ├── powercap.h ├── prd-fw-msg.h ├── processor.h ├── psi.h ├── psr.h ├── ras.h ├── rtc.h ├── sbe-p8.h ├── sbe-p9.h ├── sbe.h ├── secvar.h ├── sensor.h ├── sfc-ctrl.h ├── skiboot-valgrind.h ├── skiboot.h ├── slw.h ├── spcn.h ├── stack.h ├── time-utils.h ├── timebase.h ├── timer.h ├── trace.h ├── trace_types.h ├── types.h ├── vas.h ├── vpd.h ├── xive-p9-regs.h ├── xive-regs.h ├── xive.h ├── xive2-regs.h ├── xscom-p10-regs.h ├── xscom-p8-regs.h ├── xscom-p9-regs.h └── xscom.h ├── libc ├── Makefile.inc ├── README.txt ├── ctype │ ├── Makefile.inc │ ├── isdigit.c │ ├── isprint.c │ ├── isspace.c │ ├── isxdigit.c │ ├── tolower.c │ └── toupper.c ├── include │ ├── assert.h │ ├── ctype.h │ ├── errno.h │ ├── getopt.h │ ├── limits.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── time.h │ └── unistd.h ├── stdio │ ├── Makefile.inc │ ├── fileno.c │ ├── fprintf.c │ ├── fputc.c │ ├── fputs.c │ ├── putchar.c │ ├── puts.c │ ├── setvbuf.c │ ├── snprintf.c │ ├── stdchnls.c │ ├── vfprintf.c │ └── vsnprintf.c ├── stdlib │ ├── Makefile.inc │ ├── atoi.c │ ├── atol.c │ ├── error.c │ ├── labs.c │ ├── rand.c │ ├── strtol.c │ └── strtoul.c ├── string │ ├── Makefile.inc │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memcpy_from_ci.c │ ├── memmove.c │ ├── memset.c │ ├── strcasecmp.c │ ├── strcat.c │ ├── strchr.c │ ├── strcmp.c │ ├── strcpy.c │ ├── strdup.c │ ├── strlen.c │ ├── strncasecmp.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strrchr.c │ ├── strstr.c │ └── strtok.c ├── test │ ├── .gitignore │ ├── Makefile.check │ ├── run-ctype-test.c │ ├── run-ctype.c │ ├── run-memops-test.c │ ├── run-memops.c │ ├── run-snprintf-test.c │ ├── run-snprintf.c │ ├── run-stdlib-test.c │ ├── run-stdlib.c │ └── run-time.c └── time.c ├── libfdt ├── .gitignore ├── Makefile.inc ├── Makefile.libfdt ├── README.skiboot ├── TODO ├── 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_env.h ├── libfdt_internal.h └── version.lds ├── libflash ├── Makefile.inc ├── blocklevel.c ├── blocklevel.h ├── ecc.c ├── ecc.h ├── errors.h ├── ffs.h ├── file.c ├── file.h ├── ipmi-hiomap.c ├── ipmi-hiomap.h ├── libffs.c ├── libffs.h ├── libflash-priv.h ├── libflash.c ├── libflash.h ├── mbox-flash.c ├── mbox-flash.h └── test │ ├── Makefile.check │ ├── mbox-server.c │ ├── mbox-server.h │ ├── stubs.c │ ├── stubs.h │ ├── test-blocklevel.c │ ├── test-ecc.c │ ├── test-flash.c │ ├── test-ipmi-hiomap.c │ └── test-mbox.c ├── libmctp ├── LICENSE ├── Makefile.inc ├── README.skiboot ├── alloc.c ├── astlpc.c ├── config.h ├── container_of.h ├── core.c ├── crc32.c ├── crc32.h ├── libmctp-alloc.h ├── libmctp-astlpc.h ├── libmctp-cmds.h ├── libmctp-log.h ├── libmctp-serial.h ├── libmctp.h ├── log.c ├── range.h └── serial.c ├── libpore ├── Makefile.inc ├── fapi_sbe_common.H ├── p10_cpu_reg_restore_instruction.H ├── p10_hcd_header_defs.H ├── p10_hcd_memmap_base.H ├── p10_hcd_memmap_homer.H ├── p10_hcd_memmap_occ_sram.H ├── p10_hcode_image_defines.H ├── p10_stop_api.C ├── p10_stop_api.H ├── p10_stop_data_struct.H ├── p10_stop_util.C ├── p10_stop_util.H ├── p8_delta_scan_rw.h ├── p8_image_help_base.H ├── p8_pore_api_custom.h ├── p8_pore_table_gen_api.H ├── p8_pore_table_gen_api_fixed.C ├── p8_pore_table_static_data.c ├── p9_cpu_reg_restore_instruction.H ├── p9_hcd_header_defs.H ├── p9_hcd_memmap_base.H ├── p9_stop_api.C ├── p9_stop_api.H ├── p9_stop_data_struct.H ├── p9_stop_util.C ├── p9_stop_util.H ├── pgas.h ├── pore_inline.h ├── pore_inline_assembler.c ├── sbe_xip_image.c └── sbe_xip_image.h ├── libstb ├── Makefile.inc ├── container-utils.c ├── container-utils.h ├── container.c ├── container.h ├── create-container.c ├── crypto │ ├── Makefile.inc │ ├── mbedtls-config.h │ ├── mbedtls │ │ ├── .github │ │ │ ├── issue_template.md │ │ │ └── pull_request_template.md │ │ ├── .gitignore │ │ ├── .globalrc │ │ ├── .pylintrc │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog │ │ ├── DartConfiguration.tcl │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── apache-2.0.txt │ │ ├── configs │ │ │ ├── README.txt │ │ │ ├── config-ccm-psk-tls1_2.h │ │ │ ├── config-mini-tls1_1.h │ │ │ ├── config-no-entropy.h │ │ │ ├── config-suite-b.h │ │ │ └── config-thread.h │ │ ├── doxygen │ │ │ ├── input │ │ │ │ ├── doc_encdec.h │ │ │ │ ├── doc_hashing.h │ │ │ │ ├── doc_mainpage.h │ │ │ │ ├── doc_rng.h │ │ │ │ ├── doc_ssltls.h │ │ │ │ ├── doc_tcpip.h │ │ │ │ └── doc_x509.h │ │ │ └── mbedtls.doxyfile │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── mbedtls │ │ │ │ ├── aes.h │ │ │ │ ├── aesni.h │ │ │ │ ├── arc4.h │ │ │ │ ├── aria.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1write.h │ │ │ │ ├── base64.h │ │ │ │ ├── bignum.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn_mul.h │ │ │ │ ├── camellia.h │ │ │ │ ├── ccm.h │ │ │ │ ├── certs.h │ │ │ │ ├── chacha20.h │ │ │ │ ├── chachapoly.h │ │ │ │ ├── check_config.h │ │ │ │ ├── cipher.h │ │ │ │ ├── cipher_internal.h │ │ │ │ ├── cmac.h │ │ │ │ ├── compat-1.3.h │ │ │ │ ├── config.h │ │ │ │ ├── ctr_drbg.h │ │ │ │ ├── debug.h │ │ │ │ ├── des.h │ │ │ │ ├── dhm.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecjpake.h │ │ │ │ ├── ecp.h │ │ │ │ ├── ecp_internal.h │ │ │ │ ├── entropy.h │ │ │ │ ├── entropy_poll.h │ │ │ │ ├── error.h │ │ │ │ ├── gcm.h │ │ │ │ ├── havege.h │ │ │ │ ├── hkdf.h │ │ │ │ ├── hmac_drbg.h │ │ │ │ ├── md.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── md_internal.h │ │ │ │ ├── memory_buffer_alloc.h │ │ │ │ ├── net.h │ │ │ │ ├── net_sockets.h │ │ │ │ ├── nist_kw.h │ │ │ │ ├── oid.h │ │ │ │ ├── padlock.h │ │ │ │ ├── pem.h │ │ │ │ ├── pk.h │ │ │ │ ├── pk_internal.h │ │ │ │ ├── pkcs11.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs5.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform_time.h │ │ │ │ ├── platform_util.h │ │ │ │ ├── poly1305.h │ │ │ │ ├── ripemd160.h │ │ │ │ ├── rsa.h │ │ │ │ ├── rsa_internal.h │ │ │ │ ├── sha1.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sha512.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl_cache.h │ │ │ │ ├── ssl_ciphersuites.h │ │ │ │ ├── ssl_cookie.h │ │ │ │ ├── ssl_internal.h │ │ │ │ ├── ssl_ticket.h │ │ │ │ ├── threading.h │ │ │ │ ├── timing.h │ │ │ │ ├── version.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_crl.h │ │ │ │ ├── x509_crt.h │ │ │ │ ├── x509_csr.h │ │ │ │ └── xtea.h │ │ ├── library │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── aes.c │ │ │ ├── aesni.c │ │ │ ├── arc4.c │ │ │ ├── aria.c │ │ │ ├── asn1parse.c │ │ │ ├── asn1write.c │ │ │ ├── base64.c │ │ │ ├── bignum.c │ │ │ ├── blowfish.c │ │ │ ├── camellia.c │ │ │ ├── ccm.c │ │ │ ├── certs.c │ │ │ ├── chacha20.c │ │ │ ├── chachapoly.c │ │ │ ├── cipher.c │ │ │ ├── cipher_wrap.c │ │ │ ├── cmac.c │ │ │ ├── ctr_drbg.c │ │ │ ├── debug.c │ │ │ ├── des.c │ │ │ ├── dhm.c │ │ │ ├── ecdh.c │ │ │ ├── ecdsa.c │ │ │ ├── ecjpake.c │ │ │ ├── ecp.c │ │ │ ├── ecp_curves.c │ │ │ ├── entropy.c │ │ │ ├── entropy_poll.c │ │ │ ├── error.c │ │ │ ├── gcm.c │ │ │ ├── havege.c │ │ │ ├── hkdf.c │ │ │ ├── hmac_drbg.c │ │ │ ├── md.c │ │ │ ├── md2.c │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── md_wrap.c │ │ │ ├── memory_buffer_alloc.c │ │ │ ├── net_sockets.c │ │ │ ├── nist_kw.c │ │ │ ├── oid.c │ │ │ ├── padlock.c │ │ │ ├── pem.c │ │ │ ├── pk.c │ │ │ ├── pk_wrap.c │ │ │ ├── pkcs11.c │ │ │ ├── pkcs12.c │ │ │ ├── pkcs5.c │ │ │ ├── pkparse.c │ │ │ ├── pkwrite.c │ │ │ ├── platform.c │ │ │ ├── platform_util.c │ │ │ ├── poly1305.c │ │ │ ├── ripemd160.c │ │ │ ├── rsa.c │ │ │ ├── rsa_internal.c │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── sha512.c │ │ │ ├── ssl_cache.c │ │ │ ├── ssl_ciphersuites.c │ │ │ ├── ssl_cli.c │ │ │ ├── ssl_cookie.c │ │ │ ├── ssl_srv.c │ │ │ ├── ssl_ticket.c │ │ │ ├── ssl_tls.c │ │ │ ├── threading.c │ │ │ ├── timing.c │ │ │ ├── version.c │ │ │ ├── version_features.c │ │ │ ├── x509.c │ │ │ ├── x509_create.c │ │ │ ├── x509_crl.c │ │ │ ├── x509_crt.c │ │ │ ├── x509_csr.c │ │ │ ├── x509write_crt.c │ │ │ ├── x509write_csr.c │ │ │ └── xtea.c │ │ ├── programs │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── aes │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aescrypt2.c │ │ │ │ └── crypt_and_hash.c │ │ │ ├── hash │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generic_sum.c │ │ │ │ └── hello.c │ │ │ ├── pkey │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dh_client.c │ │ │ │ ├── dh_genprime.c │ │ │ │ ├── dh_prime.txt │ │ │ │ ├── dh_server.c │ │ │ │ ├── ecdh_curve25519.c │ │ │ │ ├── ecdsa.c │ │ │ │ ├── gen_key.c │ │ │ │ ├── key_app.c │ │ │ │ ├── key_app_writer.c │ │ │ │ ├── mpi_demo.c │ │ │ │ ├── pk_decrypt.c │ │ │ │ ├── pk_encrypt.c │ │ │ │ ├── pk_sign.c │ │ │ │ ├── pk_verify.c │ │ │ │ ├── rsa_decrypt.c │ │ │ │ ├── rsa_encrypt.c │ │ │ │ ├── rsa_genkey.c │ │ │ │ ├── rsa_priv.txt │ │ │ │ ├── rsa_pub.txt │ │ │ │ ├── rsa_sign.c │ │ │ │ ├── rsa_sign_pss.c │ │ │ │ ├── rsa_verify.c │ │ │ │ └── rsa_verify_pss.c │ │ │ ├── random │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gen_entropy.c │ │ │ │ ├── gen_random_ctr_drbg.c │ │ │ │ └── gen_random_havege.c │ │ │ ├── ssl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dtls_client.c │ │ │ │ ├── dtls_server.c │ │ │ │ ├── mini_client.c │ │ │ │ ├── query_config.c │ │ │ │ ├── ssl_client1.c │ │ │ │ ├── ssl_client2.c │ │ │ │ ├── ssl_fork_server.c │ │ │ │ ├── ssl_mail_client.c │ │ │ │ ├── ssl_pthread_server.c │ │ │ │ ├── ssl_server.c │ │ │ │ └── ssl_server2.c │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── benchmark.c │ │ │ │ ├── cpp_dummy_build.cpp │ │ │ │ ├── query_compile_time_config.c │ │ │ │ ├── selftest.c │ │ │ │ ├── udp_proxy.c │ │ │ │ ├── udp_proxy_wrapper.sh │ │ │ │ └── zeroize.c │ │ │ ├── util │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pem2der.c │ │ │ │ └── strerror.c │ │ │ ├── wince_main.c │ │ │ └── x509 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cert_app.c │ │ │ │ ├── cert_req.c │ │ │ │ ├── cert_write.c │ │ │ │ ├── crl_app.c │ │ │ │ └── req_app.c │ │ ├── scripts │ │ │ ├── abi_check.py │ │ │ ├── apidoc_full.sh │ │ │ ├── bump_version.sh │ │ │ ├── config.pl │ │ │ ├── data_files │ │ │ │ ├── error.fmt │ │ │ │ ├── query_config.fmt │ │ │ │ ├── rename-1.3-2.0.txt │ │ │ │ ├── version_features.fmt │ │ │ │ ├── vs2010-app-template.vcxproj │ │ │ │ ├── vs2010-main-template.vcxproj │ │ │ │ ├── vs2010-sln-template.sln │ │ │ │ ├── vs6-app-template.dsp │ │ │ │ ├── vs6-main-template.dsp │ │ │ │ └── vs6-workspace-template.dsw │ │ │ ├── ecc-heap.sh │ │ │ ├── find-mem-leak.cocci │ │ │ ├── footprint.sh │ │ │ ├── generate_errors.pl │ │ │ ├── generate_features.pl │ │ │ ├── generate_query_config.pl │ │ │ ├── generate_visualc_files.pl │ │ │ ├── massif_max.pl │ │ │ ├── memory.sh │ │ │ ├── output_env.sh │ │ │ ├── rename.pl │ │ │ ├── rm-calloc-cast.cocci │ │ │ └── tmp_ignore_makefiles.sh │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── .jenkins │ │ │ │ └── Jenkinsfile │ │ │ ├── CMakeLists.txt │ │ │ ├── Descriptions.txt │ │ │ ├── Makefile │ │ │ ├── compat.sh │ │ │ ├── data_files │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── Readme-x509.txt │ │ │ │ ├── bitstring-in-dn.pem │ │ │ │ ├── cert_example_multi.crt │ │ │ │ ├── cert_example_multi_nocn.crt │ │ │ │ ├── cert_example_wildcard.crt │ │ │ │ ├── cert_md2.crt │ │ │ │ ├── cert_md4.crt │ │ │ │ ├── cert_md5.crt │ │ │ │ ├── cert_sha1.crt │ │ │ │ ├── cert_sha224.crt │ │ │ │ ├── cert_sha256.crt │ │ │ │ ├── cert_sha384.crt │ │ │ │ ├── cert_sha512.crt │ │ │ │ ├── cert_v1_with_ext.crt │ │ │ │ ├── cli-rsa-sha1.crt │ │ │ │ ├── cli-rsa-sha256.crt │ │ │ │ ├── cli-rsa-sha256.crt.der │ │ │ │ ├── cli-rsa-sha256.key.der │ │ │ │ ├── cli-rsa.key │ │ │ │ ├── cli-rsa.key.der │ │ │ │ ├── cli.opensslconf │ │ │ │ ├── cli2.crt │ │ │ │ ├── cli2.crt.der │ │ │ │ ├── cli2.key │ │ │ │ ├── cli2.key.der │ │ │ │ ├── crl-ec-sha1.pem │ │ │ │ ├── crl-ec-sha224.pem │ │ │ │ ├── crl-ec-sha256.pem │ │ │ │ ├── crl-ec-sha384.pem │ │ │ │ ├── crl-ec-sha512.pem │ │ │ │ ├── crl-future.pem │ │ │ │ ├── crl-idp.pem │ │ │ │ ├── crl-idpnc.pem │ │ │ │ ├── crl-malformed-trailing-spaces.pem │ │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ │ ├── crl.pem │ │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ │ ├── crl_expired.pem │ │ │ │ ├── crl_md2.pem │ │ │ │ ├── crl_md4.pem │ │ │ │ ├── crl_md5.pem │ │ │ │ ├── crl_sha1.pem │ │ │ │ ├── crl_sha224.pem │ │ │ │ ├── crl_sha256.pem │ │ │ │ ├── crl_sha384.pem │ │ │ │ ├── crl_sha512.pem │ │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ │ ├── dh.1000.pem │ │ │ │ ├── dh.optlen.pem │ │ │ │ ├── dhparams.pem │ │ │ │ ├── dir-maxpath │ │ │ │ │ ├── 00.crt │ │ │ │ │ ├── 00.key │ │ │ │ │ ├── 01.crt │ │ │ │ │ ├── 01.key │ │ │ │ │ ├── 02.crt │ │ │ │ │ ├── 02.key │ │ │ │ │ ├── 03.crt │ │ │ │ │ ├── 03.key │ │ │ │ │ ├── 04.crt │ │ │ │ │ ├── 04.key │ │ │ │ │ ├── 05.crt │ │ │ │ │ ├── 05.key │ │ │ │ │ ├── 06.crt │ │ │ │ │ ├── 06.key │ │ │ │ │ ├── 07.crt │ │ │ │ │ ├── 07.key │ │ │ │ │ ├── 08.crt │ │ │ │ │ ├── 08.key │ │ │ │ │ ├── 09.crt │ │ │ │ │ ├── 09.key │ │ │ │ │ ├── 10.crt │ │ │ │ │ ├── 10.key │ │ │ │ │ ├── 11.crt │ │ │ │ │ ├── 11.key │ │ │ │ │ ├── 12.crt │ │ │ │ │ ├── 12.key │ │ │ │ │ ├── 13.crt │ │ │ │ │ ├── 13.key │ │ │ │ │ ├── 14.crt │ │ │ │ │ ├── 14.key │ │ │ │ │ ├── 15.crt │ │ │ │ │ ├── 15.key │ │ │ │ │ ├── 16.crt │ │ │ │ │ ├── 16.key │ │ │ │ │ ├── 17.crt │ │ │ │ │ ├── 17.key │ │ │ │ │ ├── 18.crt │ │ │ │ │ ├── 18.key │ │ │ │ │ ├── 19.crt │ │ │ │ │ ├── 19.key │ │ │ │ │ ├── 20.crt │ │ │ │ │ ├── 20.key │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── c00.pem │ │ │ │ │ ├── c01.pem │ │ │ │ │ ├── c02.pem │ │ │ │ │ ├── c03.pem │ │ │ │ │ ├── c04.pem │ │ │ │ │ ├── c05.pem │ │ │ │ │ ├── c06.pem │ │ │ │ │ ├── c07.pem │ │ │ │ │ ├── c08.pem │ │ │ │ │ ├── c09.pem │ │ │ │ │ ├── c10.pem │ │ │ │ │ ├── c11.pem │ │ │ │ │ ├── c12.pem │ │ │ │ │ ├── c13.pem │ │ │ │ │ ├── c14.pem │ │ │ │ │ ├── c15.pem │ │ │ │ │ ├── c16.pem │ │ │ │ │ ├── c17.pem │ │ │ │ │ ├── c18.pem │ │ │ │ │ ├── c19.pem │ │ │ │ │ ├── c20.pem │ │ │ │ │ ├── int.opensslconf │ │ │ │ │ └── long.sh │ │ │ │ ├── dir1 │ │ │ │ │ └── test-ca.crt │ │ │ │ ├── dir2 │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir3 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── test-ca.crt │ │ │ │ │ └── test-ca2.crt │ │ │ │ ├── dir4 │ │ │ │ │ ├── Readme │ │ │ │ │ ├── cert11.crt │ │ │ │ │ ├── cert12.crt │ │ │ │ │ ├── cert13.crt │ │ │ │ │ ├── cert14.crt │ │ │ │ │ ├── cert21.crt │ │ │ │ │ ├── cert22.crt │ │ │ │ │ ├── cert23.crt │ │ │ │ │ ├── cert31.crt │ │ │ │ │ ├── cert32.crt │ │ │ │ │ ├── cert33.crt │ │ │ │ │ ├── cert34.crt │ │ │ │ │ ├── cert41.crt │ │ │ │ │ ├── cert42.crt │ │ │ │ │ ├── cert43.crt │ │ │ │ │ ├── cert44.crt │ │ │ │ │ ├── cert45.crt │ │ │ │ │ ├── cert51.crt │ │ │ │ │ ├── cert52.crt │ │ │ │ │ ├── cert53.crt │ │ │ │ │ ├── cert54.crt │ │ │ │ │ ├── cert61.crt │ │ │ │ │ ├── cert62.crt │ │ │ │ │ ├── cert63.crt │ │ │ │ │ ├── cert71.crt │ │ │ │ │ ├── cert72.crt │ │ │ │ │ ├── cert73.crt │ │ │ │ │ ├── cert74.crt │ │ │ │ │ ├── cert81.crt │ │ │ │ │ ├── cert82.crt │ │ │ │ │ ├── cert83.crt │ │ │ │ │ ├── cert91.crt │ │ │ │ │ └── cert92.crt │ │ │ │ ├── ec_224_prv.pem │ │ │ │ ├── ec_224_pub.pem │ │ │ │ ├── ec_256_prv.pem │ │ │ │ ├── ec_256_pub.pem │ │ │ │ ├── ec_384_prv.pem │ │ │ │ ├── ec_384_pub.pem │ │ │ │ ├── ec_521_prv.pem │ │ │ │ ├── ec_521_pub.pem │ │ │ │ ├── ec_bp256_prv.pem │ │ │ │ ├── ec_bp256_pub.pem │ │ │ │ ├── ec_bp384_prv.pem │ │ │ │ ├── ec_bp384_pub.pem │ │ │ │ ├── ec_bp512_prv.pem │ │ │ │ ├── ec_bp512_pub.pem │ │ │ │ ├── ec_prv.pk8.der │ │ │ │ ├── ec_prv.pk8.pem │ │ │ │ ├── ec_prv.pk8.pw.der │ │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ │ ├── ec_prv.pk8nopub.der │ │ │ │ ├── ec_prv.pk8nopub.pem │ │ │ │ ├── ec_prv.pk8nopubparam.der │ │ │ │ ├── ec_prv.pk8nopubparam.pem │ │ │ │ ├── ec_prv.pk8param.der │ │ │ │ ├── ec_prv.pk8param.pem │ │ │ │ ├── ec_prv.sec1.der │ │ │ │ ├── ec_prv.sec1.pem │ │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ │ ├── ec_prv.specdom.der │ │ │ │ ├── ec_pub.der │ │ │ │ ├── ec_pub.pem │ │ │ │ ├── enco-ca-prstr.pem │ │ │ │ ├── enco-cert-utf8str.pem │ │ │ │ ├── format_gen.key │ │ │ │ ├── format_gen.pub │ │ │ │ ├── format_pkcs12.fmt │ │ │ │ ├── format_rsa.key │ │ │ │ ├── hash_file_1 │ │ │ │ ├── hash_file_2 │ │ │ │ ├── hash_file_3 │ │ │ │ ├── hash_file_4 │ │ │ │ ├── hash_file_5 │ │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ │ ├── mpi_10 │ │ │ │ ├── mpi_too_big │ │ │ │ ├── passwd.psk │ │ │ │ ├── print_c.pl │ │ │ │ ├── rsa4096_prv.pem │ │ │ │ ├── rsa4096_pub.pem │ │ │ │ ├── rsa512.key │ │ │ │ ├── rsa521.key │ │ │ │ ├── rsa522.key │ │ │ │ ├── rsa528.key │ │ │ │ ├── rsa_pkcs1_1024_3des.pem │ │ │ │ ├── rsa_pkcs1_1024_aes128.pem │ │ │ │ ├── rsa_pkcs1_1024_aes192.pem │ │ │ │ ├── rsa_pkcs1_1024_aes256.pem │ │ │ │ ├── rsa_pkcs1_1024_clear.pem │ │ │ │ ├── rsa_pkcs1_1024_des.pem │ │ │ │ ├── rsa_pkcs1_2048_3des.pem │ │ │ │ ├── rsa_pkcs1_2048_aes128.pem │ │ │ │ ├── rsa_pkcs1_2048_aes192.pem │ │ │ │ ├── rsa_pkcs1_2048_aes256.pem │ │ │ │ ├── rsa_pkcs1_2048_clear.pem │ │ │ │ ├── rsa_pkcs1_2048_des.pem │ │ │ │ ├── rsa_pkcs1_2048_public.der │ │ │ │ ├── rsa_pkcs1_2048_public.pem │ │ │ │ ├── rsa_pkcs1_4096_3des.pem │ │ │ │ ├── rsa_pkcs1_4096_aes128.pem │ │ │ │ ├── rsa_pkcs1_4096_aes192.pem │ │ │ │ ├── rsa_pkcs1_4096_aes256.pem │ │ │ │ ├── rsa_pkcs1_4096_clear.pem │ │ │ │ ├── rsa_pkcs1_4096_des.pem │ │ │ │ ├── rsa_pkcs8_1024_public.der │ │ │ │ ├── rsa_pkcs8_2048_public.der │ │ │ │ ├── rsa_pkcs8_2048_public.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_3des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_1024_rc4_128.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_3des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_2048_rc4_128.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_2des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_3des.pem │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.der │ │ │ │ ├── rsa_pkcs8_pbe_sha1_4096_rc4_128.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der │ │ │ │ ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem │ │ │ │ ├── server1-ms.req.sha256 │ │ │ │ ├── server1-nospace.crt │ │ │ │ ├── server1-v1.crt │ │ │ │ ├── server1.cert_type.crt │ │ │ │ ├── server1.cert_type.crt.openssl.v3_ext │ │ │ │ ├── server1.cert_type_noauthid.crt │ │ │ │ ├── server1.crt │ │ │ │ ├── server1.crt.der │ │ │ │ ├── server1.crt.openssl.v3_ext │ │ │ │ ├── server1.csr │ │ │ │ ├── server1.ext_ku.crt │ │ │ │ ├── server1.key │ │ │ │ ├── server1.key_usage.crt │ │ │ │ ├── server1.key_usage.crt.openssl.v3_ext │ │ │ │ ├── server1.key_usage_noauthid.crt │ │ │ │ ├── server1.noauthid.crt │ │ │ │ ├── server1.pubkey │ │ │ │ ├── server1.req.cert_type │ │ │ │ ├── server1.req.cert_type_empty │ │ │ │ ├── server1.req.key_usage │ │ │ │ ├── server1.req.key_usage_empty │ │ │ │ ├── server1.req.ku-ct │ │ │ │ ├── server1.req.md4 │ │ │ │ ├── server1.req.md5 │ │ │ │ ├── server1.req.sha1 │ │ │ │ ├── server1.req.sha224 │ │ │ │ ├── server1.req.sha256 │ │ │ │ ├── server1.req.sha384 │ │ │ │ ├── server1.req.sha512 │ │ │ │ ├── server1.v1.crt │ │ │ │ ├── server10-badsign.crt │ │ │ │ ├── server10-bs_int3.pem │ │ │ │ ├── server10.crt │ │ │ │ ├── server10.key │ │ │ │ ├── server10_int3-bs.pem │ │ │ │ ├── server10_int3_int-ca2.crt │ │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ │ ├── server10_int3_spurious_int-ca2.crt │ │ │ │ ├── server1_ca.crt │ │ │ │ ├── server1_csr.opensslconf │ │ │ │ ├── server2-badsign.crt │ │ │ │ ├── server2-sha256.crt │ │ │ │ ├── server2-sha256.crt.der │ │ │ │ ├── server2-v1-chain.crt │ │ │ │ ├── server2-v1.crt │ │ │ │ ├── server2.crt │ │ │ │ ├── server2.crt.der │ │ │ │ ├── server2.key │ │ │ │ ├── server2.key.der │ │ │ │ ├── server2.ku-ds.crt │ │ │ │ ├── server2.ku-ds_ke.crt │ │ │ │ ├── server2.ku-ka.crt │ │ │ │ ├── server2.ku-ke.crt │ │ │ │ ├── server3.crt │ │ │ │ ├── server3.key │ │ │ │ ├── server4.crt │ │ │ │ ├── server4.key │ │ │ │ ├── server5-badsign.crt │ │ │ │ ├── server5-der0.crt │ │ │ │ ├── server5-der1a.crt │ │ │ │ ├── server5-der1b.crt │ │ │ │ ├── server5-der2.crt │ │ │ │ ├── server5-der4.crt │ │ │ │ ├── server5-der8.crt │ │ │ │ ├── server5-der9.crt │ │ │ │ ├── server5-expired.crt │ │ │ │ ├── server5-future.crt │ │ │ │ ├── server5-selfsigned.crt │ │ │ │ ├── server5-sha1.crt │ │ │ │ ├── server5-sha224.crt │ │ │ │ ├── server5-sha384.crt │ │ │ │ ├── server5-sha512.crt │ │ │ │ ├── server5-ss-expired.crt │ │ │ │ ├── server5-ss-forgeca.crt │ │ │ │ ├── server5.crt │ │ │ │ ├── server5.crt.der │ │ │ │ ├── server5.eku-cli.crt │ │ │ │ ├── server5.eku-cs.crt │ │ │ │ ├── server5.eku-cs_any.crt │ │ │ │ ├── server5.eku-srv.crt │ │ │ │ ├── server5.eku-srv_cli.crt │ │ │ │ ├── server5.key │ │ │ │ ├── server5.key.der │ │ │ │ ├── server5.ku-ds.crt │ │ │ │ ├── server5.ku-ka.crt │ │ │ │ ├── server5.ku-ke.crt │ │ │ │ ├── server5.req.ku.sha1 │ │ │ │ ├── server5.req.sha1 │ │ │ │ ├── server5.req.sha224 │ │ │ │ ├── server5.req.sha256 │ │ │ │ ├── server5.req.sha384 │ │ │ │ ├── server5.req.sha512 │ │ │ │ ├── server6-ss-child.crt │ │ │ │ ├── server6.crt │ │ │ │ ├── server6.key │ │ │ │ ├── server7-badsign.crt │ │ │ │ ├── server7-expired.crt │ │ │ │ ├── server7-future.crt │ │ │ │ ├── server7.crt │ │ │ │ ├── server7.key │ │ │ │ ├── server7_all_space.crt │ │ │ │ ├── server7_int-ca-exp.crt │ │ │ │ ├── server7_int-ca.crt │ │ │ │ ├── server7_int-ca_ca2.crt │ │ │ │ ├── server7_pem_space.crt │ │ │ │ ├── server7_spurious_int-ca.crt │ │ │ │ ├── server7_trailing_space.crt │ │ │ │ ├── server8.crt │ │ │ │ ├── server8.key │ │ │ │ ├── server8_int-ca2.crt │ │ │ │ ├── server9-bad-mgfhash.crt │ │ │ │ ├── server9-bad-saltlen.crt │ │ │ │ ├── server9-badsign.crt │ │ │ │ ├── server9-defaults.crt │ │ │ │ ├── server9-sha224.crt │ │ │ │ ├── server9-sha256.crt │ │ │ │ ├── server9-sha384.crt │ │ │ │ ├── server9-sha512.crt │ │ │ │ ├── server9-with-ca.crt │ │ │ │ ├── server9.crt │ │ │ │ ├── server9.key │ │ │ │ ├── server9.req.sha1 │ │ │ │ ├── server9.req.sha224 │ │ │ │ ├── server9.req.sha256 │ │ │ │ ├── server9.req.sha384 │ │ │ │ ├── server9.req.sha512 │ │ │ │ ├── test-ca-alt-good.crt │ │ │ │ ├── test-ca-alt.crt │ │ │ │ ├── test-ca-alt.csr │ │ │ │ ├── test-ca-alt.key │ │ │ │ ├── test-ca-good-alt.crt │ │ │ │ ├── test-ca-sha1.crt │ │ │ │ ├── test-ca-sha1.crt.der │ │ │ │ ├── test-ca-sha256.crt │ │ │ │ ├── test-ca-sha256.crt.der │ │ │ │ ├── test-ca-v1.crt │ │ │ │ ├── test-ca.crt │ │ │ │ ├── test-ca.crt.der │ │ │ │ ├── test-ca.key │ │ │ │ ├── test-ca.key.der │ │ │ │ ├── test-ca.opensslconf │ │ │ │ ├── test-ca.server1.opensslconf │ │ │ │ ├── test-ca2-expired.crt │ │ │ │ ├── test-ca2.crt │ │ │ │ ├── test-ca2.crt.der │ │ │ │ ├── test-ca2.key │ │ │ │ ├── test-ca2.key.der │ │ │ │ ├── test-ca2.key.enc │ │ │ │ ├── test-ca2.ku-crl.crt │ │ │ │ ├── test-ca2.ku-crt.crt │ │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ │ ├── test-ca2.ku-ds.crt │ │ │ │ ├── test-ca2_cat-future-invalid.crt │ │ │ │ ├── test-ca2_cat-future-present.crt │ │ │ │ ├── test-ca2_cat-past-invalid.crt │ │ │ │ ├── test-ca2_cat-past-present.crt │ │ │ │ ├── test-ca2_cat-present-future.crt │ │ │ │ ├── test-ca2_cat-present-past.crt │ │ │ │ ├── test-ca_cat12.crt │ │ │ │ ├── test-ca_cat21.crt │ │ │ │ ├── test-ca_printable.crt │ │ │ │ ├── test-ca_uppercase.crt │ │ │ │ ├── test-ca_utf8.crt │ │ │ │ ├── test-int-ca-exp.crt │ │ │ │ ├── test-int-ca.crt │ │ │ │ ├── test-int-ca.key │ │ │ │ ├── test-int-ca2.crt │ │ │ │ ├── test-int-ca2.key │ │ │ │ ├── test-int-ca3-badsign.crt │ │ │ │ ├── test-int-ca3.crt │ │ │ │ └── test-int-ca3.key │ │ │ ├── git-scripts │ │ │ │ ├── README.md │ │ │ │ └── pre-push.sh │ │ │ ├── scripts │ │ │ │ ├── all.sh │ │ │ │ ├── basic-build-test.sh │ │ │ │ ├── check-doxy-blocks.pl │ │ │ │ ├── check-files.py │ │ │ │ ├── check-generated-files.sh │ │ │ │ ├── check-names.sh │ │ │ │ ├── check-python-files.sh │ │ │ │ ├── curves.pl │ │ │ │ ├── depends-hashes.pl │ │ │ │ ├── depends-pkalgs.pl │ │ │ │ ├── doxygen.sh │ │ │ │ ├── gen_ctr_drbg.pl │ │ │ │ ├── gen_gcm_decrypt.pl │ │ │ │ ├── gen_gcm_encrypt.pl │ │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ │ ├── generate-afl-tests.sh │ │ │ │ ├── generate_test_code.py │ │ │ │ ├── key-exchanges.pl │ │ │ │ ├── list-enum-consts.pl │ │ │ │ ├── list-identifiers.sh │ │ │ │ ├── list-macros.sh │ │ │ │ ├── list-symbols.sh │ │ │ │ ├── mbedtls_test.py │ │ │ │ ├── recursion.pl │ │ │ │ ├── run-test-suites.pl │ │ │ │ ├── tcp_client.pl │ │ │ │ ├── test-ref-configs.pl │ │ │ │ ├── test_generate_test_code.py │ │ │ │ ├── test_zeroize.gdb │ │ │ │ └── travis-log-failure.sh │ │ │ ├── ssl-opt.sh │ │ │ └── suites │ │ │ │ ├── helpers.function │ │ │ │ ├── host_test.function │ │ │ │ ├── main_test.function │ │ │ │ ├── target_test.function │ │ │ │ ├── test_suite_aes.cbc.data │ │ │ │ ├── test_suite_aes.cfb.data │ │ │ │ ├── test_suite_aes.ecb.data │ │ │ │ ├── test_suite_aes.function │ │ │ │ ├── test_suite_aes.ofb.data │ │ │ │ ├── test_suite_aes.rest.data │ │ │ │ ├── test_suite_aes.xts.data │ │ │ │ ├── test_suite_arc4.data │ │ │ │ ├── test_suite_arc4.function │ │ │ │ ├── test_suite_aria.data │ │ │ │ ├── test_suite_aria.function │ │ │ │ ├── test_suite_asn1write.data │ │ │ │ ├── test_suite_asn1write.function │ │ │ │ ├── test_suite_base64.data │ │ │ │ ├── test_suite_base64.function │ │ │ │ ├── test_suite_blowfish.data │ │ │ │ ├── test_suite_blowfish.function │ │ │ │ ├── test_suite_camellia.data │ │ │ │ ├── test_suite_camellia.function │ │ │ │ ├── test_suite_ccm.data │ │ │ │ ├── test_suite_ccm.function │ │ │ │ ├── test_suite_chacha20.data │ │ │ │ ├── test_suite_chacha20.function │ │ │ │ ├── test_suite_chachapoly.data │ │ │ │ ├── test_suite_chachapoly.function │ │ │ │ ├── test_suite_cipher.aes.data │ │ │ │ ├── test_suite_cipher.arc4.data │ │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ │ ├── test_suite_cipher.camellia.data │ │ │ │ ├── test_suite_cipher.ccm.data │ │ │ │ ├── test_suite_cipher.chacha20.data │ │ │ │ ├── test_suite_cipher.chachapoly.data │ │ │ │ ├── test_suite_cipher.des.data │ │ │ │ ├── test_suite_cipher.function │ │ │ │ ├── test_suite_cipher.gcm.data │ │ │ │ ├── test_suite_cipher.misc.data │ │ │ │ ├── test_suite_cipher.null.data │ │ │ │ ├── test_suite_cipher.padding.data │ │ │ │ ├── test_suite_cmac.data │ │ │ │ ├── test_suite_cmac.function │ │ │ │ ├── test_suite_ctr_drbg.data │ │ │ │ ├── test_suite_ctr_drbg.function │ │ │ │ ├── test_suite_debug.data │ │ │ │ ├── test_suite_debug.function │ │ │ │ ├── test_suite_des.data │ │ │ │ ├── test_suite_des.function │ │ │ │ ├── test_suite_dhm.data │ │ │ │ ├── test_suite_dhm.function │ │ │ │ ├── test_suite_ecdh.data │ │ │ │ ├── test_suite_ecdh.function │ │ │ │ ├── test_suite_ecdsa.data │ │ │ │ ├── test_suite_ecdsa.function │ │ │ │ ├── test_suite_ecjpake.data │ │ │ │ ├── test_suite_ecjpake.function │ │ │ │ ├── test_suite_ecp.data │ │ │ │ ├── test_suite_ecp.function │ │ │ │ ├── test_suite_entropy.data │ │ │ │ ├── test_suite_entropy.function │ │ │ │ ├── test_suite_error.data │ │ │ │ ├── test_suite_error.function │ │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ │ ├── test_suite_gcm.camellia.data │ │ │ │ ├── test_suite_gcm.function │ │ │ │ ├── test_suite_gcm.misc.data │ │ │ │ ├── test_suite_hkdf.data │ │ │ │ ├── test_suite_hkdf.function │ │ │ │ ├── test_suite_hmac_drbg.function │ │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ │ ├── test_suite_md.data │ │ │ │ ├── test_suite_md.function │ │ │ │ ├── test_suite_mdx.data │ │ │ │ ├── test_suite_mdx.function │ │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ │ ├── test_suite_mpi.data │ │ │ │ ├── test_suite_mpi.function │ │ │ │ ├── test_suite_nist_kw.data │ │ │ │ ├── test_suite_nist_kw.function │ │ │ │ ├── test_suite_pem.data │ │ │ │ ├── test_suite_pem.function │ │ │ │ ├── test_suite_pk.data │ │ │ │ ├── test_suite_pk.function │ │ │ │ ├── test_suite_pkcs1_v15.data │ │ │ │ ├── test_suite_pkcs1_v15.function │ │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ │ ├── test_suite_pkcs5.data │ │ │ │ ├── test_suite_pkcs5.function │ │ │ │ ├── test_suite_pkparse.data │ │ │ │ ├── test_suite_pkparse.function │ │ │ │ ├── test_suite_pkwrite.data │ │ │ │ ├── test_suite_pkwrite.function │ │ │ │ ├── test_suite_poly1305.data │ │ │ │ ├── test_suite_poly1305.function │ │ │ │ ├── test_suite_rsa.data │ │ │ │ ├── test_suite_rsa.function │ │ │ │ ├── test_suite_shax.data │ │ │ │ ├── test_suite_shax.function │ │ │ │ ├── test_suite_ssl.data │ │ │ │ ├── test_suite_ssl.function │ │ │ │ ├── test_suite_timing.data │ │ │ │ ├── test_suite_timing.function │ │ │ │ ├── test_suite_version.data │ │ │ │ ├── test_suite_version.function │ │ │ │ ├── test_suite_x509parse.data │ │ │ │ ├── test_suite_x509parse.function │ │ │ │ ├── test_suite_x509write.data │ │ │ │ ├── test_suite_x509write.function │ │ │ │ ├── test_suite_xtea.data │ │ │ │ └── test_suite_xtea.function │ │ └── visualc │ │ │ └── VS2010 │ │ │ ├── aescrypt2.vcxproj │ │ │ ├── benchmark.vcxproj │ │ │ ├── cert_app.vcxproj │ │ │ ├── cert_req.vcxproj │ │ │ ├── cert_write.vcxproj │ │ │ ├── crl_app.vcxproj │ │ │ ├── crypt_and_hash.vcxproj │ │ │ ├── dh_client.vcxproj │ │ │ ├── dh_genprime.vcxproj │ │ │ ├── dh_server.vcxproj │ │ │ ├── dtls_client.vcxproj │ │ │ ├── dtls_server.vcxproj │ │ │ ├── ecdh_curve25519.vcxproj │ │ │ ├── ecdsa.vcxproj │ │ │ ├── gen_entropy.vcxproj │ │ │ ├── gen_key.vcxproj │ │ │ ├── gen_random_ctr_drbg.vcxproj │ │ │ ├── gen_random_havege.vcxproj │ │ │ ├── generic_sum.vcxproj │ │ │ ├── hello.vcxproj │ │ │ ├── key_app.vcxproj │ │ │ ├── key_app_writer.vcxproj │ │ │ ├── mbedTLS.sln │ │ │ ├── mbedTLS.vcxproj │ │ │ ├── mini_client.vcxproj │ │ │ ├── mpi_demo.vcxproj │ │ │ ├── pem2der.vcxproj │ │ │ ├── pk_decrypt.vcxproj │ │ │ ├── pk_encrypt.vcxproj │ │ │ ├── pk_sign.vcxproj │ │ │ ├── pk_verify.vcxproj │ │ │ ├── query_compile_time_config.vcxproj │ │ │ ├── req_app.vcxproj │ │ │ ├── rsa_decrypt.vcxproj │ │ │ ├── rsa_encrypt.vcxproj │ │ │ ├── rsa_genkey.vcxproj │ │ │ ├── rsa_sign.vcxproj │ │ │ ├── rsa_sign_pss.vcxproj │ │ │ ├── rsa_verify.vcxproj │ │ │ ├── rsa_verify_pss.vcxproj │ │ │ ├── selftest.vcxproj │ │ │ ├── ssl_client1.vcxproj │ │ │ ├── ssl_client2.vcxproj │ │ │ ├── ssl_fork_server.vcxproj │ │ │ ├── ssl_mail_client.vcxproj │ │ │ ├── ssl_server.vcxproj │ │ │ ├── ssl_server2.vcxproj │ │ │ ├── strerror.vcxproj │ │ │ ├── udp_proxy.vcxproj │ │ │ └── zeroize.vcxproj │ └── pkcs7 │ │ ├── Makefile.inc │ │ ├── pkcs7.c │ │ └── pkcs7.h ├── cvc.c ├── cvc.h ├── drivers │ ├── Makefile.inc │ ├── tpm_i2c_interface.c │ ├── tpm_i2c_interface.h │ ├── tpm_i2c_nuvoton.c │ └── tpm_i2c_nuvoton.h ├── keys │ ├── README.md │ ├── hw_key_a.key │ ├── hw_key_b.key │ ├── hw_key_c.key │ └── sw_key_a.key ├── print-container.c ├── secureboot.c ├── secureboot.h ├── secvar │ ├── Makefile.inc │ ├── backend │ │ ├── Makefile.inc │ │ ├── edk2-compat-process.c │ │ ├── edk2-compat-process.h │ │ ├── edk2-compat-reset.c │ │ ├── edk2-compat-reset.h │ │ ├── edk2-compat.c │ │ └── edk2.h │ ├── secvar.h │ ├── secvar_api.c │ ├── secvar_devtree.c │ ├── secvar_devtree.h │ ├── secvar_main.c │ ├── secvar_util.c │ ├── storage │ │ ├── Makefile.inc │ │ ├── fakenv_ops.c │ │ ├── gen_tpmnv_public_name.c │ │ ├── secboot_tpm.c │ │ ├── secboot_tpm.h │ │ └── tpmnv_ops.c │ └── test │ │ ├── Makefile.check │ │ ├── data │ │ ├── KEK.h │ │ ├── KEKeslcorrupt.h │ │ ├── KEKpkcs7corrupt.h │ │ ├── OldTSKEK.h │ │ ├── PK.h │ │ ├── db.h │ │ ├── dbsigneddata.h │ │ ├── dbx.h │ │ ├── dbxcert.h │ │ ├── dbxmalformed.h │ │ ├── dbxsha512.h │ │ ├── invalidkek.h │ │ ├── malformedkek.h │ │ ├── multipleDB.h │ │ ├── multipleKEK.h │ │ ├── multiplePK.h │ │ ├── multipletrimmedKEK.h │ │ ├── noPK.h │ │ ├── pkcs7_sha512.h │ │ └── trimmedKEK.h │ │ ├── secvar-test-edk2-compat.c │ │ ├── secvar-test-enqueue.c │ │ ├── secvar-test-getvar.c │ │ ├── secvar-test-nextvar.c │ │ ├── secvar-test-pkcs7.c │ │ ├── secvar-test-secboot-tpm.c │ │ ├── secvar-test-void.c │ │ ├── secvar_api_test.c │ │ └── secvar_common_test.c ├── sign-with-local-keys.sh ├── status_codes.h ├── test │ ├── Makefile.check │ ├── run-stb-container.c │ ├── t.container │ └── t.container.out ├── tpm_chip.c ├── tpm_chip.h ├── trustedboot.c ├── trustedboot.h └── tss2 │ ├── Makefile.inc │ ├── eventlog.c │ ├── eventlog.h │ ├── ibmtpm20tss │ └── utils │ │ ├── CommandAttributeData.c │ │ ├── CommandAttributeData12.c │ │ ├── CommandAttributes.h │ │ ├── Commands.c │ │ ├── Commands12.c │ │ ├── Commands12_fp.h │ │ ├── Commands_fp.h │ │ ├── Makefile.am │ │ ├── Platform.h │ │ ├── Unmarshal.c │ │ ├── Unmarshal12.c │ │ ├── activatecredential.c │ │ ├── applink.c │ │ ├── cakey.pem │ │ ├── cakeyecc.pem │ │ ├── certificates │ │ ├── .cvsignore │ │ ├── IFX_TPM_EK_Intermediate_CA_01.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_02.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_03.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_04.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_05.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_08.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_17.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_18.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_20.pem │ │ ├── IFX_TPM_EK_Intermediate_CA_21.pem │ │ ├── IFX_TPM_EK_Root_CA.pem │ │ ├── Infineon-IFX_TPM_EK_Intermediate_CA_48-C-v01_00-EN.pem │ │ ├── Infineon-Infineon_TPM_EK_Intermediate_CA25-C-v01_00-EN.pem │ │ ├── Infineon-OPTIGA(TM)_ECC_Manufacturing_CA_011.crt-C-v01_00-EN.pem │ │ ├── Infineon-OPTIGA(TM)_RSA_Manufacturing_CA_011.crt-C-v01_00-EN.pem │ │ ├── Infineon-TPM1.2_VRSN_root_certificate-C-v01_00-EN.pem │ │ ├── Infineon-TPM_ECC_Root_CA-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA29-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA_49-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA_53-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA_54-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA_62-C-v01_00-EN.pem │ │ ├── Infineon-TPM_EK_Intermediate_CA_63-C-v01_00-EN.pem │ │ ├── Infineon-TPM_RSA_Root_CA-C-v01_00-EN.pem │ │ ├── InfineonECCChain010.pem │ │ ├── InfineonOPTIGAECCManufacturingCA010.pem │ │ ├── InfineonOPTIGARSAManufacturingCA010.pem │ │ ├── InfineonRSAChain010.pem │ │ ├── IntelEKIntermediate.pem │ │ ├── IntelEKRootCA.pem │ │ ├── NationZEkMfrCA001.crt │ │ ├── NationZEkMfrCA002.crt │ │ ├── NationZEkMfrCA003.crt │ │ ├── NationZEkRootCA.crt │ │ ├── NuvotonTPMRootCA0100.pem │ │ ├── NuvotonTPMRootCA1110.pem │ │ ├── NuvotonTPMRootCA2110.pem │ │ ├── cacert.pem │ │ ├── cacertecc.pem │ │ ├── gstpmroot.pem │ │ ├── rootcerts.txt │ │ ├── rootcerts.windows.txt │ │ ├── stmtpmeccint01.pem │ │ ├── stmtpmeccroot01.pem │ │ ├── stmtpmekint01.pem │ │ ├── stmtpmekint02.pem │ │ ├── stmtpmekint03.pem │ │ ├── stmtpmekint04.pem │ │ ├── stmtpmekint05.pem │ │ ├── stmtpmekroot.pem │ │ └── tpmeccroot.pem │ │ ├── certify.c │ │ ├── certifycreation.c │ │ ├── certifyx509.c │ │ ├── changeeps.c │ │ ├── changepps.c │ │ ├── clear.c │ │ ├── clearcontrol.c │ │ ├── clockrateadjust.c │ │ ├── clockset.c │ │ ├── commit.c │ │ ├── contextload.c │ │ ├── contextsave.c │ │ ├── create.c │ │ ├── createek.c │ │ ├── createekcert.c │ │ ├── createloaded.c │ │ ├── createprimary.c │ │ ├── cryptoutils.c │ │ ├── cryptoutils.h │ │ ├── dictionaryattacklockreset.c │ │ ├── dictionaryattackparameters.c │ │ ├── duplicate.c │ │ ├── eccparameters.c │ │ ├── ecephemeral.c │ │ ├── ekutils.c │ │ ├── ekutils.h │ │ ├── encryptdecrypt.c │ │ ├── eventextend.c │ │ ├── eventlib.c │ │ ├── eventlib.h │ │ ├── eventsequencecomplete.c │ │ ├── evictcontrol.c │ │ ├── flushcontext.c │ │ ├── getcapability.c │ │ ├── getcommandauditdigest.c │ │ ├── getcryptolibrary.c │ │ ├── getrandom.c │ │ ├── getsessionauditdigest.c │ │ ├── gettestresult.c │ │ ├── gettime.c │ │ ├── hash.c │ │ ├── hashsequencestart.c │ │ ├── hierarchychangeauth.c │ │ ├── hierarchycontrol.c │ │ ├── hmac.c │ │ ├── hmacstart.c │ │ ├── ibmtss │ │ ├── ActivateCredential_fp.h │ │ ├── ActivateIdentity_fp.h │ │ ├── BaseTypes.h │ │ ├── CertifyCreation_fp.h │ │ ├── CertifyX509_fp.h │ │ ├── Certify_fp.h │ │ ├── ChangeEPS_fp.h │ │ ├── ChangePPS_fp.h │ │ ├── ClearControl_fp.h │ │ ├── Clear_fp.h │ │ ├── ClockRateAdjust_fp.h │ │ ├── ClockSet_fp.h │ │ ├── Commit_fp.h │ │ ├── ContextLoad_fp.h │ │ ├── ContextSave_fp.h │ │ ├── CreateEndorsementKeyPair_fp.h │ │ ├── CreateLoaded_fp.h │ │ ├── CreatePrimary_fp.h │ │ ├── CreateWrapKey_fp.h │ │ ├── Create_fp.h │ │ ├── DictionaryAttackLockReset_fp.h │ │ ├── DictionaryAttackParameters_fp.h │ │ ├── Duplicate_fp.h │ │ ├── ECC_Parameters_fp.h │ │ ├── ECDH_KeyGen_fp.h │ │ ├── ECDH_ZGen_fp.h │ │ ├── EC_Ephemeral_fp.h │ │ ├── EncryptDecrypt2_fp.h │ │ ├── EncryptDecrypt_fp.h │ │ ├── EventSequenceComplete_fp.h │ │ ├── EvictControl_fp.h │ │ ├── Extend_fp.h │ │ ├── FlushContext_fp.h │ │ ├── FlushSpecific_fp.h │ │ ├── GetCapability12_fp.h │ │ ├── GetCapability_fp.h │ │ ├── GetCommandAuditDigest_fp.h │ │ ├── GetRandom_fp.h │ │ ├── GetSessionAuditDigest_fp.h │ │ ├── GetTestResult_fp.h │ │ ├── GetTime_fp.h │ │ ├── HMAC_Start_fp.h │ │ ├── HMAC_fp.h │ │ ├── HashSequenceStart_fp.h │ │ ├── Hash_fp.h │ │ ├── HierarchyChangeAuth_fp.h │ │ ├── HierarchyControl_fp.h │ │ ├── Implementation.h │ │ ├── Import_fp.h │ │ ├── IncrementalSelfTest_fp.h │ │ ├── LoadExternal_fp.h │ │ ├── LoadKey2_fp.h │ │ ├── Load_fp.h │ │ ├── MakeCredential_fp.h │ │ ├── MakeIdentity_fp.h │ │ ├── NTC_fp.h │ │ ├── NV_Certify_fp.h │ │ ├── NV_ChangeAuth_fp.h │ │ ├── NV_DefineSpace12_fp.h │ │ ├── NV_DefineSpace_fp.h │ │ ├── NV_Extend_fp.h │ │ ├── NV_GlobalWriteLock_fp.h │ │ ├── NV_Increment_fp.h │ │ ├── NV_ReadLock_fp.h │ │ ├── NV_ReadPublic_fp.h │ │ ├── NV_ReadValueAuth_fp.h │ │ ├── NV_ReadValue_fp.h │ │ ├── NV_Read_fp.h │ │ ├── NV_SetBits_fp.h │ │ ├── NV_UndefineSpaceSpecial_fp.h │ │ ├── NV_UndefineSpace_fp.h │ │ ├── NV_WriteLock_fp.h │ │ ├── NV_WriteValueAuth_fp.h │ │ ├── NV_WriteValue_fp.h │ │ ├── NV_Write_fp.h │ │ ├── OIAP_fp.h │ │ ├── OSAP_fp.h │ │ ├── ObjectChangeAuth_fp.h │ │ ├── OwnerReadInternalPub_fp.h │ │ ├── OwnerSetDisable_fp.h │ │ ├── PCR_Allocate_fp.h │ │ ├── PCR_Event_fp.h │ │ ├── PCR_Extend_fp.h │ │ ├── PCR_Read_fp.h │ │ ├── PCR_Reset12_fp.h │ │ ├── PCR_Reset_fp.h │ │ ├── PCR_SetAuthPolicy_fp.h │ │ ├── PCR_SetAuthValue_fp.h │ │ ├── PP_Commands_fp.h │ │ ├── Parameters.h │ │ ├── Parameters12.h │ │ ├── PcrRead12_fp.h │ │ ├── PolicyAuthValue_fp.h │ │ ├── PolicyAuthorizeNV_fp.h │ │ ├── PolicyAuthorize_fp.h │ │ ├── PolicyCommandCode_fp.h │ │ ├── PolicyCounterTimer_fp.h │ │ ├── PolicyCpHash_fp.h │ │ ├── PolicyDuplicationSelect_fp.h │ │ ├── PolicyGetDigest_fp.h │ │ ├── PolicyLocality_fp.h │ │ ├── PolicyNV_fp.h │ │ ├── PolicyNameHash_fp.h │ │ ├── PolicyNvWritten_fp.h │ │ ├── PolicyOR_fp.h │ │ ├── PolicyPCR_fp.h │ │ ├── PolicyPassword_fp.h │ │ ├── PolicyPhysicalPresence_fp.h │ │ ├── PolicyRestart_fp.h │ │ ├── PolicySecret_fp.h │ │ ├── PolicySigned_fp.h │ │ ├── PolicyTemplate_fp.h │ │ ├── PolicyTicket_fp.h │ │ ├── Quote2_fp.h │ │ ├── Quote_fp.h │ │ ├── RSA_Decrypt_fp.h │ │ ├── RSA_Encrypt_fp.h │ │ ├── ReadClock_fp.h │ │ ├── ReadPubek_fp.h │ │ ├── ReadPublic_fp.h │ │ ├── Rewrap_fp.h │ │ ├── SelfTest_fp.h │ │ ├── SequenceComplete_fp.h │ │ ├── SequenceUpdate_fp.h │ │ ├── SetAlgorithmSet_fp.h │ │ ├── SetCommandCodeAuditStatus_fp.h │ │ ├── SetPrimaryPolicy_fp.h │ │ ├── Shutdown_fp.h │ │ ├── Sign12_fp.h │ │ ├── Sign_fp.h │ │ ├── StartAuthSession_fp.h │ │ ├── Startup12_fp.h │ │ ├── Startup_fp.h │ │ ├── StirRandom_fp.h │ │ ├── TPMB.h │ │ ├── TPM_Types.h │ │ ├── TakeOwnership_fp.h │ │ ├── TestParms_fp.h │ │ ├── TpmBuildSwitches.h │ │ ├── Unmarshal12_fp.h │ │ ├── Unmarshal_fp.h │ │ ├── Unseal_fp.h │ │ ├── VerifySignature_fp.h │ │ ├── ZGen_2Phase_fp.h │ │ ├── tpmconstants12.h │ │ ├── tpmstructures12.h │ │ ├── tpmtypes12.h │ │ ├── tss.h │ │ ├── tsscrypto.h │ │ ├── tsscryptoh.h │ │ ├── tsserror.h │ │ ├── tsserror12.h │ │ ├── tssfile.h │ │ ├── tssmarshal.h │ │ ├── tssmarshal12.h │ │ ├── tssprint.h │ │ ├── tssprintcmd.h │ │ ├── tssresponsecode.h │ │ ├── tsstransmit.h │ │ └── tssutils.h │ │ ├── imaextend.c │ │ ├── imalib.c │ │ ├── imalib.h │ │ ├── import.c │ │ ├── importpem.c │ │ ├── load.c │ │ ├── loadexternal.c │ │ ├── makecredential.c │ │ ├── makefile-common │ │ ├── makefile-common12 │ │ ├── makefile-common20 │ │ ├── makefile.mac │ │ ├── makefile.mak │ │ ├── makefile.min │ │ ├── makefile.nofile │ │ ├── makefiletpm12 │ │ ├── makefiletpm20 │ │ ├── makefiletpmc │ │ ├── man │ │ └── man1 │ │ │ ├── tssactivatecredential.1 │ │ │ ├── tsscertify.1 │ │ │ ├── tsscertifycreation.1 │ │ │ ├── tsscertifyx509.1 │ │ │ ├── tsschangeeps.1 │ │ │ ├── tsschangepps.1 │ │ │ ├── tssclear.1 │ │ │ ├── tssclearcontrol.1 │ │ │ ├── tssclockrateadjust.1 │ │ │ ├── tssclockset.1 │ │ │ ├── tsscommit.1 │ │ │ ├── tsscontextload.1 │ │ │ ├── tsscontextsave.1 │ │ │ ├── tsscreate.1 │ │ │ ├── tsscreateek.1 │ │ │ ├── tsscreateekcert.1 │ │ │ ├── tsscreateloaded.1 │ │ │ ├── tsscreateprimary.1 │ │ │ ├── tssdictionaryattacklockreset.1 │ │ │ ├── tssdictionaryattackparameters.1 │ │ │ ├── tssduplicate.1 │ │ │ ├── tsseccparameters.1 │ │ │ ├── tssecephemeral.1 │ │ │ ├── tssencryptdecrypt.1 │ │ │ ├── tsseventextend.1 │ │ │ ├── tsseventsequencecomplete.1 │ │ │ ├── tssevictcontrol.1 │ │ │ ├── tssflushcontext.1 │ │ │ ├── tssgetcapability.1 │ │ │ ├── tssgetcommandauditdigest.1 │ │ │ ├── tssgetcryptolibrary.1 │ │ │ ├── tssgetrandom.1 │ │ │ ├── tssgetsessionauditdigest.1 │ │ │ ├── tssgettestresult.1 │ │ │ ├── tssgettime.1 │ │ │ ├── tsshash.1 │ │ │ ├── tsshashsequencestart.1 │ │ │ ├── tsshierarchychangeauth.1 │ │ │ ├── tsshierarchycontrol.1 │ │ │ ├── tsshmac.1 │ │ │ ├── tsshmacstart.1 │ │ │ ├── tssimaextend.1 │ │ │ ├── tssimport.1 │ │ │ ├── tssimportpem.1 │ │ │ ├── tssload.1 │ │ │ ├── tssloadexternal.1 │ │ │ ├── tssmakecredential.1 │ │ │ ├── tssntc2getconfig.1 │ │ │ ├── tssntc2lockconfig.1 │ │ │ ├── tssntc2preconfig.1 │ │ │ ├── tssnvcertify.1 │ │ │ ├── tssnvchangeauth.1 │ │ │ ├── tssnvdefinespace.1 │ │ │ ├── tssnvextend.1 │ │ │ ├── tssnvglobalwritelock.1 │ │ │ ├── tssnvincrement.1 │ │ │ ├── tssnvread.1 │ │ │ ├── tssnvreadlock.1 │ │ │ ├── tssnvreadpublic.1 │ │ │ ├── tssnvsetbits.1 │ │ │ ├── tssnvundefinespace.1 │ │ │ ├── tssnvundefinespacespecial.1 │ │ │ ├── tssnvwrite.1 │ │ │ ├── tssnvwritelock.1 │ │ │ ├── tssobjectchangeauth.1 │ │ │ ├── tsspcrallocate.1 │ │ │ ├── tsspcrevent.1 │ │ │ ├── tsspcrextend.1 │ │ │ ├── tsspcrread.1 │ │ │ ├── tsspcrreset.1 │ │ │ ├── tsspolicyauthorize.1 │ │ │ ├── tsspolicyauthorizenv.1 │ │ │ ├── tsspolicyauthvalue.1 │ │ │ ├── tsspolicycommandcode.1 │ │ │ ├── tsspolicycountertimer.1 │ │ │ ├── tsspolicycphash.1 │ │ │ ├── tsspolicyduplicationselect.1 │ │ │ ├── tsspolicygetdigest.1 │ │ │ ├── tsspolicymaker.1 │ │ │ ├── tsspolicymakerpcr.1 │ │ │ ├── tsspolicynamehash.1 │ │ │ ├── tsspolicynv.1 │ │ │ ├── tsspolicynvwritten.1 │ │ │ ├── tsspolicyor.1 │ │ │ ├── tsspolicypassword.1 │ │ │ ├── tsspolicypcr.1 │ │ │ ├── tsspolicyrestart.1 │ │ │ ├── tsspolicysecret.1 │ │ │ ├── tsspolicysigned.1 │ │ │ ├── tsspolicytemplate.1 │ │ │ ├── tsspolicyticket.1 │ │ │ ├── tsspowerup.1 │ │ │ ├── tssprintattr.1 │ │ │ ├── tsspublicname.1 │ │ │ ├── tssquote.1 │ │ │ ├── tssreadclock.1 │ │ │ ├── tssreadpublic.1 │ │ │ ├── tssreturncode.1 │ │ │ ├── tssrewrap.1 │ │ │ ├── tssrsadecrypt.1 │ │ │ ├── tssrsaencrypt.1 │ │ │ ├── tsssequencecomplete.1 │ │ │ ├── tsssequenceupdate.1 │ │ │ ├── tsssetcommandcodeauditstatus.1 │ │ │ ├── tsssetprimarypolicy.1 │ │ │ ├── tssshutdown.1 │ │ │ ├── tsssign.1 │ │ │ ├── tsssignapp.1 │ │ │ ├── tssstartauthsession.1 │ │ │ ├── tssstartup.1 │ │ │ ├── tssstirrandom.1 │ │ │ ├── tsstimepacket.1 │ │ │ ├── tsstpm2pem.1 │ │ │ ├── tsstpmcmd.1 │ │ │ ├── tsstpmpublic2eccpoint.1 │ │ │ ├── tssunseal.1 │ │ │ ├── tssverifysignature.1 │ │ │ ├── tsswriteapp.1 │ │ │ └── tsszgen2phase.1 │ │ ├── ntc2getconfig.c │ │ ├── ntc2lib.c │ │ ├── ntc2lib.h │ │ ├── ntc2lockconfig.c │ │ ├── ntc2preconfig.c │ │ ├── nvcertify.c │ │ ├── nvchangeauth.c │ │ ├── nvdefinespace.c │ │ ├── nvextend.c │ │ ├── nvglobalwritelock.c │ │ ├── nvincrement.c │ │ ├── nvread.c │ │ ├── nvreadlock.c │ │ ├── nvreadpublic.c │ │ ├── nvsetbits.c │ │ ├── nvundefinespace.c │ │ ├── nvundefinespacespecial.c │ │ ├── nvwrite.c │ │ ├── nvwritelock.c │ │ ├── objectchangeauth.c │ │ ├── objecttemplates.c │ │ ├── objecttemplates.h │ │ ├── pcrallocate.c │ │ ├── pcrevent.c │ │ ├── pcrextend.c │ │ ├── pcrread.c │ │ ├── pcrreset.c │ │ ├── policies │ │ ├── Policies.txt │ │ ├── aaa │ │ ├── bits48321601.bin │ │ ├── msgtpmgen.bin │ │ ├── nvwriteahasha.bin │ │ ├── nvwriteahasha.txt │ │ ├── nvwriteahashb.bin │ │ ├── nvwriteahashb.txt │ │ ├── nvwritecphasha.bin │ │ ├── nvwritecphasha.txt │ │ ├── nvwritecphashb.bin │ │ ├── nvwritecphashb.txt │ │ ├── p256privkey.pem │ │ ├── p256pubkey.pem │ │ ├── pnhnamehash.bin │ │ ├── pnhnamehash.txt │ │ ├── policyauthorizenv-unseal.bin │ │ ├── policyauthorizenv-unseal.txt │ │ ├── policyauthorizenv.bin │ │ ├── policyauthorizenv.txt │ │ ├── policyauthorizesha1.bin │ │ ├── policyauthorizesha1.txt │ │ ├── policyauthorizesha256.bin │ │ ├── policyauthorizesha256.txt │ │ ├── policyauthorizesha384.bin │ │ ├── policyauthorizesha384.txt │ │ ├── policyauthorizesha512.bin │ │ ├── policyauthorizesha512.txt │ │ ├── policyccactivate.bin │ │ ├── policyccactivate.txt │ │ ├── policycccertify.bin │ │ ├── policycccertify.txt │ │ ├── policycccreate-auth.bin │ │ ├── policycccreate-auth.txt │ │ ├── policyccduplicate.bin │ │ ├── policyccduplicate.txt │ │ ├── policyccnvchangeauth-auth.bin │ │ ├── policyccnvchangeauth-auth.txt │ │ ├── policyccquote.bin │ │ ├── policyccquote.txt │ │ ├── policyccsign-auth.bin │ │ ├── policyccsign-auth.txt │ │ ├── policyccsign.bin │ │ ├── policyccsign.txt │ │ ├── policyccundefinespacespecial-auth.bin │ │ ├── policyccundefinespacespecial-auth.txt │ │ ├── policycountertimer.bin │ │ ├── policycountertimer.txt │ │ ├── policycphash.bin │ │ ├── policycphash.txt │ │ ├── policycphashhash.bin │ │ ├── policycphashhash.txt │ │ ├── policydupsel-no.bin │ │ ├── policydupsel-no.txt │ │ ├── policydupsel-yes.bin │ │ ├── policydupsel-yes.txt │ │ ├── policyiwgek.txt │ │ ├── policyiwgekbsha256.bin │ │ ├── policyiwgekbsha256.txt │ │ ├── policyiwgekbsha384.bin │ │ ├── policyiwgekbsha384.txt │ │ ├── policyiwgekbsha512.bin │ │ ├── policyiwgekbsha512.txt │ │ ├── policyiwgekcsha256.bin │ │ ├── policyiwgekcsha256.txt │ │ ├── policyiwgekcsha384.bin │ │ ├── policyiwgekcsha384.txt │ │ ├── policyiwgekcsha512.bin │ │ ├── policyiwgekcsha512.txt │ │ ├── policyiwgeksha256.bin │ │ ├── policyiwgeksha384.bin │ │ ├── policyiwgeksha512.bin │ │ ├── policynamehash.bin │ │ ├── policynamehash.txt │ │ ├── policynvargs.txt │ │ ├── policynvnv.bin │ │ ├── policynvnv.txt │ │ ├── policyor.bin │ │ ├── policyor.txt │ │ ├── policyorwrittensigned.bin │ │ ├── policyorwrittensigned.txt │ │ ├── policypcr.bin │ │ ├── policypcr0.bin │ │ ├── policypcr0.txt │ │ ├── policypcr1623aaasha1.bin │ │ ├── policypcr1623aaasha256.bin │ │ ├── policypcr1623aaasha384.bin │ │ ├── policypcr1623aaasha512.bin │ │ ├── policypcr16aaasha1.bin │ │ ├── policypcr16aaasha1.txt │ │ ├── policypcr16aaasha256.bin │ │ ├── policypcr16aaasha256.txt │ │ ├── policypcr16aaasha384.bin │ │ ├── policypcr16aaasha384.txt │ │ ├── policypcr16aaasha512.bin │ │ ├── policypcr16aaasha512.txt │ │ ├── policypcrbm0.bin │ │ ├── policysecretnv.bin │ │ ├── policysecretnv.txt │ │ ├── policysecretnvpf.bin │ │ ├── policysecretnvpf.txt │ │ ├── policysecretnvpp.bin │ │ ├── policysecretnvpp.txt │ │ ├── policysecretp.bin │ │ ├── policysecretp.txt │ │ ├── policysecretpsha256.bin │ │ ├── policysecretpsha256ha.bin │ │ ├── policysecretpsha384.bin │ │ ├── policysecretpsha384ha.bin │ │ ├── policysecretpsha512.bin │ │ ├── policysecretpsha512ha.bin │ │ ├── policysecretsha256.bin │ │ ├── policysecretsha256.txt │ │ ├── policysignedsha1.bin │ │ ├── policysignedsha1.txt │ │ ├── policysignedsha256.bin │ │ ├── policysignedsha256.txt │ │ ├── policysignedsha384.bin │ │ ├── policysignedsha384.txt │ │ ├── policysignedsha512.bin │ │ ├── policysignedsha512.txt │ │ ├── policytemplate.bin │ │ ├── policytemplate.txt │ │ ├── policytemplatehash.bin │ │ ├── policytemplatehash.txt │ │ ├── policywrittenclrsigned.bin │ │ ├── policywrittenclrsigned.txt │ │ ├── policywrittenset.bin │ │ ├── policywrittenset.txt │ │ ├── policywrittensetsigned.bin │ │ ├── policywrittensetsigned.txt │ │ ├── rsaprivkey.der │ │ ├── rsaprivkey.pem │ │ ├── rsapubkey.pem │ │ ├── sha1.bin │ │ ├── sha1aaa.bin │ │ ├── sha1extaaa.bin │ │ ├── sha1extaaa0.bin │ │ ├── sha1exthaaa.bin │ │ ├── sha256.bin │ │ ├── sha256aaa.bin │ │ ├── sha256extaaa.bin │ │ ├── sha256extaaa0.bin │ │ ├── sha256exthaaa.bin │ │ ├── sha384.bin │ │ ├── sha384aaa.bin │ │ ├── sha384extaaa.bin │ │ ├── sha384extaaa0.bin │ │ ├── sha384exthaaa.bin │ │ ├── sha512.bin │ │ ├── sha512aaa.bin │ │ ├── sha512extaaa.bin │ │ ├── sha512extaaa0.bin │ │ ├── sha512exthaaa.bin │ │ ├── zero4.bin │ │ ├── zero8.bin │ │ ├── zerosha1.bin │ │ ├── zerosha256.bin │ │ ├── zerosha384.bin │ │ └── zerosha512.bin │ │ ├── policyauthorize.c │ │ ├── policyauthorizenv.c │ │ ├── policyauthvalue.c │ │ ├── policycommandcode.c │ │ ├── policycountertimer.c │ │ ├── policycphash.c │ │ ├── policyduplicationselect.c │ │ ├── policygetdigest.c │ │ ├── policymaker.c │ │ ├── policymakerpcr.c │ │ ├── policynamehash.c │ │ ├── policynv.c │ │ ├── policynvwritten.c │ │ ├── policyor.c │ │ ├── policypassword.c │ │ ├── policypcr.c │ │ ├── policyrestart.c │ │ ├── policysecret.c │ │ ├── policysigned.c │ │ ├── policytemplate.c │ │ ├── policyticket.c │ │ ├── powerup.c │ │ ├── printattr.c │ │ ├── publicname.c │ │ ├── quote.c │ │ ├── readclock.c │ │ ├── readpublic.c │ │ ├── reg.bat │ │ ├── reg.sh │ │ ├── regtests │ │ ├── .cvsignore │ │ ├── initkeys.bat │ │ ├── initkeys.sh │ │ ├── inittpm.bat │ │ ├── inittpm.sh │ │ ├── testaes.bat │ │ ├── testaes.sh │ │ ├── testaes138.bat │ │ ├── testaes138.sh │ │ ├── testattest.bat │ │ ├── testattest.sh │ │ ├── testattest155.bat │ │ ├── testattest155.sh │ │ ├── testbind.bat │ │ ├── testbind.sh │ │ ├── testchangeauth.bat │ │ ├── testchangeauth.sh │ │ ├── testchangeseed.bat │ │ ├── testchangeseed.sh │ │ ├── testclocks.bat │ │ ├── testclocks.sh │ │ ├── testcontext.bat │ │ ├── testcontext.sh │ │ ├── testcreateloaded.bat │ │ ├── testcreateloaded.sh │ │ ├── testcredential.bat │ │ ├── testcredential.sh │ │ ├── testda.bat │ │ ├── testda.sh │ │ ├── testdup.bat │ │ ├── testdup.sh │ │ ├── testecc.bat │ │ ├── testecc.sh │ │ ├── testencsession.bat │ │ ├── testencsession.sh │ │ ├── testevict.bat │ │ ├── testevict.sh │ │ ├── testgetcap.bat │ │ ├── testgetcap.sh │ │ ├── testhierarchy.bat │ │ ├── testhierarchy.sh │ │ ├── testhmac.bat │ │ ├── testhmac.sh │ │ ├── testhmacsession.bat │ │ ├── testhmacsession.sh │ │ ├── testnv.bat │ │ ├── testnv.sh │ │ ├── testnvpin.bat │ │ ├── testnvpin.sh │ │ ├── testpcr.bat │ │ ├── testpcr.sh │ │ ├── testpolicy.bat │ │ ├── testpolicy.sh │ │ ├── testpolicy138.bat │ │ ├── testpolicy138.sh │ │ ├── testprimary.bat │ │ ├── testprimary.sh │ │ ├── testrng.bat │ │ ├── testrng.sh │ │ ├── testrsa.bat │ │ ├── testrsa.sh │ │ ├── testsalt.bat │ │ ├── testsalt.sh │ │ ├── testshutdown.bat │ │ ├── testshutdown.sh │ │ ├── testsign.bat │ │ ├── testsign.sh │ │ ├── teststorage.bat │ │ ├── teststorage.sh │ │ ├── testunseal.bat │ │ ├── testunseal.sh │ │ ├── testx509.bat │ │ └── testx509.sh │ │ ├── returncode.c │ │ ├── rewrap.c │ │ ├── rsadecrypt.c │ │ ├── rsaencrypt.c │ │ ├── sequencecomplete.c │ │ ├── sequenceupdate.c │ │ ├── setcommandcodeauditstatus.c │ │ ├── setprimarypolicy.c │ │ ├── shutdown.c │ │ ├── sign.c │ │ ├── signapp.c │ │ ├── startauthsession.c │ │ ├── startup.c │ │ ├── stirrandom.c │ │ ├── timepacket.c │ │ ├── tpm2pem.c │ │ ├── tpmcmd.c │ │ ├── tpmproxy.c │ │ ├── tpmpublic2eccpoint.c │ │ ├── tss.c │ │ ├── tss12.c │ │ ├── tss12.h │ │ ├── tss20.c │ │ ├── tss20.h │ │ ├── tssauth.c │ │ ├── tssauth.h │ │ ├── tssauth12.c │ │ ├── tssauth12.h │ │ ├── tssauth20.c │ │ ├── tssauth20.h │ │ ├── tssccattributes.c │ │ ├── tssccattributes.h │ │ ├── tssccattributes12.c │ │ ├── tssccattributes12.h │ │ ├── tsscrypto.c │ │ ├── tsscryptoh.c │ │ ├── tssdev.c │ │ ├── tssdev.h │ │ ├── tssdevskiboot.c │ │ ├── tssfile.c │ │ ├── tssmarshal.c │ │ ├── tssmarshal12.c │ │ ├── tssntc.c │ │ ├── tssntc.h │ │ ├── tssprint.c │ │ ├── tssprintcmd.c │ │ ├── tssproperties.c │ │ ├── tssproperties.h │ │ ├── tssresponsecode.c │ │ ├── tsssocket.c │ │ ├── tsssocket.h │ │ ├── tsstbsi.c │ │ ├── tsstransmit.c │ │ ├── tssutils.c │ │ ├── tssutilsverbose.c │ │ ├── unseal.c │ │ ├── verifysignature.c │ │ ├── writeapp.c │ │ └── zgen2phase.c │ ├── netinet │ └── in.h │ ├── tssskiboot.c │ └── tssskiboot.h ├── libxz ├── Makefile.inc ├── xz.h ├── xz_config.h ├── xz_crc32.c ├── xz_dec_lzma2.c ├── xz_dec_stream.c ├── xz_lzma2.h ├── xz_private.h └── xz_stream.h ├── make_offsets.sh ├── make_version.sh ├── opal-ci ├── Dockerfile-clang ├── Dockerfile-debian-stretch ├── Dockerfile-debian-unstable ├── Dockerfile-docs ├── Dockerfile-fedora-rawhide ├── Dockerfile-fedora41 ├── Dockerfile-fedora42 ├── Dockerfile-ubuntu-22.04 ├── Dockerfile-ubuntu-24.04 ├── Dockerfile-ubuntu-rolling ├── Makefile ├── README ├── build-clang.sh ├── build-debian-unstable.sh ├── build-docs.sh ├── build-fedora-rawhide.sh ├── build-fedora41.sh ├── build-fedora42.sh ├── build-qemu-powernv.sh ├── build-ubuntu-22.04.sh ├── build-ubuntu-24.04.sh ├── build-ubuntu-rolling.sh └── install-deps-qemu-powernv.sh ├── platforms ├── Makefile.inc ├── astbmc │ ├── Makefile.inc │ ├── astbmc.h │ ├── barreleye.c │ ├── blackbird.c │ ├── common.c │ ├── firestone.c │ ├── garrison.c │ ├── habanero.c │ ├── mihawk.c │ ├── mowgli.c │ ├── nicole.c │ ├── p8dnu.c │ ├── p8dtu.c │ ├── p9dsu.c │ ├── palmetto.c │ ├── pnor.c │ ├── rainier.c │ ├── romulus.c │ ├── slots.c │ ├── swift.c │ ├── talos.c │ ├── vesnin.c │ ├── witherspoon.c │ └── zaius.c ├── ibm-fsp │ ├── Makefile.inc │ ├── common.c │ ├── firenze-pci.c │ ├── firenze.c │ ├── fsp-vpd.c │ ├── hostservices.c │ ├── ibm-fsp.h │ ├── lxvpd.c │ ├── lxvpd.h │ └── zz.c ├── mambo │ ├── Makefile.inc │ ├── console.c │ ├── mambo.c │ └── mambo.h ├── qemu │ ├── Makefile.inc │ └── qemu.c └── rhesus │ ├── Makefile.inc │ ├── ec │ ├── config.h │ └── gpio.h │ ├── gpio.c │ └── rhesus.c ├── pldm ├── include │ ├── endian.h │ └── libpldm │ │ ├── base.h │ │ ├── bios.h │ │ ├── bios_table.h │ │ ├── entity.h │ │ ├── firmware_update.h │ │ ├── fru.h │ │ ├── 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_types.h │ │ ├── state_set.h │ │ ├── states.h │ │ └── utils.h └── libpldm │ ├── Makefile.inc │ ├── README.skiboot │ ├── base.c │ ├── bios.c │ ├── bios_table.c │ ├── firmware_update.c │ ├── fru.c │ ├── msgbuf.h │ ├── msgbuf │ └── platform.h │ ├── oem │ └── ibm │ │ ├── Makefile.inc │ │ ├── README.skiboot │ │ ├── file_io.c │ │ ├── host.c │ │ └── platform.c │ ├── pdr.c │ ├── platform.c │ └── utils.c ├── skiboot.lds.S ├── skiboot.spec └── test ├── Makefile.check ├── dt_common.c ├── hello_world ├── Makefile.check ├── hello_kernel │ └── hello_kernel.S ├── run_hello_world.tcl ├── run_mambo_hello_world.sh ├── run_mambo_p10_hello_world.sh ├── run_mambo_p9_hello_world.sh └── run_qemu_hello_world.sh ├── make-boot-coverage-report.sh ├── run.sh ├── run_boot_test.tcl ├── run_mambo_boot_test.sh ├── run_qemu_boot_test.sh └── sreset_world ├── Makefile.check ├── run_mambo_p9_sreset.sh ├── run_mambo_sreset.sh ├── run_sreset_world.tcl └── sreset_kernel └── sreset_kernel.S /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/Makefile.main -------------------------------------------------------------------------------- /Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/Makefile.rules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/README.md -------------------------------------------------------------------------------- /asm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/Makefile.inc -------------------------------------------------------------------------------- /asm/asm-offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/asm-offsets.c -------------------------------------------------------------------------------- /asm/cvc_entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/cvc_entry.S -------------------------------------------------------------------------------- /asm/dummy_map.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/dummy_map.S -------------------------------------------------------------------------------- /asm/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/head.S -------------------------------------------------------------------------------- /asm/kernel-wrapper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/kernel-wrapper.S -------------------------------------------------------------------------------- /asm/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/misc.S -------------------------------------------------------------------------------- /asm/real_map.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/asm/real_map.S -------------------------------------------------------------------------------- /ccan/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/Makefile.check -------------------------------------------------------------------------------- /ccan/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/Makefile.inc -------------------------------------------------------------------------------- /ccan/README.skiboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/README.skiboot -------------------------------------------------------------------------------- /ccan/array_size/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/array_size/LICENSE -------------------------------------------------------------------------------- /ccan/array_size/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/array_size/_info -------------------------------------------------------------------------------- /ccan/array_size/array_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/array_size/array_size.h -------------------------------------------------------------------------------- /ccan/array_size/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/array_size/test/run.c -------------------------------------------------------------------------------- /ccan/build_assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/build_assert/LICENSE -------------------------------------------------------------------------------- /ccan/build_assert/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/build_assert/_info -------------------------------------------------------------------------------- /ccan/build_assert/build_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/build_assert/build_assert.h -------------------------------------------------------------------------------- /ccan/check_type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/check_type/LICENSE -------------------------------------------------------------------------------- /ccan/check_type/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/check_type/_info -------------------------------------------------------------------------------- /ccan/check_type/check_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/check_type/check_type.h -------------------------------------------------------------------------------- /ccan/check_type/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/check_type/test/run.c -------------------------------------------------------------------------------- /ccan/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/config.h -------------------------------------------------------------------------------- /ccan/container_of/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/container_of/LICENSE -------------------------------------------------------------------------------- /ccan/container_of/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/container_of/_info -------------------------------------------------------------------------------- /ccan/container_of/container_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/container_of/container_of.h -------------------------------------------------------------------------------- /ccan/container_of/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/container_of/test/run.c -------------------------------------------------------------------------------- /ccan/endian/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/endian/LICENSE -------------------------------------------------------------------------------- /ccan/endian/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/endian/_info -------------------------------------------------------------------------------- /ccan/endian/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/endian/endian.h -------------------------------------------------------------------------------- /ccan/endian/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/endian/test/run.c -------------------------------------------------------------------------------- /ccan/heap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/heap/LICENSE -------------------------------------------------------------------------------- /ccan/heap/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/heap/_info -------------------------------------------------------------------------------- /ccan/heap/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/heap/heap.c -------------------------------------------------------------------------------- /ccan/heap/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/heap/heap.h -------------------------------------------------------------------------------- /ccan/heap/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/heap/test/run.c -------------------------------------------------------------------------------- /ccan/list/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/LICENSE -------------------------------------------------------------------------------- /ccan/list/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/_info -------------------------------------------------------------------------------- /ccan/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/list.c -------------------------------------------------------------------------------- /ccan/list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/list.h -------------------------------------------------------------------------------- /ccan/list/test/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/test/helper.c -------------------------------------------------------------------------------- /ccan/list/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/test/helper.h -------------------------------------------------------------------------------- /ccan/list/test/run-single-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/test/run-single-eval.c -------------------------------------------------------------------------------- /ccan/list/test/run-with-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/test/run-with-debug.c -------------------------------------------------------------------------------- /ccan/list/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/list/test/run.c -------------------------------------------------------------------------------- /ccan/short_types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/short_types/LICENSE -------------------------------------------------------------------------------- /ccan/short_types/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/short_types/_info -------------------------------------------------------------------------------- /ccan/short_types/short_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/short_types/short_types.h -------------------------------------------------------------------------------- /ccan/short_types/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/short_types/test/run.c -------------------------------------------------------------------------------- /ccan/str/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/LICENSE -------------------------------------------------------------------------------- /ccan/str/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/_info -------------------------------------------------------------------------------- /ccan/str/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/debug.c -------------------------------------------------------------------------------- /ccan/str/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/str.c -------------------------------------------------------------------------------- /ccan/str/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/str.h -------------------------------------------------------------------------------- /ccan/str/str_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/str_debug.h -------------------------------------------------------------------------------- /ccan/str/test/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/test/debug.c -------------------------------------------------------------------------------- /ccan/str/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/str/test/run.c -------------------------------------------------------------------------------- /ccan/tap/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/ccan/tap/tap.h -------------------------------------------------------------------------------- /core/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/Makefile.inc -------------------------------------------------------------------------------- /core/affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/affinity.c -------------------------------------------------------------------------------- /core/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/bitmap.c -------------------------------------------------------------------------------- /core/buddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/buddy.c -------------------------------------------------------------------------------- /core/chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/chip.c -------------------------------------------------------------------------------- /core/console-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/console-log.c -------------------------------------------------------------------------------- /core/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/console.c -------------------------------------------------------------------------------- /core/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/cpu.c -------------------------------------------------------------------------------- /core/cpufeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/cpufeatures.c -------------------------------------------------------------------------------- /core/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/device.c -------------------------------------------------------------------------------- /core/direct-controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/direct-controls.c -------------------------------------------------------------------------------- /core/errorlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/errorlog.c -------------------------------------------------------------------------------- /core/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/exceptions.c -------------------------------------------------------------------------------- /core/fast-reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/fast-reboot.c -------------------------------------------------------------------------------- /core/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/fdt.c -------------------------------------------------------------------------------- /core/flash-firmware-versions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/flash-firmware-versions.c -------------------------------------------------------------------------------- /core/flash-subpartition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/flash-subpartition.c -------------------------------------------------------------------------------- /core/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/flash.c -------------------------------------------------------------------------------- /core/gcov-profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/gcov-profiling.c -------------------------------------------------------------------------------- /core/hmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/hmi.c -------------------------------------------------------------------------------- /core/hwprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/hwprobe.c -------------------------------------------------------------------------------- /core/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/i2c.c -------------------------------------------------------------------------------- /core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/init.c -------------------------------------------------------------------------------- /core/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/interrupts.c -------------------------------------------------------------------------------- /core/ipmi-opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/ipmi-opal.c -------------------------------------------------------------------------------- /core/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/ipmi.c -------------------------------------------------------------------------------- /core/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/lock.c -------------------------------------------------------------------------------- /core/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/malloc.c -------------------------------------------------------------------------------- /core/mce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/mce.c -------------------------------------------------------------------------------- /core/mem_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/mem_region.c -------------------------------------------------------------------------------- /core/nvram-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/nvram-format.c -------------------------------------------------------------------------------- /core/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/nvram.c -------------------------------------------------------------------------------- /core/opal-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/opal-dump.c -------------------------------------------------------------------------------- /core/opal-msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/opal-msg.c -------------------------------------------------------------------------------- /core/opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/opal.c -------------------------------------------------------------------------------- /core/pci-dt-slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci-dt-slot.c -------------------------------------------------------------------------------- /core/pci-opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci-opal.c -------------------------------------------------------------------------------- /core/pci-quirk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci-quirk.c -------------------------------------------------------------------------------- /core/pci-slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci-slot.c -------------------------------------------------------------------------------- /core/pci-virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci-virt.c -------------------------------------------------------------------------------- /core/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pci.c -------------------------------------------------------------------------------- /core/pcie-slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pcie-slot.c -------------------------------------------------------------------------------- /core/pel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pel.c -------------------------------------------------------------------------------- /core/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/platform.c -------------------------------------------------------------------------------- /core/pldm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/Makefile.inc -------------------------------------------------------------------------------- /core/pldm/pldm-base-requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-base-requests.c -------------------------------------------------------------------------------- /core/pldm/pldm-bios-requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-bios-requests.c -------------------------------------------------------------------------------- /core/pldm/pldm-fru-requests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-fru-requests.c -------------------------------------------------------------------------------- /core/pldm/pldm-lid-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-lid-files.c -------------------------------------------------------------------------------- /core/pldm/pldm-mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-mctp.c -------------------------------------------------------------------------------- /core/pldm/pldm-opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-opal.c -------------------------------------------------------------------------------- /core/pldm/pldm-requester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-requester.c -------------------------------------------------------------------------------- /core/pldm/pldm-responder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-responder.c -------------------------------------------------------------------------------- /core/pldm/pldm-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-rtc.c -------------------------------------------------------------------------------- /core/pldm/pldm-watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm-watchdog.c -------------------------------------------------------------------------------- /core/pldm/pldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pldm/pldm.h -------------------------------------------------------------------------------- /core/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/pool.c -------------------------------------------------------------------------------- /core/powercap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/powercap.c -------------------------------------------------------------------------------- /core/psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/psr.c -------------------------------------------------------------------------------- /core/relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/relocate.c -------------------------------------------------------------------------------- /core/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/rtc.c -------------------------------------------------------------------------------- /core/sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/sensor.c -------------------------------------------------------------------------------- /core/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/stack.c -------------------------------------------------------------------------------- /core/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/Makefile.check -------------------------------------------------------------------------------- /core/test/dummy-cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/dummy-cpu.h -------------------------------------------------------------------------------- /core/test/firmware-versions-input/version-nodash: -------------------------------------------------------------------------------- 1 | no_dashes_in_version 2 | this_is_wrong 3 | -------------------------------------------------------------------------------- /core/test/firmware-versions-input/version-trunc: -------------------------------------------------------------------------------- 1 | open-power-SUPERMICRO-P8DTU-V2.00.GA2-20161028 2 | op 3 | -------------------------------------------------------------------------------- /core/test/run-api-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-api-test.c -------------------------------------------------------------------------------- /core/test/run-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-bitmap.c -------------------------------------------------------------------------------- /core/test/run-buddy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-buddy.c -------------------------------------------------------------------------------- /core/test/run-console-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-console-log.c -------------------------------------------------------------------------------- /core/test/run-cpufeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-cpufeatures.c -------------------------------------------------------------------------------- /core/test/run-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-device.c -------------------------------------------------------------------------------- /core/test/run-malloc-speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-malloc-speed.c -------------------------------------------------------------------------------- /core/test/run-malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-malloc.c -------------------------------------------------------------------------------- /core/test/run-mem_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-mem_region.c -------------------------------------------------------------------------------- /core/test/run-mem_region_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-mem_region_init.c -------------------------------------------------------------------------------- /core/test/run-mem_region_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-mem_region_next.c -------------------------------------------------------------------------------- /core/test/run-msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-msg.c -------------------------------------------------------------------------------- /core/test/run-nvram-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-nvram-format.c -------------------------------------------------------------------------------- /core/test/run-pci-quirk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-pci-quirk.c -------------------------------------------------------------------------------- /core/test/run-pel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-pel.c -------------------------------------------------------------------------------- /core/test/run-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-pool.c -------------------------------------------------------------------------------- /core/test/run-time-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-time-utils.c -------------------------------------------------------------------------------- /core/test/run-timebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-timebase.c -------------------------------------------------------------------------------- /core/test/run-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-timer.c -------------------------------------------------------------------------------- /core/test/run-trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/run-trace.c -------------------------------------------------------------------------------- /core/test/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/test/stubs.c -------------------------------------------------------------------------------- /core/time-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/time-utils.c -------------------------------------------------------------------------------- /core/timebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/timebase.c -------------------------------------------------------------------------------- /core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/timer.c -------------------------------------------------------------------------------- /core/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/trace.c -------------------------------------------------------------------------------- /core/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/utils.c -------------------------------------------------------------------------------- /core/vpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/core/vpd.c -------------------------------------------------------------------------------- /coverity-model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/coverity-model.c -------------------------------------------------------------------------------- /doc/DtsLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/DtsLexer.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/.a_file_for_git_to_keep_empty_directory_around: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/bmc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/bmc.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/console-log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/console-log.rst -------------------------------------------------------------------------------- /doc/device-tree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree.rst -------------------------------------------------------------------------------- /doc/device-tree/ibm,cvc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/ibm,cvc.rst -------------------------------------------------------------------------------- /doc/device-tree/ibm,opal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/ibm,opal.rst -------------------------------------------------------------------------------- /doc/device-tree/ibm,opal/led.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/ibm,opal/led.rst -------------------------------------------------------------------------------- /doc/device-tree/imc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/imc.rst -------------------------------------------------------------------------------- /doc/device-tree/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/index.rst -------------------------------------------------------------------------------- /doc/device-tree/nvlink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/nvlink.rst -------------------------------------------------------------------------------- /doc/device-tree/nx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/nx.rst -------------------------------------------------------------------------------- /doc/device-tree/opencapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/opencapi.rst -------------------------------------------------------------------------------- /doc/device-tree/pci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/pci.rst -------------------------------------------------------------------------------- /doc/device-tree/tpm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/tpm.rst -------------------------------------------------------------------------------- /doc/device-tree/vas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/vas.rst -------------------------------------------------------------------------------- /doc/device-tree/vpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/device-tree/vpd.rst -------------------------------------------------------------------------------- /doc/error-logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/error-logging.rst -------------------------------------------------------------------------------- /doc/gcov.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/gcov.rst -------------------------------------------------------------------------------- /doc/ghpages-skeleton/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/ghpages-skeleton/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/ghpages-skeleton/index.html -------------------------------------------------------------------------------- /doc/imc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/imc.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/memory.rst -------------------------------------------------------------------------------- /doc/mpipl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/mpipl.rst -------------------------------------------------------------------------------- /doc/nvlink.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/nvlink.rst -------------------------------------------------------------------------------- /doc/opal-api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/index.rst -------------------------------------------------------------------------------- /doc/opal-api/opal-get-msg-85.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/opal-get-msg-85.rst -------------------------------------------------------------------------------- /doc/opal-api/opal-messages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/opal-messages.rst -------------------------------------------------------------------------------- /doc/opal-api/opal-powercap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/opal-powercap.rst -------------------------------------------------------------------------------- /doc/opal-api/opal-secvar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/opal-secvar.rst -------------------------------------------------------------------------------- /doc/opal-api/opal-test-0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/opal-test-0.rst -------------------------------------------------------------------------------- /doc/opal-api/power9-changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/power9-changes.rst -------------------------------------------------------------------------------- /doc/opal-api/return-codes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-api/return-codes.rst -------------------------------------------------------------------------------- /doc/opal-spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/opal-spec.rst -------------------------------------------------------------------------------- /doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/overview.rst -------------------------------------------------------------------------------- /doc/pci-slot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/pci-slot.rst -------------------------------------------------------------------------------- /doc/pci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/pci.rst -------------------------------------------------------------------------------- /doc/platforms-and-cpus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/platforms-and-cpus.rst -------------------------------------------------------------------------------- /doc/power-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/power-management.rst -------------------------------------------------------------------------------- /doc/process/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/process/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/process/versioning.rst -------------------------------------------------------------------------------- /doc/release-notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/release-notes/index.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | recommonmark 3 | docutils 4 | -------------------------------------------------------------------------------- /doc/secvar/driver-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/secvar/driver-api.rst -------------------------------------------------------------------------------- /doc/secvar/edk2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/secvar/edk2.rst -------------------------------------------------------------------------------- /doc/secvar/secboot_tpm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/secvar/secboot_tpm.rst -------------------------------------------------------------------------------- /doc/stb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/stb.rst -------------------------------------------------------------------------------- /doc/vas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/vas.rst -------------------------------------------------------------------------------- /doc/xive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/xive.rst -------------------------------------------------------------------------------- /doc/xscom-node-bindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/doc/xscom-node-bindings.rst -------------------------------------------------------------------------------- /external/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/Makefile.check -------------------------------------------------------------------------------- /external/awan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/awan/README.md -------------------------------------------------------------------------------- /external/boot-tests/boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/boot-tests/boot_test.sh -------------------------------------------------------------------------------- /external/common/.gitignore: -------------------------------------------------------------------------------- 1 | ast-sf-ctrl.c 2 | ast.h 3 | io.h -------------------------------------------------------------------------------- /external/common/arch_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/common/arch_flash.h -------------------------------------------------------------------------------- /external/common/arch_flash_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/common/arch_flash_arm.c -------------------------------------------------------------------------------- /external/common/arch_flash_powerpc_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/common/arch_flash_unknown_io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/common/get_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/common/get_arch.sh -------------------------------------------------------------------------------- /external/common/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/common/rules.mk -------------------------------------------------------------------------------- /external/devicetree/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /external/devicetree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/devicetree/Makefile -------------------------------------------------------------------------------- /external/devicetree/p9.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/devicetree/p9.dts -------------------------------------------------------------------------------- /external/ffspart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/ffspart/.gitignore -------------------------------------------------------------------------------- /external/ffspart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/ffspart/Makefile -------------------------------------------------------------------------------- /external/ffspart/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/ffspart/config.h -------------------------------------------------------------------------------- /external/ffspart/ffspart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/ffspart/ffspart.c -------------------------------------------------------------------------------- /external/ffspart/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/ffspart/rules.mk -------------------------------------------------------------------------------- /external/ffspart/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/ffspart/ check 2 | -------------------------------------------------------------------------------- /external/ffspart/test/results/00-usage.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/01-param-sanity.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/01.1-param-sanity.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/05-hdr-overlap.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/06-small-flash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/07-big-files.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/08-small-files.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/10-bad-input.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/11-long-name.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/12-bad-numbers-base.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/13-bad-numbers-size.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/14-bad-input-flags.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/ffspart/test/results/15-overlapping-partitions.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/fwts/generate-fwts-olog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/fwts/generate-fwts-olog -------------------------------------------------------------------------------- /external/fwts/merge-fwts-olog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/fwts/merge-fwts-olog -------------------------------------------------------------------------------- /external/gard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/.gitignore -------------------------------------------------------------------------------- /external/gard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/Makefile -------------------------------------------------------------------------------- /external/gard/Makefile.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/Makefile.dist -------------------------------------------------------------------------------- /external/gard/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/config.h -------------------------------------------------------------------------------- /external/gard/gard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/gard.c -------------------------------------------------------------------------------- /external/gard/gard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/gard.h -------------------------------------------------------------------------------- /external/gard/opal-gard.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/opal-gard.1 -------------------------------------------------------------------------------- /external/gard/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/rules.mk -------------------------------------------------------------------------------- /external/gard/test/add_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/test/add_test.sh -------------------------------------------------------------------------------- /external/gard/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/gard/ check 2 | -------------------------------------------------------------------------------- /external/gard/test/results/00-list.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/01-show_1.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/02-usage.out: -------------------------------------------------------------------------------- 1 | Open-Power GARD tool VERSION 2 | -------------------------------------------------------------------------------- /external/gard/test/results/03-show_1-p9.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/04-create-bad-instance.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/05-create-bad-unit.err: -------------------------------------------------------------------------------- 1 | Unknown unit at: 'doesnt_exist0' 2 | Unable to parse path 3 | -------------------------------------------------------------------------------- /external/gard/test/results/05-create-bad-unit.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/06-create-long-path.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/07-create-slash.err: -------------------------------------------------------------------------------- 1 | Unknown unit at: '' 2 | Unable to parse path 3 | -------------------------------------------------------------------------------- /external/gard/test/results/07-create-slash.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/08-create-duplicate.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/09-create-last-unit.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/10-clear-single.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/results/11-clear-first.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/gard/test/test-gard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/test/test-gard -------------------------------------------------------------------------------- /external/gard/test/tests/00-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/test/tests/00-list -------------------------------------------------------------------------------- /external/gard/units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/gard/units.c -------------------------------------------------------------------------------- /external/lpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/lpc/Makefile -------------------------------------------------------------------------------- /external/lpc/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/lpc/lpc.c -------------------------------------------------------------------------------- /external/mambo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/Makefile -------------------------------------------------------------------------------- /external/mambo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/README.md -------------------------------------------------------------------------------- /external/mambo/cvc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/cvc.bin -------------------------------------------------------------------------------- /external/mambo/mambo_utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/mambo_utils.tcl -------------------------------------------------------------------------------- /external/mambo/qtrace_utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/qtrace_utils.tcl -------------------------------------------------------------------------------- /external/mambo/skiboot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/mambo/skiboot.tcl -------------------------------------------------------------------------------- /external/memboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/memboot/Makefile -------------------------------------------------------------------------------- /external/memboot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/memboot/README -------------------------------------------------------------------------------- /external/memboot/memboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/memboot/memboot.c -------------------------------------------------------------------------------- /external/npu/run_procedure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/npu/run_procedure.sh -------------------------------------------------------------------------------- /external/opal-prd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/.gitignore -------------------------------------------------------------------------------- /external/opal-prd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/Makefile -------------------------------------------------------------------------------- /external/opal-prd/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/config.h -------------------------------------------------------------------------------- /external/opal-prd/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/i2c.c -------------------------------------------------------------------------------- /external/opal-prd/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/i2c.h -------------------------------------------------------------------------------- /external/opal-prd/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/module.c -------------------------------------------------------------------------------- /external/opal-prd/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/module.h -------------------------------------------------------------------------------- /external/opal-prd/opal-prd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/opal-prd.8 -------------------------------------------------------------------------------- /external/opal-prd/opal-prd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/opal-prd.c -------------------------------------------------------------------------------- /external/opal-prd/opal-prd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/opal-prd.h -------------------------------------------------------------------------------- /external/opal-prd/pnor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/pnor.c -------------------------------------------------------------------------------- /external/opal-prd/pnor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/pnor.h -------------------------------------------------------------------------------- /external/opal-prd/thunk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/opal-prd/thunk.S -------------------------------------------------------------------------------- /external/pci-scripts/phberr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pci-scripts/phberr.py -------------------------------------------------------------------------------- /external/pci-scripts/ppc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pci-scripts/ppc.py -------------------------------------------------------------------------------- /external/pflash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/.gitignore -------------------------------------------------------------------------------- /external/pflash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/Makefile -------------------------------------------------------------------------------- /external/pflash/Makefile.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/Makefile.dist -------------------------------------------------------------------------------- /external/pflash/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/TODO -------------------------------------------------------------------------------- /external/pflash/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/config.h -------------------------------------------------------------------------------- /external/pflash/pflash.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/pflash.1 -------------------------------------------------------------------------------- /external/pflash/pflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/pflash.c -------------------------------------------------------------------------------- /external/pflash/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/progress.c -------------------------------------------------------------------------------- /external/pflash/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/progress.h -------------------------------------------------------------------------------- /external/pflash/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/rules.mk -------------------------------------------------------------------------------- /external/pflash/test/make-check-test: -------------------------------------------------------------------------------- 1 | make -C external/pflash/ check 2 | -------------------------------------------------------------------------------- /external/pflash/test/results/00-usage.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/01-info.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/02-erase.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/03-erase-parts.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/04-program-rand.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/05-bad-numbers.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/results/06-miscprint.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/pflash/test/test-pflash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/pflash/test/test-pflash -------------------------------------------------------------------------------- /external/read_esel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/read_esel.sh -------------------------------------------------------------------------------- /external/shared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/shared/Makefile -------------------------------------------------------------------------------- /external/shared/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/shared/config.h -------------------------------------------------------------------------------- /external/shared/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/shared/rules.mk -------------------------------------------------------------------------------- /external/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/test/test.sh -------------------------------------------------------------------------------- /external/trace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/trace/Makefile -------------------------------------------------------------------------------- /external/trace/dump_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/trace/dump_trace.c -------------------------------------------------------------------------------- /external/trace/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/trace/trace.c -------------------------------------------------------------------------------- /external/trace/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/trace/trace.h -------------------------------------------------------------------------------- /external/xscom-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/.gitignore -------------------------------------------------------------------------------- /external/xscom-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/Makefile -------------------------------------------------------------------------------- /external/xscom-utils/getscom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/getscom.1 -------------------------------------------------------------------------------- /external/xscom-utils/getscom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/getscom.c -------------------------------------------------------------------------------- /external/xscom-utils/getsram.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/getsram.1 -------------------------------------------------------------------------------- /external/xscom-utils/getsram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/getsram.c -------------------------------------------------------------------------------- /external/xscom-utils/putscom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/putscom.1 -------------------------------------------------------------------------------- /external/xscom-utils/putscom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/putscom.c -------------------------------------------------------------------------------- /external/xscom-utils/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/sram.c -------------------------------------------------------------------------------- /external/xscom-utils/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/sram.h -------------------------------------------------------------------------------- /external/xscom-utils/xscom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/xscom.c -------------------------------------------------------------------------------- /external/xscom-utils/xscom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/external/xscom-utils/xscom.h -------------------------------------------------------------------------------- /extract-gcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/extract-gcov.c -------------------------------------------------------------------------------- /hdata/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/Makefile.inc -------------------------------------------------------------------------------- /hdata/cpu-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/cpu-common.c -------------------------------------------------------------------------------- /hdata/fsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/fsp.c -------------------------------------------------------------------------------- /hdata/hdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/hdata.h -------------------------------------------------------------------------------- /hdata/hdif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/hdif.c -------------------------------------------------------------------------------- /hdata/hdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/hdif.h -------------------------------------------------------------------------------- /hdata/hostservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/hostservices.c -------------------------------------------------------------------------------- /hdata/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/i2c.c -------------------------------------------------------------------------------- /hdata/iohub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/iohub.c -------------------------------------------------------------------------------- /hdata/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/memory.c -------------------------------------------------------------------------------- /hdata/naca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/naca.c -------------------------------------------------------------------------------- /hdata/naca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/naca.h -------------------------------------------------------------------------------- /hdata/pcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/pcia.c -------------------------------------------------------------------------------- /hdata/slca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/slca.c -------------------------------------------------------------------------------- /hdata/spira.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/spira.c -------------------------------------------------------------------------------- /hdata/spira.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/spira.h -------------------------------------------------------------------------------- /hdata/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/Makefile.check -------------------------------------------------------------------------------- /hdata/test/dtdiff_wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/dtdiff_wrap.sh -------------------------------------------------------------------------------- /hdata/test/hdata_to_dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/hdata_to_dt.c -------------------------------------------------------------------------------- /hdata/test/op920.wsp.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/op920.wsp.dts -------------------------------------------------------------------------------- /hdata/test/op920.wsp.heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/op920.wsp.heap -------------------------------------------------------------------------------- /hdata/test/p10-rainier.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p10-rainier.dts -------------------------------------------------------------------------------- /hdata/test/p10-rainier.spiras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p10-rainier.spiras -------------------------------------------------------------------------------- /hdata/test/p8-840-spira.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p8-840-spira.dts -------------------------------------------------------------------------------- /hdata/test/p8-840-spira.spirah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p8-840-spira.spirah -------------------------------------------------------------------------------- /hdata/test/p8-840-spira.spiras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p8-840-spira.spiras -------------------------------------------------------------------------------- /hdata/test/p81-811.spira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p81-811.spira -------------------------------------------------------------------------------- /hdata/test/p81-811.spira.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p81-811.spira.dts -------------------------------------------------------------------------------- /hdata/test/p81-811.spira.heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/p81-811.spira.heap -------------------------------------------------------------------------------- /hdata/test/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/test/stubs.c -------------------------------------------------------------------------------- /hdata/tpmrel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/tpmrel.c -------------------------------------------------------------------------------- /hdata/vpd-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/vpd-common.c -------------------------------------------------------------------------------- /hdata/vpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hdata/vpd.c -------------------------------------------------------------------------------- /hw/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/Makefile.inc -------------------------------------------------------------------------------- /hw/ast-bmc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ast-bmc/Makefile.inc -------------------------------------------------------------------------------- /hw/ast-bmc/ast-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ast-bmc/ast-io.c -------------------------------------------------------------------------------- /hw/ast-bmc/ast-mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ast-bmc/ast-mctp.c -------------------------------------------------------------------------------- /hw/ast-bmc/ast-sf-ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ast-bmc/ast-sf-ctrl.c -------------------------------------------------------------------------------- /hw/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/bt.c -------------------------------------------------------------------------------- /hw/cache-p9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/cache-p9.c -------------------------------------------------------------------------------- /hw/capp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/capp.c -------------------------------------------------------------------------------- /hw/centaur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/centaur.c -------------------------------------------------------------------------------- /hw/chiptod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/chiptod.c -------------------------------------------------------------------------------- /hw/dio-p9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/dio-p9.c -------------------------------------------------------------------------------- /hw/dts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/dts.c -------------------------------------------------------------------------------- /hw/fake-nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fake-nvram.c -------------------------------------------------------------------------------- /hw/fake-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fake-rtc.c -------------------------------------------------------------------------------- /hw/fsi-master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsi-master.c -------------------------------------------------------------------------------- /hw/fsp/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/Makefile.inc -------------------------------------------------------------------------------- /hw/fsp/fsp-attn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-attn.c -------------------------------------------------------------------------------- /hw/fsp/fsp-chiptod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-chiptod.c -------------------------------------------------------------------------------- /hw/fsp/fsp-codeupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-codeupdate.c -------------------------------------------------------------------------------- /hw/fsp/fsp-codeupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-codeupdate.h -------------------------------------------------------------------------------- /hw/fsp/fsp-console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-console.c -------------------------------------------------------------------------------- /hw/fsp/fsp-diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-diag.c -------------------------------------------------------------------------------- /hw/fsp/fsp-dpo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-dpo.c -------------------------------------------------------------------------------- /hw/fsp/fsp-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-dump.c -------------------------------------------------------------------------------- /hw/fsp/fsp-elog-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-elog-read.c -------------------------------------------------------------------------------- /hw/fsp/fsp-elog-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-elog-write.c -------------------------------------------------------------------------------- /hw/fsp/fsp-epow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-epow.c -------------------------------------------------------------------------------- /hw/fsp/fsp-epow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-epow.h -------------------------------------------------------------------------------- /hw/fsp/fsp-ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-ipmi.c -------------------------------------------------------------------------------- /hw/fsp/fsp-leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-leds.c -------------------------------------------------------------------------------- /hw/fsp/fsp-mem-err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-mem-err.c -------------------------------------------------------------------------------- /hw/fsp/fsp-nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-nvram.c -------------------------------------------------------------------------------- /hw/fsp/fsp-occ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-occ.c -------------------------------------------------------------------------------- /hw/fsp/fsp-op-panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-op-panel.c -------------------------------------------------------------------------------- /hw/fsp/fsp-psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-psi.c -------------------------------------------------------------------------------- /hw/fsp/fsp-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-rtc.c -------------------------------------------------------------------------------- /hw/fsp/fsp-sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-sensor.c -------------------------------------------------------------------------------- /hw/fsp/fsp-surveillance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-surveillance.c -------------------------------------------------------------------------------- /hw/fsp/fsp-sysdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-sysdump.c -------------------------------------------------------------------------------- /hw/fsp/fsp-sysparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp-sysparam.c -------------------------------------------------------------------------------- /hw/fsp/fsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/fsp/fsp.c -------------------------------------------------------------------------------- /hw/homer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/homer.c -------------------------------------------------------------------------------- /hw/imc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/imc.c -------------------------------------------------------------------------------- /hw/ipmi/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/Makefile.inc -------------------------------------------------------------------------------- /hw/ipmi/ipmi-attn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-attn.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-fru.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-info.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-power.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-rtc.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-sel.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-sensor.c -------------------------------------------------------------------------------- /hw/ipmi/ipmi-watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/ipmi-watchdog.c -------------------------------------------------------------------------------- /hw/ipmi/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/test/Makefile.check -------------------------------------------------------------------------------- /hw/ipmi/test/run-fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ipmi/test/run-fru.c -------------------------------------------------------------------------------- /hw/lpc-mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/lpc-mbox.c -------------------------------------------------------------------------------- /hw/lpc-port80h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/lpc-port80h.c -------------------------------------------------------------------------------- /hw/lpc-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/lpc-rtc.c -------------------------------------------------------------------------------- /hw/lpc-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/lpc-uart.c -------------------------------------------------------------------------------- /hw/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/lpc.c -------------------------------------------------------------------------------- /hw/npu-hw-procedures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu-hw-procedures.c -------------------------------------------------------------------------------- /hw/npu-opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu-opal.c -------------------------------------------------------------------------------- /hw/npu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu.c -------------------------------------------------------------------------------- /hw/npu2-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu2-common.c -------------------------------------------------------------------------------- /hw/npu2-hw-procedures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu2-hw-procedures.c -------------------------------------------------------------------------------- /hw/npu2-opencapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu2-opencapi.c -------------------------------------------------------------------------------- /hw/npu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/npu2.c -------------------------------------------------------------------------------- /hw/nx-842.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx-842.c -------------------------------------------------------------------------------- /hw/nx-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx-compress.c -------------------------------------------------------------------------------- /hw/nx-crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx-crypto.c -------------------------------------------------------------------------------- /hw/nx-gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx-gzip.c -------------------------------------------------------------------------------- /hw/nx-rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx-rng.c -------------------------------------------------------------------------------- /hw/nx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/nx.c -------------------------------------------------------------------------------- /hw/occ-sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/occ-sensor.c -------------------------------------------------------------------------------- /hw/occ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/occ.c -------------------------------------------------------------------------------- /hw/ocmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/ocmb.c -------------------------------------------------------------------------------- /hw/p8-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/p8-i2c.c -------------------------------------------------------------------------------- /hw/pau-hw-procedures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/pau-hw-procedures.c -------------------------------------------------------------------------------- /hw/pau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/pau.c -------------------------------------------------------------------------------- /hw/phb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/phb3.c -------------------------------------------------------------------------------- /hw/phb4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/phb4.c -------------------------------------------------------------------------------- /hw/phys-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/phys-map.c -------------------------------------------------------------------------------- /hw/prd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/prd.c -------------------------------------------------------------------------------- /hw/psi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/psi.c -------------------------------------------------------------------------------- /hw/sbe-p8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/sbe-p8.c -------------------------------------------------------------------------------- /hw/sbe-p9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/sbe-p9.c -------------------------------------------------------------------------------- /hw/sbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/sbe.c -------------------------------------------------------------------------------- /hw/sfc-ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/sfc-ctrl.c -------------------------------------------------------------------------------- /hw/slw-p8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/slw-p8.c -------------------------------------------------------------------------------- /hw/slw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/slw.c -------------------------------------------------------------------------------- /hw/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/test/Makefile.check -------------------------------------------------------------------------------- /hw/test/phys-map-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/test/phys-map-test.c -------------------------------------------------------------------------------- /hw/test/run-port80h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/test/run-port80h.c -------------------------------------------------------------------------------- /hw/vas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/vas.c -------------------------------------------------------------------------------- /hw/xive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/xive.c -------------------------------------------------------------------------------- /hw/xive2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/xive2.c -------------------------------------------------------------------------------- /hw/xscom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/hw/xscom.c -------------------------------------------------------------------------------- /include/affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/affinity.h -------------------------------------------------------------------------------- /include/asm-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/asm-utils.h -------------------------------------------------------------------------------- /include/asm/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/asm/byteorder.h -------------------------------------------------------------------------------- /include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/ast.h -------------------------------------------------------------------------------- /include/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/bitmap.h -------------------------------------------------------------------------------- /include/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/bitutils.h -------------------------------------------------------------------------------- /include/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/bt.h -------------------------------------------------------------------------------- /include/buddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/buddy.h -------------------------------------------------------------------------------- /include/cache-p9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/cache-p9.h -------------------------------------------------------------------------------- /include/capp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/capp.h -------------------------------------------------------------------------------- /include/cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/cec.h -------------------------------------------------------------------------------- /include/centaur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/centaur.h -------------------------------------------------------------------------------- /include/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/chip.h -------------------------------------------------------------------------------- /include/chiptod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/chiptod.h -------------------------------------------------------------------------------- /include/cmpxchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/cmpxchg.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/config.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/console.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/debug_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/debug_descriptor.h -------------------------------------------------------------------------------- /include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/device.h -------------------------------------------------------------------------------- /include/dio-p9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/dio-p9.h -------------------------------------------------------------------------------- /include/direct-controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/direct-controls.h -------------------------------------------------------------------------------- /include/dts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/dts.h -------------------------------------------------------------------------------- /include/elf-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/elf-abi.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/errorlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/errorlog.h -------------------------------------------------------------------------------- /include/fsi-master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsi-master.h -------------------------------------------------------------------------------- /include/fsp-attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsp-attn.h -------------------------------------------------------------------------------- /include/fsp-elog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsp-elog.h -------------------------------------------------------------------------------- /include/fsp-leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsp-leds.h -------------------------------------------------------------------------------- /include/fsp-sysparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsp-sysparam.h -------------------------------------------------------------------------------- /include/fsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/fsp.h -------------------------------------------------------------------------------- /include/hiomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/hiomap.h -------------------------------------------------------------------------------- /include/hostservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/hostservices.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/imc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/imc.h -------------------------------------------------------------------------------- /include/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/interrupts.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/io.h -------------------------------------------------------------------------------- /include/ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/ipmi.h -------------------------------------------------------------------------------- /include/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/lock.h -------------------------------------------------------------------------------- /include/lpc-mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/lpc-mbox.h -------------------------------------------------------------------------------- /include/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/lpc.h -------------------------------------------------------------------------------- /include/mem-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/mem-map.h -------------------------------------------------------------------------------- /include/mem_region-malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/mem_region-malloc.h -------------------------------------------------------------------------------- /include/mem_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/mem_region.h -------------------------------------------------------------------------------- /include/npu-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/npu-regs.h -------------------------------------------------------------------------------- /include/npu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/npu.h -------------------------------------------------------------------------------- /include/npu2-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/npu2-regs.h -------------------------------------------------------------------------------- /include/npu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/npu2.h -------------------------------------------------------------------------------- /include/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/nvram.h -------------------------------------------------------------------------------- /include/nx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/nx.h -------------------------------------------------------------------------------- /include/occ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/occ.h -------------------------------------------------------------------------------- /include/ocmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/ocmb.h -------------------------------------------------------------------------------- /include/op-panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/op-panel.h -------------------------------------------------------------------------------- /include/opal-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/opal-api.h -------------------------------------------------------------------------------- /include/opal-dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/opal-dump.h -------------------------------------------------------------------------------- /include/opal-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/opal-internal.h -------------------------------------------------------------------------------- /include/opal-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/opal-msg.h -------------------------------------------------------------------------------- /include/opal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/opal.h -------------------------------------------------------------------------------- /include/p10_stop_api.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/p10_stop_api.H -------------------------------------------------------------------------------- /include/p9_stop_api.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/p9_stop_api.H -------------------------------------------------------------------------------- /include/pau-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pau-regs.h -------------------------------------------------------------------------------- /include/pau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pau.h -------------------------------------------------------------------------------- /include/pci-cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pci-cfg.h -------------------------------------------------------------------------------- /include/pci-quirk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pci-quirk.h -------------------------------------------------------------------------------- /include/pci-slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pci-slot.h -------------------------------------------------------------------------------- /include/pci-virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pci-virt.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pel.h -------------------------------------------------------------------------------- /include/phb3-capp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb3-capp.h -------------------------------------------------------------------------------- /include/phb3-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb3-regs.h -------------------------------------------------------------------------------- /include/phb3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb3.h -------------------------------------------------------------------------------- /include/phb4-capp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb4-capp.h -------------------------------------------------------------------------------- /include/phb4-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb4-regs.h -------------------------------------------------------------------------------- /include/phb4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phb4.h -------------------------------------------------------------------------------- /include/phys-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/phys-map.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/pldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pldm.h -------------------------------------------------------------------------------- /include/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/pool.h -------------------------------------------------------------------------------- /include/powercap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/powercap.h -------------------------------------------------------------------------------- /include/prd-fw-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/prd-fw-msg.h -------------------------------------------------------------------------------- /include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/processor.h -------------------------------------------------------------------------------- /include/psi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/psi.h -------------------------------------------------------------------------------- /include/psr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/psr.h -------------------------------------------------------------------------------- /include/ras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/ras.h -------------------------------------------------------------------------------- /include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/rtc.h -------------------------------------------------------------------------------- /include/sbe-p8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/sbe-p8.h -------------------------------------------------------------------------------- /include/sbe-p9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/sbe-p9.h -------------------------------------------------------------------------------- /include/sbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/sbe.h -------------------------------------------------------------------------------- /include/secvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/secvar.h -------------------------------------------------------------------------------- /include/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/sensor.h -------------------------------------------------------------------------------- /include/sfc-ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/sfc-ctrl.h -------------------------------------------------------------------------------- /include/skiboot-valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/skiboot-valgrind.h -------------------------------------------------------------------------------- /include/skiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/skiboot.h -------------------------------------------------------------------------------- /include/slw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/slw.h -------------------------------------------------------------------------------- /include/spcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/spcn.h -------------------------------------------------------------------------------- /include/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/stack.h -------------------------------------------------------------------------------- /include/time-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/time-utils.h -------------------------------------------------------------------------------- /include/timebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/timebase.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/trace_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/trace_types.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/types.h -------------------------------------------------------------------------------- /include/vas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/vas.h -------------------------------------------------------------------------------- /include/vpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/vpd.h -------------------------------------------------------------------------------- /include/xive-p9-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xive-p9-regs.h -------------------------------------------------------------------------------- /include/xive-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xive-regs.h -------------------------------------------------------------------------------- /include/xive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xive.h -------------------------------------------------------------------------------- /include/xive2-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xive2-regs.h -------------------------------------------------------------------------------- /include/xscom-p10-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xscom-p10-regs.h -------------------------------------------------------------------------------- /include/xscom-p8-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xscom-p8-regs.h -------------------------------------------------------------------------------- /include/xscom-p9-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xscom-p9-regs.h -------------------------------------------------------------------------------- /include/xscom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/include/xscom.h -------------------------------------------------------------------------------- /libc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/Makefile.inc -------------------------------------------------------------------------------- /libc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/README.txt -------------------------------------------------------------------------------- /libc/ctype/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/Makefile.inc -------------------------------------------------------------------------------- /libc/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/isdigit.c -------------------------------------------------------------------------------- /libc/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/isprint.c -------------------------------------------------------------------------------- /libc/ctype/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/isspace.c -------------------------------------------------------------------------------- /libc/ctype/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/isxdigit.c -------------------------------------------------------------------------------- /libc/ctype/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/tolower.c -------------------------------------------------------------------------------- /libc/ctype/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/ctype/toupper.c -------------------------------------------------------------------------------- /libc/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/assert.h -------------------------------------------------------------------------------- /libc/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/ctype.h -------------------------------------------------------------------------------- /libc/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/errno.h -------------------------------------------------------------------------------- /libc/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/getopt.h -------------------------------------------------------------------------------- /libc/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/limits.h -------------------------------------------------------------------------------- /libc/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/stdint.h -------------------------------------------------------------------------------- /libc/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/stdio.h -------------------------------------------------------------------------------- /libc/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/stdlib.h -------------------------------------------------------------------------------- /libc/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/string.h -------------------------------------------------------------------------------- /libc/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/time.h -------------------------------------------------------------------------------- /libc/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/include/unistd.h -------------------------------------------------------------------------------- /libc/stdio/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/Makefile.inc -------------------------------------------------------------------------------- /libc/stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/fileno.c -------------------------------------------------------------------------------- /libc/stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/fprintf.c -------------------------------------------------------------------------------- /libc/stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/fputc.c -------------------------------------------------------------------------------- /libc/stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/fputs.c -------------------------------------------------------------------------------- /libc/stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/putchar.c -------------------------------------------------------------------------------- /libc/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/puts.c -------------------------------------------------------------------------------- /libc/stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/setvbuf.c -------------------------------------------------------------------------------- /libc/stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/snprintf.c -------------------------------------------------------------------------------- /libc/stdio/stdchnls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/stdchnls.c -------------------------------------------------------------------------------- /libc/stdio/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/vfprintf.c -------------------------------------------------------------------------------- /libc/stdio/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdio/vsnprintf.c -------------------------------------------------------------------------------- /libc/stdlib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/Makefile.inc -------------------------------------------------------------------------------- /libc/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/atoi.c -------------------------------------------------------------------------------- /libc/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/atol.c -------------------------------------------------------------------------------- /libc/stdlib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/error.c -------------------------------------------------------------------------------- /libc/stdlib/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/labs.c -------------------------------------------------------------------------------- /libc/stdlib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/rand.c -------------------------------------------------------------------------------- /libc/stdlib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/strtol.c -------------------------------------------------------------------------------- /libc/stdlib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/stdlib/strtoul.c -------------------------------------------------------------------------------- /libc/string/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/Makefile.inc -------------------------------------------------------------------------------- /libc/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memchr.c -------------------------------------------------------------------------------- /libc/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memcmp.c -------------------------------------------------------------------------------- /libc/string/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memcpy.c -------------------------------------------------------------------------------- /libc/string/memcpy_from_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memcpy_from_ci.c -------------------------------------------------------------------------------- /libc/string/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memmove.c -------------------------------------------------------------------------------- /libc/string/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/memset.c -------------------------------------------------------------------------------- /libc/string/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strcasecmp.c -------------------------------------------------------------------------------- /libc/string/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strcat.c -------------------------------------------------------------------------------- /libc/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strchr.c -------------------------------------------------------------------------------- /libc/string/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strcmp.c -------------------------------------------------------------------------------- /libc/string/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strcpy.c -------------------------------------------------------------------------------- /libc/string/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strdup.c -------------------------------------------------------------------------------- /libc/string/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strlen.c -------------------------------------------------------------------------------- /libc/string/strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strncasecmp.c -------------------------------------------------------------------------------- /libc/string/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strncmp.c -------------------------------------------------------------------------------- /libc/string/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strncpy.c -------------------------------------------------------------------------------- /libc/string/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strrchr.c -------------------------------------------------------------------------------- /libc/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strstr.c -------------------------------------------------------------------------------- /libc/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/string/strtok.c -------------------------------------------------------------------------------- /libc/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/.gitignore -------------------------------------------------------------------------------- /libc/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/Makefile.check -------------------------------------------------------------------------------- /libc/test/run-ctype-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-ctype-test.c -------------------------------------------------------------------------------- /libc/test/run-ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-ctype.c -------------------------------------------------------------------------------- /libc/test/run-memops-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-memops-test.c -------------------------------------------------------------------------------- /libc/test/run-memops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-memops.c -------------------------------------------------------------------------------- /libc/test/run-snprintf-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-snprintf-test.c -------------------------------------------------------------------------------- /libc/test/run-snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-snprintf.c -------------------------------------------------------------------------------- /libc/test/run-stdlib-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-stdlib-test.c -------------------------------------------------------------------------------- /libc/test/run-stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-stdlib.c -------------------------------------------------------------------------------- /libc/test/run-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/test/run-time.c -------------------------------------------------------------------------------- /libc/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libc/time.c -------------------------------------------------------------------------------- /libfdt/.gitignore: -------------------------------------------------------------------------------- 1 | libfdt.so.1 2 | -------------------------------------------------------------------------------- /libfdt/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/Makefile.inc -------------------------------------------------------------------------------- /libfdt/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/Makefile.libfdt -------------------------------------------------------------------------------- /libfdt/README.skiboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/README.skiboot -------------------------------------------------------------------------------- /libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/TODO -------------------------------------------------------------------------------- /libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt.c -------------------------------------------------------------------------------- /libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt.h -------------------------------------------------------------------------------- /libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_addresses.c -------------------------------------------------------------------------------- /libfdt/fdt_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_check.c -------------------------------------------------------------------------------- /libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_overlay.c -------------------------------------------------------------------------------- /libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/libfdt.h -------------------------------------------------------------------------------- /libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /libfdt/version.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libfdt/version.lds -------------------------------------------------------------------------------- /libflash/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/Makefile.inc -------------------------------------------------------------------------------- /libflash/blocklevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/blocklevel.c -------------------------------------------------------------------------------- /libflash/blocklevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/blocklevel.h -------------------------------------------------------------------------------- /libflash/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/ecc.c -------------------------------------------------------------------------------- /libflash/ecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/ecc.h -------------------------------------------------------------------------------- /libflash/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/errors.h -------------------------------------------------------------------------------- /libflash/ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/ffs.h -------------------------------------------------------------------------------- /libflash/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/file.c -------------------------------------------------------------------------------- /libflash/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/file.h -------------------------------------------------------------------------------- /libflash/ipmi-hiomap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/ipmi-hiomap.c -------------------------------------------------------------------------------- /libflash/ipmi-hiomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/ipmi-hiomap.h -------------------------------------------------------------------------------- /libflash/libffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/libffs.c -------------------------------------------------------------------------------- /libflash/libffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/libffs.h -------------------------------------------------------------------------------- /libflash/libflash-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/libflash-priv.h -------------------------------------------------------------------------------- /libflash/libflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/libflash.c -------------------------------------------------------------------------------- /libflash/libflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/libflash.h -------------------------------------------------------------------------------- /libflash/mbox-flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/mbox-flash.c -------------------------------------------------------------------------------- /libflash/mbox-flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/mbox-flash.h -------------------------------------------------------------------------------- /libflash/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/Makefile.check -------------------------------------------------------------------------------- /libflash/test/mbox-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/mbox-server.c -------------------------------------------------------------------------------- /libflash/test/mbox-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/mbox-server.h -------------------------------------------------------------------------------- /libflash/test/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/stubs.c -------------------------------------------------------------------------------- /libflash/test/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/stubs.h -------------------------------------------------------------------------------- /libflash/test/test-blocklevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/test-blocklevel.c -------------------------------------------------------------------------------- /libflash/test/test-ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/test-ecc.c -------------------------------------------------------------------------------- /libflash/test/test-flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/test-flash.c -------------------------------------------------------------------------------- /libflash/test/test-ipmi-hiomap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/test-ipmi-hiomap.c -------------------------------------------------------------------------------- /libflash/test/test-mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libflash/test/test-mbox.c -------------------------------------------------------------------------------- /libmctp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/LICENSE -------------------------------------------------------------------------------- /libmctp/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/Makefile.inc -------------------------------------------------------------------------------- /libmctp/README.skiboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/README.skiboot -------------------------------------------------------------------------------- /libmctp/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/alloc.c -------------------------------------------------------------------------------- /libmctp/astlpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/astlpc.c -------------------------------------------------------------------------------- /libmctp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/config.h -------------------------------------------------------------------------------- /libmctp/container_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/container_of.h -------------------------------------------------------------------------------- /libmctp/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/core.c -------------------------------------------------------------------------------- /libmctp/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/crc32.c -------------------------------------------------------------------------------- /libmctp/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/crc32.h -------------------------------------------------------------------------------- /libmctp/libmctp-alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp-alloc.h -------------------------------------------------------------------------------- /libmctp/libmctp-astlpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp-astlpc.h -------------------------------------------------------------------------------- /libmctp/libmctp-cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp-cmds.h -------------------------------------------------------------------------------- /libmctp/libmctp-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp-log.h -------------------------------------------------------------------------------- /libmctp/libmctp-serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp-serial.h -------------------------------------------------------------------------------- /libmctp/libmctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/libmctp.h -------------------------------------------------------------------------------- /libmctp/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/log.c -------------------------------------------------------------------------------- /libmctp/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/range.h -------------------------------------------------------------------------------- /libmctp/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libmctp/serial.c -------------------------------------------------------------------------------- /libpore/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/Makefile.inc -------------------------------------------------------------------------------- /libpore/fapi_sbe_common.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/fapi_sbe_common.H -------------------------------------------------------------------------------- /libpore/p10_hcd_header_defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_hcd_header_defs.H -------------------------------------------------------------------------------- /libpore/p10_hcd_memmap_base.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_hcd_memmap_base.H -------------------------------------------------------------------------------- /libpore/p10_hcd_memmap_homer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_hcd_memmap_homer.H -------------------------------------------------------------------------------- /libpore/p10_stop_api.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_stop_api.C -------------------------------------------------------------------------------- /libpore/p10_stop_api.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_stop_api.H -------------------------------------------------------------------------------- /libpore/p10_stop_data_struct.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_stop_data_struct.H -------------------------------------------------------------------------------- /libpore/p10_stop_util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_stop_util.C -------------------------------------------------------------------------------- /libpore/p10_stop_util.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p10_stop_util.H -------------------------------------------------------------------------------- /libpore/p8_delta_scan_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p8_delta_scan_rw.h -------------------------------------------------------------------------------- /libpore/p8_image_help_base.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p8_image_help_base.H -------------------------------------------------------------------------------- /libpore/p8_pore_api_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p8_pore_api_custom.h -------------------------------------------------------------------------------- /libpore/p8_pore_table_gen_api.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p8_pore_table_gen_api.H -------------------------------------------------------------------------------- /libpore/p9_hcd_header_defs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_hcd_header_defs.H -------------------------------------------------------------------------------- /libpore/p9_hcd_memmap_base.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_hcd_memmap_base.H -------------------------------------------------------------------------------- /libpore/p9_stop_api.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_stop_api.C -------------------------------------------------------------------------------- /libpore/p9_stop_api.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_stop_api.H -------------------------------------------------------------------------------- /libpore/p9_stop_data_struct.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_stop_data_struct.H -------------------------------------------------------------------------------- /libpore/p9_stop_util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_stop_util.C -------------------------------------------------------------------------------- /libpore/p9_stop_util.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/p9_stop_util.H -------------------------------------------------------------------------------- /libpore/pgas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/pgas.h -------------------------------------------------------------------------------- /libpore/pore_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/pore_inline.h -------------------------------------------------------------------------------- /libpore/pore_inline_assembler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/pore_inline_assembler.c -------------------------------------------------------------------------------- /libpore/sbe_xip_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/sbe_xip_image.c -------------------------------------------------------------------------------- /libpore/sbe_xip_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libpore/sbe_xip_image.h -------------------------------------------------------------------------------- /libstb/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/Makefile.inc -------------------------------------------------------------------------------- /libstb/container-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/container-utils.c -------------------------------------------------------------------------------- /libstb/container-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/container-utils.h -------------------------------------------------------------------------------- /libstb/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/container.c -------------------------------------------------------------------------------- /libstb/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/container.h -------------------------------------------------------------------------------- /libstb/create-container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/create-container.c -------------------------------------------------------------------------------- /libstb/crypto/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/Makefile.inc -------------------------------------------------------------------------------- /libstb/crypto/mbedtls-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls-config.h -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/.gitignore -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/.globalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/.globalrc -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/.pylintrc -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/ChangeLog -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/LICENSE -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/Makefile -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/mbedtls/README.md -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/tests/.jenkins/Jenkinsfile: -------------------------------------------------------------------------------- 1 | mbedtls.run_job() 2 | -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libstb/crypto/mbedtls/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /libstb/crypto/pkcs7/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/pkcs7/Makefile.inc -------------------------------------------------------------------------------- /libstb/crypto/pkcs7/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/pkcs7/pkcs7.c -------------------------------------------------------------------------------- /libstb/crypto/pkcs7/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/crypto/pkcs7/pkcs7.h -------------------------------------------------------------------------------- /libstb/cvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/cvc.c -------------------------------------------------------------------------------- /libstb/cvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/cvc.h -------------------------------------------------------------------------------- /libstb/drivers/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/drivers/Makefile.inc -------------------------------------------------------------------------------- /libstb/drivers/tpm_i2c_nuvoton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/drivers/tpm_i2c_nuvoton.c -------------------------------------------------------------------------------- /libstb/drivers/tpm_i2c_nuvoton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/drivers/tpm_i2c_nuvoton.h -------------------------------------------------------------------------------- /libstb/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/keys/README.md -------------------------------------------------------------------------------- /libstb/keys/hw_key_a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/keys/hw_key_a.key -------------------------------------------------------------------------------- /libstb/keys/hw_key_b.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/keys/hw_key_b.key -------------------------------------------------------------------------------- /libstb/keys/hw_key_c.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/keys/hw_key_c.key -------------------------------------------------------------------------------- /libstb/keys/sw_key_a.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/keys/sw_key_a.key -------------------------------------------------------------------------------- /libstb/print-container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/print-container.c -------------------------------------------------------------------------------- /libstb/secureboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secureboot.c -------------------------------------------------------------------------------- /libstb/secureboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secureboot.h -------------------------------------------------------------------------------- /libstb/secvar/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/Makefile.inc -------------------------------------------------------------------------------- /libstb/secvar/backend/edk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/backend/edk2.h -------------------------------------------------------------------------------- /libstb/secvar/secvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar.h -------------------------------------------------------------------------------- /libstb/secvar/secvar_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar_api.c -------------------------------------------------------------------------------- /libstb/secvar/secvar_devtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar_devtree.c -------------------------------------------------------------------------------- /libstb/secvar/secvar_devtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar_devtree.h -------------------------------------------------------------------------------- /libstb/secvar/secvar_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar_main.c -------------------------------------------------------------------------------- /libstb/secvar/secvar_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/secvar_util.c -------------------------------------------------------------------------------- /libstb/secvar/test/data/KEK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/test/data/KEK.h -------------------------------------------------------------------------------- /libstb/secvar/test/data/PK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/test/data/PK.h -------------------------------------------------------------------------------- /libstb/secvar/test/data/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/test/data/db.h -------------------------------------------------------------------------------- /libstb/secvar/test/data/dbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/test/data/dbx.h -------------------------------------------------------------------------------- /libstb/secvar/test/data/noPK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/secvar/test/data/noPK.h -------------------------------------------------------------------------------- /libstb/sign-with-local-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/sign-with-local-keys.sh -------------------------------------------------------------------------------- /libstb/status_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/status_codes.h -------------------------------------------------------------------------------- /libstb/test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/test/Makefile.check -------------------------------------------------------------------------------- /libstb/test/run-stb-container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/test/run-stb-container.c -------------------------------------------------------------------------------- /libstb/test/t.container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/test/t.container -------------------------------------------------------------------------------- /libstb/test/t.container.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/test/t.container.out -------------------------------------------------------------------------------- /libstb/tpm_chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tpm_chip.c -------------------------------------------------------------------------------- /libstb/tpm_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tpm_chip.h -------------------------------------------------------------------------------- /libstb/trustedboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/trustedboot.c -------------------------------------------------------------------------------- /libstb/trustedboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/trustedboot.h -------------------------------------------------------------------------------- /libstb/tss2/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/Makefile.inc -------------------------------------------------------------------------------- /libstb/tss2/eventlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/eventlog.c -------------------------------------------------------------------------------- /libstb/tss2/eventlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/eventlog.h -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/aaa: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/bits48321601.bin: -------------------------------------------------------------------------------- 1 | c`dC -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/policycphashhash.txt: -------------------------------------------------------------------------------- 1 | 0@ -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/policynvargs.txt: -------------------------------------------------------------------------------- 1 | c`@. -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/policypcr0.txt: -------------------------------------------------------------------------------- 1 | 30  -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/policypcr16aaasha1.txt: -------------------------------------------------------------------------------- 1 | 1d47f68aced515f7797371b554e32d47981aa0a0 2 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/policywrittenset.txt: -------------------------------------------------------------------------------- 1 | 0000018f01 2 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/sha1.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/sha256.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/sha384.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/sha512.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/zero4.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/policies/zerosha384.bin: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /libstb/tss2/ibmtpm20tss/utils/regtests/.cvsignore: -------------------------------------------------------------------------------- 1 | testdevel.sh 2 | -------------------------------------------------------------------------------- /libstb/tss2/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/netinet/in.h -------------------------------------------------------------------------------- /libstb/tss2/tssskiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/tssskiboot.c -------------------------------------------------------------------------------- /libstb/tss2/tssskiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libstb/tss2/tssskiboot.h -------------------------------------------------------------------------------- /libxz/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/Makefile.inc -------------------------------------------------------------------------------- /libxz/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz.h -------------------------------------------------------------------------------- /libxz/xz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_config.h -------------------------------------------------------------------------------- /libxz/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_crc32.c -------------------------------------------------------------------------------- /libxz/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_dec_lzma2.c -------------------------------------------------------------------------------- /libxz/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_dec_stream.c -------------------------------------------------------------------------------- /libxz/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_lzma2.h -------------------------------------------------------------------------------- /libxz/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_private.h -------------------------------------------------------------------------------- /libxz/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/libxz/xz_stream.h -------------------------------------------------------------------------------- /make_offsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/make_offsets.sh -------------------------------------------------------------------------------- /make_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/make_version.sh -------------------------------------------------------------------------------- /opal-ci/Dockerfile-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Dockerfile-clang -------------------------------------------------------------------------------- /opal-ci/Dockerfile-docs: -------------------------------------------------------------------------------- 1 | Dockerfile-fedora41 -------------------------------------------------------------------------------- /opal-ci/Dockerfile-fedora41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Dockerfile-fedora41 -------------------------------------------------------------------------------- /opal-ci/Dockerfile-fedora42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Dockerfile-fedora42 -------------------------------------------------------------------------------- /opal-ci/Dockerfile-ubuntu-22.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Dockerfile-ubuntu-22.04 -------------------------------------------------------------------------------- /opal-ci/Dockerfile-ubuntu-24.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Dockerfile-ubuntu-24.04 -------------------------------------------------------------------------------- /opal-ci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/Makefile -------------------------------------------------------------------------------- /opal-ci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/README -------------------------------------------------------------------------------- /opal-ci/build-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-clang.sh -------------------------------------------------------------------------------- /opal-ci/build-debian-unstable.sh: -------------------------------------------------------------------------------- 1 | build-ubuntu-rolling.sh -------------------------------------------------------------------------------- /opal-ci/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-docs.sh -------------------------------------------------------------------------------- /opal-ci/build-fedora-rawhide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-fedora-rawhide.sh -------------------------------------------------------------------------------- /opal-ci/build-fedora41.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-fedora41.sh -------------------------------------------------------------------------------- /opal-ci/build-fedora42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-fedora42.sh -------------------------------------------------------------------------------- /opal-ci/build-qemu-powernv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-qemu-powernv.sh -------------------------------------------------------------------------------- /opal-ci/build-ubuntu-22.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-ubuntu-22.04.sh -------------------------------------------------------------------------------- /opal-ci/build-ubuntu-24.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-ubuntu-24.04.sh -------------------------------------------------------------------------------- /opal-ci/build-ubuntu-rolling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/opal-ci/build-ubuntu-rolling.sh -------------------------------------------------------------------------------- /platforms/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/Makefile.inc -------------------------------------------------------------------------------- /platforms/astbmc/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/Makefile.inc -------------------------------------------------------------------------------- /platforms/astbmc/astbmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/astbmc.h -------------------------------------------------------------------------------- /platforms/astbmc/barreleye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/barreleye.c -------------------------------------------------------------------------------- /platforms/astbmc/blackbird.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/blackbird.c -------------------------------------------------------------------------------- /platforms/astbmc/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/common.c -------------------------------------------------------------------------------- /platforms/astbmc/firestone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/firestone.c -------------------------------------------------------------------------------- /platforms/astbmc/garrison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/garrison.c -------------------------------------------------------------------------------- /platforms/astbmc/habanero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/habanero.c -------------------------------------------------------------------------------- /platforms/astbmc/mihawk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/mihawk.c -------------------------------------------------------------------------------- /platforms/astbmc/mowgli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/mowgli.c -------------------------------------------------------------------------------- /platforms/astbmc/nicole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/nicole.c -------------------------------------------------------------------------------- /platforms/astbmc/p8dnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/p8dnu.c -------------------------------------------------------------------------------- /platforms/astbmc/p8dtu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/p8dtu.c -------------------------------------------------------------------------------- /platforms/astbmc/p9dsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/p9dsu.c -------------------------------------------------------------------------------- /platforms/astbmc/palmetto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/palmetto.c -------------------------------------------------------------------------------- /platforms/astbmc/pnor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/pnor.c -------------------------------------------------------------------------------- /platforms/astbmc/rainier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/rainier.c -------------------------------------------------------------------------------- /platforms/astbmc/romulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/romulus.c -------------------------------------------------------------------------------- /platforms/astbmc/slots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/slots.c -------------------------------------------------------------------------------- /platforms/astbmc/swift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/swift.c -------------------------------------------------------------------------------- /platforms/astbmc/talos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/talos.c -------------------------------------------------------------------------------- /platforms/astbmc/vesnin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/vesnin.c -------------------------------------------------------------------------------- /platforms/astbmc/witherspoon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/witherspoon.c -------------------------------------------------------------------------------- /platforms/astbmc/zaius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/astbmc/zaius.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/Makefile.inc -------------------------------------------------------------------------------- /platforms/ibm-fsp/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/common.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/firenze-pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/firenze-pci.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/firenze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/firenze.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/fsp-vpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/fsp-vpd.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/hostservices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/hostservices.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/ibm-fsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/ibm-fsp.h -------------------------------------------------------------------------------- /platforms/ibm-fsp/lxvpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/lxvpd.c -------------------------------------------------------------------------------- /platforms/ibm-fsp/lxvpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/lxvpd.h -------------------------------------------------------------------------------- /platforms/ibm-fsp/zz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/ibm-fsp/zz.c -------------------------------------------------------------------------------- /platforms/mambo/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/mambo/Makefile.inc -------------------------------------------------------------------------------- /platforms/mambo/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/mambo/console.c -------------------------------------------------------------------------------- /platforms/mambo/mambo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/mambo/mambo.c -------------------------------------------------------------------------------- /platforms/mambo/mambo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/mambo/mambo.h -------------------------------------------------------------------------------- /platforms/qemu/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/qemu/Makefile.inc -------------------------------------------------------------------------------- /platforms/qemu/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/qemu/qemu.c -------------------------------------------------------------------------------- /platforms/rhesus/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/rhesus/Makefile.inc -------------------------------------------------------------------------------- /platforms/rhesus/ec/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/rhesus/ec/config.h -------------------------------------------------------------------------------- /platforms/rhesus/ec/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/rhesus/ec/gpio.h -------------------------------------------------------------------------------- /platforms/rhesus/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/rhesus/gpio.c -------------------------------------------------------------------------------- /platforms/rhesus/rhesus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/platforms/rhesus/rhesus.c -------------------------------------------------------------------------------- /pldm/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/endian.h -------------------------------------------------------------------------------- /pldm/include/libpldm/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/base.h -------------------------------------------------------------------------------- /pldm/include/libpldm/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/bios.h -------------------------------------------------------------------------------- /pldm/include/libpldm/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/entity.h -------------------------------------------------------------------------------- /pldm/include/libpldm/fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/fru.h -------------------------------------------------------------------------------- /pldm/include/libpldm/pdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/pdr.h -------------------------------------------------------------------------------- /pldm/include/libpldm/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/platform.h -------------------------------------------------------------------------------- /pldm/include/libpldm/state_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/state_set.h -------------------------------------------------------------------------------- /pldm/include/libpldm/states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/states.h -------------------------------------------------------------------------------- /pldm/include/libpldm/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/include/libpldm/utils.h -------------------------------------------------------------------------------- /pldm/libpldm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/Makefile.inc -------------------------------------------------------------------------------- /pldm/libpldm/README.skiboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/README.skiboot -------------------------------------------------------------------------------- /pldm/libpldm/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/base.c -------------------------------------------------------------------------------- /pldm/libpldm/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/bios.c -------------------------------------------------------------------------------- /pldm/libpldm/bios_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/bios_table.c -------------------------------------------------------------------------------- /pldm/libpldm/firmware_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/firmware_update.c -------------------------------------------------------------------------------- /pldm/libpldm/fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/fru.c -------------------------------------------------------------------------------- /pldm/libpldm/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/msgbuf.h -------------------------------------------------------------------------------- /pldm/libpldm/msgbuf/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/msgbuf/platform.h -------------------------------------------------------------------------------- /pldm/libpldm/oem/ibm/file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/oem/ibm/file_io.c -------------------------------------------------------------------------------- /pldm/libpldm/oem/ibm/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/oem/ibm/host.c -------------------------------------------------------------------------------- /pldm/libpldm/pdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/pdr.c -------------------------------------------------------------------------------- /pldm/libpldm/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/platform.c -------------------------------------------------------------------------------- /pldm/libpldm/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/pldm/libpldm/utils.c -------------------------------------------------------------------------------- /skiboot.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/skiboot.lds.S -------------------------------------------------------------------------------- /skiboot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/skiboot.spec -------------------------------------------------------------------------------- /test/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/Makefile.check -------------------------------------------------------------------------------- /test/dt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/dt_common.c -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/run_boot_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/run_boot_test.tcl -------------------------------------------------------------------------------- /test/run_mambo_boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/run_mambo_boot_test.sh -------------------------------------------------------------------------------- /test/run_qemu_boot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-power/skiboot/HEAD/test/run_qemu_boot_test.sh --------------------------------------------------------------------------------