forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fs_enet ethernet network driver, for several embedded platforms.
- Loading branch information
Showing
13 changed files
with
4,400 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
config FS_ENET | ||
tristate "Freescale Ethernet Driver" | ||
depends on NET_ETHERNET && (CPM1 || CPM2) | ||
select MII | ||
|
||
config FS_ENET_HAS_SCC | ||
bool "Chip has an SCC usable for ethernet" | ||
depends on FS_ENET && (CPM1 || CPM2) | ||
default y | ||
|
||
config FS_ENET_HAS_FCC | ||
bool "Chip has an FCC usable for ethernet" | ||
depends on FS_ENET && CPM2 | ||
default y | ||
|
||
config FS_ENET_HAS_FEC | ||
bool "Chip has an FEC usable for ethernet" | ||
depends on FS_ENET && CPM1 | ||
default y | ||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Makefile for the Freescale Ethernet controllers | ||
# | ||
|
||
obj-$(CONFIG_FS_ENET) += fs_enet.o | ||
|
||
obj-$(CONFIG_8xx) += mac-fec.o mac-scc.o | ||
obj-$(CONFIG_8260) += mac-fcc.o | ||
|
||
fs_enet-objs := fs_enet-main.o fs_enet-mii.o mii-bitbang.o mii-fixed.o |
Oops, something went wrong.