summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-utilities/peci-hwmon-test/files/peci-hwmon-test.py
blob: 977fcd3a09153b383f98d3a35c3d437cd47a11cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/python

import glob
import os
import sys
import time

if len(sys.argv) == 1:
    cpuno = 0
else:
    cpuno = int(sys.argv[1])

hwmon_path = '/sys/class/hwmon'
cputemp_name_match = '{}{}'.format('peci_cputemp.cpu', cpuno)
dimmtemp_name_match = '{}{}'.format('peci_dimmtemp.cpu', cpuno)

dimmtemp_path = ''

os.chdir(hwmon_path)

for dirpath, dirnames, files in os.walk(hwmon_path):
    for d in dirnames:
        try:
            with open('{}/{}'.format(d, 'name')) as f:
                hwmon_name = f.read().strip()
                if hwmon_name == cputemp_name_match:
                    cputemp_path = os.path.abspath(d)
                    cputemp_name = hwmon_name
                elif hwmon_name == dimmtemp_name_match:
                    dimmtemp_path = os.path.abspath(d)
                    dimmtemp_name = hwmon_name
        except:
            continue

if not cputemp_path:
    print "Can't find the " + cputemp_name_match
    quit()

try:
    while True:
        os.system('clear')
        os.chdir(cputemp_path)

        print '{}/{}: {}'.format(hwmon_path, cputemp_path, cputemp_name)
        if dimmtemp_path:
            print '{}/{}: {}'.format(hwmon_path, dimmtemp_path, dimmtemp_name)

        print
        print 'Package temperature'
        for input in glob.glob('temp[1-5]_input'):
            try:
                with open(input) as f:
                    val = f.read().strip()
            except IOError:
                val = 0
            try:
                with open(input.replace('input', 'label')) as l:
                    name = l.read().strip()
            except IOError:
                name = ''
            print '{:11s}:{:3d}.{:03d}'.format(
                name, (int(val) / 1000), (int(val) % 1000))

        print
        print 'Core temperature'
        count = 0
        for input in glob.glob('temp[!1-5]_input'):
            try:
                with open(input) as f:
                    val = f.read().strip()
            except IOError:
                val = 0
            try:
                with open(input.replace('input', 'label')) as l:
                    name = l.read().strip()
            except IOError:
                name = ''
            print ('{:9s}:{:3d}.{:03d}'.format(
                name, (int(val) / 1000), (int(val) % 1000))),
            count += 1
            if count % 3 == 0:
                print
            else:
                print ('\t'),
        for input in glob.glob('temp??_input'):
            try:
                with open(input) as f:
                    val = f.read().strip()
            except IOError:
                val = 0
            try:
                with open(input.replace('input', 'label')) as l:
                    name = l.read().strip()
            except IOError:
                name = ''
            print ('{:9s}:{:3d}.{:03d}'.format(
                name, (int(val) / 1000), (int(val) % 1000))),
            count += 1
            if count % 3 == 0:
                print
            else:
                print ('\t'),
        print

        if dimmtemp_path:
            os.chdir(dimmtemp_path)
            print
            print 'DIMM temperature'
            count = 0
            for input in glob.glob('temp*_input'):
                try:
                    with open(input) as f:
                        val = f.read().strip()
                except IOError:
                    val = 0
                try:
                    with open(input.replace('input', 'label')) as l:
                        name = l.read().strip()
                except IOError:
                    name = ''
                print ('{:9s}:{:3d}.{:03d}'.format(
                    name, (int(val) / 1000), (int(val) % 1000))),
                count += 1
                if count % 3 == 0:
                    print
                else:
                    print ('\t'),
            print
        else:
            os.chdir(hwmon_path)
            for dirpath, dirnames, files in os.walk(hwmon_path):
                for d in dirnames:
                    try:
                        with open('{}/{}'.format(d, 'name')) as f:
                            hwmon_name = f.read().strip()
                            if hwmon_name == dimmtemp_name_match:
                                dimmtemp_path = os.path.abspath(d)
                                dimmtemp_name = hwmon_name
                    except:
                        continue

        time.sleep(1)
except KeyboardInterrupt:
    print " exiting..."