File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -396,6 +396,14 @@ static struct regmap_config sun8i_hdmi_phy_regmap_config = {
396
396
.name = "phy"
397
397
};
398
398
399
+ static const struct sun8i_hdmi_phy_variant sun50i_a64_hdmi_phy = {
400
+ .has_phy_clk = true,
401
+ .has_second_pll = true,
402
+ .phy_init = & sun8i_hdmi_phy_init_h3 ,
403
+ .phy_disable = & sun8i_hdmi_phy_disable_h3 ,
404
+ .phy_config = & sun8i_hdmi_phy_config_h3 ,
405
+ };
406
+
399
407
static const struct sun8i_hdmi_phy_variant sun8i_a83t_hdmi_phy = {
400
408
.phy_init = & sun8i_hdmi_phy_init_a83t ,
401
409
.phy_disable = & sun8i_hdmi_phy_disable_a83t ,
@@ -410,6 +418,10 @@ static const struct sun8i_hdmi_phy_variant sun8i_h3_hdmi_phy = {
410
418
};
411
419
412
420
static const struct of_device_id sun8i_hdmi_phy_of_table [] = {
421
+ {
422
+ .compatible = "allwinner,sun50i-a64-hdmi-phy" ,
423
+ .data = & sun50i_a64_hdmi_phy ,
424
+ },
413
425
{
414
426
.compatible = "allwinner,sun8i-a83t-hdmi-phy" ,
415
427
.data = & sun8i_a83t_hdmi_phy ,
You can’t perform that action at this time.
0 commit comments