Skip to content

Commit

Permalink
misc/pvpanic: add PCI driver
Browse files Browse the repository at this point in the history
Add support for pvpanic PCI device added in qemu [1]. At probe time, obtain the
address where to read/write pvpanic events and pass it to the generic handling
code. Will follow the same logic as pvpanic MMIO device driver. At remove time,
unmap base address and disable PCI device.

[1] qemu/qemu@9df52f5

Signed-off-by: Mihai Carabas <mihai.carabas@oracle.com>
  • Loading branch information
mcarabas authored and intel-lab-lkp committed Mar 16, 2021
1 parent 386b4ad commit 6e945cc
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/misc/pvpanic/Kconfig
Expand Up @@ -17,3 +17,9 @@ config PVPANIC_MMIO
depends on HAS_IOMEM && (ACPI || OF) && PVPANIC
help
This driver provides support for the MMIO pvpanic device.

config PVPANIC_PCI
tristate "pvpanic PCI device support"
depends on PCI && PVPANIC
help
This driver provides support for the PCI pvpanic device.
1 change: 1 addition & 0 deletions drivers/misc/pvpanic/Makefile
Expand Up @@ -5,3 +5,4 @@
# Copyright (C) 2021 Oracle.
#
obj-$(CONFIG_PVPANIC_MMIO) += pvpanic.o pvpanic-mmio.o
obj-$(CONFIG_PVPANIC_PCI) += pvpanic.o pvpanic-pci.o
102 changes: 102 additions & 0 deletions drivers/misc/pvpanic/pvpanic-pci.c
@@ -0,0 +1,102 @@
// SPDX-License-Identifier: GPL-2.0+
/*
* Pvpanic PCI Device Support
*
* Copyright (C) 2021 Oracle.
*/

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/types.h>
#include "pvpanic.h"

#define PCI_VENDOR_ID_REDHAT 0x1b36
#define PCI_DEVICE_ID_REDHAT_PVPANIC 0x0011

static void __iomem *base;
static const struct pci_device_id pvpanic_pci_id_tbl[] = {
{ PCI_DEVICE(PCI_VENDOR_ID_REDHAT, PCI_DEVICE_ID_REDHAT_PVPANIC),},
{}
};
static unsigned int capability = PVPANIC_PANICKED | PVPANIC_CRASH_LOADED;
static unsigned int events;

static ssize_t capability_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return sysfs_emit(buf, "%x\n", capability);
}
static DEVICE_ATTR_RO(capability);

static ssize_t events_show(struct device *dev, struct device_attribute *attr, char *buf)
{
return sysfs_emit(buf, "%x\n", events);
}

static ssize_t events_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count)
{
unsigned int tmp;
int err;

err = kstrtouint(buf, 16, &tmp);
if (err)
return err;

if ((tmp & capability) != tmp)
return -EINVAL;

events = tmp;

pvpanic_set_events(base, events);

return count;

}
static DEVICE_ATTR_RW(events);

static struct attribute *pvpanic_pci_dev_attrs[] = {
&dev_attr_capability.attr,
&dev_attr_events.attr,
NULL
};
ATTRIBUTE_GROUPS(pvpanici_pci_dev);

static int pvpanic_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
int ret;
struct resource res;

ret = pci_enable_device(pdev);
if (ret < 0)
return ret;

base = pci_iomap(pdev, 0, 0);
if (IS_ERR(base))
return PTR_ERR(base);

/* initlize capability by RDPT */
capability &= ioread8(base);
events = capability;

return pvpanic_probe(base, capability);
}

static void pvpanic_pci_remove(struct pci_dev *pdev)
{
pvpanic_remove(base);
iounmap(base);
pci_disable_device(pdev);
}

static struct pci_driver pvpanic_pci_driver = {
.name = "pvpanic-pci",
.id_table = pvpanic_pci_id_tbl,
.groups = pvpanic_pci_dev_groups,
.probe = pvpanic_pci_probe,
.remove = pvpanic_pci_remove,
};

module_pci_driver(pvpanic_pci_driver);

0 comments on commit 6e945cc

Please sign in to comment.