PoE Lower Signal Voltage

poeraspberry pi

I'm currently working on a little project using a Raspberry Pi and an Ag9000-S. I've got it working using Mode A (phantom power over the data pairs) and Mode B (direct power over unused pairs), but when using Mode A I can't use the data pins for Ethernet communication because they're cranked up to ~48V, and Mode B isn't implemented on some of the switches I have around. Is there a way to bring the voltage back down to a normal ~2.4V for Ethernet communications? I know I'm not exactly an electrical engineer, but any information would be useful!

Best Answer

Both the Ethernet switch and the device (your RPi in this case) have a transformer at every input & output wire pair. This transformer is normally a 1:1 signal transformer providing galvanic separation.

Power over Ethernet in mode B works by connecting the power supply DC to the unused wire pairs: enter image description here

In mode A, it works by connecting the power supply DC to the transformer center taps: enter image description here

This way the signal and the power are mixed onto the wires at one side by the transformer, and separated at the other side by the other transformer. The common mode DC voltage level of a single pair represents the power transmission, and the differential voltage level represents the data. Since the data is mixed onto the wires with the power, you cannot simply connect your power consuming module to the individual wires, as that would interfere with the communication. To decouple the power without disturbing the data communication, you have to use a center tapped transformer. The standards-compliant solution is to connect the power module input to the transformer of the device. However, this may not be a trivial task if the device is a product containing an RJ45 socket with integrated magnetics, not prepared for PoE, as those center taps are normally not present externally in this case.

Replacing the RJ45 socket on your device with a different one (prepared for PoE) is most probably not the way to go. What you could do instead is put another set of transformers in between the device and the Ethernet switch, and decouple the power from the center taps of those transformers. Such a device is usually sold under the name PoE splitter, sometimes with a DC-DC converter included (for example).

These pictures show only the power connections, and several details are omitted (the different EMI chokes, the termination resistors, etc). Those should also be present in an actual implementation.

enter image description here

Related Topic