{ .name = "cros-ec-chardev", },
        { .name = "cros-ec-debugfs", },
        { .name = "cros-ec-sysfs", },
+};
+
+static const struct mfd_cell cros_ec_pchg_cells[] = {
        { .name = "cros-ec-pchg", },
 };
 
        struct device *dev = &pdev->dev;
        struct cros_ec_platform *ec_platform = dev_get_platdata(dev);
        struct cros_ec_dev *ec = kzalloc(sizeof(*ec), GFP_KERNEL);
+       struct ec_response_pchg_count pchg_count;
        int i;
 
        if (!ec)
                }
        }
 
+       /*
+        * The PCHG device cannot be detected by sending EC_FEATURE_GET_CMD, but
+        * it can be detected by querying the number of peripheral chargers.
+        */
+       retval = cros_ec_command(ec->ec_dev, 0, EC_CMD_PCHG_COUNT, NULL, 0,
+                                &pchg_count, sizeof(pchg_count));
+       if (retval >= 0 && pchg_count.port_count) {
+               retval = mfd_add_hotplug_devices(ec->dev,
+                                       cros_ec_pchg_cells,
+                                       ARRAY_SIZE(cros_ec_pchg_cells));
+               if (retval)
+                       dev_warn(ec->dev, "failed to add pchg: %d\n",
+                                retval);
+       }
+
        /*
         * The following subdevices cannot be detected by sending the
         * EC_FEATURE_GET_CMD to the Embedded Controller device.