-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sfc: Add support for SFC9000 family (2)
This integrates support for the SFC9000 family of 10G Ethernet controllers and LAN-on-motherboard chips, starting with the SFL9021 'Siena' and SFC9020 'Bethpage'. Credit for this code is largely due to my colleagues at Solarflare: Guido Barzini Steve Hodgson Kieran Mansley Matthew Slattery Neil Turton Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Ben Hutchings
authored and
David S. Miller
committed
Nov 30, 2009
1 parent
afd4aea
commit 8880f4e
Showing
14 changed files
with
414 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
config SFC | ||
tristate "Solarflare Solarstorm SFC4000 support" | ||
tristate "Solarflare Solarstorm SFC4000/SFC9000-family support" | ||
depends on PCI && INET | ||
select MDIO | ||
select CRC32 | ||
select I2C | ||
select I2C_ALGOBIT | ||
help | ||
This driver supports 10-gigabit Ethernet cards based on | ||
the Solarflare Communications Solarstorm SFC4000 controller. | ||
the Solarflare Communications Solarstorm SFC4000 and | ||
SFC9000-family controllers. | ||
|
||
To compile this driver as a module, choose M here. The module | ||
will be called sfc. | ||
config SFC_MTD | ||
bool "Solarflare Solarstorm SFC4000 flash MTD support" | ||
bool "Solarflare Solarstorm SFC4000/SFC9000-family MTD support" | ||
depends on SFC && MTD && !(SFC=y && MTD=m) | ||
default y | ||
help | ||
This exposes the on-board flash memory as an MTD device (e.g. | ||
/dev/mtd1). This makes it possible to upload new boot code | ||
to the NIC. | ||
This exposes the on-board flash memory as MTD devices (e.g. | ||
/dev/mtd1). This makes it possible to upload new firmware | ||
to the NIC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
sfc-y += efx.o nic.o falcon.o tx.o rx.o falcon_gmac.o \ | ||
falcon_xmac.o selftest.o ethtool.o qt202x_phy.o \ | ||
mdio_10g.o tenxpress.o falcon_boards.o | ||
sfc-y += efx.o nic.o falcon.o siena.o tx.o rx.o \ | ||
falcon_gmac.o falcon_xmac.o mcdi_mac.o \ | ||
selftest.o ethtool.o qt202x_phy.o mdio_10g.o \ | ||
tenxpress.o falcon_boards.o mcdi.o mcdi_phy.o | ||
sfc-$(CONFIG_SFC_MTD) += mtd.o | ||
|
||
obj-$(CONFIG_SFC) += sfc.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.