[POWERPC] Sky Cpu and Nexus: check for platform_get_resource retcode
[linux-2.6/mini2440.git] / drivers / misc / hdpuftrs / hdpu_nexus.c
blob01bc9179603be92e39afdb3473225a46e172afd6
1 /*
2 * Sky Nexus Register Driver
4 * Copyright (C) 2002 Brian Waite
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.
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.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/proc_fs.h>
20 #include <linux/hdpu_features.h>
22 #include <linux/platform_device.h>
23 #include <asm/io.h>
25 static int hdpu_nexus_probe(struct platform_device *pdev);
26 static int hdpu_nexus_remove(struct platform_device *pdev);
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;
33 static struct platform_driver hdpu_nexus_driver = {
34 .probe = hdpu_nexus_probe,
35 .remove = hdpu_nexus_remove,
36 .driver = {
37 .name = HDPU_NEXUS_NAME,
41 int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset,
42 int buffer_length, int *zero, void *ptr)
44 if (offset > 0)
45 return 0;
47 return sprintf(buffer, "%d\n", slot_id);
50 int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset,
51 int buffer_length, int *zero, void *ptr)
53 if (offset > 0)
54 return 0;
56 return sprintf(buffer, "%d\n", chassis_id);
59 static int hdpu_nexus_probe(struct platform_device *pdev)
61 struct resource *res;
62 int *nexus_id_addr;
64 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
65 if (!res) {
66 printk(KERN_ERR "sky_nexus: "
67 "Invalid memory resource.\n");
68 return -EINVAL;
70 nexus_id_addr = ioremap(res->start,
71 (unsigned long)(res->end - res->start));
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);
76 } else {
77 printk(KERN_ERR "sky_nexus: Could not map slot id\n");
80 hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
81 hdpu_slot_id->read_proc = hdpu_slot_id_read;
83 hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
84 hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
86 return 0;
89 static int hdpu_nexus_remove(struct platform_device *pdev)
91 slot_id = -1;
92 chassis_id = -1;
94 remove_proc_entry("sky_slot_id", &proc_root);
95 remove_proc_entry("sky_chassis_id", &proc_root);
97 hdpu_slot_id = 0;
98 hdpu_chassis_id = 0;
100 return 0;
103 static int __init nexus_init(void)
105 return platform_driver_register(&hdpu_nexus_driver);
108 static void __exit nexus_exit(void)
110 platform_driver_unregister(&hdpu_nexus_driver);
113 module_init(nexus_init);
114 module_exit(nexus_exit);
116 MODULE_AUTHOR("Brian Waite");
117 MODULE_LICENSE("GPL");