mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-11 21:13:11 +00:00
dm: Refine ACPI device passthrough framework
This patch refines the ACPI device passthrough framework by defining a generic framework. Note that when user gives an HID by "--acpidev_pt <HID>", the pt logic will go through all registered ops to see if there's a match. v4 -> v5: parse_pt_acpidev/parse_pt_mmiodev -> create_pt_acpidev/create_pt_mmiodev (there were already "init_xxx" function present, so rename to create_xxx) "super user" -> "superuser" multiple API renames Tracked-On: #6686 Signed-off-by: Yifan Liu <yifan1.liu@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
This commit is contained in:
parent
e0bb4c800d
commit
ad5eb6e23d
@ -955,11 +955,11 @@ main(int argc, char *argv[])
|
|||||||
break;
|
break;
|
||||||
case CMD_OPT_ACPIDEV_PT:
|
case CMD_OPT_ACPIDEV_PT:
|
||||||
/* FIXME: check acpi TPM device rules in acpi device famework init functions */
|
/* FIXME: check acpi TPM device rules in acpi device famework init functions */
|
||||||
if (vtpm2 || parse_pt_acpidev(optarg) != 0)
|
if (vtpm2 || create_pt_acpidev(optarg) != 0)
|
||||||
errx(EX_USAGE, "invalid pt acpi dev param %s", optarg);
|
errx(EX_USAGE, "invalid pt acpi dev param %s", optarg);
|
||||||
break;
|
break;
|
||||||
case CMD_OPT_MMIODEV_PT:
|
case CMD_OPT_MMIODEV_PT:
|
||||||
if (parse_pt_mmiodev(optarg) != 0)
|
if (create_pt_mmiodev(optarg) != 0)
|
||||||
errx(EX_USAGE, "invalid pt mmio dev param %s", optarg);
|
errx(EX_USAGE, "invalid pt mmio dev param %s", optarg);
|
||||||
break;
|
break;
|
||||||
case CMD_OPT_VTPM2:
|
case CMD_OPT_VTPM2:
|
||||||
|
@ -22,12 +22,6 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "mmio_dev.h"
|
#include "mmio_dev.h"
|
||||||
|
|
||||||
|
|
||||||
struct mmio_dev {
|
|
||||||
char name[16];
|
|
||||||
struct acrn_mmiodev dev;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define MAX_MMIO_DEV_NUM 2
|
#define MAX_MMIO_DEV_NUM 2
|
||||||
|
|
||||||
static struct mmio_dev mmio_devs[MAX_MMIO_DEV_NUM];
|
static struct mmio_dev mmio_devs[MAX_MMIO_DEV_NUM];
|
||||||
@ -43,10 +37,39 @@ struct mmio_dev_ops {
|
|||||||
SET_DECLARE(mmio_dev_ops_set, struct mmio_dev_ops);
|
SET_DECLARE(mmio_dev_ops_set, struct mmio_dev_ops);
|
||||||
#define DEFINE_MMIO_DEV(x) DATA_SET(mmio_dev_ops_set, x)
|
#define DEFINE_MMIO_DEV(x) DATA_SET(mmio_dev_ops_set, x)
|
||||||
|
|
||||||
|
SET_DECLARE(acpi_dev_pt_ops_set, struct acpi_dev_pt_ops);
|
||||||
|
|
||||||
struct mmio_dev_ops pt_mmiodev;
|
struct mmio_dev_ops pt_mmiodev;
|
||||||
|
|
||||||
static uint32_t mmio_dev_base = MMIO_DEV_BASE;
|
static uint32_t mmio_dev_base = MMIO_DEV_BASE;
|
||||||
|
|
||||||
|
static inline char *ltrim(char *s)
|
||||||
|
{
|
||||||
|
while (*s && *s == ' ')
|
||||||
|
s++;
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct mmio_dev *get_mmiodev(char *name)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
struct mmio_dev *dev;
|
||||||
|
|
||||||
|
for (i = 0; i < mmio_dev_idx; i++) {
|
||||||
|
dev = &mmio_devs[i];
|
||||||
|
if (!strncmp(dev->name, name, 16)) {
|
||||||
|
return dev;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct mmio_dev *alloc_mmiodev(void)
|
||||||
|
{
|
||||||
|
return (mmio_dev_idx >= MAX_MMIO_DEV_NUM) ? NULL : &mmio_devs[mmio_dev_idx++];
|
||||||
|
}
|
||||||
|
|
||||||
int mmio_dev_alloc_gpa_resource32(uint32_t *addr, uint32_t size_in)
|
int mmio_dev_alloc_gpa_resource32(uint32_t *addr, uint32_t size_in)
|
||||||
{
|
{
|
||||||
uint32_t base, size;
|
uint32_t base, size;
|
||||||
@ -62,41 +85,130 @@ int mmio_dev_alloc_gpa_resource32(uint32_t *addr, uint32_t size_in)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int parse_pt_acpidev(char *opt)
|
int create_pt_acpidev(char *opt)
|
||||||
{
|
{
|
||||||
int err = 0;
|
struct mmio_dev *dev;
|
||||||
|
struct acpi_dev_pt_ops **adptops, *ops;
|
||||||
|
|
||||||
if (mmio_dev_idx >= MAX_MMIO_DEV_NUM) {
|
SET_FOREACH(adptops, acpi_dev_pt_ops_set) {
|
||||||
pr_err("MMIO dev number exceed MAX_MMIO_DEV_NUM!!!\n");
|
ops = *adptops;
|
||||||
return -EINVAL;
|
if (ops->match && ops->match(opt)) {
|
||||||
}
|
dev = alloc_mmiodev();
|
||||||
/* TODO: support acpi dev framework, remove these TPM hard code */
|
if (!dev) {
|
||||||
if (strncmp(opt, "MSFT0101", 8) == 0) {
|
pr_err("Failed to create MMIO device %s due to exceeding max MMIO device number\n", opt);
|
||||||
strncpy(mmio_devs[mmio_dev_idx].name, "MSFT0101", 8);
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
strncpy(mmio_devs[mmio_dev_idx].dev.name, "tpm2", 4);
|
return ops->init ? ops->init(opt, dev) : -1;
|
||||||
/* TODO: We would parse the /proc/iomem to get the corresponding resources */
|
}
|
||||||
mmio_devs[mmio_dev_idx].dev.res[0].host_pa = 0xFED40000UL;
|
|
||||||
/* FIXME: The 0xFED40000 doesn't conflict with other mmio or system memory so far.
|
|
||||||
* This need to be fixed by redesign the mmio_dev_alloc_gpa_resource32().
|
|
||||||
*/
|
|
||||||
mmio_devs[mmio_dev_idx].dev.res[0].user_vm_pa = 0xFED40000UL;
|
|
||||||
mmio_devs[mmio_dev_idx].dev.res[0].size = 0x00005000UL;
|
|
||||||
mmio_dev_idx++;
|
|
||||||
pt_tpm2 = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return err;
|
pr_err("Unrecognized or unsupported ACPI device HID: %s\n", opt);
|
||||||
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int parse_pt_mmiodev(char *opt)
|
/**
|
||||||
|
* Parse /proc/iomem to see if there's an entry that contains name.
|
||||||
|
* Returns false if not found,
|
||||||
|
* Returns true if an entry is found, and res_start and res_size will be filled
|
||||||
|
* to the start and (end - start + 1) of the first found entry.
|
||||||
|
*
|
||||||
|
* @pre (name != NULL) && (strlen(name) > 0)
|
||||||
|
*/
|
||||||
|
int get_mmio_hpa_resource(char *name, uint64_t *res_start, uint64_t *res_size)
|
||||||
|
{
|
||||||
|
FILE *fp;
|
||||||
|
uint64_t start, end;
|
||||||
|
int found = false;
|
||||||
|
char line[128];
|
||||||
|
char *cp;
|
||||||
|
|
||||||
|
fp = fopen("/proc/iomem", "r");
|
||||||
|
if (!fp) {
|
||||||
|
pr_err("Error opening /proc/iomem\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (fgets(line, sizeof(line), fp)) {
|
||||||
|
if (strstr(line, name)) {
|
||||||
|
if ((!dm_strtoul(ltrim(line), &cp, 16, &start) && *cp == '-') &&
|
||||||
|
(!dm_strtoul(cp + 1, &cp, 16, &end))) {
|
||||||
|
if ((start == 0) && (end == 0)) {
|
||||||
|
pr_err("Please run acrn-dm with superuser privilege\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*res_start = start;
|
||||||
|
/* proc/iomem displays regions like: 000-fff so we add 1 as size */
|
||||||
|
*res_size = end - start + 1;
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose(fp);
|
||||||
|
return found;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Search /sys/bus/acpi/devices for given HID and fill modalias to ops.
|
||||||
|
* (TODO: we may add more functionality later when we support pt
|
||||||
|
* of other ACPI dev)
|
||||||
|
* According to https://www.kernel.org/doc/Documentation/acpi/namespace.txt,
|
||||||
|
*
|
||||||
|
* The Linux ACPI subsystem converts ACPI namespace objects into a Linux
|
||||||
|
* device tree under the /sys/devices/LNXSYSTEM:00 and updates it upon
|
||||||
|
* receiving ACPI hotplug notification events. For each device object in this
|
||||||
|
* hierarchy there is a corresponding symbolic link in the
|
||||||
|
* /sys/bus/acpi/devices.
|
||||||
|
*/
|
||||||
|
int get_more_acpi_dev_info(char *hid, uint32_t instance, struct acpi_dev_pt_ops *ops)
|
||||||
|
{
|
||||||
|
char pathbuf[128], line[64];
|
||||||
|
int ret = -1;
|
||||||
|
size_t ch_read;
|
||||||
|
FILE *fp;
|
||||||
|
|
||||||
|
snprintf(pathbuf, sizeof(pathbuf), "/sys/bus/acpi/devices/%s:%02x/modalias", hid, instance);
|
||||||
|
fp = fopen(pathbuf, "r");
|
||||||
|
if (!fp)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
ch_read = fread(line, 1, sizeof(line), fp);
|
||||||
|
if (!ch_read)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
memcpy(ops->hid, hid, 8);
|
||||||
|
memcpy(ops->modalias, line, ch_read);
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
out:
|
||||||
|
fclose(fp);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
void acpi_dev_write_dsdt(struct vmctx *ctx)
|
||||||
|
{
|
||||||
|
struct acpi_dev_pt_ops **adptops, *ops;
|
||||||
|
|
||||||
|
SET_FOREACH(adptops, acpi_dev_pt_ops_set) {
|
||||||
|
ops = *adptops;
|
||||||
|
if (ops->write_dsdt)
|
||||||
|
ops->write_dsdt(ctx);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int create_pt_mmiodev(char *opt)
|
||||||
{
|
{
|
||||||
|
|
||||||
int err = 0;
|
int err = 0;
|
||||||
uint64_t base_hpa, size;
|
uint64_t base_hpa, size;
|
||||||
|
struct mmio_dev *dev;
|
||||||
char *cp;
|
char *cp;
|
||||||
|
|
||||||
if (mmio_dev_idx >= MAX_MMIO_DEV_NUM) {
|
dev = alloc_mmiodev();
|
||||||
|
if (!dev) {
|
||||||
pr_err("MMIO dev number exceed MAX_MMIO_DEV_NUM!!!\n");
|
pr_err("MMIO dev number exceed MAX_MMIO_DEV_NUM!!!\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
@ -104,10 +216,9 @@ int parse_pt_mmiodev(char *opt)
|
|||||||
if((!dm_strtoul(opt, &cp, 16, &base_hpa) && *cp == ',') &&
|
if((!dm_strtoul(opt, &cp, 16, &base_hpa) && *cp == ',') &&
|
||||||
(!dm_strtoul(cp + 1, &cp, 16, &size))) {
|
(!dm_strtoul(cp + 1, &cp, 16, &size))) {
|
||||||
pr_dbg("%s pt mmiodev base: 0x%lx, size: 0x%lx\n", __func__, base_hpa, size);
|
pr_dbg("%s pt mmiodev base: 0x%lx, size: 0x%lx\n", __func__, base_hpa, size);
|
||||||
strncpy(mmio_devs[mmio_dev_idx].name, pt_mmiodev.name, 8);
|
strncpy(dev->name, pt_mmiodev.name, 8);
|
||||||
mmio_devs[mmio_dev_idx].dev.res[0].host_pa = base_hpa;
|
dev->dev.res[0].host_pa = base_hpa;
|
||||||
mmio_devs[mmio_dev_idx].dev.res[0].size = size;
|
dev->dev.res[0].size = size;
|
||||||
mmio_dev_idx++;
|
|
||||||
} else {
|
} else {
|
||||||
pr_err("%s, %s invalid, please check!\n", __func__, opt);
|
pr_err("%s, %s invalid, please check!\n", __func__, opt);
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,7 @@
|
|||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "rtct.h"
|
#include "rtct.h"
|
||||||
#include "vmmapi.h"
|
#include "vmmapi.h"
|
||||||
|
#include "mmio_dev.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Define the base address of the ACPI tables, and the offsets to
|
* Define the base address of the ACPI tables, and the offsets to
|
||||||
@ -948,6 +949,8 @@ basl_fwrite_dsdt(FILE *fp, struct vmctx *ctx)
|
|||||||
dsdt_line(" }");
|
dsdt_line(" }");
|
||||||
dsdt_line(" }");
|
dsdt_line(" }");
|
||||||
|
|
||||||
|
acpi_dev_write_dsdt(ctx);
|
||||||
|
|
||||||
pm_write_dsdt(ctx, basl_ncpu);
|
pm_write_dsdt(ctx, basl_ncpu);
|
||||||
|
|
||||||
if (ctx->tpm_dev || pt_tpm2)
|
if (ctx->tpm_dev || pt_tpm2)
|
||||||
|
@ -108,3 +108,6 @@ void deinit_vtpm2(struct vmctx *ctx)
|
|||||||
deinit_tpm_emulator();
|
deinit_tpm_emulator();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct acpi_dev_pt_ops pt_tpm2_dev_ops = { 0 };
|
||||||
|
DEFINE_ACPI_PT_DEV(pt_tpm2_dev_ops);
|
||||||
|
@ -8,8 +8,31 @@
|
|||||||
#ifndef _MMIO_DEV_H_
|
#ifndef _MMIO_DEV_H_
|
||||||
#define _MMIO_DEV_H_
|
#define _MMIO_DEV_H_
|
||||||
|
|
||||||
int parse_pt_acpidev(char *arg);
|
#include "acrn_common.h"
|
||||||
int parse_pt_mmiodev(char *arg);
|
|
||||||
|
struct mmio_dev {
|
||||||
|
char name[16];
|
||||||
|
struct acrn_mmiodev dev;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct acpi_dev_pt_ops {
|
||||||
|
char hid[8];
|
||||||
|
char modalias[32];
|
||||||
|
int (*match)(char *);
|
||||||
|
int (*init)(char *, struct mmio_dev *);
|
||||||
|
void (*write_dsdt)(struct vmctx *);
|
||||||
|
/* TODO: We may add more fields when we support other ACPI dev pt */
|
||||||
|
};
|
||||||
|
|
||||||
|
#define DEFINE_ACPI_PT_DEV(x) DATA_SET(acpi_dev_pt_ops_set, x);
|
||||||
|
|
||||||
|
struct mmio_dev *get_mmiodev(char *name);
|
||||||
|
int get_mmio_hpa_resource(char *name, uint64_t *res_start, uint64_t *res_size);
|
||||||
|
int get_more_acpi_dev_info(char *hid, uint32_t instance, struct acpi_dev_pt_ops *ops);
|
||||||
|
void acpi_dev_write_dsdt(struct vmctx *ctx);
|
||||||
|
|
||||||
|
int create_pt_acpidev(char *arg);
|
||||||
|
int create_pt_mmiodev(char *arg);
|
||||||
|
|
||||||
int init_mmio_devs(struct vmctx *ctx);
|
int init_mmio_devs(struct vmctx *ctx);
|
||||||
void deinit_mmio_devs(struct vmctx *ctx);
|
void deinit_mmio_devs(struct vmctx *ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user