lkml.org 
[lkml]   [2018]   [Nov]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH V6 3/8] misc/pvpanic: add MMIO support
Date
On some architectures (e.g. arm64), it's preferable to use MMIO, since
this can be used standalone. Add MMIO support to the pvpanic driver.

Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
---
drivers/misc/pvpanic.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/drivers/misc/pvpanic.c b/drivers/misc/pvpanic.c
index 49c59e1..22fb487 100644
--- a/drivers/misc/pvpanic.c
+++ b/drivers/misc/pvpanic.c
@@ -41,7 +41,7 @@

#define PVPANIC_PANICKED (1 << 0)

-static u16 port;
+static void __iomem *base;

static struct acpi_driver pvpanic_driver = {
.name = "pvpanic",
@@ -57,7 +57,7 @@
static void
pvpanic_send_event(unsigned int event)
{
- outb(event, port);
+ iowrite8(event, base);
}

static int
@@ -80,7 +80,11 @@
struct resource r;

if (acpi_dev_resource_io(res, &r)) {
- port = r.start;
+ base = (void __iomem *) ioport_map(r.start,
+ r.end - r.start + 1);
+ return AE_OK;
+ } else if (acpi_dev_resource_memory(res, &r)) {
+ base = ioremap(r.start, r.end - r.start + 1);
return AE_OK;
}

@@ -101,7 +105,7 @@ static int pvpanic_add(struct acpi_device *device)
acpi_walk_resources(device->handle, METHOD_NAME__CRS,
pvpanic_walk_resources, NULL);

- if (!port)
+ if (!base)
return -ENODEV;

atomic_notifier_chain_register(&panic_notifier_list,
@@ -115,6 +119,8 @@ static int pvpanic_remove(struct acpi_device *device)

atomic_notifier_chain_unregister(&panic_notifier_list,
&pvpanic_panic_nb);
+ iounmap(base);
+
return 0;
}

--
1.8.3.1
\
 
 \ /
  Last update: 2018-11-02 05:47    [W:0.093 / U:1.484 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site