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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 22 | #include <linux/platform_device.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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | static struct proc_dir_entry *hdpu_slot_id; |
| 29 | static struct proc_dir_entry *hdpu_chassis_id; |
| 30 | static int slot_id = -1; |
| 31 | static int chassis_id = -1; |
| 32 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 33 | static struct platform_driver hdpu_nexus_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | .probe = hdpu_nexus_probe, |
| 35 | .remove = hdpu_nexus_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 36 | .driver = { |
| 37 | .name = HDPU_NEXUS_NAME, |
| 38 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset, |
| 42 | int buffer_length, int *zero, void *ptr) |
| 43 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | if (offset > 0) |
| 45 | return 0; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | return sprintf(buffer, "%d\n", slot_id); |
| 48 | } |
| 49 | |
| 50 | int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset, |
| 51 | int buffer_length, int *zero, void *ptr) |
| 52 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | if (offset > 0) |
| 54 | return 0; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | return sprintf(buffer, "%d\n", chassis_id); |
| 57 | } |
| 58 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 59 | static int hdpu_nexus_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct resource *res; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 62 | int *nexus_id_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Cyrill Gorcunov | 7472fd3 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 65 | if (!res) { |
| 66 | printk(KERN_ERR "sky_nexus: " |
| 67 | "Invalid memory resource.\n"); |
| 68 | return -EINVAL; |
| 69 | } |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 70 | nexus_id_addr = ioremap(res->start, |
| 71 | (unsigned long)(res->end - res->start)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | if (nexus_id_addr) { |
| 73 | slot_id = (*nexus_id_addr >> 8) & 0x1f; |
| 74 | chassis_id = *nexus_id_addr & 0xff; |
| 75 | iounmap(nexus_id_addr); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 76 | } else { |
Cyrill Gorcunov | 7472fd3 | 2007-10-02 13:30:06 -0700 | [diff] [blame] | 77 | printk(KERN_ERR "sky_nexus: Could not map slot id\n"); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root); |
Cyrill Gorcunov | 5f725fe | 2007-10-02 13:30:07 -0700 | [diff] [blame^] | 81 | if (!hdpu_slot_id) { |
| 82 | printk(KERN_WARNING "sky_nexus: " |
| 83 | "Unable to create proc dir entry: sky_slot_id\n"); |
| 84 | } else { |
| 85 | hdpu_slot_id->read_proc = hdpu_slot_id_read; |
| 86 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root); |
Cyrill Gorcunov | 5f725fe | 2007-10-02 13:30:07 -0700 | [diff] [blame^] | 89 | if (!hdpu_chassis_id) { |
| 90 | printk(KERN_WARNING "sky_nexus: " |
| 91 | "Unable to create proc dir entry: sky_chassis_id\n"); |
| 92 | } else { |
| 93 | hdpu_chassis_id->read_proc = hdpu_chassis_id_read; |
| 94 | } |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | return 0; |
| 97 | } |
| 98 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 99 | static int hdpu_nexus_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | slot_id = -1; |
| 102 | chassis_id = -1; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | remove_proc_entry("sky_slot_id", &proc_root); |
| 105 | remove_proc_entry("sky_chassis_id", &proc_root); |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | hdpu_slot_id = 0; |
| 108 | hdpu_chassis_id = 0; |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | static int __init nexus_init(void) |
| 114 | { |
Cyrill Gorcunov | a4e32b5 | 2007-10-02 13:30:05 -0700 | [diff] [blame] | 115 | return platform_driver_register(&hdpu_nexus_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static void __exit nexus_exit(void) |
| 119 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 120 | platform_driver_unregister(&hdpu_nexus_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | module_init(nexus_init); |
| 124 | module_exit(nexus_exit); |
| 125 | |
| 126 | MODULE_AUTHOR("Brian Waite"); |
| 127 | MODULE_LICENSE("GPL"); |