blob: fda9998f45cac55b2b05fa3bba9dddae368e1630 [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 Gorcunova4e32b52007-10-02 13:30:05 -070065 nexus_id_addr = ioremap(res->start,
66 (unsigned long)(res->end - res->start));
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (nexus_id_addr) {
68 slot_id = (*nexus_id_addr >> 8) & 0x1f;
69 chassis_id = *nexus_id_addr & 0xff;
70 iounmap(nexus_id_addr);
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070071 } else {
72 printk(KERN_ERR "Could not map slot id\n");
73 }
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
76 hdpu_slot_id->read_proc = hdpu_slot_id_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
79 hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82}
83
Russell King3ae5eae2005-11-09 22:32:44 +000084static int hdpu_nexus_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 slot_id = -1;
87 chassis_id = -1;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 remove_proc_entry("sky_slot_id", &proc_root);
90 remove_proc_entry("sky_chassis_id", &proc_root);
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 hdpu_slot_id = 0;
93 hdpu_chassis_id = 0;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return 0;
96}
97
98static int __init nexus_init(void)
99{
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700100 return platform_driver_register(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static void __exit nexus_exit(void)
104{
Russell King3ae5eae2005-11-09 22:32:44 +0000105 platform_driver_unregister(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108module_init(nexus_init);
109module_exit(nexus_exit);
110
111MODULE_AUTHOR("Brian Waite");
112MODULE_LICENSE("GPL");