Wednesday 2 October 2019

mosfet driver - VReg with MIC5156, why a so high drop-out voltage?


I'm building a voltage regulator with a mic5156 (datasheet). I wired it as this (coming from the datasheet Figure 1C ): enter image description here



With this design, I need to input more than 8 volts in order to get the expect ouput voltage of 6.2v. If I raise the input voltage more than 8v, the output is still regulated to 6.2v.


As the Mos (datasheet) has a very low Rds, I expected a nearly null drop-out voltage for the 50 mA output current which is not the case (around 2v).


What's wrong?



Answer



The MIC5156 does not include an internal charge pump:


Block diagram: MIC5156 block diagram


The datasheet also has this to say:



Version Differences


The MIC5156 requires an external voltage for MOSFET gate drive and is available in 3.3V fixed output, 5V fixed output, or adjustable output versions. With 8-pins, the MIC5156 is the smallest of the Super LDO Regulator Controllers.




This gate supply is derived from the Vp pin (note the +12V input applied in the application schematic above), which must high enough to be able to turn on the FET properly.


As you are supplying this pin with the same voltage as all the other pins you will not get low drop-out regulation across the MOSFET until Vp exceeds the necessary Vgs to turn the FET on.


In your case, this is apparently 1.8V (but it could be as high as 4V or more according to the datasheet).


Solution:



  1. Drive Vp with a higher voltage than supplied to the drain of the FET, with enough headroom to turn the FET on properly.


[Update]: Hat tip to FakeMoustache for another solution:


Use the MIC5157 and add the necessary charge pump capacitors. (see datasheet).



No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...