Skip to content

Commit 88f86e5

Browse files
Add CPUInfo parsing for LoongArch64 (#384)
Signed-off-by: Wenlong Zhang <zhangwenlong@loongson.cn>
1 parent 85417ca commit 88f86e5

File tree

4 files changed

+134
-2
lines changed

4 files changed

+134
-2
lines changed

cpuinfo.go

+36
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,42 @@ func parseCPUInfoMips(info []byte) ([]CPUInfo, error) {
380380
return cpuinfo, nil
381381
}
382382

383+
func parseCPUInfoLoong(info []byte) ([]CPUInfo, error) {
384+
scanner := bufio.NewScanner(bytes.NewReader(info))
385+
// find the first "processor" line
386+
firstLine := firstNonEmptyLine(scanner)
387+
if !strings.HasPrefix(firstLine, "system type") || !strings.Contains(firstLine, ":") {
388+
return nil, errors.New("invalid cpuinfo file: " + firstLine)
389+
}
390+
field := strings.SplitN(firstLine, ": ", 2)
391+
cpuinfo := []CPUInfo{}
392+
systemType := field[1]
393+
i := 0
394+
for scanner.Scan() {
395+
line := scanner.Text()
396+
if !strings.Contains(line, ":") {
397+
continue
398+
}
399+
field := strings.SplitN(line, ": ", 2)
400+
switch strings.TrimSpace(field[0]) {
401+
case "processor":
402+
v, err := strconv.ParseUint(field[1], 0, 32)
403+
if err != nil {
404+
return nil, err
405+
}
406+
i = int(v)
407+
cpuinfo = append(cpuinfo, CPUInfo{}) // start of the next processor
408+
cpuinfo[i].Processor = uint(v)
409+
cpuinfo[i].VendorID = systemType
410+
case "CPU Family":
411+
cpuinfo[i].CPUFamily = field[1]
412+
case "Model Name":
413+
cpuinfo[i].ModelName = field[1]
414+
}
415+
}
416+
return cpuinfo, nil
417+
}
418+
383419
func parseCPUInfoPPC(info []byte) ([]CPUInfo, error) {
384420
scanner := bufio.NewScanner(bytes.NewReader(info))
385421

cpuinfo_loong64.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright 2022 The Prometheus Authors
2+
// Licensed under the Apache License, Version 2.0 (the "License");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
//
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
14+
//go:build linux
15+
// +build linux
16+
17+
package procfs
18+
19+
var parseCPUInfo = parseCPUInfoLoong

cpuinfo_others.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14-
//go:build linux && !386 && !amd64 && !arm && !arm64 && !mips && !mips64 && !mips64le && !mipsle && !ppc64 && !ppc64le && !riscv64 && !s390x
15-
// +build linux,!386,!amd64,!arm,!arm64,!mips,!mips64,!mips64le,!mipsle,!ppc64,!ppc64le,!riscv64,!s390x
14+
//go:build linux && !386 && !amd64 && !arm && !arm64 && !loong64 && !mips && !mips64 && !mips64le && !mipsle && !ppc64 && !ppc64le && !riscv64 && !s390x
15+
// +build linux,!386,!amd64,!arm,!arm64,!loong64,!mips,!mips64,!mips64le,!mipsle,!ppc64,!ppc64le,!riscv64,!s390x
1616

1717
package procfs
1818

cpuinfo_test.go

+77
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,70 @@ processor : 1
232232
hart : 1
233233
isa : rv64imafdcsu
234234
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
235299
`
236300
)
237301

@@ -402,3 +466,16 @@ func TestCPUInfoParseRISCV64(t *testing.T) {
402466
t.Errorf("want ModelName %v, have %v", want, have)
403467
}
404468
}
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

Comments
 (0)