blob: edd1c75aa8951266ccc68bd96c4e51830e9fc833 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2006 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok3d41e302006-04-14 19:05:31 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29
30/* glue for the OS independent part of e1000
31 * includes register access macros
32 */
33
34#ifndef _E1000_OSDEP_H_
35#define _E1000_OSDEP_H_
36
37#include <linux/types.h>
38#include <linux/pci.h>
39#include <linux/delay.h>
40#include <asm/io.h>
41#include <linux/interrupt.h>
42#include <linux/sched.h>
43
Joe Perchese982f172008-07-11 15:17:18 -070044#define er32(reg) \
Joe Perches1dc32912008-07-11 15:17:08 -070045 (readl(hw->hw_addr + ((hw->mac_type >= e1000_82543) \
46 ? E1000_##reg : E1000_82542_##reg)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Joe Perches1dc32912008-07-11 15:17:08 -070048#define ew32(reg, value) \
49 (writel((value), (hw->hw_addr + ((hw->mac_type >= e1000_82543) \
50 ? E1000_##reg : E1000_82542_##reg))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define E1000_WRITE_REG_ARRAY(a, reg, offset, value) ( \
53 writel((value), ((a)->hw_addr + \
54 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
55 ((offset) << 2))))
56
57#define E1000_READ_REG_ARRAY(a, reg, offset) ( \
58 readl((a)->hw_addr + \
59 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
60 ((offset) << 2)))
61
Malli Chilakala2d7edb92005-04-28 19:43:52 -070062#define E1000_READ_REG_ARRAY_DWORD E1000_READ_REG_ARRAY
63#define E1000_WRITE_REG_ARRAY_DWORD E1000_WRITE_REG_ARRAY
64
65#define E1000_WRITE_REG_ARRAY_WORD(a, reg, offset, value) ( \
66 writew((value), ((a)->hw_addr + \
67 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
68 ((offset) << 1))))
69
70#define E1000_READ_REG_ARRAY_WORD(a, reg, offset) ( \
71 readw((a)->hw_addr + \
72 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
73 ((offset) << 1)))
74
75#define E1000_WRITE_REG_ARRAY_BYTE(a, reg, offset, value) ( \
76 writeb((value), ((a)->hw_addr + \
77 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
78 (offset))))
79
80#define E1000_READ_REG_ARRAY_BYTE(a, reg, offset) ( \
81 readb((a)->hw_addr + \
82 (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \
83 (offset)))
84
Joe Perches1dc32912008-07-11 15:17:08 -070085#define E1000_WRITE_FLUSH() er32(STATUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Jeff Kirsher2df7d592006-11-01 08:48:02 -080087#define E1000_WRITE_ICH_FLASH_REG(a, reg, value) ( \
Auke Kokd37ea5d2006-06-27 09:08:17 -070088 writel((value), ((a)->flash_address + reg)))
89
Jeff Kirsher2df7d592006-11-01 08:48:02 -080090#define E1000_READ_ICH_FLASH_REG(a, reg) ( \
Auke Kokd37ea5d2006-06-27 09:08:17 -070091 readl((a)->flash_address + reg))
92
Jeff Kirsher2df7d592006-11-01 08:48:02 -080093#define E1000_WRITE_ICH_FLASH_REG16(a, reg, value) ( \
Auke Kokd37ea5d2006-06-27 09:08:17 -070094 writew((value), ((a)->flash_address + reg)))
95
Jeff Kirsher2df7d592006-11-01 08:48:02 -080096#define E1000_READ_ICH_FLASH_REG16(a, reg) ( \
Auke Kokd37ea5d2006-06-27 09:08:17 -070097 readw((a)->flash_address + reg))
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif /* _E1000_OSDEP_H_ */