Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Sky Nexus Register Driver |
| 3 | * |
| 4 | * Copyright (C) 2002 Brian Waite |
| 5 | * |
| 6 | * This driver allows reading the Nexus register |
| 7 | * It exports the /proc/sky_chassis_id and also |
| 8 | * /proc/sky_slot_id pseudo-file for status information. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version |
| 13 | * 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | */ |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/proc_fs.h> |
| 20 | #include <linux/hdpu_features.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 22 | #include <linux/seq_file.h> |
Cyrill Gorcunov | d2ceb47 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 23 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 25 | static int hdpu_nexus_probe(struct platform_device *pdev); |
| 26 | static int hdpu_nexus_remove(struct platform_device *pdev); |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 27 | static int hdpu_slot_id_open(struct inode *inode, struct file *file); |
| 28 | static int hdpu_slot_id_read(struct seq_file *seq, void *offset); |
| 29 | static int hdpu_chassis_id_open(struct inode *inode, struct file *file); |
| 30 | static int hdpu_chassis_id_read(struct seq_file *seq, void *offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | static struct proc_dir_entry *hdpu_slot_id; |
| 33 | static struct proc_dir_entry *hdpu_chassis_id; |
| 34 | static int slot_id = -1; |
| 35 | static int chassis_id = -1; |
| 36 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 37 | static const struct file_operations proc_slot_id = { |
| 38 | .open = hdpu_slot_id_open, |
| 39 | .read = seq_read, |
| 40 | .llseek = seq_lseek, |
| 41 | .release = single_release, |
| 42 | .owner = THIS_MODULE, |
| 43 | }; |
| 44 | |
| 45 | static const struct file_operations proc_chassis_id = { |
| 46 | .open = hdpu_chassis_id_open, |
| 47 | .read = seq_read, |
| 48 | .llseek = seq_lseek, |
| 49 | .release = single_release, |
| 50 | .owner = THIS_MODULE, |
| 51 | }; |
| 52 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 53 | static struct platform_driver hdpu_nexus_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | .probe = hdpu_nexus_probe, |
| 55 | .remove = hdpu_nexus_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 56 | .driver = { |
| 57 | .name = HDPU_NEXUS_NAME, |
Kay Sievers | d6c2385 | 2008-04-15 14:34:33 -0700 | [diff] [blame] | 58 | .owner = THIS_MODULE, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 59 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 62 | static int hdpu_slot_id_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 64 | return single_open(file, hdpu_slot_id_read, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 67 | static int hdpu_slot_id_read(struct seq_file *seq, void *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 69 | seq_printf(seq, "%d\n", slot_id); |
| 70 | return 0; |
| 71 | } |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 72 | |
Cyrill Gorcunov | 3049ea7 | 2007-10-02 13:30:09 -0700 | [diff] [blame] | 73 | static int hdpu_chassis_id_open(struct inode *inode, struct file *file) |
| 74 | { |
| 75 | return single_open(file, hdpu_chassis_id_read, NULL); |
| 76 | } |
| 77 | |
| 78 | static int hdpu_chassis_id_read(struct seq_file *seq, void *offset) |
| 79 | { |
| 80 | seq_printf(seq, "%d\n", chassis_id); |
| 81 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 84 | static int hdpu_nexus_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | struct resource *res; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 87 | int *nexus_id_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Cyrill Gorcunov | 7472fd3 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 90 | if (!res) { |
| 91 | printk(KERN_ERR "sky_nexus: " |
| 92 | "Invalid memory resource.\n"); |
| 93 | return -EINVAL; |
| 94 | } |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 95 | nexus_id_addr = ioremap(res->start, |
| 96 | (unsigned long)(res->end - res->start)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | if (nexus_id_addr) { |
| 98 | slot_id = (*nexus_id_addr >> 8) & 0x1f; |
| 99 | chassis_id = *nexus_id_addr & 0xff; |
| 100 | iounmap(nexus_id_addr); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 101 | } else { |
Cyrill Gorcunov | 7472fd3 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 102 | printk(KERN_ERR "sky_nexus: Could not map slot id\n"); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Denis V. Lunev | c7705f3 | 2008-04-29 01:02:35 -0700 | [diff] [blame] | 105 | hdpu_slot_id = proc_create("sky_slot_id", 0666, NULL, &proc_slot_id); |
| 106 | if (!hdpu_slot_id) { |
Cyrill Gorcunov | 5f725fe | 2007-10-02 13:30:07 -0700 | [diff] [blame] | 107 | printk(KERN_WARNING "sky_nexus: " |
| 108 | "Unable to create proc dir entry: sky_slot_id\n"); |
Cyrill Gorcunov | 5f725fe | 2007-10-02 13:30:07 -0700 | [diff] [blame] | 109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Denis V. Lunev | c7705f3 | 2008-04-29 01:02:35 -0700 | [diff] [blame] | 111 | hdpu_chassis_id = proc_create("sky_chassis_id", 0666, NULL, |
| 112 | &proc_chassis_id); |
Alexey Dobriyan | c74c120 | 2008-04-29 01:01:44 -0700 | [diff] [blame] | 113 | if (!hdpu_chassis_id) |
Cyrill Gorcunov | 5f725fe | 2007-10-02 13:30:07 -0700 | [diff] [blame] | 114 | printk(KERN_WARNING "sky_nexus: " |
| 115 | "Unable to create proc dir entry: sky_chassis_id\n"); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | return 0; |
| 118 | } |
| 119 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 120 | static int hdpu_nexus_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
| 122 | slot_id = -1; |
| 123 | chassis_id = -1; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 124 | |
Alexey Dobriyan | c74c120 | 2008-04-29 01:01:44 -0700 | [diff] [blame] | 125 | remove_proc_entry("sky_slot_id", NULL); |
| 126 | remove_proc_entry("sky_chassis_id", NULL); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | hdpu_slot_id = 0; |
| 129 | hdpu_chassis_id = 0; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | static int __init nexus_init(void) |
| 135 | { |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 136 | return platform_driver_register(&hdpu_nexus_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static void __exit nexus_exit(void) |
| 140 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 141 | platform_driver_unregister(&hdpu_nexus_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | module_init(nexus_init); |
| 145 | module_exit(nexus_exit); |
| 146 | |
| 147 | MODULE_AUTHOR("Brian Waite"); |
| 148 | MODULE_LICENSE("GPL"); |
Kay Sievers | d6c2385 | 2008-04-15 14:34:33 -0700 | [diff] [blame] | 149 | MODULE_ALIAS("platform:" HDPU_NEXUS_NAME); |