diff options
author | Matt Porter <mporter@kernel.crashing.org> | 2005-09-03 15:55:35 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 00:05:56 -0700 |
commit | 2698ebcb4338f09206b5accd75bc5cf2ed3dc641 (patch) | |
tree | 36d594ab86d57a558edc143de2ece41597c8a13b /include/asm-ppc | |
parent | 8e8fff09756bdb799154d034c63033192d6f8f89 (diff) | |
download | linux-3.10-2698ebcb4338f09206b5accd75bc5cf2ed3dc641.tar.gz linux-3.10-2698ebcb4338f09206b5accd75bc5cf2ed3dc641.tar.bz2 linux-3.10-2698ebcb4338f09206b5accd75bc5cf2ed3dc641.zip |
[PATCH] ppc32: add phy excluded features to ocp_func_emac_data
This patch adds a field to struct ocp_func_emac_data that allows
platform-specific unsupported PHY features to be passed in to the ibm_emac
ethernet driver.
This patch also adds some logic for the Bamboo eval board to populate this
field based on the dip switches on the board. This is a workaround for the
improperly biased RJ-45 sockets on the Rev. 0 Bamboo.
Signed-off-by: Wade Farnsworth <wfarnsworth@mvista.com>
Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/ibm_ocp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-ppc/ibm_ocp.h b/include/asm-ppc/ibm_ocp.h index 3f7b5669e6d..a33053503ed 100644 --- a/include/asm-ppc/ibm_ocp.h +++ b/include/asm-ppc/ibm_ocp.h @@ -67,6 +67,7 @@ struct ocp_func_emac_data { int phy_mode; /* PHY type or configurable mode */ u8 mac_addr[6]; /* EMAC mac address */ u32 phy_map; /* EMAC phy map */ + u32 phy_feat_exc; /* Excluded PHY features */ }; /* Sysfs support */ |