FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/bsp/timer1.h @ 143:afceeeb2cba1
Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 12 Nov 2013 05:35:48 +0000 |
parents | nuc-fw/bsp/timer1.h@91460c8957f0 |
children |
comparison
equal
deleted
inserted
replaced
142:15d5977390c2 | 143:afceeeb2cba1 |
---|---|
1 /******************************************************************************* | |
2 TEXAS INSTRUMENTS INCORPORATED PROPRIETARY INFORMATION | |
3 | |
4 Property of Texas Instruments -- For Unrestricted Internal Use Only | |
5 Unauthorized reproduction and/or distribution is strictly prohibited. This | |
6 product is protected under copyright law and trade secret law as an | |
7 unpublished work. Created 1987, (C) Copyright 1997 Texas Instruments. All | |
8 rights reserved. | |
9 | |
10 | |
11 Filename : timer1.h | |
12 | |
13 Description :TIMER1 | |
14 | |
15 Project : drivers | |
16 | |
17 Author : pmonteil@tif.ti.com Patrice Monteil. | |
18 | |
19 Version number : 1.7 | |
20 | |
21 Date and time : 02/15/01 15:47:06 | |
22 | |
23 Previous delta : 02/15/01 15:47:06 | |
24 | |
25 SCCS file : /db/gsm_asp/db_ht96/dsp_0/gsw/rel_0/mcu_l1/release_gprs/mod/emu_p/EMU_P_FRED/drivers1/common/SCCS/s.timer1.h | |
26 | |
27 Sccs Id (SID) : '@(#) timer1.h 1.7 02/15/01 15:47:06 ' | |
28 | |
29 | |
30 *****************************************************************************/ | |
31 | |
32 #include "../include/sys_types.h" | |
33 | |
34 /**** DIONE TIMERs configuration register ****/ | |
35 | |
36 #define D_TIMER_ADDR 0xfffe3800 | |
37 | |
38 #define D_TIMER_CNTL_MASK 0x001f | |
39 | |
40 #define CNTL_D_TIMER_OFFSET 0x0000 | |
41 #define LOAD_D_TIMER_OFFSET 0x0002 | |
42 #define READ_D_TIMER_OFFSET 0x0004 | |
43 | |
44 #define D_TIMER_CNTL (D_TIMER_ADDR+CNTL_D_TIMER_OFFSET) | |
45 #define D_TIMER_LOAD (D_TIMER_ADDR+LOAD_D_TIMER_OFFSET) | |
46 #define D_TIMER_READ (D_TIMER_ADDR+READ_D_TIMER_OFFSET) | |
47 | |
48 #define D_TIMER_ST 0x0001 /* bit 0 */ | |
49 #define D_TIMER_AR 0x0002 /* bit 1 */ | |
50 #define D_TIMER_PTV 0x001c /* bits 4:2 */ | |
51 #define D_TIMER_CLK_EN 0x0020 /* bit 5 */ | |
52 #define D_TIMER_RUN 0x0021 /* bit 5 ,0 */ | |
53 | |
54 #define LOAD_TIM 0xffff /* bits 15:0 */ | |
55 | |
56 | |
57 | |
58 | |
59 | |
60 /* ----- Prototypes ----- */ | |
61 SYS_UWORD16 Dtimer1_Get_cntlreg(void); | |
62 | |
63 void Dtimer1_AR(SYS_UWORD16 Ar); | |
64 | |
65 void Dtimer1_PTV(SYS_UWORD16 Ptv); | |
66 | |
67 void Dtimer1_Clken(SYS_UWORD16 En); | |
68 | |
69 void Dtimer1_Start (SYS_UWORD16 startStop); | |
70 | |
71 void Dtimer1_Init_cntl (SYS_UWORD16 St, SYS_UWORD16 Reload, SYS_UWORD16 clockScale, SYS_UWORD16 clkon); | |
72 | |
73 void Dtimer1_WriteValue (SYS_UWORD16 value); | |
74 | |
75 SYS_UWORD16 Dtimer1_ReadValue (void); |