@@ -232,6 +232,70 @@ processor : 1
232
232
hart : 1
233
233
isa : rv64imafdcsu
234
234
mmu : sv48
235
+ `
236
+
237
+ cpuinfoLoong64 = `
238
+ system type : generic-loongson-machine
239
+
240
+ processor : 0
241
+ package : 0
242
+ core : 0
243
+ CPU Family : Loongson-64bit
244
+ Model Name : Loongson-3A5000
245
+ CPU Revision : 0x10
246
+ FPU Revision : 0x00
247
+ CPU MHz : 2500.00
248
+ BogoMIPS : 5000.00
249
+ TLB Entries : 2112
250
+ Address Sizes : 48 bits physical, 48 bits virtual
251
+ ISA : loongarch32 loongarch64
252
+ Features : cpucfg lam ual fpu complex crypto lvz
253
+ Hardware Watchpoint : yes, iwatch count: 0, dwatch count: 0
254
+
255
+ processor : 1
256
+ package : 0
257
+ core : 1
258
+ CPU Family : Loongson-64bit
259
+ Model Name : Loongson-3A5000
260
+ CPU Revision : 0x10
261
+ FPU Revision : 0x00
262
+ CPU MHz : 2500.00
263
+ BogoMIPS : 5000.00
264
+ TLB Entries : 2112
265
+ Address Sizes : 48 bits physical, 48 bits virtual
266
+ ISA : loongarch32 loongarch64
267
+ Features : cpucfg lam ual fpu complex crypto lvz
268
+ Hardware Watchpoint : yes, iwatch count: 0, dwatch count: 0
269
+
270
+ processor : 2
271
+ package : 0
272
+ core : 2
273
+ CPU Family : Loongson-64bit
274
+ Model Name : Loongson-3A5000
275
+ CPU Revision : 0x10
276
+ FPU Revision : 0x00
277
+ CPU MHz : 2500.00
278
+ BogoMIPS : 5000.00
279
+ TLB Entries : 2112
280
+ Address Sizes : 48 bits physical, 48 bits virtual
281
+ ISA : loongarch32 loongarch64
282
+ Features : cpucfg lam ual fpu complex crypto lvz
283
+ Hardware Watchpoint : yes, iwatch count: 0, dwatch count: 0
284
+
285
+ processor : 3
286
+ package : 0
287
+ core : 3
288
+ CPU Family : Loongson-64bit
289
+ Model Name : Loongson-3A5000
290
+ CPU Revision : 0x10
291
+ FPU Revision : 0x00
292
+ CPU MHz : 2500.00
293
+ BogoMIPS : 5000.00
294
+ TLB Entries : 2112
295
+ Address Sizes : 48 bits physical, 48 bits virtual
296
+ ISA : loongarch32 loongarch64
297
+ Features : cpucfg lam ual fpu complex crypto lvz
298
+ Hardware Watchpoint : yes, iwatch count: 0, dwatch count: 0
235
299
`
236
300
)
237
301
@@ -402,3 +466,16 @@ func TestCPUInfoParseRISCV64(t *testing.T) {
402
466
t .Errorf ("want ModelName %v, have %v" , want , have )
403
467
}
404
468
}
469
+
470
+ func TestCPUInfoParseLoong64 (t * testing.T ) {
471
+ cpuinfo , err := parseCPUInfoLoong ([]byte (cpuinfoLoong64 ))
472
+ if err != nil || cpuinfo == nil {
473
+ t .Fatalf ("unable to parse loong cpu info: %v" , err )
474
+ }
475
+ if want , have := 4 , len (cpuinfo ); want != have {
476
+ t .Errorf ("want number of processors %v, have %v" , want , have )
477
+ }
478
+ if want , have := "Loongson-64bit" , cpuinfo [1 ].CPUFamily ; want != have {
479
+ t .Errorf ("want CPUFamily '%v', have '%v'" , want , have )
480
+ }
481
+ }
0 commit comments