Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * I2O core internal declarations |
| 3 | * |
| 4 | * Copyright (C) 2005 Markus Lidel <Markus.Lidel@shadowconnect.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | * Fixes/additions: |
| 12 | * Markus Lidel <Markus.Lidel@shadowconnect.com> |
| 13 | * initial version. |
| 14 | */ |
| 15 | |
| 16 | /* Exec-OSM */ |
| 17 | extern struct bus_type i2o_bus_type; |
| 18 | |
| 19 | extern struct i2o_driver i2o_exec_driver; |
| 20 | extern int i2o_exec_lct_get(struct i2o_controller *); |
| 21 | |
| 22 | extern int __init i2o_exec_init(void); |
| 23 | extern void __exit i2o_exec_exit(void); |
| 24 | |
| 25 | /* driver */ |
| 26 | extern int i2o_driver_dispatch(struct i2o_controller *, u32); |
| 27 | |
| 28 | extern int __init i2o_driver_init(void); |
| 29 | extern void __exit i2o_driver_exit(void); |
| 30 | |
| 31 | /* PCI */ |
| 32 | extern int __init i2o_pci_init(void); |
| 33 | extern void __exit i2o_pci_exit(void); |
| 34 | |
| 35 | /* device */ |
Markus Lidel | 24791bd | 2006-01-06 00:19:31 -0800 | [diff] [blame] | 36 | extern struct device_attribute i2o_device_attrs[]; |
| 37 | |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 38 | extern void i2o_device_remove(struct i2o_device *); |
| 39 | extern int i2o_device_parse_lct(struct i2o_controller *); |
| 40 | |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 41 | /* IOP */ |
| 42 | extern struct i2o_controller *i2o_iop_alloc(void); |
| 43 | extern void i2o_iop_free(struct i2o_controller *); |
| 44 | |
| 45 | extern int i2o_iop_add(struct i2o_controller *); |
| 46 | extern void i2o_iop_remove(struct i2o_controller *); |
| 47 | |
Andrew Morton | f52bdbe | 2005-06-23 22:02:26 -0700 | [diff] [blame] | 48 | /* config */ |
| 49 | extern int i2o_parm_issue(struct i2o_device *, int, void *, int, void *, int); |
| 50 | |
Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 51 | /* control registers relative to c->base */ |
| 52 | #define I2O_IRQ_STATUS 0x30 |
| 53 | #define I2O_IRQ_MASK 0x34 |
| 54 | #define I2O_IN_PORT 0x40 |
| 55 | #define I2O_OUT_PORT 0x44 |
| 56 | |
| 57 | #define I2O_IRQ_OUTBOUND_POST 0x00000008 |