Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
Auke Kok | 0abb6eb | 2006-09-27 12:53:14 -0700 | [diff] [blame] | 3 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | more details. |
Auke Kok | 0abb6eb | 2006-09-27 12:53:14 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | You should have received a copy of the GNU General Public License along with |
Auke Kok | 0abb6eb | 2006-09-27 12:53:14 -0700 | [diff] [blame] | 16 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | Contact Information: |
| 23 | Linux NICS <linux.nics@intel.com> |
Auke Kok | 3d41e30 | 2006-04-14 19:05:31 -0700 | [diff] [blame] | 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/io.h> |
Dirk Brandewie | 5377a41 | 2011-01-06 14:29:54 +0000 | [diff] [blame^] | 38 | |
| 39 | #define CONFIG_RAM_BASE 0x60000 |
| 40 | #define GBE_CONFIG_OFFSET 0x0 |
| 41 | |
| 42 | #define GBE_CONFIG_RAM_BASE \ |
| 43 | ((unsigned int)(CONFIG_RAM_BASE + GBE_CONFIG_OFFSET)) |
| 44 | |
| 45 | #define GBE_CONFIG_BASE_VIRT phys_to_virt(GBE_CONFIG_RAM_BASE) |
| 46 | |
| 47 | #define GBE_CONFIG_FLASH_WRITE(base, offset, count, data) \ |
| 48 | (iowrite16_rep(base + offset, data, count)) |
| 49 | |
| 50 | #define GBE_CONFIG_FLASH_READ(base, offset, count, data) \ |
| 51 | (ioread16_rep(base + (offset << 1), data, count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Joe Perches | e982f17 | 2008-07-11 15:17:18 -0700 | [diff] [blame] | 53 | #define er32(reg) \ |
Joe Perches | 1dc3291 | 2008-07-11 15:17:08 -0700 | [diff] [blame] | 54 | (readl(hw->hw_addr + ((hw->mac_type >= e1000_82543) \ |
| 55 | ? E1000_##reg : E1000_82542_##reg))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Joe Perches | 1dc3291 | 2008-07-11 15:17:08 -0700 | [diff] [blame] | 57 | #define ew32(reg, value) \ |
| 58 | (writel((value), (hw->hw_addr + ((hw->mac_type >= e1000_82543) \ |
| 59 | ? E1000_##reg : E1000_82542_##reg)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | #define E1000_WRITE_REG_ARRAY(a, reg, offset, value) ( \ |
| 62 | writel((value), ((a)->hw_addr + \ |
| 63 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 64 | ((offset) << 2)))) |
| 65 | |
| 66 | #define E1000_READ_REG_ARRAY(a, reg, offset) ( \ |
| 67 | readl((a)->hw_addr + \ |
| 68 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 69 | ((offset) << 2))) |
| 70 | |
Malli Chilakala | 2d7edb9 | 2005-04-28 19:43:52 -0700 | [diff] [blame] | 71 | #define E1000_READ_REG_ARRAY_DWORD E1000_READ_REG_ARRAY |
| 72 | #define E1000_WRITE_REG_ARRAY_DWORD E1000_WRITE_REG_ARRAY |
| 73 | |
| 74 | #define E1000_WRITE_REG_ARRAY_WORD(a, reg, offset, value) ( \ |
| 75 | writew((value), ((a)->hw_addr + \ |
| 76 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 77 | ((offset) << 1)))) |
| 78 | |
| 79 | #define E1000_READ_REG_ARRAY_WORD(a, reg, offset) ( \ |
| 80 | readw((a)->hw_addr + \ |
| 81 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 82 | ((offset) << 1))) |
| 83 | |
| 84 | #define E1000_WRITE_REG_ARRAY_BYTE(a, reg, offset, value) ( \ |
| 85 | writeb((value), ((a)->hw_addr + \ |
| 86 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 87 | (offset)))) |
| 88 | |
| 89 | #define E1000_READ_REG_ARRAY_BYTE(a, reg, offset) ( \ |
| 90 | readb((a)->hw_addr + \ |
| 91 | (((a)->mac_type >= e1000_82543) ? E1000_##reg : E1000_82542_##reg) + \ |
| 92 | (offset))) |
| 93 | |
Joe Perches | 1dc3291 | 2008-07-11 15:17:08 -0700 | [diff] [blame] | 94 | #define E1000_WRITE_FLUSH() er32(STATUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Jeff Kirsher | 2df7d59 | 2006-11-01 08:48:02 -0800 | [diff] [blame] | 96 | #define E1000_WRITE_ICH_FLASH_REG(a, reg, value) ( \ |
Auke Kok | d37ea5d | 2006-06-27 09:08:17 -0700 | [diff] [blame] | 97 | writel((value), ((a)->flash_address + reg))) |
| 98 | |
Jeff Kirsher | 2df7d59 | 2006-11-01 08:48:02 -0800 | [diff] [blame] | 99 | #define E1000_READ_ICH_FLASH_REG(a, reg) ( \ |
Auke Kok | d37ea5d | 2006-06-27 09:08:17 -0700 | [diff] [blame] | 100 | readl((a)->flash_address + reg)) |
| 101 | |
Jeff Kirsher | 2df7d59 | 2006-11-01 08:48:02 -0800 | [diff] [blame] | 102 | #define E1000_WRITE_ICH_FLASH_REG16(a, reg, value) ( \ |
Auke Kok | d37ea5d | 2006-06-27 09:08:17 -0700 | [diff] [blame] | 103 | writew((value), ((a)->flash_address + reg))) |
| 104 | |
Jeff Kirsher | 2df7d59 | 2006-11-01 08:48:02 -0800 | [diff] [blame] | 105 | #define E1000_READ_ICH_FLASH_REG16(a, reg) ( \ |
Auke Kok | d37ea5d | 2006-06-27 09:08:17 -0700 | [diff] [blame] | 106 | readw((a)->flash_address + reg)) |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #endif /* _E1000_OSDEP_H_ */ |