我想从Beaglebone Black获得唯一的序列号。 AM335X参考手册9.3.1.25告诉我,我应该能够从mac_id0_lo和mac_id0_hi寄存器中获取唯一的序列号。这些寄存器的偏移量为630h和634h。
如何读取这些寄存器的值?我在stackoverflow上找到this post,但它没有用处。
更新
我终于得到了一个python代码,用于从beaglebone black读取mac_id0和mac_id1。
from mmap import mmap
import struct
CONTROL_MODULE_OFFSET = 0x44E10000
CONTROL_MODULE_SIZE = 0x44E11FFF-CONTROL_MODULE_OFFSET
MAC_ID0_LO_OFFSET = 0x630
MAC_ID0_HI_OFFSET = 0x634
MAC_ID1_LO_OFFSET = 0x638
MAC_ID1_HI_OFFSET = 0x63C
def print_mac():
file_handler = open("/dev/mem", "r+b")
mem = mmap(file_handler.fileno(), CONTROL_MODULE_SIZE, offset=CONTROL_MODULE_OFFSET)
mac_id0_lo_packed_reg = mem[MAC_ID0_LO_OFFSET:MAC_ID0_LO_OFFSET+4]
mac_id0_hi_packed_reg = mem[MAC_ID0_HI_OFFSET:MAC_ID0_HI_OFFSET+4]
mac_id1_lo_packed_reg = mem[MAC_ID1_LO_OFFSET:MAC_ID1_LO_OFFSET+4]
mac_id1_hi_packed_reg = mem[MAC_ID1_HI_OFFSET:MAC_ID1_HI_OFFSET+4]
mac_id0_lo = struct.unpack('<L', mac_id0_lo_packed_reg)[0]
mac_id0_hi = struct.unpack('<L', mac_id0_hi_packed_reg)[0]
mac_id0_bytes = [None]*6
mac_id0_bytes[0] = (mac_id0_lo & 0xff00) >> 8 #byte 0
mac_id0_bytes[1] = (mac_id0_lo & 0x00ff) #byte 1
mac_id0_bytes[2] = (mac_id0_hi & 0xff000000) >> 24 #byte 2
mac_id0_bytes[3] = (mac_id0_hi & 0x00ff0000) >> 16 #byte 3
mac_id0_bytes[4] = (mac_id0_hi & 0x0000ff00) >> 8 #byte 4
mac_id0_bytes[5] = (mac_id0_hi & 0x000000ff) #byte 4
mac_address_id0 = 0
for i, byte in enumerate(mac_id0_bytes):
mac_address_id0 |= ((byte & 0xff) << (i*8))
mac_id1_lo = struct.unpack('<L', mac_id1_lo_packed_reg)[0]
mac_id1_hi = struct.unpack('<L', mac_id1_hi_packed_reg)[0]
mac_id1_bytes = [None]*6
mac_id1_bytes[0] = (mac_id1_lo & 0xff00) >> 8 #byte 0
mac_id1_bytes[1] = (mac_id1_lo & 0x00ff) #byte 1
mac_id1_bytes[2] = (mac_id1_hi & 0xff000000) >> 24 #byte 2
mac_id1_bytes[3] = (mac_id1_hi & 0x00ff0000) >> 16 #byte 3
mac_id1_bytes[4] = (mac_id1_hi & 0x0000ff00) >> 8 #byte 4
mac_id1_bytes[5] = (mac_id1_hi & 0x000000ff) #byte 4
mac_address_id1 = 0
for i, byte in enumerate(mac_id1_bytes):
mac_address_id1 |= ((byte & 0xff) << (i*8))
print 'mac id0'
print format(mac_address_id0, '08x')
print 'mac id1'
print format(mac_address_id1, '08x')
if not file_handler.closed:
file_handler.close()
mem.close()
print_mac()
答案 0 :(得分:4)
这些寄存器必须是内存映射的,所以问题是如何找出完整的物理地址并找到访问该物理地址的方法。
来自TRM:
从控制模块读取的值(基址0x44E1_0000) MAC_ID0_LO寄存器(偏移量0x630),MAC_ID0_HI寄存器(偏移量 0x634),MAC_ID1_LO寄存器(偏移量0x638)和MAC_ID1_HI寄存器 (偏移量0x63C)表示分配给每个AM335x的唯一MAC地址 设备。这些寄存器中的值被编程到每个AM335x中 TI提供的器件无法更改。
可能您可以使用devmem2 0x44e10630
CONFIG_STRICT_DEVMEM
,但这可能取决于Linux没有<script type="text/javascript"> var int_val = 111</script>
<?php
$js_int_val_in_php = '<script>document.write(int_val);</script>';
echo $js_int_val_in_php; // 111
echo '<br>';
$toInt = (int) $js_int_val_in_php;
echo '<br>';
echo gettype($toInt); // string
?>
。更糟糕的是,您可能需要编写一个小内核驱动程序来访问这些内存区域。
答案 1 :(得分:0)
正如auselen所提到的,我只是尝试通过devmem2 0xfed000f0
来读取高精度定时器芯片的主计数器寄存器中的值,尽管设置了CONFIG_STRICT_DEVMEM
它仍然有效,因为它是非RAM,因此在用户空间中可读/写。