@@ -153,6 +153,7 @@ enum vc5_model {
153
153
IDT_VC5_5P49V5935 ,
154
154
IDT_VC6_5P49V6901 ,
155
155
IDT_VC6_5P49V6965 ,
156
+ IDT_VC6_5P49V6975 ,
156
157
};
157
158
158
159
/* Structure to describe features of a particular VC5 model */
@@ -753,6 +754,7 @@ static int vc5_map_index_to_output(const enum vc5_model model,
753
754
case IDT_VC5_5P49V5935 :
754
755
case IDT_VC6_5P49V6901 :
755
756
case IDT_VC6_5P49V6965 :
757
+ case IDT_VC6_5P49V6975 :
756
758
default :
757
759
return n ;
758
760
}
@@ -1250,13 +1252,21 @@ static const struct vc5_chip_info idt_5p49v6965_info = {
1250
1252
.flags = VC5_HAS_BYPASS_SYNC_BIT ,
1251
1253
};
1252
1254
1255
+ static const struct vc5_chip_info idt_5p49v6975_info = {
1256
+ .model = IDT_VC6_5P49V6975 ,
1257
+ .clk_fod_cnt = 4 ,
1258
+ .clk_out_cnt = 5 ,
1259
+ .flags = VC5_HAS_BYPASS_SYNC_BIT | VC5_HAS_INTERNAL_XTAL ,
1260
+ };
1261
+
1253
1262
static const struct i2c_device_id vc5_id [] = {
1254
1263
{ "5p49v5923" , .driver_data = IDT_VC5_5P49V5923 },
1255
1264
{ "5p49v5925" , .driver_data = IDT_VC5_5P49V5925 },
1256
1265
{ "5p49v5933" , .driver_data = IDT_VC5_5P49V5933 },
1257
1266
{ "5p49v5935" , .driver_data = IDT_VC5_5P49V5935 },
1258
1267
{ "5p49v6901" , .driver_data = IDT_VC6_5P49V6901 },
1259
1268
{ "5p49v6965" , .driver_data = IDT_VC6_5P49V6965 },
1269
+ { "5p49v6975" , .driver_data = IDT_VC6_5P49V6975 },
1260
1270
{ }
1261
1271
};
1262
1272
MODULE_DEVICE_TABLE (i2c , vc5_id );
@@ -1268,6 +1278,7 @@ static const struct of_device_id clk_vc5_of_match[] = {
1268
1278
{ .compatible = "idt,5p49v5935" , .data = & idt_5p49v5935_info },
1269
1279
{ .compatible = "idt,5p49v6901" , .data = & idt_5p49v6901_info },
1270
1280
{ .compatible = "idt,5p49v6965" , .data = & idt_5p49v6965_info },
1281
+ { .compatible = "idt,5p49v6975" , .data = & idt_5p49v6975_info },
1271
1282
{ },
1272
1283
};
1273
1284
MODULE_DEVICE_TABLE (of , clk_vc5_of_match );
0 commit comments