Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3934,6 +3934,29 @@ dependencies = [
"thiserror 2.0.16",
]

[[package]]
name = "ipmi_kcs"
version = "0.0.0"
dependencies = [
"chipset_device",
"chipset_device_resources",
"inspect",
"ipmi_kcs_resources",
"open_enum",
"test_with_tracing",
"tracelimit",
"vm_resource",
"vmcore",
]

[[package]]
name = "ipmi_kcs_resources"
version = "0.0.0"
dependencies = [
"mesh",
"vm_resource",
]

[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
Expand Down Expand Up @@ -5871,6 +5894,7 @@ dependencies = [
"guest_watchdog",
"hyperv_ic",
"hypervisor_resources",
"ipmi_kcs",
"mesh_worker",
"missing_dev",
"net_backend",
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,8 @@ hyperv_ic = { path = "vm/devices/hyperv_ic" }
hyperv_ic_protocol = { path = "vm/devices/hyperv_ic_protocol" }
hyperv_ic_resources = { path = "vm/devices/hyperv_ic_resources" }
hyperv_ic_guest = { path = "vm/devices/hyperv_ic_guest" }
ipmi_kcs = { path = "vm/devices/ipmi_kcs" }
ipmi_kcs_resources = { path = "vm/devices/ipmi_kcs_resources" }
input_core = { path = "vm/devices/input_core" }
cxl_spec = { path = "vm/devices/cxl" }
underhill_config = { path = "vm/devices/get/underhill_config" }
Expand Down
1 change: 1 addition & 0 deletions openvmm/openvmm_resources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ vnc_worker.workspace = true
rusqlite = { workspace = true, features = ["bundled"] }

[target.'cfg(target_arch = "x86_64")'.dependencies]
ipmi_kcs.workspace = true
serial_16550.workspace = true
serial_debugcon.workspace = true

Expand Down
2 changes: 2 additions & 0 deletions openvmm/openvmm_resources/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ vm_resource::register_static_resolvers! {
serial_pl011::resolver::SerialPl011Resolver,
chipset::battery::resolver::BatteryResolver,
guest_watchdog::resolver::HyperVGuestWatchdogResolver,
#[cfg(guest_arch = "x86_64")]
ipmi_kcs::resolver::IpmiKcsResolver,

// Non-volatile stores
vmcore::non_volatile_store::resources::EphemeralNonVolatileStoreResolver,
Expand Down
23 changes: 23 additions & 0 deletions vm/devices/ipmi_kcs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

[package]
name = "ipmi_kcs"
edition.workspace = true
rust-version.workspace = true

[dependencies]
chipset_device.workspace = true
chipset_device_resources.workspace = true
inspect.workspace = true
ipmi_kcs_resources.workspace = true
open_enum.workspace = true
tracelimit.workspace = true
vm_resource.workspace = true
vmcore.workspace = true

[dev-dependencies]
test_with_tracing.workspace = true

[lints]
workspace = true
Loading
Loading