Code Monkey home page Code Monkey logo

Comments (9)

bb-qq avatar bb-qq commented on May 28, 2024

RTL8152B should work. I guess that the cause is not listed VID/PID of the device in the Linux driver.
I can add the VID/PID to the driver if you paste a result of lsusb.

from r8152.

phile74 avatar phile74 commented on May 28, 2024

Hi,
thanks for your reply.
Could you please give me the procedure to paste a "result of lsusb" ? because I absolutly don't know what you mean, I'm a bit a noob I admit...
It would be very kind to add it to the driver to make it work
Rgds

from r8152.

phile74 avatar phile74 commented on May 28, 2024

Hi bb-qq,
I think I manage to get what you need, the result of lsusb.
This is the result based on a FastEthernet adapter, bsed on RTL8152 (chinese stuff @ 3Eur). I already sent back to A'zon the CableMatters based on RTL8152B.
Anyway, same issue with both FastEthernet-adapters : they do not show up thru control panel.

2 results :
First with the 1Gb USB-Adapter Syncwire only, this one works very well, based on RTL8153 =>

|__usb1 1d6b:0002:0310 09 2.00 480MBit/s 0mA 1IF (ehci_hcd 0000:00:16.0) hub
|__1-1 8087:07db:0002 09 2.00 480MBit/s 0mA 1IF ( ffffffd1ffffffb2ffffffdbffffffad) hub
|__1-1.1 f400:f400:0100 00 2.00 480MBit/s 200mA 1IF (Synology DiskSataion x)
|__1-1.3 0bda:8153:3100 00 2.10 480MBit/s 350mA 1IF (Realtek USB 10/100/1000 LAN 001000001)
|__usb2 1d6b:0002:0310 09 2.00 480MBit/s 0mA 1IF (Linux 3.10.105 etxhci_hcd-170202 Etron xHCI Host Controller 0000:04:00.0) hub
|__usb3 1d6b:0003:0310 09 3.00 5000MBit/s 0mA 1IF (Linux 3.10.105 etxhci_hcd-170202 Etron xHCI Host Controller 0000:04:00.0) hub

then I plugged a FastEth adapter based on RTL8152 I could not make it work :

|__usb1 1d6b:0002:0310 09 2.00 480MBit/s 0mA 1IF (ehci_hcd 0000:00:16.0) hub
|__1-1 8087:07db:0002 09 2.00 480MBit/s 0mA 1IF ( ffffffd1ffffffb2ffffffdbffffffad) hub
|__1-1.1 f400:f400:0100 00 2.00 480MBit/s 200mA 1IF (Synology DiskSataion x)
|__1-1.3 0bda:8153:3100 00 2.10 480MBit/s 350mA 1IF (Realtek USB 10/100/1000 LAN 001000001)
|__usb2 1d6b:0002:0310 09 2.00 480MBit/s 0mA 1IF (Linux 3.10.105 etxhci_hcd-170202 Etron xHCI Host Controller 0000:04:00.0) hub
|__2-1 0fe6:9700:0101 00 1.10 12MBit/s 120mA 1IF ( ffffffc6ffffffa9ffffffddffffffad)
|__usb3 1d6b:0003:0310 09 3.00 5000MBit/s 0mA 1IF (Linux 3.10.105 etxhci_hcd-170202 Etron xHCI Host Controller 0000:04:00.0) hub

Then I rebooted the NAS, with both USB-adapters plugged
same result like above

Hope these results will enable you to fix this issue.
Just ask if you need more feedback
Rgds

from r8152.

bb-qq avatar bb-qq commented on May 28, 2024

Thank you for sharing the result.

I found the line for the not working device

|__2-1 0fe6:9700:0101 00 1.10 12MBit/s 120mA 1IF ( ffffffc6ffffffa9ffffffddffffffad)
and its VID/PID is 0fe6:9700.

According to the information on this page, the device appears to be powered by a chip called DM9601.
https://devicehunt.com/view/type/usb/vendor/0FE6/device/9700

So the problem with this device is a different cause than the issue of CableMatters, we need a completely different driver.

from r8152.

phile74 avatar phile74 commented on May 28, 2024

Hi,
ok, no big deal regarding this 3eur chinese adapter, they claim it's RTL8152 but it's not.. fake news so :-)

Most important it is that your driver works well with 1Gb RTL8153 chip based like Syncwire etc : thanks a lot for your job.

I realize I did not explain why I focus on 1Gb or 100Mb adapter : it's for hifi ! :-)
You developed this driver to get data out of a Syno using multiGb USB-adapters. There is a demand for that, Very cool.
In my case, I use my NAS as a server to stream audio files to a UPnP/DLNA renderer.
The point is that the NAS (Syno & others) are just basic small computers, all integrated in 1 board. For hifi purpose, we can power the NAS by a linear power supply (LPS) to avoid the noise of the SMPS to pollute the board. As a result of that, the ethernet stream out of the NAS is far less noisy, sound quality is better.
In my case, I don't have LPS on my NAS.
When I saw your driver, I wanted to test to get data out of my NAS from the USB instead of the RJ45 socket. And the result is : complete success ! Far less noisy from USB than RJ45 => perfect for audio.
Then we can go even further easily thru USB, using a cheap adapter, to cut the 5VDC from the USB socket & provide cleaner 5VDC to the USB-Ethernet adapter using an external power supply (a power bank for smartphone works perfectly).

Many thanks for your work ! Thanks to you, music sounds far better ! Great !
BRgds

from r8152.

bb-qq avatar bb-qq commented on May 28, 2024

I have not ever noticed such purpose of this driver, and I am glad to hear you feel it is useful :-)

from r8152.

bb-qq avatar bb-qq commented on May 28, 2024

Closing.

from r8152.

rizwanranjha avatar rizwanranjha commented on May 28, 2024

Hi, I am also able to find Davicom DM9601 USB 2.0 To Fast Ethernet Adapter information for USB\VID_0FE6&PID_9700&REV_0101 on https://www.devicekb.com/en/hardware/usb-vendors/vid_0fe6-pid_9700-rev_0101 but where to find its driver???

from r8152.

bb-qq avatar bb-qq commented on May 28, 2024

Are you looking for a driver for Synology NAS?
I have not developed that driver and it probably does not exist in this world.

from r8152.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.