Commit 4079918a authored by Max Schulze's avatar Max Schulze Committed by Jakub Kicinski
Browse files

net: usb: asix_devices: add FiberGecko DeviceID



The FiberGecko is a small USB module that connects a 100 Mbit/s SFP

Signed-off-by: default avatarMax Schulze <max.schulze@online.de>
Tested-by: default avatarMax Schulze <max.schulze@online.de>
Suggested-by: default avatarDavid Hollis <dhollis@davehollis.com>
Reported-by: default avatarSven Kreiensen <s.kreiensen@lyconsys.com>
Link: https://patch.msgid.link/20250212150957.43900-2-max.schulze@online.de


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent d30460f4
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -1421,6 +1421,19 @@ static const struct driver_info hg20f9_info = {
	.data = FLAG_EEPROM_MAC,
};

static const struct driver_info lyconsys_fibergecko100_info = {
	.description = "LyconSys FiberGecko 100 USB 2.0 to SFP Adapter",
	.bind = ax88178_bind,
	.status = asix_status,
	.link_reset = ax88178_link_reset,
	.reset = ax88178_link_reset,
	.flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR |
		 FLAG_MULTI_PACKET,
	.rx_fixup = asix_rx_fixup_common,
	.tx_fixup = asix_tx_fixup,
	.data = 0x20061201,
};

static const struct usb_device_id	products [] = {
{
	// Linksys USB200M
@@ -1578,6 +1591,10 @@ static const struct usb_device_id products [] = {
	// Linux Automation GmbH USB 10Base-T1L
	USB_DEVICE(0x33f7, 0x0004),
	.driver_info = (unsigned long) &lxausb_t1l_info,
}, {
	/* LyconSys FiberGecko 100 */
	USB_DEVICE(0x1d2a, 0x0801),
	.driver_info = (unsigned long) &lyconsys_fibergecko100_info,
},
	{ },		// END
};