mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-26 20:03:54 -06:00

GB200nvl72 is a system for for accelerated compute. This is a model for the BMC target within the system. This is based on the device tree aspeed-bmc-nvidia-gb200nvl-bmc.dts from: [1] https://github.com/openbmc/linux/blob/dev-6.6/arch/arm/boot/dts/aspeed/aspeed-bmc-nvidia-gb200nvl-bmc.dts Signed-off-by: Ed Tanous <etanous@nvidia.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/qemu-devel/20250703144249.3348879-4-etanous@nvidia.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
32 lines
844 B
C
32 lines
844 B
C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#ifndef ASPEED_EEPROM_H
|
|
#define ASPEED_EEPROM_H
|
|
|
|
|
|
extern const uint8_t tiogapass_bmc_fruid[];
|
|
extern const size_t tiogapass_bmc_fruid_len;
|
|
|
|
extern const uint8_t fby35_nic_fruid[];
|
|
extern const uint8_t fby35_bb_fruid[];
|
|
extern const uint8_t fby35_bmc_fruid[];
|
|
extern const size_t fby35_nic_fruid_len;
|
|
extern const size_t fby35_bb_fruid_len;
|
|
extern const size_t fby35_bmc_fruid_len;
|
|
|
|
extern const uint8_t yosemitev2_bmc_fruid[];
|
|
extern const size_t yosemitev2_bmc_fruid_len;
|
|
|
|
extern const uint8_t rainier_bb_fruid[];
|
|
extern const size_t rainier_bb_fruid_len;
|
|
extern const uint8_t rainier_bmc_fruid[];
|
|
extern const size_t rainier_bmc_fruid_len;
|
|
|
|
extern const uint8_t gb200nvl_bmc_fruid[];
|
|
extern const size_t gb200nvl_bmc_fruid_len;
|
|
|
|
#endif
|