File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -2316,6 +2316,16 @@ static struct amd64_family_type family_types[] = {
2316
2316
.dbam_to_cs = f17_addr_mask_to_cs_size ,
2317
2317
}
2318
2318
},
2319
+ [F17_M60H_CPUS ] = {
2320
+ .ctl_name = "F17h_M60h" ,
2321
+ .f0_id = PCI_DEVICE_ID_AMD_17H_M60H_DF_F0 ,
2322
+ .f6_id = PCI_DEVICE_ID_AMD_17H_M60H_DF_F6 ,
2323
+ .max_mcs = 2 ,
2324
+ .ops = {
2325
+ .early_channel_count = f17_early_channel_count ,
2326
+ .dbam_to_cs = f17_addr_mask_to_cs_size ,
2327
+ }
2328
+ },
2319
2329
[F17_M70H_CPUS ] = {
2320
2330
.ctl_name = "F17h_M70h" ,
2321
2331
.f0_id = PCI_DEVICE_ID_AMD_17H_M70H_DF_F0 ,
@@ -3354,6 +3364,10 @@ static struct amd64_family_type *per_family_init(struct amd64_pvt *pvt)
3354
3364
fam_type = & family_types [F17_M30H_CPUS ];
3355
3365
pvt -> ops = & family_types [F17_M30H_CPUS ].ops ;
3356
3366
break ;
3367
+ } else if (pvt -> model >= 0x60 && pvt -> model <= 0x6f ) {
3368
+ fam_type = & family_types [F17_M60H_CPUS ];
3369
+ pvt -> ops = & family_types [F17_M60H_CPUS ].ops ;
3370
+ break ;
3357
3371
} else if (pvt -> model >= 0x70 && pvt -> model <= 0x7f ) {
3358
3372
fam_type = & family_types [F17_M70H_CPUS ];
3359
3373
pvt -> ops = & family_types [F17_M70H_CPUS ].ops ;
Original file line number Diff line number Diff line change 120
120
#define PCI_DEVICE_ID_AMD_17H_M10H_DF_F6 0x15ee
121
121
#define PCI_DEVICE_ID_AMD_17H_M30H_DF_F0 0x1490
122
122
#define PCI_DEVICE_ID_AMD_17H_M30H_DF_F6 0x1496
123
+ #define PCI_DEVICE_ID_AMD_17H_M60H_DF_F0 0x1448
124
+ #define PCI_DEVICE_ID_AMD_17H_M60H_DF_F6 0x144e
123
125
#define PCI_DEVICE_ID_AMD_17H_M70H_DF_F0 0x1440
124
126
#define PCI_DEVICE_ID_AMD_17H_M70H_DF_F6 0x1446
125
127
#define PCI_DEVICE_ID_AMD_19H_DF_F0 0x1650
@@ -293,6 +295,7 @@ enum amd_families {
293
295
F17_CPUS ,
294
296
F17_M10H_CPUS ,
295
297
F17_M30H_CPUS ,
298
+ F17_M60H_CPUS ,
296
299
F17_M70H_CPUS ,
297
300
F19_CPUS ,
298
301
NUM_FAMILIES ,
You can’t perform that action at this time.
0 commit comments