PSUSensor: add MP2869,MP29612 support
Add device MP2869,MP29612 reading support for YV5 project.
Driver is currently under review:
[1] https://lore.kernel.org/all/20250805102020.749850-1-wenswang@yeah.net/
Tested:
Patch driver and build.
```
root@bmc:~# ls /sys/bus/i2c/drivers/mp2869/
11-004d  11-004e  11-004f  bind     uevent   unbind
root@bmc:~# busctl tree xyz.openbmc_project.PSUSensor | grep MB_VR
      │ ├─ /xyz/openbmc_project/sensors/current/MB_VR_CPU_CPU0_CURR_A
      │ ├─ /xyz/openbmc_project/sensors/current/MB_VR_CPU_CPU1_CURR_A
      │ ├─ /xyz/openbmc_project/sensors/current/MB_VR_CPU_MEM_S3_CURR_A
      │ ├─ /xyz/openbmc_project/sensors/current/MB_VR_CPU_PVDDIO_CURR_A
      │ ├─ /xyz/openbmc_project/sensors/current/MB_VR_CPU_SOC_CURR_A
```
Change-Id: I42a64c012986b4ac4efede2c9817817064a63cb4
Signed-off-by: Leo Yang <Leo-Yang@quantatw.com>
diff --git a/src/psu/PSUSensorMain.cpp b/src/psu/PSUSensorMain.cpp
index 3e73874..0dc4d1a 100644
--- a/src/psu/PSUSensorMain.cpp
+++ b/src/psu/PSUSensorMain.cpp
@@ -114,11 +114,13 @@
     {"MAX34451", I2CDeviceType{"max34451", true}},
     {"MP2856", I2CDeviceType{"mp2856", true}},
     {"MP2857", I2CDeviceType{"mp2857", true}},
+    {"MP2869", I2CDeviceType{"mp2869", true}},
     {"MP2971", I2CDeviceType{"mp2971", true}},
     {"MP2973", I2CDeviceType{"mp2973", true}},
     {"MP2975", I2CDeviceType{"mp2975", true}},
     {"MP5023", I2CDeviceType{"mp5023", true}},
     {"MP5990", I2CDeviceType{"mp5990", true}},
+    {"MP29612", I2CDeviceType{"mp29612", true}},
     {"MPQ8785", I2CDeviceType{"mpq8785", true}},
     {"NCP4200", I2CDeviceType{"ncp4200", true}},
     {"PLI1209BC", I2CDeviceType{"pli1209bc", true}},