blob: 01bc9179603be92e39afdb3473225a46e172afd6 [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);
81 hdpu_slot_id->read_proc = hdpu_slot_id_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
84 hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return 0;
87}
88
Russell King3ae5eae2005-11-09 22:32:44 +000089static int hdpu_nexus_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 slot_id = -1;
92 chassis_id = -1;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 remove_proc_entry("sky_slot_id", &proc_root);
95 remove_proc_entry("sky_chassis_id", &proc_root);
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 hdpu_slot_id = 0;
98 hdpu_chassis_id = 0;
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return 0;
101}
102
103static int __init nexus_init(void)
104{
Cyrill Gorcunova4e32b52007-10-02 13:30:05 -0700105 return platform_driver_register(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static void __exit nexus_exit(void)
109{
Russell King3ae5eae2005-11-09 22:32:44 +0000110 platform_driver_unregister(&hdpu_nexus_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113module_init(nexus_init);
114module_exit(nexus_exit);
115
116MODULE_AUTHOR("Brian Waite");
117MODULE_LICENSE("GPL");