Skip to content

Commit 04fbfce

Browse files
ringlejdavem330
authored andcommitted
net: Microchip encx24j600 driver
This ethernet driver supports the Micorchip enc424j600/626j600 Ethernet controller over a SPI bus interface. This driver makes use of the regmap API to optimize access to registers by caching registers where possible. Datasheet: http://ww1.microchip.com/downloads/en/DeviceDoc/39935b.pdf Signed-off-by: Jon Ringle <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 7741c37 commit 04fbfce

File tree

5 files changed

+2122
-0
lines changed

5 files changed

+2122
-0
lines changed

drivers/net/ethernet/microchip/Kconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,13 @@ config ENC28J60_WRITEVERIFY
3333
Enable the verify after the buffer write useful for debugging purpose.
3434
If unsure, say N.
3535

36+
config ENCX24J600
37+
tristate "ENCX24J600 support"
38+
depends on SPI
39+
---help---
40+
Support for the Microchip ENC424J600 ethernet chip.
41+
42+
To compile this driver as a module, choose M here. The module will be
43+
called enc424j600.
44+
3645
endif # NET_VENDOR_MICROCHIP

drivers/net/ethernet/microchip/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
#
44

55
obj-$(CONFIG_ENC28J60) += enc28j60.o
6+
obj-$(CONFIG_ENCX24J600) += encx24j600.o encx24j600-regmap.o

0 commit comments

Comments
 (0)