-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#! /usr/bin/python | ||
# Enable PWM Timer on Beaglebone | ||
from mmap import mmap | ||
import struct | ||
MMAP_OFFSET = 0x44c00000 # base address of registers | ||
MMAP_SIZE = 0x48ffffff-MMAP_OFFSET # size of the register memory space | ||
CM_PER_BASE = 0x44e00000 - MMAP_OFFSET | ||
CM_PER_EPWMSS1_CLKCTRL = CM_PER_BASE + 0xcc | ||
CM_PER_EPWMSS0_CLKCTRL = CM_PER_BASE + 0xd4 | ||
CM_PER_EPWMSS2_CLKCTRL = CM_PER_BASE + 0xd8 | ||
with open("/dev/mem", "r+b") as f: | ||
mem = mmap(f.fileno(), MMAP_SIZE, offset=MMAP_OFFSET) | ||
def _andReg(address, mask): | ||
""" Sets 32-bit Register at address to its current value AND mask. """ | ||
_setReg(address, _getReg(address)&mask) | ||
def _orReg(address, mask): | ||
""" Sets 32-bit Register at address to its current value OR mask. """ | ||
_setReg(address, _getReg(address)|mask) | ||
def _xorReg(address, mask): | ||
""" Sets 32-bit Register at address to its current value XOR mask. """ | ||
_setReg(address, _getReg(address)^mask) | ||
def _getReg(address): | ||
""" Returns unpacked 32 bit register value starting from address. """ | ||
return struct.unpack("<L", mem[address:address+4])[0] | ||
def _setReg(address, new_value): | ||
""" Sets 32 bits at given address to given value. """ | ||
mem[address:address+4] = struct.pack("<L", new_value) | ||
val = _getReg(CM_PER_EPWMSS1_CLKCTRL) | ||
print "Register CM_PER_EPWMSS1_CLKCTRL was " + hex(val) | ||
_setReg(CM_PER_EPWMSS1_CLKCTRL, 0x2) | ||
val = _getReg(CM_PER_EPWMSS1_CLKCTRL) | ||
print "Register CM_PER_EPWMSS1_CLKCTRL changed to " + hex(val) |