diff options
| author | Reid Tonking <[email protected]> | 2023-09-07 13:06:35 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-09-19 09:13:19 -0400 |
| commit | 77269ba93d1afa4f9900867bb00ea54832382bea (patch) | |
| tree | c022f0bcc9a3818a23b1aa4c4c8824b2520e865c | |
| parent | a467fb58b1b0534f1a212ce12a50aa21c02a6b97 (diff) | |
drivers: misc: k3_avs: Add Linux compatibles to maintain sync
The ti,j7200-vtm and ti,j721e-vtm compatibles are used for voltage
and thermal monitoring (VTM) by (drivers/thermal/k3_j72xx_bandgap.c)
in Linux, but the same hardware is used for adaptive voltage scaling
(AVS) in u-boot, This brings both drivers in line with the same
compatibles.
Since the j7200 uses the config as the j721e, the data is inherited
from j721e vs creating a duplicate
Signed-off-by: Neha Francis <[email protected]>
Signed-off-by: Reid Tonking <[email protected]>
Reviewed-by: Nishanth Menon <[email protected]>
| -rw-r--r-- | drivers/misc/k3_avs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/misc/k3_avs.c b/drivers/misc/k3_avs.c index 840148d0900..acfc7318452 100644 --- a/drivers/misc/k3_avs.c +++ b/drivers/misc/k3_avs.c @@ -382,6 +382,8 @@ static struct vd_config am654_vd_config = { static const struct udevice_id k3_avs_ids[] = { { .compatible = "ti,am654-avs", .data = (ulong)&am654_vd_config }, { .compatible = "ti,j721e-avs", .data = (ulong)&j721e_vd_config }, + { .compatible = "ti,j721e-vtm", .data = (ulong)&j721e_vd_config }, + { .compatible = "ti,j7200-vtm", .data = (ulong)&j721e_vd_config }, {} }; |
