blob: cc818532c7ec4b0d1d573250ef7b15d9fa8f0aa7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/proc_fs.h>
20#include <linux/hdpu_features.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Cyrill Gorcunovd2ceb472007-10-02 13:30:06 -070023#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Russell King3ae5eae2005-11-09 22:32:44 +000025static int hdpu_nexus_probe(struct platform_device *pdev);
26static int hdpu_nexus_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28static struct proc_dir_entry *hdpu_slot_id;
29static struct proc_dir_entry *hdpu_chassis_id;
30static int slot_id = -1;
31static int chassis_id = -1;
32
Russell King3ae5eae2005-11-09 22:32:44 +000033static struct platform_driver hdpu_nexus_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .probe = hdpu_nexus_probe,
35 .remove = hdpu_nexus_remove,
Russell King3ae5eae2005-11-09 22:32:44 +000036 .driver = {
37 .name = HDPU_NEXUS_NAME,
38 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset,
42 int buffer_length, int *zero, void *ptr)
43{
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (offset > 0)
45 return 0;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return sprintf(buffer, "%d\n", slot_id);
48}
49
50int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset,
51 int buffer_length, int *zero, void *ptr)
52{
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (offset > 0)
54 return 0;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return sprintf(buffer, "%d\n", chassis_id);
57}
58
Russell King3ae5eae2005-11-09 22:32:44 +000059static int hdpu_nexus_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct resource *res;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070062 int *nexus_id_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Cyrill Gorcunov7472fd32007-10-02 13:30:06 -070065 if (!res) {
66 printk(KERN_ERR "sky_nexus: "
67 "Invalid memory resource.\n");
68 return -EINVAL;
69 }
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070070 nexus_id_addr = ioremap(res->start,
71 (unsigned long)(res->end - res->start));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 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 Gorcunova4e32b52007-10-02 13:30:05 -070076 } else {
Cyrill Gorcunov7472fd32007-10-02 13:30:06 -070077 printk(KERN_ERR "sky_nexus: Could not map slot id\n");
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070078 }
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
Cyrill Gorcunov5f725fe2007-10-02 13:30:07 -070081 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 Torvalds1da177e2005-04-16 15:20:36 -070087
88 hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
Cyrill Gorcunov5f725fe2007-10-02 13:30:07 -070089 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 Gorcunova4e32b52007-10-02 13:30:05 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return 0;
97}
98
Russell King3ae5eae2005-11-09 22:32:44 +000099static int hdpu_nexus_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 slot_id = -1;
102 chassis_id = -1;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 remove_proc_entry("sky_slot_id", &proc_root);
105 remove_proc_entry("sky_chassis_id", &proc_root);
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 hdpu_slot_id = 0;
108 hdpu_chassis_id = 0;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return 0;
111}
112
113static int __init nexus_init(void)
114{
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700115 return platform_driver_register(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static void __exit nexus_exit(void)
119{
Russell King3ae5eae2005-11-09 22:32:44 +0000120 platform_driver_unregister(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123module_init(nexus_init);
124module_exit(nexus_exit);
125
126MODULE_AUTHOR("Brian Waite");
127MODULE_LICENSE("GPL");