1 From 156d50d2fb05f132d53927cbf9fad3c9c37e8937 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Fri, 28 Oct 2016 15:36:43 +0100
4 Subject: [PATCH] vc_mem: Add vc_mem driver for querying firmware
7 Content-Type: text/plain; charset=UTF-8
8 Content-Transfer-Encoding: 8bit
10 Signed-off-by: popcornmix <popcornmix@gmail.com>
14 Make the vc_mem module available for ARCH_BCM2835 by moving it.
16 Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
18 char: vc_mem: Fix up compat ioctls for 64bit kernel
20 compat_ioctl wasn't defined, so 32bit user/64bit kernel
22 VC_MEM_IOC_MEM_PHYS_ADDR was defined with parameter size
23 unsigned long, so the ioctl cmd changes between sizes.
25 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
27 char: vc_mem: Fix all coding style issues.
29 Cleans up all checkpatch errors in vc_mem.c and vc_mem.h
30 No functional change to the code.
32 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
34 drivers/char/broadcom/Kconfig | 18 ++
35 drivers/char/broadcom/Makefile | 1 +
36 drivers/char/broadcom/vc_mem.c | 375 ++++++++++++++++++++++++++++++++
37 include/linux/broadcom/vc_mem.h | 39 ++++
38 4 files changed, 433 insertions(+)
39 create mode 100644 drivers/char/broadcom/Kconfig
40 create mode 100644 drivers/char/broadcom/Makefile
41 create mode 100644 drivers/char/broadcom/vc_mem.c
42 create mode 100644 include/linux/broadcom/vc_mem.h
45 +++ b/drivers/char/broadcom/Kconfig
48 +# Broadcom char driver config
51 +menuconfig BRCM_CHAR_DRIVERS
52 + bool "Broadcom Char Drivers"
54 + Broadcom's char drivers
59 + bool "Videocore Memory"
62 + Helper for videocore memory access and total size allocation.
66 +++ b/drivers/char/broadcom/Makefile
68 +obj-$(CONFIG_BCM2708_VCMEM) += vc_mem.o
70 +++ b/drivers/char/broadcom/vc_mem.c
73 + * Copyright 2010 - 2011 Broadcom Corporation. All rights reserved.
75 + * Unless you and Broadcom execute a separate written software license
76 + * agreement governing use of this software, this software is licensed to you
77 + * under the terms of the GNU General Public License version 2, available at
78 + * http://www.broadcom.com/licenses/GPLv2.php (the "GPL").
80 + * Notwithstanding the above, under no circumstances may you combine this
81 + * software in any way with any other Broadcom software provided under a
82 + * license other than the GPL, without Broadcom's express prior written
86 +#include <linux/kernel.h>
87 +#include <linux/module.h>
88 +#include <linux/fs.h>
89 +#include <linux/device.h>
90 +#include <linux/cdev.h>
91 +#include <linux/mm.h>
92 +#include <linux/slab.h>
93 +#include <linux/debugfs.h>
94 +#include <linux/uaccess.h>
95 +#include <linux/dma-mapping.h>
96 +#include <linux/broadcom/vc_mem.h>
98 +#define DRIVER_NAME "vc-mem"
100 +/* Device (/dev) related variables */
101 +static dev_t vc_mem_devnum;
102 +static struct class *vc_mem_class;
103 +static struct cdev vc_mem_cdev;
104 +static int vc_mem_inited;
106 +#ifdef CONFIG_DEBUG_FS
107 +static struct dentry *vc_mem_debugfs_entry;
111 + * Videocore memory addresses and size
113 + * Drivers that wish to know the videocore memory addresses and sizes should
114 + * use these variables instead of the MM_IO_BASE and MM_ADDR_IO defines in
115 + * headers. This allows the other drivers to not be tied down to a a certain
116 + * address/size at compile time.
118 + * In the future, the goal is to have the videocore memory virtual address and
119 + * size be calculated at boot time rather than at compile time. The decision of
120 + * where the videocore memory resides and its size would be in the hands of the
121 + * bootloader (and/or kernel). When that happens, the values of these variables
122 + * would be calculated and assigned in the init function.
124 +/* In the 2835 VC in mapped above ARM, but ARM has full access to VC space */
125 +unsigned long mm_vc_mem_phys_addr;
126 +EXPORT_SYMBOL(mm_vc_mem_phys_addr);
127 +unsigned int mm_vc_mem_size;
128 +EXPORT_SYMBOL(mm_vc_mem_size);
129 +unsigned int mm_vc_mem_base;
130 +EXPORT_SYMBOL(mm_vc_mem_base);
132 +static uint phys_addr;
133 +static uint mem_size;
134 +static uint mem_base;
137 +vc_mem_open(struct inode *inode, struct file *file)
141 + pr_debug("%s: called file = 0x%p\n", __func__, file);
147 +vc_mem_release(struct inode *inode, struct file *file)
151 + pr_debug("%s: called file = 0x%p\n", __func__, file);
157 +vc_mem_get_size(void)
162 +vc_mem_get_base(void)
167 +vc_mem_get_current_size(void)
169 + return mm_vc_mem_size;
171 +EXPORT_SYMBOL_GPL(vc_mem_get_current_size);
174 +vc_mem_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
181 + pr_debug("%s: called file = 0x%p, cmd %08x\n", __func__, file, cmd);
184 + case VC_MEM_IOC_MEM_PHYS_ADDR:
186 + pr_debug("%s: VC_MEM_IOC_MEM_PHYS_ADDR=0x%p\n",
187 + __func__, (void *)mm_vc_mem_phys_addr);
189 + if (copy_to_user((void *)arg, &mm_vc_mem_phys_addr,
190 + sizeof(mm_vc_mem_phys_addr))) {
195 + case VC_MEM_IOC_MEM_SIZE:
197 + /* Get the videocore memory size first */
200 + pr_debug("%s: VC_MEM_IOC_MEM_SIZE=%x\n", __func__,
203 + if (copy_to_user((void *)arg, &mm_vc_mem_size,
204 + sizeof(mm_vc_mem_size))) {
209 + case VC_MEM_IOC_MEM_BASE:
211 + /* Get the videocore memory base */
214 + pr_debug("%s: VC_MEM_IOC_MEM_BASE=%x\n", __func__,
217 + if (copy_to_user((void *)arg, &mm_vc_mem_base,
218 + sizeof(mm_vc_mem_base))) {
223 + case VC_MEM_IOC_MEM_LOAD:
225 + /* Get the videocore memory base */
228 + pr_debug("%s: VC_MEM_IOC_MEM_LOAD=%x\n", __func__,
231 + if (copy_to_user((void *)arg, &mm_vc_mem_base,
232 + sizeof(mm_vc_mem_base))) {
242 + pr_debug("%s: file = 0x%p returning %d\n", __func__, file, rc);
247 +#ifdef CONFIG_COMPAT
249 +vc_mem_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
254 + case VC_MEM_IOC_MEM_PHYS_ADDR32:
255 + pr_debug("%s: VC_MEM_IOC_MEM_PHYS_ADDR32=0x%p\n",
256 + __func__, (void *)mm_vc_mem_phys_addr);
258 + /* This isn't correct, but will cover us for now as
259 + * VideoCore is 32bit only.
261 + if (copy_to_user((void *)arg, &mm_vc_mem_phys_addr,
262 + sizeof(compat_ulong_t)))
268 + rc = vc_mem_ioctl(file, cmd, arg);
277 +vc_mem_mmap(struct file *filp, struct vm_area_struct *vma)
280 + unsigned long length = vma->vm_end - vma->vm_start;
281 + unsigned long offset = vma->vm_pgoff << PAGE_SHIFT;
283 + pr_debug("%s: vm_start = 0x%08lx vm_end = 0x%08lx vm_pgoff = 0x%08lx\n",
284 + __func__, (long)vma->vm_start, (long)vma->vm_end,
285 + (long)vma->vm_pgoff);
287 + if (offset + length > mm_vc_mem_size) {
288 + pr_err("%s: length %ld is too big\n", __func__, length);
291 + /* Do not cache the memory map */
292 + vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
294 + rc = remap_pfn_range(vma, vma->vm_start,
295 + (mm_vc_mem_phys_addr >> PAGE_SHIFT) +
296 + vma->vm_pgoff, length, vma->vm_page_prot);
298 + pr_err("%s: remap_pfn_range failed (rc=%d)\n", __func__, rc);
303 +/* File Operations for the driver. */
304 +static const struct file_operations vc_mem_fops = {
305 + .owner = THIS_MODULE,
306 + .open = vc_mem_open,
307 + .release = vc_mem_release,
308 + .unlocked_ioctl = vc_mem_ioctl,
309 +#ifdef CONFIG_COMPAT
310 + .compat_ioctl = vc_mem_compat_ioctl,
312 + .mmap = vc_mem_mmap,
315 +#ifdef CONFIG_DEBUG_FS
316 +static void vc_mem_debugfs_deinit(void)
318 + debugfs_remove_recursive(vc_mem_debugfs_entry);
319 + vc_mem_debugfs_entry = NULL;
323 +static int vc_mem_debugfs_init(
324 + struct device *dev)
326 + vc_mem_debugfs_entry = debugfs_create_dir(DRIVER_NAME, NULL);
327 + if (!vc_mem_debugfs_entry) {
328 + dev_warn(dev, "could not create debugfs entry\n");
332 + debugfs_create_x32("vc_mem_phys_addr",
334 + vc_mem_debugfs_entry,
335 + (u32 *)&mm_vc_mem_phys_addr);
336 + debugfs_create_x32("vc_mem_size",
338 + vc_mem_debugfs_entry,
339 + (u32 *)&mm_vc_mem_size);
340 + debugfs_create_x32("vc_mem_base",
342 + vc_mem_debugfs_entry,
343 + (u32 *)&mm_vc_mem_base);
348 +#endif /* CONFIG_DEBUG_FS */
350 +/* Module load/unload functions */
356 + struct device *dev;
358 + pr_debug("%s: called\n", __func__);
360 + mm_vc_mem_phys_addr = phys_addr;
361 + mm_vc_mem_size = mem_size;
362 + mm_vc_mem_base = mem_base;
366 + pr_info("vc-mem: phys_addr:0x%08lx mem_base=0x%08x mem_size:0x%08x(%u MiB)\n",
367 + mm_vc_mem_phys_addr, mm_vc_mem_base, mm_vc_mem_size,
368 + mm_vc_mem_size / (1024 * 1024));
370 + rc = alloc_chrdev_region(&vc_mem_devnum, 0, 1, DRIVER_NAME);
372 + pr_err("%s: alloc_chrdev_region failed (rc=%d)\n",
377 + cdev_init(&vc_mem_cdev, &vc_mem_fops);
378 + rc = cdev_add(&vc_mem_cdev, vc_mem_devnum, 1);
380 + pr_err("%s: cdev_add failed (rc=%d)\n", __func__, rc);
381 + goto out_unregister;
384 + vc_mem_class = class_create(THIS_MODULE, DRIVER_NAME);
385 + if (IS_ERR(vc_mem_class)) {
386 + rc = PTR_ERR(vc_mem_class);
387 + pr_err("%s: class_create failed (rc=%d)\n", __func__, rc);
391 + dev = device_create(vc_mem_class, NULL, vc_mem_devnum, NULL,
395 + pr_err("%s: device_create failed (rc=%d)\n", __func__, rc);
396 + goto out_class_destroy;
399 +#ifdef CONFIG_DEBUG_FS
400 + /* don't fail if the debug entries cannot be created */
401 + vc_mem_debugfs_init(dev);
407 + device_destroy(vc_mem_class, vc_mem_devnum);
410 + class_destroy(vc_mem_class);
411 + vc_mem_class = NULL;
414 + cdev_del(&vc_mem_cdev);
417 + unregister_chrdev_region(vc_mem_devnum, 1);
426 + pr_debug("%s: called\n", __func__);
428 + if (vc_mem_inited) {
430 + vc_mem_debugfs_deinit();
432 + device_destroy(vc_mem_class, vc_mem_devnum);
433 + class_destroy(vc_mem_class);
434 + cdev_del(&vc_mem_cdev);
435 + unregister_chrdev_region(vc_mem_devnum, 1);
439 +module_init(vc_mem_init);
440 +module_exit(vc_mem_exit);
441 +MODULE_LICENSE("GPL");
442 +MODULE_AUTHOR("Broadcom Corporation");
444 +module_param(phys_addr, uint, 0644);
445 +module_param(mem_size, uint, 0644);
446 +module_param(mem_base, uint, 0644);
448 +++ b/include/linux/broadcom/vc_mem.h
451 + * Copyright 2010 - 2011 Broadcom Corporation. All rights reserved.
453 + * Unless you and Broadcom execute a separate written software license
454 + * agreement governing use of this software, this software is licensed to you
455 + * under the terms of the GNU General Public License version 2, available at
456 + * http://www.broadcom.com/licenses/GPLv2.php (the "GPL").
458 + * Notwithstanding the above, under no circumstances may you combine this
459 + * software in any way with any other Broadcom software provided under a
460 + * license other than the GPL, without Broadcom's express prior written
467 +#include <linux/ioctl.h>
469 +#define VC_MEM_IOC_MAGIC 'v'
471 +#define VC_MEM_IOC_MEM_PHYS_ADDR _IOR(VC_MEM_IOC_MAGIC, 0, unsigned long)
472 +#define VC_MEM_IOC_MEM_SIZE _IOR(VC_MEM_IOC_MAGIC, 1, unsigned int)
473 +#define VC_MEM_IOC_MEM_BASE _IOR(VC_MEM_IOC_MAGIC, 2, unsigned int)
474 +#define VC_MEM_IOC_MEM_LOAD _IOR(VC_MEM_IOC_MAGIC, 3, unsigned int)
477 +#define VC_MEM_TO_ARM_ADDR_MASK 0x3FFFFFFF
479 +extern unsigned long mm_vc_mem_phys_addr;
480 +extern unsigned int mm_vc_mem_size;
481 +extern int vc_mem_get_current_size(void);
484 +#ifdef CONFIG_COMPAT
485 +#define VC_MEM_IOC_MEM_PHYS_ADDR32 _IOR(VC_MEM_IOC_MAGIC, 0, compat_ulong_t)
488 +#endif /* _VC_MEM_H */