aboutsummaryrefslogtreecommitdiff
path: root/hw/ipmi/ipmi_kcs.c
AgeCommit message (Collapse)AuthorFilesLines
2023-12-29hw/ipmi: Constify VMStateRichard Henderson1-1/+1
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231221031652.119827-37-richard.henderson@linaro.org>
2019-09-20ipmi: Allow a size value to be passed for I/O spaceCorey Minyard1-4/+19
PCI device I/O must be >= 8 bytes in length or they don't work. Allow the size to be passed in, the default size of 2 or 3 won't work. Signed-off-by: Corey Minyard <cminyard@mvista.com>
2019-09-20ipmi: Split out KCS-specific code from ISA KCS codeCorey Minyard1-0/+408
Get ready for PCI and other KCS interfaces. No functional changes, just split the code into the generic KCS code and the ISA-specific code. Signed-off-by: Corey Minyard <cminyard@mvista.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>