blob: dc14b0b9cbfa27ff0bfb0cc2e97ed93e0e8d52a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
3 * IBM ASM Service Processor Device Driver
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 * Copyright (C) IBM Corporation, 2004
20 *
Dmitry Torokhov3110dc72007-07-17 04:03:58 -070021 * Author: Max Asböck <amax@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
Dmitry Torokhov3110dc72007-07-17 04:03:58 -070023 * This driver is based on code originally written by Pete Reynolds
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * and others.
25 *
26 */
27
28/*
29 * The ASM device driver does the following things:
30 *
31 * 1) When loaded it sends a message to the service processor,
32 * indicating that an OS is * running. This causes the service processor
Dmitry Torokhov3110dc72007-07-17 04:03:58 -070033 * to send periodic heartbeats to the OS.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
35 * 2) Answers the periodic heartbeats sent by the service processor.
36 * Failure to do so would result in system reboot.
37 *
38 * 3) Acts as a pass through for dot commands sent from user applications.
Dmitry Torokhov3110dc72007-07-17 04:03:58 -070039 * The interface for this is the ibmasmfs file system.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 * 4) Allows user applications to register for event notification. Events
42 * are sent to the driver through interrupts. They can be read from user
43 * space through the ibmasmfs file system.
44 *
45 * 5) Allows user space applications to send heartbeats to the service
46 * processor (aka reverse heartbeats). Again this happens through ibmasmfs.
47 *
48 * 6) Handles remote mouse and keyboard event interrupts and makes them
49 * available to user applications through ibmasmfs.
50 *
51 */
52
53#include <linux/pci.h>
54#include <linux/init.h>
55#include "ibmasm.h"
56#include "lowlevel.h"
57#include "remote.h"
58
Max Asbock278d72a2005-06-21 17:16:34 -070059int ibmasm_debug = 0;
60module_param(ibmasm_debug, int , S_IRUGO | S_IWUSR);
61MODULE_PARM_DESC(ibmasm_debug, " Set debug mode on or off");
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static int __devinit ibmasm_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
65{
Max Asbock278d72a2005-06-21 17:16:34 -070066 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct service_processor *sp;
68
Max Asbock278d72a2005-06-21 17:16:34 -070069 if ((result = pci_enable_device(pdev))) {
70 dev_err(&pdev->dev, "Failed to enable PCI device\n");
71 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
Max Asbock278d72a2005-06-21 17:16:34 -070073 if ((result = pci_request_regions(pdev, DRIVER_NAME))) {
74 dev_err(&pdev->dev, "Failed to allocate PCI resources\n");
75 goto error_resources;
76 }
77 /* vnc client won't work without bus-mastering */
78 pci_set_master(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Yoann Padioleaudd00cc42007-07-19 01:49:03 -070080 sp = kzalloc(sizeof(struct service_processor), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (sp == NULL) {
82 dev_err(&pdev->dev, "Failed to allocate memory\n");
83 result = -ENOMEM;
84 goto error_kmalloc;
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Ingo Molnar34af9462006-06-27 02:53:55 -070087 spin_lock_init(&sp->lock);
Max Asbock278d72a2005-06-21 17:16:34 -070088 INIT_LIST_HEAD(&sp->command_queue);
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 pci_set_drvdata(pdev, (void *)sp);
91 sp->dev = &pdev->dev;
92 sp->number = pdev->bus->number;
93 snprintf(sp->dirname, IBMASM_NAME_SIZE, "%d", sp->number);
94 snprintf(sp->devname, IBMASM_NAME_SIZE, "%s%d", DRIVER_NAME, sp->number);
95
96 if (ibmasm_event_buffer_init(sp)) {
97 dev_err(sp->dev, "Failed to allocate event buffer\n");
98 goto error_eventbuffer;
99 }
100
101 if (ibmasm_heartbeat_init(sp)) {
102 dev_err(sp->dev, "Failed to allocate heartbeat command\n");
103 goto error_heartbeat;
104 }
105
106 sp->irq = pdev->irq;
Arjan van de Venbdbeed72009-01-06 14:40:39 -0800107 sp->base_address = pci_ioremap_bar(pdev, 0);
Al Viro5cf83b92008-03-29 03:07:48 +0000108 if (!sp->base_address) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 dev_err(sp->dev, "Failed to ioremap pci memory\n");
110 result = -ENODEV;
111 goto error_ioremap;
112 }
113
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700114 result = request_irq(sp->irq, ibmasm_interrupt_handler, IRQF_SHARED, sp->devname, (void*)sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (result) {
116 dev_err(sp->dev, "Failed to register interrupt handler\n");
117 goto error_request_irq;
118 }
119
120 enable_sp_interrupts(sp->base_address);
Max Asbock278d72a2005-06-21 17:16:34 -0700121
122 result = ibmasm_init_remote_input_dev(sp);
123 if (result) {
124 dev_err(sp->dev, "Failed to initialize remote queue\n");
125 goto error_send_message;
126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 result = ibmasm_send_driver_vpd(sp);
129 if (result) {
130 dev_err(sp->dev, "Failed to send driver VPD to service processor\n");
131 goto error_send_message;
132 }
133 result = ibmasm_send_os_state(sp, SYSTEM_STATE_OS_UP);
134 if (result) {
135 dev_err(sp->dev, "Failed to send OS state to service processor\n");
136 goto error_send_message;
137 }
138 ibmasmfs_add_sp(sp);
139
140 ibmasm_register_uart(sp);
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return 0;
143
144error_send_message:
145 disable_sp_interrupts(sp->base_address);
Max Asbock278d72a2005-06-21 17:16:34 -0700146 ibmasm_free_remote_input_dev(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 free_irq(sp->irq, (void *)sp);
148error_request_irq:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 iounmap(sp->base_address);
150error_ioremap:
151 ibmasm_heartbeat_exit(sp);
152error_heartbeat:
153 ibmasm_event_buffer_exit(sp);
154error_eventbuffer:
Max Asbock278d72a2005-06-21 17:16:34 -0700155 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 kfree(sp);
157error_kmalloc:
Max Asbock278d72a2005-06-21 17:16:34 -0700158 pci_release_regions(pdev);
159error_resources:
160 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return result;
163}
164
165static void __devexit ibmasm_remove_one(struct pci_dev *pdev)
166{
167 struct service_processor *sp = (struct service_processor *)pci_get_drvdata(pdev);
168
Max Asbock278d72a2005-06-21 17:16:34 -0700169 dbg("Unregistering UART\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 ibmasm_unregister_uart(sp);
Max Asbock278d72a2005-06-21 17:16:34 -0700171 dbg("Sending OS down message\n");
172 if (ibmasm_send_os_state(sp, SYSTEM_STATE_OS_DOWN))
173 err("failed to get repsonse to 'Send OS State' command\n");
174 dbg("Disabling heartbeats\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ibmasm_heartbeat_exit(sp);
Max Asbock278d72a2005-06-21 17:16:34 -0700176 dbg("Disabling interrupts\n");
177 disable_sp_interrupts(sp->base_address);
178 dbg("Freeing SP irq\n");
179 free_irq(sp->irq, (void *)sp);
180 dbg("Cleaning up\n");
181 ibmasm_free_remote_input_dev(sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 iounmap(sp->base_address);
183 ibmasm_event_buffer_exit(sp);
Max Asbock278d72a2005-06-21 17:16:34 -0700184 pci_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(sp);
Max Asbock278d72a2005-06-21 17:16:34 -0700186 pci_release_regions(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 pci_disable_device(pdev);
188}
189
190static struct pci_device_id ibmasm_pci_table[] =
191{
192 { PCI_DEVICE(VENDORID_IBM, DEVICEID_RSA) },
193 {},
194};
195
196static struct pci_driver ibmasm_driver = {
197 .name = DRIVER_NAME,
198 .id_table = ibmasm_pci_table,
199 .probe = ibmasm_init_one,
200 .remove = __devexit_p(ibmasm_remove_one),
201};
202
203static void __exit ibmasm_exit (void)
204{
205 ibmasm_unregister_panic_notifier();
206 ibmasmfs_unregister();
207 pci_unregister_driver(&ibmasm_driver);
208 info(DRIVER_DESC " version " DRIVER_VERSION " unloaded");
209}
210
211static int __init ibmasm_init(void)
212{
213 int result;
214
215 result = ibmasmfs_register();
216 if (result) {
217 err("Failed to register ibmasmfs file system");
218 return result;
219 }
220 result = pci_register_driver(&ibmasm_driver);
221 if (result) {
222 ibmasmfs_unregister();
223 return result;
224 }
225 ibmasm_register_panic_notifier();
226 info(DRIVER_DESC " version " DRIVER_VERSION " loaded");
227 return 0;
228}
229
230module_init(ibmasm_init);
231module_exit(ibmasm_exit);
232
233MODULE_AUTHOR(DRIVER_AUTHOR);
234MODULE_DESCRIPTION(DRIVER_DESC);
235MODULE_LICENSE("GPL");
236MODULE_DEVICE_TABLE(pci, ibmasm_pci_table);
237