diff options
author | Magnus Damm <magnus.damm@gmail.com> | 2007-09-29 01:42:16 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:53:56 -0400 |
commit | 89e536a190f90d038bae7905a0c582cb7089b739 (patch) | |
tree | 3d9f7dc5c750c8adcadf568e98f12395bd7c5b68 /include | |
parent | 6daf65310374d24d888201b7a6eba90b44008b7b (diff) |
ax88796: add 93cx6 eeprom support
Hook up the 93cx6 eeprom code to the ax88796 driver and modify the ax88796
driver to read out the mac address from the eeprom. We need this for the
ax88796 on certain SuperH boards. The pin configuration used to connect
the eeprom to the ax88796 on these boards is the same as pointed out by the
ax88796 datasheet, so we can probably reuse this code for multiple
platforms in the future.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/eeprom_93cx6.h | 3 | ||||
-rw-r--r-- | include/net/ax88796.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/eeprom_93cx6.h b/include/linux/eeprom_93cx6.h index d774b7778c91..a55c873e8b66 100644 --- a/include/linux/eeprom_93cx6.h +++ b/include/linux/eeprom_93cx6.h | |||
@@ -21,13 +21,14 @@ | |||
21 | /* | 21 | /* |
22 | Module: eeprom_93cx6 | 22 | Module: eeprom_93cx6 |
23 | Abstract: EEPROM reader datastructures for 93cx6 chipsets. | 23 | Abstract: EEPROM reader datastructures for 93cx6 chipsets. |
24 | Supported chipsets: 93c46 & 93c66. | 24 | Supported chipsets: 93c46, 93c56 and 93c66. |
25 | */ | 25 | */ |
26 | 26 | ||
27 | /* | 27 | /* |
28 | * EEPROM operation defines. | 28 | * EEPROM operation defines. |
29 | */ | 29 | */ |
30 | #define PCI_EEPROM_WIDTH_93C46 6 | 30 | #define PCI_EEPROM_WIDTH_93C46 6 |
31 | #define PCI_EEPROM_WIDTH_93C56 8 | ||
31 | #define PCI_EEPROM_WIDTH_93C66 8 | 32 | #define PCI_EEPROM_WIDTH_93C66 8 |
32 | #define PCI_EEPROM_WIDTH_OPCODE 3 | 33 | #define PCI_EEPROM_WIDTH_OPCODE 3 |
33 | #define PCI_EEPROM_WRITE_OPCODE 0x05 | 34 | #define PCI_EEPROM_WRITE_OPCODE 0x05 |
diff --git a/include/net/ax88796.h b/include/net/ax88796.h index ee786a043b3d..51329dae44e6 100644 --- a/include/net/ax88796.h +++ b/include/net/ax88796.h | |||
@@ -14,6 +14,7 @@ | |||
14 | 14 | ||
15 | #define AXFLG_HAS_EEPROM (1<<0) | 15 | #define AXFLG_HAS_EEPROM (1<<0) |
16 | #define AXFLG_MAC_FROMDEV (1<<1) /* device already has MAC */ | 16 | #define AXFLG_MAC_FROMDEV (1<<1) /* device already has MAC */ |
17 | #define AXFLG_HAS_93CX6 (1<<2) /* use eeprom_93cx6 driver */ | ||
17 | 18 | ||
18 | struct ax_plat_data { | 19 | struct ax_plat_data { |
19 | unsigned int flags; | 20 | unsigned int flags; |