Replace <asm/uaccess.h> with <linux/uaccess.h> globally
[linux-2.6/btrfs-unstable.git] / arch / powerpc / platforms / powernv / opal-prd.c
blob2d6ee1c5ad859f4253f4b3c42e2aca1a6f9056a5
1 /*
2 * OPAL Runtime Diagnostics interface driver
3 * Supported on POWERNV platform
5 * Copyright IBM Corporation 2015
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #define pr_fmt(fmt) "opal-prd: " fmt
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/miscdevice.h>
23 #include <linux/fs.h>
24 #include <linux/of.h>
25 #include <linux/of_address.h>
26 #include <linux/poll.h>
27 #include <linux/mm.h>
28 #include <linux/slab.h>
29 #include <asm/opal-prd.h>
30 #include <asm/opal.h>
31 #include <asm/io.h>
32 #include <linux/uaccess.h>
35 /**
36 * The msg member must be at the end of the struct, as it's followed by the
37 * message data.
39 struct opal_prd_msg_queue_item {
40 struct list_head list;
41 struct opal_prd_msg_header msg;
44 static struct device_node *prd_node;
45 static LIST_HEAD(opal_prd_msg_queue);
46 static DEFINE_SPINLOCK(opal_prd_msg_queue_lock);
47 static DECLARE_WAIT_QUEUE_HEAD(opal_prd_msg_wait);
48 static atomic_t prd_usage;
50 static bool opal_prd_range_is_valid(uint64_t addr, uint64_t size)
52 struct device_node *parent, *node;
53 bool found;
55 if (addr + size < addr)
56 return false;
58 parent = of_find_node_by_path("/reserved-memory");
59 if (!parent)
60 return false;
62 found = false;
64 for_each_child_of_node(parent, node) {
65 uint64_t range_addr, range_size, range_end;
66 const __be32 *addrp;
67 const char *label;
69 addrp = of_get_address(node, 0, &range_size, NULL);
71 range_addr = of_read_number(addrp, 2);
72 range_end = range_addr + range_size;
74 label = of_get_property(node, "ibm,prd-label", NULL);
76 /* PRD ranges need a label */
77 if (!label)
78 continue;
80 if (range_end <= range_addr)
81 continue;
83 if (addr >= range_addr && addr + size <= range_end) {
84 found = true;
85 of_node_put(node);
86 break;
90 of_node_put(parent);
91 return found;
94 static int opal_prd_open(struct inode *inode, struct file *file)
97 * Prevent multiple (separate) processes from concurrent interactions
98 * with the FW PRD channel
100 if (atomic_xchg(&prd_usage, 1) == 1)
101 return -EBUSY;
103 return 0;
107 * opal_prd_mmap - maps firmware-provided ranges into userspace
108 * @file: file structure for the device
109 * @vma: VMA to map the registers into
112 static int opal_prd_mmap(struct file *file, struct vm_area_struct *vma)
114 size_t addr, size;
115 pgprot_t page_prot;
116 int rc;
118 pr_devel("opal_prd_mmap(0x%016lx, 0x%016lx, 0x%lx, 0x%lx)\n",
119 vma->vm_start, vma->vm_end, vma->vm_pgoff,
120 vma->vm_flags);
122 addr = vma->vm_pgoff << PAGE_SHIFT;
123 size = vma->vm_end - vma->vm_start;
125 /* ensure we're mapping within one of the allowable ranges */
126 if (!opal_prd_range_is_valid(addr, size))
127 return -EINVAL;
129 page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
130 size, vma->vm_page_prot);
132 rc = remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff, size,
133 page_prot);
135 return rc;
138 static bool opal_msg_queue_empty(void)
140 unsigned long flags;
141 bool ret;
143 spin_lock_irqsave(&opal_prd_msg_queue_lock, flags);
144 ret = list_empty(&opal_prd_msg_queue);
145 spin_unlock_irqrestore(&opal_prd_msg_queue_lock, flags);
147 return ret;
150 static unsigned int opal_prd_poll(struct file *file,
151 struct poll_table_struct *wait)
153 poll_wait(file, &opal_prd_msg_wait, wait);
155 if (!opal_msg_queue_empty())
156 return POLLIN | POLLRDNORM;
158 return 0;
161 static ssize_t opal_prd_read(struct file *file, char __user *buf,
162 size_t count, loff_t *ppos)
164 struct opal_prd_msg_queue_item *item;
165 unsigned long flags;
166 ssize_t size, err;
167 int rc;
169 /* we need at least a header's worth of data */
170 if (count < sizeof(item->msg))
171 return -EINVAL;
173 if (*ppos)
174 return -ESPIPE;
176 item = NULL;
178 for (;;) {
180 spin_lock_irqsave(&opal_prd_msg_queue_lock, flags);
181 if (!list_empty(&opal_prd_msg_queue)) {
182 item = list_first_entry(&opal_prd_msg_queue,
183 struct opal_prd_msg_queue_item, list);
184 list_del(&item->list);
186 spin_unlock_irqrestore(&opal_prd_msg_queue_lock, flags);
188 if (item)
189 break;
191 if (file->f_flags & O_NONBLOCK)
192 return -EAGAIN;
194 rc = wait_event_interruptible(opal_prd_msg_wait,
195 !opal_msg_queue_empty());
196 if (rc)
197 return -EINTR;
200 size = be16_to_cpu(item->msg.size);
201 if (size > count) {
202 err = -EINVAL;
203 goto err_requeue;
206 rc = copy_to_user(buf, &item->msg, size);
207 if (rc) {
208 err = -EFAULT;
209 goto err_requeue;
212 kfree(item);
214 return size;
216 err_requeue:
217 /* eep! re-queue at the head of the list */
218 spin_lock_irqsave(&opal_prd_msg_queue_lock, flags);
219 list_add(&item->list, &opal_prd_msg_queue);
220 spin_unlock_irqrestore(&opal_prd_msg_queue_lock, flags);
221 return err;
224 static ssize_t opal_prd_write(struct file *file, const char __user *buf,
225 size_t count, loff_t *ppos)
227 struct opal_prd_msg_header hdr;
228 ssize_t size;
229 void *msg;
230 int rc;
232 size = sizeof(hdr);
234 if (count < size)
235 return -EINVAL;
237 /* grab the header */
238 rc = copy_from_user(&hdr, buf, sizeof(hdr));
239 if (rc)
240 return -EFAULT;
242 size = be16_to_cpu(hdr.size);
244 msg = kmalloc(size, GFP_KERNEL);
245 if (!msg)
246 return -ENOMEM;
248 rc = copy_from_user(msg, buf, size);
249 if (rc) {
250 size = -EFAULT;
251 goto out_free;
254 rc = opal_prd_msg(msg);
255 if (rc) {
256 pr_warn("write: opal_prd_msg returned %d\n", rc);
257 size = -EIO;
260 out_free:
261 kfree(msg);
263 return size;
266 static int opal_prd_release(struct inode *inode, struct file *file)
268 struct opal_prd_msg_header msg;
270 msg.size = cpu_to_be16(sizeof(msg));
271 msg.type = OPAL_PRD_MSG_TYPE_FINI;
273 opal_prd_msg((struct opal_prd_msg *)&msg);
275 atomic_xchg(&prd_usage, 0);
277 return 0;
280 static long opal_prd_ioctl(struct file *file, unsigned int cmd,
281 unsigned long param)
283 struct opal_prd_info info;
284 struct opal_prd_scom scom;
285 int rc = 0;
287 switch (cmd) {
288 case OPAL_PRD_GET_INFO:
289 memset(&info, 0, sizeof(info));
290 info.version = OPAL_PRD_KERNEL_VERSION;
291 rc = copy_to_user((void __user *)param, &info, sizeof(info));
292 if (rc)
293 return -EFAULT;
294 break;
296 case OPAL_PRD_SCOM_READ:
297 rc = copy_from_user(&scom, (void __user *)param, sizeof(scom));
298 if (rc)
299 return -EFAULT;
301 scom.rc = opal_xscom_read(scom.chip, scom.addr,
302 (__be64 *)&scom.data);
303 scom.data = be64_to_cpu(scom.data);
304 pr_devel("ioctl SCOM_READ: chip %llx addr %016llx data %016llx rc %lld\n",
305 scom.chip, scom.addr, scom.data, scom.rc);
307 rc = copy_to_user((void __user *)param, &scom, sizeof(scom));
308 if (rc)
309 return -EFAULT;
310 break;
312 case OPAL_PRD_SCOM_WRITE:
313 rc = copy_from_user(&scom, (void __user *)param, sizeof(scom));
314 if (rc)
315 return -EFAULT;
317 scom.rc = opal_xscom_write(scom.chip, scom.addr, scom.data);
318 pr_devel("ioctl SCOM_WRITE: chip %llx addr %016llx data %016llx rc %lld\n",
319 scom.chip, scom.addr, scom.data, scom.rc);
321 rc = copy_to_user((void __user *)param, &scom, sizeof(scom));
322 if (rc)
323 return -EFAULT;
324 break;
326 default:
327 rc = -EINVAL;
330 return rc;
333 static const struct file_operations opal_prd_fops = {
334 .open = opal_prd_open,
335 .mmap = opal_prd_mmap,
336 .poll = opal_prd_poll,
337 .read = opal_prd_read,
338 .write = opal_prd_write,
339 .unlocked_ioctl = opal_prd_ioctl,
340 .release = opal_prd_release,
341 .owner = THIS_MODULE,
344 static struct miscdevice opal_prd_dev = {
345 .minor = MISC_DYNAMIC_MINOR,
346 .name = "opal-prd",
347 .fops = &opal_prd_fops,
350 /* opal interface */
351 static int opal_prd_msg_notifier(struct notifier_block *nb,
352 unsigned long msg_type, void *_msg)
354 struct opal_prd_msg_queue_item *item;
355 struct opal_prd_msg_header *hdr;
356 struct opal_msg *msg = _msg;
357 int msg_size, item_size;
358 unsigned long flags;
360 if (msg_type != OPAL_MSG_PRD)
361 return 0;
363 /* Calculate total size of the message and item we need to store. The
364 * 'size' field in the header includes the header itself. */
365 hdr = (void *)msg->params;
366 msg_size = be16_to_cpu(hdr->size);
367 item_size = msg_size + sizeof(*item) - sizeof(item->msg);
369 item = kzalloc(item_size, GFP_ATOMIC);
370 if (!item)
371 return -ENOMEM;
373 memcpy(&item->msg, msg->params, msg_size);
375 spin_lock_irqsave(&opal_prd_msg_queue_lock, flags);
376 list_add_tail(&item->list, &opal_prd_msg_queue);
377 spin_unlock_irqrestore(&opal_prd_msg_queue_lock, flags);
379 wake_up_interruptible(&opal_prd_msg_wait);
381 return 0;
384 static struct notifier_block opal_prd_event_nb = {
385 .notifier_call = opal_prd_msg_notifier,
386 .next = NULL,
387 .priority = 0,
390 static int opal_prd_probe(struct platform_device *pdev)
392 int rc;
394 if (!pdev || !pdev->dev.of_node)
395 return -ENODEV;
397 /* We should only have one prd driver instance per machine; ensure
398 * that we only get a valid probe on a single OF node.
400 if (prd_node)
401 return -EBUSY;
403 prd_node = pdev->dev.of_node;
405 rc = opal_message_notifier_register(OPAL_MSG_PRD, &opal_prd_event_nb);
406 if (rc) {
407 pr_err("Couldn't register event notifier\n");
408 return rc;
411 rc = misc_register(&opal_prd_dev);
412 if (rc) {
413 pr_err("failed to register miscdev\n");
414 opal_message_notifier_unregister(OPAL_MSG_PRD,
415 &opal_prd_event_nb);
416 return rc;
419 return 0;
422 static int opal_prd_remove(struct platform_device *pdev)
424 misc_deregister(&opal_prd_dev);
425 opal_message_notifier_unregister(OPAL_MSG_PRD, &opal_prd_event_nb);
426 return 0;
429 static const struct of_device_id opal_prd_match[] = {
430 { .compatible = "ibm,opal-prd" },
431 { },
434 static struct platform_driver opal_prd_driver = {
435 .driver = {
436 .name = "opal-prd",
437 .of_match_table = opal_prd_match,
439 .probe = opal_prd_probe,
440 .remove = opal_prd_remove,
443 module_platform_driver(opal_prd_driver);
445 MODULE_DEVICE_TABLE(of, opal_prd_match);
446 MODULE_DESCRIPTION("PowerNV OPAL runtime diagnostic driver");
447 MODULE_LICENSE("GPL");