From: Dmitry Rokosov Date: Wed, 1 Nov 2023 14:04:57 +0000 (+0300) Subject: drivers: sm: bind child sm devices in the device tree X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=e9f4f7789cdcda342b2f7edb82a6141f82f4c7c2;p=u-boot.git drivers: sm: bind child sm devices in the device tree One well-known sm child device that provides secure power control is the Secure Power Controller. This device utilizes SMC calls to communicate with power domains on the secure monitor side. Signed-off-by: Dmitry Rokosov Signed-off-by: Alexey Romanov Reviewed-by: Neil Armstrong Link: https://lore.kernel.org/r/20231101140500.9025-3-avromanov@salutedevices.com Signed-off-by: Neil Armstrong --- diff --git a/drivers/sm/meson-sm.c b/drivers/sm/meson-sm.c index 25adaf4560..15b3b0e267 100644 --- a/drivers/sm/meson-sm.c +++ b/drivers/sm/meson-sm.c @@ -193,6 +193,7 @@ U_BOOT_DRIVER(meson_sm) = { .id = UCLASS_SM, .of_match = meson_sm_ids, .probe = meson_sm_probe, + .bind = dm_scan_fdt_dev, .priv_auto = sizeof(struct meson_sm_priv), .ops = &sm_ops, };