blob: 404866d2f8fa33dd7f8f8b820015d031e8dae302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/python
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
ident = []
fname = '/sys/devices/system/cpu/cpu0/regs/identification/midr_el1'
with open(fname) as f:
content = f.read()
midr_el1 = (int(content.rstrip('\n'), 16))
ident.append(hex((midr_el1 >> 24) & 0xFF)) # Implementer
ident.append(hex((midr_el1 >> 20) & 0xF)) # Variant
ident.append(hex((midr_el1 >> 16) & 0XF)) # Architecture
ident.append(hex((midr_el1 >> 4) & 0xFFF)) # Primary Part number
ident.append(hex(midr_el1 & 0xF)) # Revision
print(' '.join(ident))
|