blob: 21da8a6ff8a128e80b7cc2994cef2ab7f6c8165b [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
17#include <linux/version.h>
18#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/proc_fs.h>
21#include <linux/hdpu_features.h>
22#include <linux/pci.h>
23
Russell Kingd052d1b2005-10-29 19:07:23 +010024#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Russell King3ae5eae2005-11-09 22:32:44 +000026static int hdpu_nexus_probe(struct platform_device *pdev);
27static int hdpu_nexus_remove(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29static struct proc_dir_entry *hdpu_slot_id;
30static struct proc_dir_entry *hdpu_chassis_id;
31static int slot_id = -1;
32static int chassis_id = -1;
33
Russell King3ae5eae2005-11-09 22:32:44 +000034static struct platform_driver hdpu_nexus_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .probe = hdpu_nexus_probe,
36 .remove = hdpu_nexus_remove,
Russell King3ae5eae2005-11-09 22:32:44 +000037 .driver = {
38 .name = HDPU_NEXUS_NAME,
39 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset,
43 int buffer_length, int *zero, void *ptr)
44{
45
46 if (offset > 0)
47 return 0;
48 return sprintf(buffer, "%d\n", slot_id);
49}
50
51int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset,
52 int buffer_length, int *zero, void *ptr)
53{
54
55 if (offset > 0)
56 return 0;
57 return sprintf(buffer, "%d\n", chassis_id);
58}
59
Russell King3ae5eae2005-11-09 22:32:44 +000060static int hdpu_nexus_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct resource *res;
63
64 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
65 int *nexus_id_addr;
66 nexus_id_addr =
67 ioremap(res->start, (unsigned long)(res->end - res->start));
68 if (nexus_id_addr) {
69 slot_id = (*nexus_id_addr >> 8) & 0x1f;
70 chassis_id = *nexus_id_addr & 0xff;
71 iounmap(nexus_id_addr);
72 } else
73 printk("Could not map slot id\n");
74 hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
75 hdpu_slot_id->read_proc = hdpu_slot_id_read;
76 hdpu_slot_id->nlink = 1;
77
78 hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
79 hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
80 hdpu_chassis_id->nlink = 1;
81 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;
88 remove_proc_entry("sky_slot_id", &proc_root);
89 remove_proc_entry("sky_chassis_id", &proc_root);
90 hdpu_slot_id = 0;
91 hdpu_chassis_id = 0;
92 return 0;
93}
94
95static int __init nexus_init(void)
96{
97 int rc;
Russell King3ae5eae2005-11-09 22:32:44 +000098 rc = platform_driver_register(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return rc;
100}
101
102static void __exit nexus_exit(void)
103{
Russell King3ae5eae2005-11-09 22:32:44 +0000104 platform_driver_unregister(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107module_init(nexus_init);
108module_exit(nexus_exit);
109
110MODULE_AUTHOR("Brian Waite");
111MODULE_LICENSE("GPL");