diff options
author | Jan-Bernd Themann <ossthema@de.ibm.com> | 2006-09-13 11:44:31 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-13 13:23:52 -0400 |
commit | 7a291083225af6e22ffaa46b3d91cfc1a1ccaab4 (patch) | |
tree | c87a93ee7d5c1c63ce98dc90a62cd0b4dfc4318f /drivers/net/ehea/ehea_hcall.h | |
parent | 7de745e56244156233e5cdd62b462e52e638d408 (diff) |
[PATCH] ehea: IBM eHEA Ethernet Device Driver
Hi Jeff,
I fixed the __iomem issue and tested the driver with sparse. Looks good so far.
Thanks for your effort.
Jan-Bernd Themann
Signed-off-by: Jan-Bernd Themann <themann@de.ibm.com>
drivers/net/Kconfig | 9
drivers/net/Makefile | 1
drivers/net/ehea/Makefile | 6
drivers/net/ehea/ehea.h | 447 ++++++
drivers/net/ehea/ehea_ethtool.c | 294 ++++
drivers/net/ehea/ehea_hcall.h | 51
drivers/net/ehea/ehea_hw.h | 287 ++++
drivers/net/ehea/ehea_main.c | 2654 ++++++++++++++++++++++++++++++++++++++++
drivers/net/ehea/ehea_phyp.c | 705 ++++++++++
drivers/net/ehea/ehea_phyp.h | 455 ++++++
drivers/net/ehea/ehea_qmr.c | 582 ++++++++
drivers/net/ehea/ehea_qmr.h | 358 +++++
12 files changed, 5849 insertions(+)
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ehea/ehea_hcall.h')
-rw-r--r-- | drivers/net/ehea/ehea_hcall.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/drivers/net/ehea/ehea_hcall.h b/drivers/net/ehea/ehea_hcall.h new file mode 100644 index 000000000000..8e7d1c3edc60 --- /dev/null +++ b/drivers/net/ehea/ehea_hcall.h | |||
@@ -0,0 +1,51 @@ | |||
1 | /* | ||
2 | * linux/drivers/net/ehea/ehea_hcall.h | ||
3 | * | ||
4 | * eHEA ethernet device driver for IBM eServer System p | ||
5 | * | ||
6 | * (C) Copyright IBM Corp. 2006 | ||
7 | * | ||
8 | * Authors: | ||
9 | * Christoph Raisch <raisch@de.ibm.com> | ||
10 | * Jan-Bernd Themann <themann@de.ibm.com> | ||
11 | * Thomas Klein <tklein@de.ibm.com> | ||
12 | * | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License as published by | ||
16 | * the Free Software Foundation; either version 2, or (at your option) | ||
17 | * any later version. | ||
18 | * | ||
19 | * This program is distributed in the hope that it will be useful, | ||
20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
22 | * GNU General Public License for more details. | ||
23 | * | ||
24 | * You should have received a copy of the GNU General Public License | ||
25 | * along with this program; if not, write to the Free Software | ||
26 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
27 | */ | ||
28 | |||
29 | #ifndef __EHEA_HCALL_H__ | ||
30 | #define __EHEA_HCALL_H__ | ||
31 | |||
32 | /** | ||
33 | * This file contains HCALL defines that are to be included in the appropriate | ||
34 | * kernel files later | ||
35 | */ | ||
36 | |||
37 | #define H_ALLOC_HEA_RESOURCE 0x278 | ||
38 | #define H_MODIFY_HEA_QP 0x250 | ||
39 | #define H_QUERY_HEA_QP 0x254 | ||
40 | #define H_QUERY_HEA 0x258 | ||
41 | #define H_QUERY_HEA_PORT 0x25C | ||
42 | #define H_MODIFY_HEA_PORT 0x260 | ||
43 | #define H_REG_BCMC 0x264 | ||
44 | #define H_DEREG_BCMC 0x268 | ||
45 | #define H_REGISTER_HEA_RPAGES 0x26C | ||
46 | #define H_DISABLE_AND_GET_HEA 0x270 | ||
47 | #define H_GET_HEA_INFO 0x274 | ||
48 | #define H_ADD_CONN 0x284 | ||
49 | #define H_DEL_CONN 0x288 | ||
50 | |||
51 | #endif /* __EHEA_HCALL_H__ */ | ||