]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
memory: sparc64: Add privileged ADI driver
authorTom Hromatka <tom.hromatka@oracle.com>
Wed, 21 Jun 2017 14:46:53 +0000 (08:46 -0600)
committerAllen Pais <allen.pais@oracle.com>
Sat, 24 Jun 2017 01:27:49 +0000 (06:57 +0530)
This patch adds an ADI driver for reading/writing MCD versions
using physical addresses from privileged user space processes.
This file maps linearly to physical memory at a ratio of
1:adi_blksz.  A read (or write) of offset K in the file operates
upon physical address K * adi_blksz.  The version information
is encoded as one version per byte.  Intended consumers are
makedumpfile and crash.

Orabug: 2617080
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
Reviewed-by: Anthony Yznaga <anthony.yznaga@oracle.com>
Reviewed-by: Khalid Aziz <khalid.aziz@oracle.com>
Reviewed-by: Shannon Nelson <shannon.nelson@oracle.com>
Signed-off-by: Allen Pais <allen.pais@oracle.com>
drivers/memory/Kconfig
drivers/memory/Makefile
drivers/memory/adi.c [new file with mode: 0644]

index 868036f70f8f126c0e81e16fe8bd4af63319909a..f5b75936b1b6102f9606b6bf01e4c438aea591e5 100644 (file)
@@ -92,6 +92,15 @@ config JZ4780_NEMC
          the Ingenic JZ4780. This controller is used to handle external
          memory devices such as NAND and SRAM.
 
+config ADI
+       tristate "SPARC Privileged ADI driver"
+       default m
+       depends on SPARC64
+       help
+         This driver provides read/write access to MCD versions for
+         privileged processes.  Intended consumers include crash and
+         makedumpfile.
+
 source "drivers/memory/tegra/Kconfig"
 
 endif
index b670441e3cdf9a2f6816741797722e03b9d72466..53d8b4259bda09c2a5b3606c28fa44906d1e9c6b 100644 (file)
@@ -14,5 +14,6 @@ obj-$(CONFIG_FSL_IFC)         += fsl_ifc.o
 obj-$(CONFIG_MVEBU_DEVBUS)     += mvebu-devbus.o
 obj-$(CONFIG_TEGRA20_MC)       += tegra20-mc.o
 obj-$(CONFIG_JZ4780_NEMC)      += jz4780-nemc.o
+obj-$(CONFIG_ADI)              += adi.o
 
 obj-$(CONFIG_TEGRA_MC)         += tegra/
diff --git a/drivers/memory/adi.c b/drivers/memory/adi.c
new file mode 100644 (file)
index 0000000..a2c692d
--- /dev/null
@@ -0,0 +1,261 @@
+/*
+ * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License version 2
+ * as published by the Free Softare Foundation; or, when distributed
+ * separately from the Linux kernel or incorporated into other
+ * software packages, subject to the following license:
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this source file (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy, modify,
+ * merge, publish, distribute, sublicense, and/or sell copies of the Software,
+ * and to permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+#include <linux/kernel.h>
+#include <linux/miscdevice.h>
+#include <linux/module.h>
+#include <linux/proc_fs.h>
+#include <linux/slab.h>
+#include <linux/uaccess.h>
+#include <asm/asi.h>
+
+#define MODULE_NAME    "adi"
+#define MAX_BUF_SZ     4096
+
+static int adi_open(struct inode *inode, struct file *file)
+{
+       file->f_mode |= FMODE_UNSIGNED_OFFSET;
+       return 0;
+}
+
+static int read_mcd_tag(unsigned long addr)
+{
+       long err;
+       int ver;
+
+       __asm__ __volatile__(
+               "1:     ldxa [%[addr]] %[asi], %[ver]\n"
+               "       mov 0, %[err]\n"
+               "2:\n"
+               "       .section .fixup,#alloc,#execinstr\n"
+               "       .align 4\n"
+               "3:     sethi %%hi(2b), %%g1\n"
+               "       jmpl  %%g1 + %%lo(2b), %%g0\n"
+               "       mov %[invalid], %[err]\n"
+               "       .previous\n"
+               "       .section __ex_table, \"a\"\n"
+               "       .align 4\n"
+               "       .word  1b, 3b\n"
+               "       .previous\n"
+               : [ver] "=r" (ver), [err] "=r" (err)
+               : [addr] "r"  (addr), [invalid] "i" (EFAULT),
+                 [asi] "i" (ASI_MCD_REAL)
+               : "memory", "g1"
+               );
+
+       if (err)
+               return -EFAULT;
+       else
+               return ver;
+}
+
+static ssize_t adi_read(struct file *file, char __user *buf,
+                       size_t count, loff_t *offp)
+{
+       size_t ver_buf_sz, bytes_read = 0;
+       int ver_buf_idx = 0;
+       loff_t offset;
+       u8 *ver_buf;
+       ssize_t ret;
+
+       ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
+       ver_buf = kmalloc(ver_buf_sz, GFP_KERNEL);
+       if (!ver_buf)
+               return -ENOMEM;
+
+       offset = (*offp) * adi_blksize();
+
+       while (bytes_read < count) {
+               ret = read_mcd_tag(offset);
+               if (ret < 0)
+                       goto out;
+
+               ver_buf[ver_buf_idx] = (u8)ret;
+               ver_buf_idx++;
+               offset += adi_blksize();
+
+               if (ver_buf_idx >= ver_buf_sz) {
+                       if (copy_to_user(buf + bytes_read, ver_buf,
+                                        ver_buf_sz)) {
+                               ret = -EFAULT;
+                               goto out;
+                       }
+
+                       bytes_read += ver_buf_sz;
+                       ver_buf_idx = 0;
+
+                       ver_buf_sz = min(count - bytes_read,
+                                        (size_t)MAX_BUF_SZ);
+               }
+       }
+
+       (*offp) += bytes_read;
+       ret = bytes_read;
+out:
+       kfree(ver_buf);
+       return ret;
+}
+
+static int set_mcd_tag(unsigned long addr, u8 ver)
+{
+       long err;
+
+       __asm__ __volatile__(
+               "1:     stxa %[ver], [%[addr]] %[asi]\n"
+               "       mov 0, %[err]\n"
+               "2:\n"
+               "       .section .fixup,#alloc,#execinstr\n"
+               "       .align 4\n"
+               "3:     sethi %%hi(2b), %%g1\n"
+               "       jmpl  %%g1 + %%lo(2b), %%g0\n"
+               "       mov %[invalid], %[err]\n"
+               "       .previous\n"
+               "       .section __ex_table, \"a\"\n"
+               "       .align 4\n"
+               "       .word  1b, 3b\n"
+               "       .previous\n"
+               : [err] "=r" (err)
+               : [ver] "r" (ver), [addr] "r"  (addr),
+                 [invalid] "i" (EFAULT), [asi] "i" (ASI_MCD_REAL)
+               : "memory", "g1"
+               );
+
+       if (err)
+               return -EFAULT;
+       else
+               return ver;
+}
+
+static ssize_t adi_write(struct file *file, const char __user *buf,
+                        size_t count, loff_t *offp)
+{
+       size_t ver_buf_sz, bytes_written = 0;
+       loff_t offset;
+       u8 *ver_buf;
+       ssize_t ret;
+       int i;
+
+       if (count <= 0)
+               return -EINVAL;
+
+       ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
+       ver_buf = kmalloc(ver_buf_sz, (size_t)GFP_KERNEL);
+       if (!ver_buf)
+               return -ENOMEM;
+
+       offset = (*offp) * adi_blksize();
+
+       do {
+               if (copy_from_user(ver_buf, &buf[bytes_written],
+                                  ver_buf_sz)) {
+                       ret = -EFAULT;
+                       goto out;
+               }
+
+               for (i = 0; i < ver_buf_sz; i++) {
+                       ret = set_mcd_tag(offset, ver_buf[i]);
+                       if (ret < 0)
+                               goto out;
+
+                       offset += adi_blksize();
+               }
+
+               bytes_written += ver_buf_sz;
+               ver_buf_sz = min(count - bytes_written, (size_t)MAX_BUF_SZ);
+       } while (bytes_written < count);
+
+       (*offp) += bytes_written;
+       ret = bytes_written;
+out:
+       __asm__ __volatile__("membar #Sync");
+       kfree(ver_buf);
+       return ret;
+}
+
+static loff_t adi_llseek(struct file *file, loff_t offset, int whence)
+{
+       loff_t ret = -EINVAL;
+
+       switch (whence) {
+       case SEEK_END:
+       case SEEK_DATA:
+       case SEEK_HOLE:
+               /* unsupported */
+               return -EINVAL;
+       case SEEK_CUR:
+               if (offset == 0)
+                       return file->f_pos;
+
+               offset += file->f_pos;
+               break;
+       case SEEK_SET:
+               break;
+       }
+
+       if (offset != file->f_pos) {
+               file->f_pos = offset;
+               file->f_version = 0;
+               ret = offset;
+       }
+
+       return ret;
+}
+
+static const struct file_operations adi_fops = {
+       .owner          = THIS_MODULE,
+       .llseek         = adi_llseek,
+       .open           = adi_open,
+       .read           = adi_read,
+       .write          = adi_write,
+};
+
+static struct miscdevice adi_miscdev = {
+       .minor = MISC_DYNAMIC_MINOR,
+       .name = MODULE_NAME,
+       .fops = &adi_fops,
+};
+
+static int __init adi_init(void)
+{
+       if (!adi_capable())
+               return -EPERM;
+
+       return misc_register(&adi_miscdev);
+}
+
+static void __exit adi_exit(void)
+{
+       misc_deregister(&adi_miscdev);
+}
+
+module_init(adi_init);
+module_exit(adi_exit);
+
+MODULE_AUTHOR("Tom Hromatka <tom.hromatka@oracle.com>");
+MODULE_DESCRIPTION("Privileged interface to ADI");
+MODULE_VERSION("1.0");
+MODULE_LICENSE("GPL");