diff options
author | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-08 16:39:51 +0000 |
---|---|---|
committer | (no author) <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> | 2006-08-08 16:39:51 +0000 |
commit | e0487263bc2adb6bd4e3246a856d8d3adb957ad3 (patch) | |
tree | 5337b0663f5d8716c50aa003e0e7b96fbf4309da /openpcd/firmware/src/tc.c | |
parent | 52985be4417d97beb2bbd95bdd2dd53be516ceda (diff) |
add TC code for software-configurable division of carrier clock
git-svn-id: https://svn.openpcd.org:2342/trunk@81 6dc7ffe9-61d6-0310-9af1-9938baff3ed1
Diffstat (limited to 'openpcd/firmware/src/tc.c')
-rw-r--r-- | openpcd/firmware/src/tc.c | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/openpcd/firmware/src/tc.c b/openpcd/firmware/src/tc.c new file mode 100644 index 0000000..4ee28ba --- /dev/null +++ b/openpcd/firmware/src/tc.c @@ -0,0 +1,74 @@ +/* OpenPC TC (Timer / Clock) support code + * (C) 2006 by Harald Welte <hwelte@hmw-consulting.de> + * + * This idea of this code is to feed the 13.56MHz carrier clock of RC632 + * into TCLK1, which is routed to XC1. Then configure TC0 to divide this + * clock by + */ + +#include <lib_AT91SAM7.h> +#include "openpcd.h" +#include "dbgu.h" +#include "tc.h" + +static AT91PS_TCB tcb = AT91C_BASE_TCB; + +/* set carrier divider to a specific */ +void tc_cdiv_set_divider(u_int16_t div) +{ + tcb->TCB_TC0.TC_RC = div; + + /* set to 50% duty cycle */ + tcb->TCB_TC0.TC_RA = 0; + tcb->TCB_TC0.TC_RB = div >> 1; +} + +void tc_cdiv_phase_add(int16_t inc) +{ + tcb->TCB_TC0.TC_RA = (tcb->TCB_TC0.TC_RA + inc) % tcb->TCB_TC0.TC_RC; + tcb->TCB_TC0.TC_RB = (tcb->TCB_TC0.TC_RB + inc) % tcb->TCB_TC0.TC_RC; +} + +void tc_cdiv_init(void) +{ + /* Cfg PIO28 as Periph B */ + AT91F_PIO_CfgPeriph(AT91C_BASE_PIOA, 0, OPENPCD_PIO_CARRIER| + OPENPCD_PIO_CARRIER_DIV); + + AT91F_PMC_EnablePeriphClock(AT91C_BASE_PMC, + ((unsigned int) 1 << AT91C_ID_TC0)); + + /* Enable Clock for TC0 */ + tcb->TCB_TC0.TC_CCR = AT91C_TC_CLKEN; + + /* Connect TCLK1 to XC1 */ + tcb->TCB_BMR &= ~AT91C_TCB_TC1XC1S; + tcb->TCB_BMR |= AT91C_TCB_TC1XC1S_TCLK1; + + tcb->TCB_TC0.TC_CMR = AT91C_TC_CLKS_XC1 | AT91C_TC_WAVE | + AT91C_TC_WAVESEL_UP_AUTO | AT91C_TC_ACPC_SET | + AT91C_TC_BCPC_CLEAR | AT91C_TC_EEVT_XC0; + + tc_cdiv_set_divider(128); + + /* Reset to start timers */ + tcb->TCB_BCR = 1; +} + +void tc_cdiv_print(void) +{ + DEBUGP("TCB_BMR=0x%08x ", tcb->TCB_BMR); + DEBUGP("TC0_CV=0x%08x ", tcb->TCB_TC0.TC_CV); + DEBUGP("TC0_CMR=0x%08x ", tcb->TCB_TC0.TC_CMR); + DEBUGPCR("TC0_SR=0x%08x", tcb->TCB_TC0.TC_SR); + + DEBUGPCR("TC0_RA=0x%04x, TC0_RB=0x%04x, TC0_RC=0x%04x", + tcb->TCB_TC0.TC_RA, tcb->TCB_TC0.TC_RB, tcb->TCB_TC0.TC_RC); +} + +void tc_cdiv_fini(void) +{ + tcb->TCB_TC0.TC_CCR = AT91C_TC_CLKDIS; + AT91F_PMC_DisablePeriphClock(AT91C_BASE_PMC, + ((unsigned int) 1 << AT91C_ID_TC0)); +} |