├── .clang-format ├── .github └── workflows │ ├── build_and_lint_pr.yml │ ├── generate_docs.yml │ └── nightly.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── common ├── dev │ ├── adc128d818.c │ ├── adm1272.c │ ├── adm1278.c │ ├── ads1015.c │ ├── ads112c.c │ ├── ads7830.c │ ├── altera.c │ ├── amd_tsi.c │ ├── apml_mailbox.c │ ├── ast_adc.c │ ├── ast_tach.c │ ├── bcm85658.c │ ├── bmr313.c │ ├── bmr316.c │ ├── bmr351.c │ ├── bmr4922302_803.c │ ├── common_i2c_mux.c │ ├── cx7.c │ ├── ddr5_power.c │ ├── ddr5_temp.c │ ├── ds160pt801.c │ ├── e50sn12051.c │ ├── eeprom.c │ ├── emc1412.c │ ├── emc1413.c │ ├── fru.c │ ├── g788p81u.c │ ├── guid.c │ ├── hdc1080.c │ ├── i2c-mux-pca984x.c │ ├── i2c-mux-tca9548.c │ ├── i3c_dimm.c │ ├── ina230.c │ ├── ina233.c │ ├── ina238.c │ ├── include │ │ ├── adm1272.h │ │ ├── ads1015.h │ │ ├── ads112c.h │ │ ├── ads7830.h │ │ ├── altera.h │ │ ├── ast_adc.h │ │ ├── ast_tach.h │ │ ├── bcm85658.h │ │ ├── bmr4922302_803.h │ │ ├── common_i2c_mux.h │ │ ├── ds160pt801.h │ │ ├── e50sn12051.h │ │ ├── eeprom.h │ │ ├── emc1412.h │ │ ├── emc1413.h │ │ ├── fru.h │ │ ├── guid.h │ │ ├── hdc1080.h │ │ ├── i2c-mux-pca954x.h │ │ ├── i2c-mux-pca984x.h │ │ ├── i2c-mux-pi4msd5v9542.h │ │ ├── i2c-mux-tca9543a.h │ │ ├── i2c-mux-tca9548.h │ │ ├── ina230.h │ │ ├── ina233.h │ │ ├── ina238.h │ │ ├── intel_dimm.h │ │ ├── intel_peci.h │ │ ├── ioexp_pca9555.h │ │ ├── ioexp_tca9555.h │ │ ├── isl28022.h │ │ ├── isl69254iraz_t.h │ │ ├── isl69259.h │ │ ├── lattice.h │ │ ├── ltc2991.h │ │ ├── m88rt51632.h │ │ ├── mp2891.h │ │ ├── mp289x.h │ │ ├── mp2971.h │ │ ├── mp29816a.h │ │ ├── mp2985.h │ │ ├── mp2988.h │ │ ├── mpq8746.h │ │ ├── mpro.h │ │ ├── nct214.h │ │ ├── nct7363.h │ │ ├── nvidia.h │ │ ├── nvme.h │ │ ├── octeon.h │ │ ├── p3h284x.h │ │ ├── pcc.h │ │ ├── pex89000.h │ │ ├── pex90144.h │ │ ├── pm8702.h │ │ ├── pmbus.h │ │ ├── pmic.h │ │ ├── pt5161l.h │ │ ├── q50sn120a1.h │ │ ├── raa228249.h │ │ ├── raa229621.h │ │ ├── rg3mxxb12.h │ │ ├── rtq6056.h │ │ ├── sbmr.h │ │ ├── snoop.h │ │ ├── sq52205.h │ │ ├── tda38741.h │ │ ├── tmp421.h │ │ ├── tmp431.h │ │ ├── tmp461.h │ │ ├── tmp75.h │ │ ├── tps53689.h │ │ ├── vistara.h │ │ ├── vr_fault.h │ │ ├── xdp710.h │ │ ├── xdpe12284c.h │ │ └── xdpe15284.h │ ├── intel_peci.c │ ├── isl28022.c │ ├── isl69254iraz_t.c │ ├── isl69259.c │ ├── lattice.c │ ├── lm75bd118.c │ ├── ltc2991.c │ ├── ltc4282.c │ ├── ltc4286.c │ ├── lx6301.c │ ├── m88rt51632.c │ ├── max11617.c │ ├── max16550a.c │ ├── mp2856gut.c │ ├── mp2891.c │ ├── mp289x.c │ ├── mp2971.c │ ├── mp29816a.c │ ├── mp2985.c │ ├── mp2988.c │ ├── mp5990.c │ ├── mpc12109.c │ ├── mpq8746.c │ ├── mpro.c │ ├── nct214.c │ ├── nct7363.c │ ├── nct7718w.c │ ├── nv_satmc.c │ ├── nvme.c │ ├── octeon.c │ ├── p3h284x.c │ ├── pcc.c │ ├── pch.c │ ├── pex89000.c │ ├── pex90144.c │ ├── pm8702.c │ ├── pmic.c │ ├── pt5161l.c │ ├── q50sn120a1.c │ ├── raa228238.c │ ├── raa228249.c │ ├── raa229621.c │ ├── rg3mxxb12.c │ ├── rs31380r.c │ ├── rtq6056.c │ ├── s54ss4p180pmdafc.c │ ├── sbmr.c │ ├── snoop.c │ ├── sq52205.c │ ├── tda38741.c │ ├── tmp421.c │ ├── tmp431.c │ ├── tmp461.c │ ├── tmp75.c │ ├── tps53689.c │ ├── u50su4p180pmdafc.c │ ├── vistara.c │ ├── vr_fault.c │ ├── xdp710.c │ ├── xdpe12284c.c │ ├── xdpe15284.c │ └── xdpe19283b.c ├── hal │ ├── hal_c2h.c │ ├── hal_c2h.h │ ├── hal_gpio.c │ ├── hal_gpio.h │ ├── hal_i2c.c │ ├── hal_i2c.h │ ├── hal_i2c_target.c │ ├── hal_i2c_target.h │ ├── hal_i3c.c │ ├── hal_i3c.h │ ├── hal_jtag.c │ ├── hal_jtag.h │ ├── hal_peci.c │ ├── hal_peci.h │ ├── hal_vw_gpio.c │ ├── hal_vw_gpio.h │ ├── hal_wdt.c │ └── hal_wdt.h ├── include │ └── version.h ├── lib │ ├── expansion_board.c │ ├── expansion_board.h │ ├── libutil.c │ ├── libutil.h │ ├── logutil.c │ ├── logutil.h │ ├── power_status.c │ ├── power_status.h │ ├── timer.c │ ├── timer.h │ ├── util_pmbus.c │ ├── util_pmbus.h │ ├── util_spi.c │ ├── util_spi.h │ ├── util_sys.c │ ├── util_sys.h │ ├── util_worker.c │ └── util_worker.h ├── sample.yaml ├── service │ ├── apml │ │ ├── apml.c │ │ └── apml.h │ ├── cci │ │ ├── cci.c │ │ └── cci.h │ ├── host │ │ ├── kcs.c │ │ ├── kcs.h │ │ ├── ssif.c │ │ └── ssif.h │ ├── ipmb │ │ ├── ipmb.c │ │ └── ipmb.h │ ├── ipmi │ │ ├── app_handler.c │ │ ├── chassis_handler.c │ │ ├── include │ │ │ ├── app_handler.h │ │ │ ├── chassis_handler.h │ │ │ ├── ipmi.h │ │ │ ├── libipmi.h │ │ │ ├── oem_1s_handler.h │ │ │ ├── oem_handler.h │ │ │ ├── sensor_handler.h │ │ │ └── storage_handler.h │ │ ├── ipmi.c │ │ ├── oem_1s_handler.c │ │ ├── oem_handler.c │ │ ├── sensor_handler.c │ │ └── storage_handler.c │ ├── main.c │ ├── mctp │ │ ├── README.md │ │ ├── mctp.c │ │ ├── mctp.h │ │ ├── mctp_ctrl.c │ │ ├── mctp_ctrl.h │ │ ├── mctp_i3c.c │ │ └── mctp_smbus.c │ ├── modbus │ │ └── modbus_server.h │ ├── ncsi │ │ ├── ncsi.c │ │ └── ncsi.h │ ├── pldm │ │ ├── pldm.c │ │ ├── pldm.h │ │ ├── pldm_base.c │ │ ├── pldm_base.h │ │ ├── pldm_firmware_update.c │ │ ├── pldm_firmware_update.h │ │ ├── pldm_monitor.c │ │ ├── pldm_monitor.h │ │ ├── pldm_oem.c │ │ ├── pldm_oem.h │ │ ├── pldm_smbios.c │ │ ├── pldm_smbios.h │ │ └── pldm_state_set.h │ ├── sensor │ │ ├── README.txt │ │ ├── pdr.c │ │ ├── pdr.h │ │ ├── pldm_sensor.c │ │ ├── pldm_sensor.h │ │ ├── sdr.c │ │ ├── sdr.h │ │ ├── sensor.c │ │ └── sensor.h │ └── usb │ │ ├── usb.c │ │ └── usb.h └── shell │ ├── commands │ ├── flash_shell.c │ ├── flash_shell.h │ ├── gpio_shell.c │ ├── gpio_shell.h │ ├── info_shell.c │ ├── info_shell.h │ ├── ipmi_shell.c │ ├── ipmi_shell.h │ ├── pldm_shell.c │ ├── pldm_shell.h │ ├── power_shell.c │ ├── power_shell.h │ ├── sensor_shell.c │ └── sensor_shell.h │ └── shell_platform.c ├── docs ├── images │ └── OpenBIC.svg ├── openbic.cfg └── repo │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── fix_patch ├── aspeed-main-v2.6.0_641ac3b4d956f2d237c109526c017fdee4715bfb │ ├── 0001-Subject-PATCH-12-30-i3c-aspeed-use-OD-SCL-as-PP-SCL-.patch │ ├── 0002-Subject-PATCH-13-30-i3c-aspeed-add-API-to-set-the-st.patch │ ├── 0003-Subject-PATCH-26-30-i3c-aspeed-make-slave_put_read_d.patch │ ├── 0004-Subject-PATCH-29-30-i3c-aspeed-Separates-the-event-o.patch │ ├── 0005-Subject-PATCH-1-3-i3c-aspeed-Reset-the-i3c-when-ibi-.patch │ ├── 0006-Subject-PATCH-board-ast1030-evb-compile-with-C11.patch │ ├── 0007-Subject-PATCH-i3c-aspeed-make-DCR-configurable.patch │ ├── 0008-Subject-PATCH-modbus-aspeed-add-fix-modbus-server.patch │ ├── 0009-Subject-PATCH-spi-aspeed-support-10-dummy-cycle.patch │ ├── 0010-Subject-PATCH-i3c-Extend-sir_allowed_worker-to-5s.patch │ ├── 0011-Subject-PATCH-modbus-aspeed-modify-uart-aspeed-confi.patch │ ├── 0012-Subject-PATCH-modbus-aspeed-disable-interrupts-durin.patch │ ├── 0013-Subject-PATCH-spi-add-spi-register-read-write-API.patch │ ├── 0014-Subject-PATCH-spi-Support-dynamic-set-spi-frequency.patch │ ├── 0015-Subject-PATCH-i2c-aspeed-Fix-some-cases-which-unhand.patch │ ├── 0016-Subject-PATCH-spi-aspeed-Disable-MT25Q-series-HOLD-b.patch │ ├── 0017-Subject-PATCH-i2c-Add-multi-salve-behavior-support.patch │ ├── 0018-define-I3C_ASPEED_MAX_IBI_PAYLOAD.patch │ ├── 0019-resolving-multiple-definition-of-tid-by-renaming.patch │ ├── 0020-disable-CONFIG_UART_ASPEED.patch │ ├── 0021-i3c-Flush-the-RX-FIFO-when-no-callback-functio.patch │ ├── 0021-jtag-Support-HW-mode-2.patch │ ├── 0022-i3c-Add-controller-reset-and-retry-mechanism.patch │ └── 0022-jtag-add-support-for-running-TCK-clock-cycles.patch ├── nuvoton_tag_v2.6.0.0_cad6d72381ce408c40867f41a8741dba16e50bdf │ ├── 0001-soc-npcm4xx-add-c11-to-CMake-list.patch │ ├── 0002-soc-npcm4xx-B0-demo-to-enter-uart-download-mode.patch │ ├── 0003-Revert-drivers-i3c-modify-i3c_dev_desc-for-OpenBic-c.patch │ ├── 0004-drivers-i3c-add-i3c_slave_hj_req-support-in-i3c-npcm.patch │ ├── 0005-drivers-i2c-add-force_scan-shell-command-to-support-scanning-over-0x77.patch │ ├── 0006-drivers-gpio-npcm4xx-fix-wrong-setting-when-setup-gpio-open-drain-mode.patch │ ├── 0007-drivers-watchdog-npcm4xx-check-dts-node-status.patch │ ├── 0008-drivers-i2c-check-if-bus-is-busy-before-doing-an-i2c.patch │ ├── 0009-drivers-i2c-customization-for-time-to-wait-for-the-b.patch │ ├── 0010-drivers-i2c-support-i2c-recovery-in-NPCM-series.patch │ ├── 0011-drivers-misc-enable-c2h-driver-on-NPCM4XX-series.patch │ ├── 0012-drivers-i2c-support-multiple-targets-on-NPCM.patch │ ├── 0013-driver-i2c-change-MAX_I2C_BYTES-16-to-32.patch │ ├── 0014-soc-arm-npcm4xx-disable-interrupt-before-calling-gdm.patch │ ├── 0015-drivers-i2c-clear-BB-bus-bus-bit-correction.patch │ ├── 0016-drivers-i2c-enable-target-early-in-isr.patch │ ├── 0017-drivers-clock_control-mpcm4xx-Update-get-system-cloc.patch │ ├── 0018-drivers-spi-npcm4xx-Support-set-spi-max-frequency-in.patch │ ├── 0019-dts-bindlings-clock-npcm4xx-add-fiu-div-config.patch │ ├── 0020-boards-arm-nuvotom-npcm4xx-Add-i3c0-in-dts.patch │ ├── 0021-drivers-i2c-set-SCLLT-and-SCLHT-via-dts.patch │ ├── 0022-drivers-spi-npcm4xx-Fix-pspi-clock-source-and-spi-mo.patch │ ├── 0023-driver-spi-npcm4xx-Add-multi-line-support-and-fix-tr.patch │ ├── 0024-drivers-i3c-npcm4xx-ibi-enhancement.patch │ ├── 0025-drivers-i2c-add-i2c-interface-support.patch │ ├── 0026-drivers-i2c-auto-recover-when-i2c-single-master-bus-.patch │ ├── 0027-drivers-i2c-return-ENODEV-in-i2c-xfer-early-stage-if.patch │ └── 0028-drivers-i2c-restore-i2c-target-settings-before-unloc.patch └── read_me ├── meta-facebook ├── aalc-rpu │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_fru_date.c │ │ ├── plat_fru_date.h │ │ ├── plat_fsc.c │ │ ├── plat_fsc.h │ │ ├── plat_fsc_table.c │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_hwmon.c │ │ ├── plat_hwmon.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_log.c │ │ ├── plat_log.h │ │ ├── plat_modbus.c │ │ ├── plat_modbus.h │ │ ├── plat_pwm.c │ │ ├── plat_pwm.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_shell.c │ │ ├── plat_status.c │ │ ├── plat_status.h │ │ ├── plat_threshold.c │ │ ├── plat_threshold.h │ │ ├── plat_util.c │ │ ├── plat_util.h │ │ └── plat_version.h ├── at-cb │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_dev.c │ │ ├── plat_dev.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_device_identifier.c │ │ ├── plat_pldm_device_identifier.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── at-mc │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_dev.c │ │ ├── plat_dev.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── gc2-es │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── gt-cc │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ ├── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_ncsi.c │ │ ├── plat_ncsi.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h │ │ └── shell │ │ ├── plat_shell.c │ │ ├── plat_shell_e1s.c │ │ └── plat_shell_e1s.h ├── minerva-ag │ ├── CMakeLists.txt │ ├── boards │ │ ├── npcm400f_evb.conf │ │ └── npcm400f_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ └── plat_sys.h │ │ ├── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_datetime.c │ │ ├── plat_datetime.h │ │ ├── plat_def.h │ │ ├── plat_event.c │ │ ├── plat_event.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_hwmon.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_log.c │ │ ├── plat_log.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_pldm_sensor.c │ │ ├── plat_pldm_sensor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h │ │ └── shell │ │ ├── clock_shell.c │ │ ├── clock_shell.h │ │ ├── cpld_shell.c │ │ ├── cpld_shell.h │ │ ├── fru_shell.c │ │ ├── log_shell.c │ │ ├── log_shell.h │ │ ├── plat_aegis_power_control_shell.c │ │ ├── plat_aegis_power_control_shell.h │ │ ├── plat_ath_gpio_switch_shell.c │ │ ├── plat_athena_shell.c │ │ ├── plat_average_power_shell.c │ │ ├── plat_bootstrap_shell.c │ │ ├── plat_echo.c │ │ ├── plat_perm_config_shell.c │ │ ├── plat_pldm_fw_version_shell.c │ │ ├── plat_pldm_fw_version_shell.h │ │ ├── plat_power_capping_shell.c │ │ ├── plat_power_sequence_shell.c │ │ ├── plat_pwrlevel_shell.c │ │ ├── plat_pwrlevel_shell.h │ │ ├── plat_reboot.c │ │ ├── plat_reset_cause_shell.c │ │ ├── plat_sensor_polling_shell.c │ │ ├── plat_sensor_polling_shell.h │ │ ├── plat_shell.c │ │ ├── plat_smbus_shell.c │ │ ├── plat_soc_pcie_perst_shell.c │ │ ├── plat_soc_pwron_reset_shell.c │ │ ├── plat_temp_status_shell.c │ │ ├── plat_temp_threshold_shell.c │ │ ├── plat_thermaltrip_switch_shell.c │ │ ├── plat_throttle_switch_shell.c │ │ ├── plat_uart_pwrevent_shell.c │ │ ├── plat_uart_pwrevent_shell.h │ │ ├── plat_voltage_peak_shell.c │ │ ├── plat_voltage_peak_shell.h │ │ ├── plat_voltage_range_shell.c │ │ ├── plat_voltage_shell.c │ │ ├── plat_vr_status_shell.c │ │ ├── sensor_threshold_shell.c │ │ ├── sensor_threshold_shell.h │ │ └── sideband_commands_athena_open.h ├── op2-op │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_power_seq.c │ │ ├── plat_power_seq.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_util.c │ │ ├── plat_util.h │ │ └── plat_version.h ├── sb-rb │ ├── .vscode │ │ └── settings.json │ ├── CMakeLists.txt │ ├── boards │ │ ├── npcm400f_evb.conf │ │ └── npcm400f_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ └── plat_sys.h │ │ ├── platform │ │ ├── plat_adc.c │ │ ├── plat_adc.h │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_cpld.c │ │ ├── plat_cpld.h │ │ ├── plat_def.h │ │ ├── plat_event.c │ │ ├── plat_event.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_hwmon.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_log.c │ │ ├── plat_log.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_pldm_sensor.c │ │ ├── plat_pldm_sensor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_user_setting.c │ │ ├── plat_user_setting.h │ │ ├── plat_util.c │ │ ├── plat_util.h │ │ └── plat_version.h │ │ └── shell │ │ ├── clock_shell.c │ │ ├── clock_shell.h │ │ ├── plat_smbus_shell.c │ │ ├── plat_thermaltrip_switch_shell.c │ │ ├── shell_adc.c │ │ ├── shell_echo.c │ │ ├── shell_fw_version.c │ │ ├── shell_log.c │ │ ├── shell_sensor_polling.c │ │ ├── shell_sensor_threshold.c │ │ ├── shell_spi.c │ │ ├── shell_test.c │ │ └── shell_vr_status.c ├── sb-si │ ├── CMakeLists.txt │ ├── boards │ │ ├── npcm400f_evb.conf │ │ └── npcm400f_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_spi.h │ │ └── plat_sys.h │ │ ├── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_event.c │ │ ├── plat_event.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_hwmon.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_log.c │ │ ├── plat_log.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_pldm_sensor.c │ │ ├── plat_pldm_sensor.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h │ │ └── shell │ │ ├── plat_echo.c │ │ ├── plat_erase.c │ │ ├── plat_pldm_fw_version_shell.c │ │ ├── plat_pldm_fw_version_shell.h │ │ ├── plat_reboot.c │ │ ├── plat_sensor_polling_shell.c │ │ ├── plat_sensor_polling_shell.h │ │ ├── plat_sensor_threshold_shell.c │ │ ├── plat_spi_test_shell.c │ │ ├── plat_spi_test_shell.h │ │ └── plat_vr_status_shell.c ├── wc-mb │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv3-dl │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv3-vf │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_hwmon.c │ │ ├── plat_hwmon.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_led.c │ │ ├── plat_led.h │ │ ├── plat_m2.c │ │ ├── plat_m2.h │ │ ├── plat_power_seq.c │ │ ├── plat_power_seq.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_util.c │ │ ├── plat_util.h │ │ └── plat_version.h ├── yv35-bb │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_altera.c │ │ ├── plat_altera.h │ │ ├── plat_def.h │ │ ├── plat_fan.c │ │ ├── plat_fan.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv35-cl │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_dimm.c │ │ ├── plat_dimm.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_power.c │ │ ├── plat_power.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv35-gl │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_cpu.c │ │ ├── plat_cpu.h │ │ ├── plat_def.h │ │ ├── plat_dimm.c │ │ ├── plat_dimm.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.c │ │ ├── plat_i2c.h │ │ ├── plat_i3c.c │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_version.h │ │ ├── plat_vw_gpio.c │ │ └── plat_vw_gpio.h ├── yv35-hd │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_spi.h │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_apml.c │ │ ├── plat_apml.h │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv35-hda1 │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm.c │ │ ├── plat_pldm.h │ │ ├── plat_power_status.c │ │ ├── plat_power_status.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_ssif.c │ │ ├── plat_ssif.h │ │ └── plat_version.h ├── yv35-ji │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_spi.h │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.c │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_power_status.c │ │ ├── plat_power_status.h │ │ ├── plat_sbmr.c │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ ├── plat_ssif.c │ │ ├── plat_ssif.h │ │ └── plat_version.h ├── yv35-nf │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ └── include │ │ │ └── plat_ipmi.h │ │ ├── lib │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_power_seq.c │ │ ├── plat_power_seq.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv35-rf │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_power_seq.c │ │ ├── plat_power_seq.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv4-ff │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ └── include │ │ │ └── plat_ipmi.h │ │ ├── lib │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_fru.c │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm.c │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_pldm_sensor.c │ │ ├── plat_pldm_sensor.h │ │ ├── plat_power_seq.c │ │ ├── plat_power_seq.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h ├── yv4-sd │ ├── CMakeLists.txt │ ├── boards │ │ ├── ast1030_evb.conf │ │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ │ ├── ipmi │ │ ├── include │ │ │ └── plat_ipmi.h │ │ └── plat_ipmi.c │ │ ├── lib │ │ ├── plat_spi.c │ │ ├── plat_spi.h │ │ ├── plat_sys.c │ │ └── plat_sys.h │ │ └── platform │ │ ├── plat_apml.c │ │ ├── plat_apml.h │ │ ├── plat_class.c │ │ ├── plat_class.h │ │ ├── plat_def.h │ │ ├── plat_dimm.c │ │ ├── plat_dimm.h │ │ ├── plat_fru.h │ │ ├── plat_gpio.c │ │ ├── plat_gpio.h │ │ ├── plat_guid.h │ │ ├── plat_hook.c │ │ ├── plat_hook.h │ │ ├── plat_i2c.h │ │ ├── plat_i2c_target.c │ │ ├── plat_i2c_target.h │ │ ├── plat_i3c.c │ │ ├── plat_i3c.h │ │ ├── plat_init.c │ │ ├── plat_ipmb.h │ │ ├── plat_isr.c │ │ ├── plat_isr.h │ │ ├── plat_kcs.c │ │ ├── plat_kcs.h │ │ ├── plat_mctp.c │ │ ├── plat_mctp.h │ │ ├── plat_pldm.c │ │ ├── plat_pldm.h │ │ ├── plat_pldm_device_identifier.c │ │ ├── plat_pldm_device_identifier.h │ │ ├── plat_pldm_fw_update.c │ │ ├── plat_pldm_fw_update.h │ │ ├── plat_pldm_monitor.c │ │ ├── plat_pldm_monitor.h │ │ ├── plat_pldm_sensor.c │ │ ├── plat_pldm_sensor.h │ │ ├── plat_pmic.c │ │ ├── plat_pmic.h │ │ ├── plat_sdr_table.c │ │ ├── plat_sdr_table.h │ │ ├── plat_sensor_table.c │ │ ├── plat_sensor_table.h │ │ └── plat_version.h └── yv4-wf │ ├── CMakeLists.txt │ ├── boards │ ├── ast1030_evb.conf │ └── ast1030_evb.overlay │ ├── prj.conf │ └── src │ ├── ipmi │ └── include │ │ └── plat_ipmi.h │ ├── lib │ ├── plat_sys.c │ └── plat_sys.h │ └── platform │ ├── plat_class.c │ ├── plat_class.h │ ├── plat_def.h │ ├── plat_dimm.c │ ├── plat_dimm.h │ ├── plat_fru.h │ ├── plat_gpio.c │ ├── plat_gpio.h │ ├── plat_hook.c │ ├── plat_hook.h │ ├── plat_i2c.h │ ├── plat_i2c_target.c │ ├── plat_i2c_target.h │ ├── plat_init.c │ ├── plat_ipmb.h │ ├── plat_isr.c │ ├── plat_isr.h │ ├── plat_mctp.c │ ├── plat_mctp.h │ ├── plat_pldm.c │ ├── plat_pldm_device_identifier.c │ ├── plat_pldm_device_identifier.h │ ├── plat_pldm_fw_update.c │ ├── plat_pldm_fw_update.h │ ├── plat_pldm_monitor.c │ ├── plat_pldm_monitor.h │ ├── plat_pldm_sensor.c │ ├── plat_pldm_sensor.h │ ├── plat_power_seq.c │ ├── plat_power_seq.h │ ├── plat_sdr_table.c │ ├── plat_sdr_table.h │ ├── plat_sensor_table.c │ ├── plat_sensor_table.h │ └── plat_version.h ├── scripts ├── build │ ├── apply_patches.py │ ├── build_all.py │ └── get_revision.py ├── common │ └── constants.py ├── hooks │ └── pre-commit ├── linters │ └── cppcheck │ │ ├── cppcheck-suppressions.txt │ │ └── cppcheck.cfg └── signing │ ├── pldm_fw_package │ ├── CMD_EX │ ├── README.md │ ├── lib │ │ ├── common_lib.py │ │ └── json_cfg.py │ ├── platform │ │ ├── cfg_at_cb.json │ │ ├── cfg_at_cb_asic_psoc_qspi.json │ │ ├── cfg_at_mc.json │ │ ├── cfg_gt_swb.json │ │ └── cfg_yv35_ji.json │ ├── pldm_fwup_pkg_creator.py │ └── pldm_update_pkg_gen.py │ └── sign_bic_image.py └── west.yml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build_and_lint_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.github/workflows/build_and_lint_pr.yml -------------------------------------------------------------------------------- /.github/workflows/generate_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.github/workflows/generate_docs.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/README.md -------------------------------------------------------------------------------- /common/dev/adc128d818.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/adc128d818.c -------------------------------------------------------------------------------- /common/dev/adm1272.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/adm1272.c -------------------------------------------------------------------------------- /common/dev/adm1278.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/adm1278.c -------------------------------------------------------------------------------- /common/dev/ads1015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ads1015.c -------------------------------------------------------------------------------- /common/dev/ads112c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ads112c.c -------------------------------------------------------------------------------- /common/dev/ads7830.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ads7830.c -------------------------------------------------------------------------------- /common/dev/altera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/altera.c -------------------------------------------------------------------------------- /common/dev/amd_tsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/amd_tsi.c -------------------------------------------------------------------------------- /common/dev/apml_mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/apml_mailbox.c -------------------------------------------------------------------------------- /common/dev/ast_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ast_adc.c -------------------------------------------------------------------------------- /common/dev/ast_tach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ast_tach.c -------------------------------------------------------------------------------- /common/dev/bcm85658.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/bcm85658.c -------------------------------------------------------------------------------- /common/dev/bmr313.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/bmr313.c -------------------------------------------------------------------------------- /common/dev/bmr316.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/bmr316.c -------------------------------------------------------------------------------- /common/dev/bmr351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/bmr351.c -------------------------------------------------------------------------------- /common/dev/bmr4922302_803.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/bmr4922302_803.c -------------------------------------------------------------------------------- /common/dev/common_i2c_mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/common_i2c_mux.c -------------------------------------------------------------------------------- /common/dev/cx7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/cx7.c -------------------------------------------------------------------------------- /common/dev/ddr5_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ddr5_power.c -------------------------------------------------------------------------------- /common/dev/ddr5_temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ddr5_temp.c -------------------------------------------------------------------------------- /common/dev/ds160pt801.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ds160pt801.c -------------------------------------------------------------------------------- /common/dev/e50sn12051.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/e50sn12051.c -------------------------------------------------------------------------------- /common/dev/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/eeprom.c -------------------------------------------------------------------------------- /common/dev/emc1412.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/emc1412.c -------------------------------------------------------------------------------- /common/dev/emc1413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/emc1413.c -------------------------------------------------------------------------------- /common/dev/fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/fru.c -------------------------------------------------------------------------------- /common/dev/g788p81u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/g788p81u.c -------------------------------------------------------------------------------- /common/dev/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/guid.c -------------------------------------------------------------------------------- /common/dev/hdc1080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/hdc1080.c -------------------------------------------------------------------------------- /common/dev/i2c-mux-pca984x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/i2c-mux-pca984x.c -------------------------------------------------------------------------------- /common/dev/i2c-mux-tca9548.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/i2c-mux-tca9548.c -------------------------------------------------------------------------------- /common/dev/i3c_dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/i3c_dimm.c -------------------------------------------------------------------------------- /common/dev/ina230.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ina230.c -------------------------------------------------------------------------------- /common/dev/ina233.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ina233.c -------------------------------------------------------------------------------- /common/dev/ina238.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ina238.c -------------------------------------------------------------------------------- /common/dev/include/adm1272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/adm1272.h -------------------------------------------------------------------------------- /common/dev/include/ads1015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ads1015.h -------------------------------------------------------------------------------- /common/dev/include/ads112c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ads112c.h -------------------------------------------------------------------------------- /common/dev/include/ads7830.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ads7830.h -------------------------------------------------------------------------------- /common/dev/include/altera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/altera.h -------------------------------------------------------------------------------- /common/dev/include/ast_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ast_adc.h -------------------------------------------------------------------------------- /common/dev/include/ast_tach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ast_tach.h -------------------------------------------------------------------------------- /common/dev/include/bcm85658.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/bcm85658.h -------------------------------------------------------------------------------- /common/dev/include/bmr4922302_803.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/bmr4922302_803.h -------------------------------------------------------------------------------- /common/dev/include/common_i2c_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/common_i2c_mux.h -------------------------------------------------------------------------------- /common/dev/include/ds160pt801.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ds160pt801.h -------------------------------------------------------------------------------- /common/dev/include/e50sn12051.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/e50sn12051.h -------------------------------------------------------------------------------- /common/dev/include/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/eeprom.h -------------------------------------------------------------------------------- /common/dev/include/emc1412.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/emc1412.h -------------------------------------------------------------------------------- /common/dev/include/emc1413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/emc1413.h -------------------------------------------------------------------------------- /common/dev/include/fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/fru.h -------------------------------------------------------------------------------- /common/dev/include/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/guid.h -------------------------------------------------------------------------------- /common/dev/include/hdc1080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/hdc1080.h -------------------------------------------------------------------------------- /common/dev/include/i2c-mux-pca954x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/i2c-mux-pca954x.h -------------------------------------------------------------------------------- /common/dev/include/i2c-mux-pca984x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/i2c-mux-pca984x.h -------------------------------------------------------------------------------- /common/dev/include/i2c-mux-pi4msd5v9542.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/i2c-mux-pi4msd5v9542.h -------------------------------------------------------------------------------- /common/dev/include/i2c-mux-tca9543a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/i2c-mux-tca9543a.h -------------------------------------------------------------------------------- /common/dev/include/i2c-mux-tca9548.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/i2c-mux-tca9548.h -------------------------------------------------------------------------------- /common/dev/include/ina230.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ina230.h -------------------------------------------------------------------------------- /common/dev/include/ina233.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ina233.h -------------------------------------------------------------------------------- /common/dev/include/ina238.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ina238.h -------------------------------------------------------------------------------- /common/dev/include/intel_dimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/intel_dimm.h -------------------------------------------------------------------------------- /common/dev/include/intel_peci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/intel_peci.h -------------------------------------------------------------------------------- /common/dev/include/ioexp_pca9555.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ioexp_pca9555.h -------------------------------------------------------------------------------- /common/dev/include/ioexp_tca9555.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ioexp_tca9555.h -------------------------------------------------------------------------------- /common/dev/include/isl28022.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/isl28022.h -------------------------------------------------------------------------------- /common/dev/include/isl69254iraz_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/isl69254iraz_t.h -------------------------------------------------------------------------------- /common/dev/include/isl69259.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/isl69259.h -------------------------------------------------------------------------------- /common/dev/include/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/lattice.h -------------------------------------------------------------------------------- /common/dev/include/ltc2991.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/ltc2991.h -------------------------------------------------------------------------------- /common/dev/include/m88rt51632.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/m88rt51632.h -------------------------------------------------------------------------------- /common/dev/include/mp2891.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp2891.h -------------------------------------------------------------------------------- /common/dev/include/mp289x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp289x.h -------------------------------------------------------------------------------- /common/dev/include/mp2971.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp2971.h -------------------------------------------------------------------------------- /common/dev/include/mp29816a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp29816a.h -------------------------------------------------------------------------------- /common/dev/include/mp2985.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp2985.h -------------------------------------------------------------------------------- /common/dev/include/mp2988.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mp2988.h -------------------------------------------------------------------------------- /common/dev/include/mpq8746.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mpq8746.h -------------------------------------------------------------------------------- /common/dev/include/mpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/mpro.h -------------------------------------------------------------------------------- /common/dev/include/nct214.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/nct214.h -------------------------------------------------------------------------------- /common/dev/include/nct7363.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/nct7363.h -------------------------------------------------------------------------------- /common/dev/include/nvidia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/nvidia.h -------------------------------------------------------------------------------- /common/dev/include/nvme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/nvme.h -------------------------------------------------------------------------------- /common/dev/include/octeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/octeon.h -------------------------------------------------------------------------------- /common/dev/include/p3h284x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/p3h284x.h -------------------------------------------------------------------------------- /common/dev/include/pcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pcc.h -------------------------------------------------------------------------------- /common/dev/include/pex89000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pex89000.h -------------------------------------------------------------------------------- /common/dev/include/pex90144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pex90144.h -------------------------------------------------------------------------------- /common/dev/include/pm8702.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pm8702.h -------------------------------------------------------------------------------- /common/dev/include/pmbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pmbus.h -------------------------------------------------------------------------------- /common/dev/include/pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pmic.h -------------------------------------------------------------------------------- /common/dev/include/pt5161l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/pt5161l.h -------------------------------------------------------------------------------- /common/dev/include/q50sn120a1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/q50sn120a1.h -------------------------------------------------------------------------------- /common/dev/include/raa228249.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/raa228249.h -------------------------------------------------------------------------------- /common/dev/include/raa229621.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/raa229621.h -------------------------------------------------------------------------------- /common/dev/include/rg3mxxb12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/rg3mxxb12.h -------------------------------------------------------------------------------- /common/dev/include/rtq6056.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/rtq6056.h -------------------------------------------------------------------------------- /common/dev/include/sbmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/sbmr.h -------------------------------------------------------------------------------- /common/dev/include/snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/snoop.h -------------------------------------------------------------------------------- /common/dev/include/sq52205.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/sq52205.h -------------------------------------------------------------------------------- /common/dev/include/tda38741.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tda38741.h -------------------------------------------------------------------------------- /common/dev/include/tmp421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tmp421.h -------------------------------------------------------------------------------- /common/dev/include/tmp431.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tmp431.h -------------------------------------------------------------------------------- /common/dev/include/tmp461.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tmp461.h -------------------------------------------------------------------------------- /common/dev/include/tmp75.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tmp75.h -------------------------------------------------------------------------------- /common/dev/include/tps53689.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/tps53689.h -------------------------------------------------------------------------------- /common/dev/include/vistara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/vistara.h -------------------------------------------------------------------------------- /common/dev/include/vr_fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/vr_fault.h -------------------------------------------------------------------------------- /common/dev/include/xdp710.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/xdp710.h -------------------------------------------------------------------------------- /common/dev/include/xdpe12284c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/xdpe12284c.h -------------------------------------------------------------------------------- /common/dev/include/xdpe15284.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/include/xdpe15284.h -------------------------------------------------------------------------------- /common/dev/intel_peci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/intel_peci.c -------------------------------------------------------------------------------- /common/dev/isl28022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/isl28022.c -------------------------------------------------------------------------------- /common/dev/isl69254iraz_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/isl69254iraz_t.c -------------------------------------------------------------------------------- /common/dev/isl69259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/isl69259.c -------------------------------------------------------------------------------- /common/dev/lattice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/lattice.c -------------------------------------------------------------------------------- /common/dev/lm75bd118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/lm75bd118.c -------------------------------------------------------------------------------- /common/dev/ltc2991.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ltc2991.c -------------------------------------------------------------------------------- /common/dev/ltc4282.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ltc4282.c -------------------------------------------------------------------------------- /common/dev/ltc4286.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/ltc4286.c -------------------------------------------------------------------------------- /common/dev/lx6301.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/lx6301.c -------------------------------------------------------------------------------- /common/dev/m88rt51632.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/m88rt51632.c -------------------------------------------------------------------------------- /common/dev/max11617.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/max11617.c -------------------------------------------------------------------------------- /common/dev/max16550a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/max16550a.c -------------------------------------------------------------------------------- /common/dev/mp2856gut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp2856gut.c -------------------------------------------------------------------------------- /common/dev/mp2891.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp2891.c -------------------------------------------------------------------------------- /common/dev/mp289x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp289x.c -------------------------------------------------------------------------------- /common/dev/mp2971.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp2971.c -------------------------------------------------------------------------------- /common/dev/mp29816a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp29816a.c -------------------------------------------------------------------------------- /common/dev/mp2985.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp2985.c -------------------------------------------------------------------------------- /common/dev/mp2988.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp2988.c -------------------------------------------------------------------------------- /common/dev/mp5990.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mp5990.c -------------------------------------------------------------------------------- /common/dev/mpc12109.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mpc12109.c -------------------------------------------------------------------------------- /common/dev/mpq8746.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mpq8746.c -------------------------------------------------------------------------------- /common/dev/mpro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/mpro.c -------------------------------------------------------------------------------- /common/dev/nct214.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/nct214.c -------------------------------------------------------------------------------- /common/dev/nct7363.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/nct7363.c -------------------------------------------------------------------------------- /common/dev/nct7718w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/nct7718w.c -------------------------------------------------------------------------------- /common/dev/nv_satmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/nv_satmc.c -------------------------------------------------------------------------------- /common/dev/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/nvme.c -------------------------------------------------------------------------------- /common/dev/octeon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/octeon.c -------------------------------------------------------------------------------- /common/dev/p3h284x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/p3h284x.c -------------------------------------------------------------------------------- /common/dev/pcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pcc.c -------------------------------------------------------------------------------- /common/dev/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pch.c -------------------------------------------------------------------------------- /common/dev/pex89000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pex89000.c -------------------------------------------------------------------------------- /common/dev/pex90144.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pex90144.c -------------------------------------------------------------------------------- /common/dev/pm8702.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pm8702.c -------------------------------------------------------------------------------- /common/dev/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pmic.c -------------------------------------------------------------------------------- /common/dev/pt5161l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/pt5161l.c -------------------------------------------------------------------------------- /common/dev/q50sn120a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/q50sn120a1.c -------------------------------------------------------------------------------- /common/dev/raa228238.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/raa228238.c -------------------------------------------------------------------------------- /common/dev/raa228249.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/raa228249.c -------------------------------------------------------------------------------- /common/dev/raa229621.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/raa229621.c -------------------------------------------------------------------------------- /common/dev/rg3mxxb12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/rg3mxxb12.c -------------------------------------------------------------------------------- /common/dev/rs31380r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/rs31380r.c -------------------------------------------------------------------------------- /common/dev/rtq6056.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/rtq6056.c -------------------------------------------------------------------------------- /common/dev/s54ss4p180pmdafc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/s54ss4p180pmdafc.c -------------------------------------------------------------------------------- /common/dev/sbmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/sbmr.c -------------------------------------------------------------------------------- /common/dev/snoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/snoop.c -------------------------------------------------------------------------------- /common/dev/sq52205.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/sq52205.c -------------------------------------------------------------------------------- /common/dev/tda38741.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tda38741.c -------------------------------------------------------------------------------- /common/dev/tmp421.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tmp421.c -------------------------------------------------------------------------------- /common/dev/tmp431.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tmp431.c -------------------------------------------------------------------------------- /common/dev/tmp461.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tmp461.c -------------------------------------------------------------------------------- /common/dev/tmp75.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tmp75.c -------------------------------------------------------------------------------- /common/dev/tps53689.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/tps53689.c -------------------------------------------------------------------------------- /common/dev/u50su4p180pmdafc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/u50su4p180pmdafc.c -------------------------------------------------------------------------------- /common/dev/vistara.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/vistara.c -------------------------------------------------------------------------------- /common/dev/vr_fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/vr_fault.c -------------------------------------------------------------------------------- /common/dev/xdp710.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/xdp710.c -------------------------------------------------------------------------------- /common/dev/xdpe12284c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/xdpe12284c.c -------------------------------------------------------------------------------- /common/dev/xdpe15284.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/xdpe15284.c -------------------------------------------------------------------------------- /common/dev/xdpe19283b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/dev/xdpe19283b.c -------------------------------------------------------------------------------- /common/hal/hal_c2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_c2h.c -------------------------------------------------------------------------------- /common/hal/hal_c2h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_c2h.h -------------------------------------------------------------------------------- /common/hal/hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_gpio.c -------------------------------------------------------------------------------- /common/hal/hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_gpio.h -------------------------------------------------------------------------------- /common/hal/hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i2c.c -------------------------------------------------------------------------------- /common/hal/hal_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i2c.h -------------------------------------------------------------------------------- /common/hal/hal_i2c_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i2c_target.c -------------------------------------------------------------------------------- /common/hal/hal_i2c_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i2c_target.h -------------------------------------------------------------------------------- /common/hal/hal_i3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i3c.c -------------------------------------------------------------------------------- /common/hal/hal_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_i3c.h -------------------------------------------------------------------------------- /common/hal/hal_jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_jtag.c -------------------------------------------------------------------------------- /common/hal/hal_jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_jtag.h -------------------------------------------------------------------------------- /common/hal/hal_peci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_peci.c -------------------------------------------------------------------------------- /common/hal/hal_peci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_peci.h -------------------------------------------------------------------------------- /common/hal/hal_vw_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_vw_gpio.c -------------------------------------------------------------------------------- /common/hal/hal_vw_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_vw_gpio.h -------------------------------------------------------------------------------- /common/hal/hal_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_wdt.c -------------------------------------------------------------------------------- /common/hal/hal_wdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/hal/hal_wdt.h -------------------------------------------------------------------------------- /common/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/include/version.h -------------------------------------------------------------------------------- /common/lib/expansion_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/expansion_board.c -------------------------------------------------------------------------------- /common/lib/expansion_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/expansion_board.h -------------------------------------------------------------------------------- /common/lib/libutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/libutil.c -------------------------------------------------------------------------------- /common/lib/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/libutil.h -------------------------------------------------------------------------------- /common/lib/logutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/logutil.c -------------------------------------------------------------------------------- /common/lib/logutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/logutil.h -------------------------------------------------------------------------------- /common/lib/power_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/power_status.c -------------------------------------------------------------------------------- /common/lib/power_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/power_status.h -------------------------------------------------------------------------------- /common/lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/timer.c -------------------------------------------------------------------------------- /common/lib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/timer.h -------------------------------------------------------------------------------- /common/lib/util_pmbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_pmbus.c -------------------------------------------------------------------------------- /common/lib/util_pmbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_pmbus.h -------------------------------------------------------------------------------- /common/lib/util_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_spi.c -------------------------------------------------------------------------------- /common/lib/util_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_spi.h -------------------------------------------------------------------------------- /common/lib/util_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_sys.c -------------------------------------------------------------------------------- /common/lib/util_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_sys.h -------------------------------------------------------------------------------- /common/lib/util_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_worker.c -------------------------------------------------------------------------------- /common/lib/util_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/lib/util_worker.h -------------------------------------------------------------------------------- /common/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/sample.yaml -------------------------------------------------------------------------------- /common/service/apml/apml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/apml/apml.c -------------------------------------------------------------------------------- /common/service/apml/apml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/apml/apml.h -------------------------------------------------------------------------------- /common/service/cci/cci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/cci/cci.c -------------------------------------------------------------------------------- /common/service/cci/cci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/cci/cci.h -------------------------------------------------------------------------------- /common/service/host/kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/host/kcs.c -------------------------------------------------------------------------------- /common/service/host/kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/host/kcs.h -------------------------------------------------------------------------------- /common/service/host/ssif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/host/ssif.c -------------------------------------------------------------------------------- /common/service/host/ssif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/host/ssif.h -------------------------------------------------------------------------------- /common/service/ipmb/ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmb/ipmb.c -------------------------------------------------------------------------------- /common/service/ipmb/ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmb/ipmb.h -------------------------------------------------------------------------------- /common/service/ipmi/app_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/app_handler.c -------------------------------------------------------------------------------- /common/service/ipmi/chassis_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/chassis_handler.c -------------------------------------------------------------------------------- /common/service/ipmi/include/app_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/app_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/include/chassis_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/chassis_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/include/ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/ipmi.h -------------------------------------------------------------------------------- /common/service/ipmi/include/libipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/libipmi.h -------------------------------------------------------------------------------- /common/service/ipmi/include/oem_1s_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/oem_1s_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/include/oem_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/oem_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/include/sensor_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/sensor_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/include/storage_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/include/storage_handler.h -------------------------------------------------------------------------------- /common/service/ipmi/ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/ipmi.c -------------------------------------------------------------------------------- /common/service/ipmi/oem_1s_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/oem_1s_handler.c -------------------------------------------------------------------------------- /common/service/ipmi/oem_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/oem_handler.c -------------------------------------------------------------------------------- /common/service/ipmi/sensor_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/sensor_handler.c -------------------------------------------------------------------------------- /common/service/ipmi/storage_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ipmi/storage_handler.c -------------------------------------------------------------------------------- /common/service/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/main.c -------------------------------------------------------------------------------- /common/service/mctp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/README.md -------------------------------------------------------------------------------- /common/service/mctp/mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp.c -------------------------------------------------------------------------------- /common/service/mctp/mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp.h -------------------------------------------------------------------------------- /common/service/mctp/mctp_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp_ctrl.c -------------------------------------------------------------------------------- /common/service/mctp/mctp_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp_ctrl.h -------------------------------------------------------------------------------- /common/service/mctp/mctp_i3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp_i3c.c -------------------------------------------------------------------------------- /common/service/mctp/mctp_smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/mctp/mctp_smbus.c -------------------------------------------------------------------------------- /common/service/modbus/modbus_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/modbus/modbus_server.h -------------------------------------------------------------------------------- /common/service/ncsi/ncsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ncsi/ncsi.c -------------------------------------------------------------------------------- /common/service/ncsi/ncsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/ncsi/ncsi.h -------------------------------------------------------------------------------- /common/service/pldm/pldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm.c -------------------------------------------------------------------------------- /common/service/pldm/pldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_base.c -------------------------------------------------------------------------------- /common/service/pldm/pldm_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_base.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_firmware_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_firmware_update.c -------------------------------------------------------------------------------- /common/service/pldm/pldm_firmware_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_firmware_update.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_monitor.c -------------------------------------------------------------------------------- /common/service/pldm/pldm_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_monitor.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_oem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_oem.c -------------------------------------------------------------------------------- /common/service/pldm/pldm_oem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_oem.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_smbios.c -------------------------------------------------------------------------------- /common/service/pldm/pldm_smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_smbios.h -------------------------------------------------------------------------------- /common/service/pldm/pldm_state_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/pldm/pldm_state_set.h -------------------------------------------------------------------------------- /common/service/sensor/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/README.txt -------------------------------------------------------------------------------- /common/service/sensor/pdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/pdr.c -------------------------------------------------------------------------------- /common/service/sensor/pdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/pdr.h -------------------------------------------------------------------------------- /common/service/sensor/pldm_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/pldm_sensor.c -------------------------------------------------------------------------------- /common/service/sensor/pldm_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/pldm_sensor.h -------------------------------------------------------------------------------- /common/service/sensor/sdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/sdr.c -------------------------------------------------------------------------------- /common/service/sensor/sdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/sdr.h -------------------------------------------------------------------------------- /common/service/sensor/sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/sensor.c -------------------------------------------------------------------------------- /common/service/sensor/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/sensor/sensor.h -------------------------------------------------------------------------------- /common/service/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/usb/usb.c -------------------------------------------------------------------------------- /common/service/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/service/usb/usb.h -------------------------------------------------------------------------------- /common/shell/commands/flash_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/flash_shell.c -------------------------------------------------------------------------------- /common/shell/commands/flash_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/flash_shell.h -------------------------------------------------------------------------------- /common/shell/commands/gpio_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/gpio_shell.c -------------------------------------------------------------------------------- /common/shell/commands/gpio_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/gpio_shell.h -------------------------------------------------------------------------------- /common/shell/commands/info_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/info_shell.c -------------------------------------------------------------------------------- /common/shell/commands/info_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/info_shell.h -------------------------------------------------------------------------------- /common/shell/commands/ipmi_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/ipmi_shell.c -------------------------------------------------------------------------------- /common/shell/commands/ipmi_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/ipmi_shell.h -------------------------------------------------------------------------------- /common/shell/commands/pldm_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/pldm_shell.c -------------------------------------------------------------------------------- /common/shell/commands/pldm_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/pldm_shell.h -------------------------------------------------------------------------------- /common/shell/commands/power_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/power_shell.c -------------------------------------------------------------------------------- /common/shell/commands/power_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/power_shell.h -------------------------------------------------------------------------------- /common/shell/commands/sensor_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/sensor_shell.c -------------------------------------------------------------------------------- /common/shell/commands/sensor_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/commands/sensor_shell.h -------------------------------------------------------------------------------- /common/shell/shell_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/common/shell/shell_platform.c -------------------------------------------------------------------------------- /docs/images/OpenBIC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/docs/images/OpenBIC.svg -------------------------------------------------------------------------------- /docs/openbic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/docs/openbic.cfg -------------------------------------------------------------------------------- /docs/repo/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/docs/repo/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/repo/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/docs/repo/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /fix_patch/read_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/fix_patch/read_me -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/prj.conf -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_fsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_fsc.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_fsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_fsc.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_hwmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_hwmon.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_hwmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_hwmon.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_log.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_log.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_pwm.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_pwm.h -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_shell.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_util.c -------------------------------------------------------------------------------- /meta-facebook/aalc-rpu/src/platform/plat_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/aalc-rpu/src/platform/plat_util.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/at-cb/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/at-cb/boards/ast1030_evb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/boards/ast1030_evb.overlay -------------------------------------------------------------------------------- /meta-facebook/at-cb/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/prj.conf -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/ipmi/include/plat_ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/ipmi/include/plat_ipmi.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_dev.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_dev.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/at-cb/src/platform/plat_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-cb/src/platform/plat_version.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/at-mc/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/at-mc/boards/ast1030_evb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/boards/ast1030_evb.overlay -------------------------------------------------------------------------------- /meta-facebook/at-mc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/prj.conf -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/ipmi/include/plat_ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/ipmi/include/plat_ipmi.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_dev.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_dev.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/at-mc/src/platform/plat_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/at-mc/src/platform/plat_version.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/gc2-es/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/gc2-es/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/prj.conf -------------------------------------------------------------------------------- /meta-facebook/gc2-es/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_guid.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_pmic.c -------------------------------------------------------------------------------- /meta-facebook/gc2-es/src/platform/plat_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gc2-es/src/platform/plat_pmic.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/gt-cc/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/gt-cc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/prj.conf -------------------------------------------------------------------------------- /meta-facebook/gt-cc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_ncsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_ncsi.c -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/platform/plat_ncsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/platform/plat_ncsi.h -------------------------------------------------------------------------------- /meta-facebook/gt-cc/src/shell/plat_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/gt-cc/src/shell/plat_shell.c -------------------------------------------------------------------------------- /meta-facebook/minerva-ag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/minerva-ag/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/minerva-ag/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/minerva-ag/prj.conf -------------------------------------------------------------------------------- /meta-facebook/minerva-ag/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/minerva-ag/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/minerva-ag/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/minerva-ag/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/op2-op/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/op2-op/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/prj.conf -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_util.c -------------------------------------------------------------------------------- /meta-facebook/op2-op/src/platform/plat_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/op2-op/src/platform/plat_util.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/.vscode/settings.json -------------------------------------------------------------------------------- /meta-facebook/sb-rb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/sb-rb/boards/npcm400f_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/boards/npcm400f_evb.conf -------------------------------------------------------------------------------- /meta-facebook/sb-rb/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/prj.conf -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_adc.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_adc.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_cpld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_cpld.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_cpld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_cpld.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_event.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_event.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_hwmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_hwmon.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_log.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_log.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_util.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/platform/plat_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/platform/plat_util.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/clock_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/clock_shell.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/clock_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/clock_shell.h -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/shell_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/shell_adc.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/shell_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/shell_echo.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/shell_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/shell_log.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/shell_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/shell_spi.c -------------------------------------------------------------------------------- /meta-facebook/sb-rb/src/shell/shell_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-rb/src/shell/shell_test.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/sb-si/boards/npcm400f_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/boards/npcm400f_evb.conf -------------------------------------------------------------------------------- /meta-facebook/sb-si/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/prj.conf -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/lib/plat_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/lib/plat_spi.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_event.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_event.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_hwmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_hwmon.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_log.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_log.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/shell/plat_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/shell/plat_echo.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/shell/plat_erase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/shell/plat_erase.c -------------------------------------------------------------------------------- /meta-facebook/sb-si/src/shell/plat_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/sb-si/src/shell/plat_reboot.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/wc-mb/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/wc-mb/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/prj.conf -------------------------------------------------------------------------------- /meta-facebook/wc-mb/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_class.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_class.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_guid.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_pmic.c -------------------------------------------------------------------------------- /meta-facebook/wc-mb/src/platform/plat_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/wc-mb/src/platform/plat_pmic.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_guid.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/yv3-dl/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-dl/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_ipmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_ipmb.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_led.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_led.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_m2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_m2.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_m2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_m2.h -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_util.c -------------------------------------------------------------------------------- /meta-facebook/yv3-vf/src/platform/plat_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv3-vf/src/platform/plat_util.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_fan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_fan.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_fan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_fan.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-bb/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-bb/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/yv35-cl/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-cl/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_cpu.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_cpu.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_i2c.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_i3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_i3c.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/yv35-gl/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-gl/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/lib/plat_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/lib/plat_spi.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hd/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hd/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-hda1/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-hda1/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/sample.yaml -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/lib/plat_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/lib/plat_spi.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-ji/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-ji/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-nf/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-nf/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv35-rf/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv35-rf/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_fru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_fru.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/yv4-ff/src/platform/plat_pldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-ff/src/platform/plat_pldm.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/ipmi/plat_ipmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/ipmi/plat_ipmi.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/lib/plat_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/lib/plat_spi.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/lib/plat_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/lib/plat_spi.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_apml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_apml.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_apml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_apml.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_dimm.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_dimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_dimm.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_guid.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_i3c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_i3c.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_i3c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_i3c.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_kcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_kcs.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_kcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_kcs.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_pldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_pldm.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_pldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_pldm.h -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_pmic.c -------------------------------------------------------------------------------- /meta-facebook/yv4-sd/src/platform/plat_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-sd/src/platform/plat_pmic.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/CMakeLists.txt -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/boards/ast1030_evb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/boards/ast1030_evb.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/prj.conf -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/lib/plat_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/lib/plat_sys.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/lib/plat_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/lib/plat_sys.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_def.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_dimm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_dimm.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_dimm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_dimm.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_fru.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_gpio.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_gpio.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_hook.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_hook.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_i2c.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_init.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_ipmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_ipmb.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_isr.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_isr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_isr.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_mctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_mctp.c -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_mctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_mctp.h -------------------------------------------------------------------------------- /meta-facebook/yv4-wf/src/platform/plat_pldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/meta-facebook/yv4-wf/src/platform/plat_pldm.c -------------------------------------------------------------------------------- /scripts/build/apply_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/build/apply_patches.py -------------------------------------------------------------------------------- /scripts/build/build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/build/build_all.py -------------------------------------------------------------------------------- /scripts/build/get_revision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/build/get_revision.py -------------------------------------------------------------------------------- /scripts/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/common/constants.py -------------------------------------------------------------------------------- /scripts/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/hooks/pre-commit -------------------------------------------------------------------------------- /scripts/linters/cppcheck/cppcheck.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/linters/cppcheck/cppcheck.cfg -------------------------------------------------------------------------------- /scripts/signing/pldm_fw_package/CMD_EX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/signing/pldm_fw_package/CMD_EX -------------------------------------------------------------------------------- /scripts/signing/pldm_fw_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/signing/pldm_fw_package/README.md -------------------------------------------------------------------------------- /scripts/signing/sign_bic_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/scripts/signing/sign_bic_image.py -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/OpenBIC/HEAD/west.yml --------------------------------------------------------------------------------