mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 09:04:39 +02:00
mfd: cros_ec: Load cros_ec_ucsi on supported ECs
Load cros_ec_ucsi driver if the ChromeOS EC implements UCSI Platform Policy Manager (PPM). Signed-off-by: Pavan Holla <pholla@chromium.org> Signed-off-by: Łukasz Bartosik <ukaszb@chromium.org> Link: https://lore.kernel.org/r/20240910101527.603452-8-ukaszb@chromium.org Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
parent
31f5283b74
commit
4636d159dd
|
|
@ -108,6 +108,10 @@ static const struct mfd_cell cros_ec_keyboard_leds_cells[] = {
|
|||
{ .name = "cros-keyboard-leds", },
|
||||
};
|
||||
|
||||
static const struct mfd_cell cros_ec_ucsi_cells[] = {
|
||||
{ .name = "cros_ec_ucsi", },
|
||||
};
|
||||
|
||||
static const struct cros_feature_to_cells cros_subdevices[] = {
|
||||
{
|
||||
.id = EC_FEATURE_CEC,
|
||||
|
|
@ -124,6 +128,11 @@ static const struct cros_feature_to_cells cros_subdevices[] = {
|
|||
.mfd_cells = cros_ec_rtc_cells,
|
||||
.num_cells = ARRAY_SIZE(cros_ec_rtc_cells),
|
||||
},
|
||||
{
|
||||
.id = EC_FEATURE_UCSI_PPM,
|
||||
.mfd_cells = cros_ec_ucsi_cells,
|
||||
.num_cells = ARRAY_SIZE(cros_ec_ucsi_cells),
|
||||
},
|
||||
{
|
||||
.id = EC_FEATURE_USB_PD,
|
||||
.mfd_cells = cros_usbpd_charger_cells,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user