]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - examples/timer.c
Initial revision
[karo-tx-uboot.git] / examples / timer.c
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <commproc.h>
26 #include <mpc8xx_irq.h>
27 #include <syscall.h>
28
29 #undef  DEBUG
30
31 #define TIMER_PERIOD    1000000         /* 1 second clock */
32
33 static void timer_handler (void *arg);
34
35
36 /* Access functions for the Machine State Register */
37 static __inline__ unsigned long get_msr(void)
38 {
39     unsigned long msr;
40
41     asm volatile("mfmsr %0" : "=r" (msr) :);
42     return msr;
43 }
44
45 static __inline__ void set_msr(unsigned long msr)
46 {
47     asm volatile("mtmsr %0" : : "r" (msr));
48 }
49
50 /*
51  * Definitions to access the CPM Timer registers
52  * See 8xx_immap.h for Internal Memory Map layout,
53  * and commproc.h for CPM Interrupt vectors (aka "IRQ"s)
54  */
55
56 typedef struct tid_8xx_cpmtimer_s {
57   int            cpm_vec;       /* CPM Interrupt Vector for this timer  */
58   ushort        *tgcrp;         /* Pointer to Timer Global Config Reg.  */
59   ushort        *tmrp;          /* Pointer to Timer Mode Register       */
60   ushort        *trrp;          /* Pointer to Timer Reference Register  */
61   ushort        *tcrp;          /* Pointer to Timer Capture Register    */
62   ushort        *tcnp;          /* Pointer to Timer Counter Register    */
63   ushort        *terp;          /* Pointer to Timer Event Register      */
64 } tid_8xx_cpmtimer_t;
65
66 #ifndef CLOCKRATE
67 #  define CLOCKRATE 64
68 #endif
69
70 #define CPMT_CLOCK_DIV          16
71 #define CPMT_MAX_PRESCALER      256
72 #define CPMT_MAX_REFERENCE      65535   /* max. unsigned short */
73
74 #define CPMT_MAX_TICKS          (CPMT_MAX_REFERENCE * CPMT_MAX_PRESCALER)
75 #define CPMT_MAX_TICKS_WITH_DIV (CPMT_MAX_REFERENCE * CPMT_MAX_PRESCALER * CPMT_CLOCK_DIV)
76 #define CPMT_MAX_INTERVAL       (CPMT_MAX_TICKS_WITH_DIV / CLOCKRATE)
77
78 /* For now: always use max. prescaler value */
79 #define CPMT_PRESCALER          (CPMT_MAX_PRESCALER)
80
81 /* CPM Timer Event Register Bits */
82 #define CPMT_EVENT_CAP          0x0001  /* Capture Event                */
83 #define CPMT_EVENT_REF          0x0002  /* Reference Counter Event      */
84
85 /* CPM Timer Global Config Register */
86 #define CPMT_GCR_RST            0x0001  /* Reset  Timer                 */
87 #define CPMT_GCR_STP            0x0002  /* Stop   Timer                 */
88 #define CPMT_GCR_FRZ            0x0004  /* Freeze Timer                 */
89 #define CPMT_GCR_GM_CAS         0x0008  /* Gate Mode / Cascade Timers   */
90 #define CPMT_GCR_MASK           (CPMT_GCR_RST|CPMT_GCR_STP|CPMT_GCR_FRZ|CPMT_GCR_GM_CAS)
91
92 /* CPM Timer Mode register */
93 #define CPMT_MR_GE              0x0001  /* Gate Enable                  */
94 #define CPMT_MR_ICLK_CASC       0x0000  /* Clock internally cascaded    */
95 #define CPMT_MR_ICLK_CLK        0x0002  /* Clock = system clock         */
96 #define CPMT_MR_ICLK_CLKDIV     0x0004  /* Clock = system clock / 16    */
97 #define CPMT_MR_ICLK_TIN        0x0006  /* Clock = TINx signal          */
98 #define CPMT_MR_FRR             0x0008  /* Free Run / Restart           */
99 #define CPMT_MR_ORI             0x0010  /* Out. Reference Interrupt En. */
100 #define CPMT_MR_OM              0x0020  /* Output Mode                  */
101 #define CPMT_MR_CE_DIS          0x0000  /* Capture/Interrupt disabled   */
102 #define CPMT_MR_CE_RISE         0x0040  /* Capt./Interr. on rising  TIN */
103 #define CPMT_MR_CE_FALL         0x0080  /* Capt./Interr. on falling TIN */
104 #define CPMT_MR_CE_ANY          0x00C0  /* Capt./Interr. on any TIN edge*/
105
106
107
108 /*
109  * which CPM timer to use - index starts at 0 (= timer 1)
110  */
111 #define TID_TIMER_ID    0       /* use CPM timer 1              */
112
113 void setPeriod (tid_8xx_cpmtimer_t *hwp, ulong interval);
114
115 static char *usage = "\n[q, b, e, ?] ";
116
117 int timer (int argc, char *argv[])
118 {
119         DECLARE_GLOBAL_DATA_PTR;
120
121         cpmtimer8xx_t *cpmtimerp;       /* Pointer to the CPM Timer structure   */
122         tid_8xx_cpmtimer_t hw;
123         tid_8xx_cpmtimer_t *hwp = &hw;
124         int c;
125
126         /* Pointer to CPM Timer structure */
127         cpmtimerp = &((immap_t *) gd->bd->bi_immr_base)->im_cpmtimer;
128
129         mon_printf ("TIMERS=0x%x\n", (unsigned) cpmtimerp);
130
131         /* Initialize pointers depending on which timer we use */
132         switch (TID_TIMER_ID) {
133         case 0:
134                 hwp->tmrp = &(cpmtimerp->cpmt_tmr1);
135                 hwp->trrp = &(cpmtimerp->cpmt_trr1);
136                 hwp->tcrp = &(cpmtimerp->cpmt_tcr1);
137                 hwp->tcnp = &(cpmtimerp->cpmt_tcn1);
138                 hwp->terp = &(cpmtimerp->cpmt_ter1);
139                 hwp->cpm_vec = CPMVEC_TIMER1;
140                 break;
141         case 1:
142                 hwp->tmrp = &(cpmtimerp->cpmt_tmr2);
143                 hwp->trrp = &(cpmtimerp->cpmt_trr2);
144                 hwp->tcrp = &(cpmtimerp->cpmt_tcr2);
145                 hwp->tcnp = &(cpmtimerp->cpmt_tcn2);
146                 hwp->terp = &(cpmtimerp->cpmt_ter2);
147                 hwp->cpm_vec = CPMVEC_TIMER2;
148                 break;
149         case 2:
150                 hwp->tmrp = &(cpmtimerp->cpmt_tmr3);
151                 hwp->trrp = &(cpmtimerp->cpmt_trr3);
152                 hwp->tcrp = &(cpmtimerp->cpmt_tcr3);
153                 hwp->tcnp = &(cpmtimerp->cpmt_tcn3);
154                 hwp->terp = &(cpmtimerp->cpmt_ter3);
155                 hwp->cpm_vec = CPMVEC_TIMER3;
156                 break;
157         case 3:
158                 hwp->tmrp = &(cpmtimerp->cpmt_tmr4);
159                 hwp->trrp = &(cpmtimerp->cpmt_trr4);
160                 hwp->tcrp = &(cpmtimerp->cpmt_tcr4);
161                 hwp->tcnp = &(cpmtimerp->cpmt_tcn4);
162                 hwp->terp = &(cpmtimerp->cpmt_ter4);
163                 hwp->cpm_vec = CPMVEC_TIMER4;
164                 break;
165         }
166
167         hwp->tgcrp = &cpmtimerp->cpmt_tgcr;
168
169         mon_printf ("Using timer %d\n"
170                         "tgcr @ 0x%x, tmr @ 0x%x, trr @ 0x%x,"
171                         " tcr @ 0x%x, tcn @ 0x%x, ter @ 0x%x\n",
172                         TID_TIMER_ID + 1,
173                         (unsigned) hwp->tgcrp,
174                         (unsigned) hwp->tmrp,
175                         (unsigned) hwp->trrp,
176                         (unsigned) hwp->tcrp,
177                         (unsigned) hwp->tcnp,
178                         (unsigned) hwp->terp
179                         );
180
181         /* reset timer    */
182         *hwp->tgcrp &= ~(CPMT_GCR_MASK << TID_TIMER_ID);
183
184         /* clear all events */
185         *hwp->terp = (CPMT_EVENT_CAP | CPMT_EVENT_REF);
186
187         mon_printf (usage);
188         while ((c = mon_getc()) != 'q') {
189             if (c == 'b') {
190
191                 setPeriod (hwp, TIMER_PERIOD);  /* Set period and start ticking */
192
193                 /* Install interrupt handler (enable timer in CIMR) */
194                 mon_install_hdlr (hwp->cpm_vec, timer_handler, hwp);
195
196                 mon_printf ("Enabling timer\n");
197
198                 /* enable timer */
199                 *hwp->tgcrp |= (CPMT_GCR_RST << TID_TIMER_ID);
200
201 #ifdef  DEBUG
202                 mon_printf ("tgcr=0x%x, tmr=0x%x, trr=0x%x,"
203                         " tcr=0x%x, tcn=0x%x, ter=0x%x\n",
204                                 *hwp->tgcrp, *hwp->tmrp, *hwp->trrp,
205                                 *hwp->tcrp,  *hwp->tcnp, *hwp->terp
206                                 );
207 #endif
208             } else if (c == 'e') {
209
210                 mon_printf ("Stopping timer\n");
211
212                 *hwp->tgcrp &= ~(CPMT_GCR_MASK << TID_TIMER_ID);
213
214 #ifdef  DEBUG
215                 mon_printf ("tgcr=0x%x, tmr=0x%x, trr=0x%x,"
216                         " tcr=0x%x, tcn=0x%x, ter=0x%x\n",
217                                 *hwp->tgcrp, *hwp->tmrp, *hwp->trrp,
218                                 *hwp->tcrp,  *hwp->tcnp, *hwp->terp
219                         );
220 #endif
221                 /* Uninstall interrupt handler */
222                 mon_free_hdlr (hwp->cpm_vec);
223
224             } else if (c == '?') {
225 #ifdef  DEBUG
226                 cpic8xx_t *cpm_icp = &((immap_t *) gd->bd->bi_immr_base)->im_cpic;
227                 sysconf8xx_t *siup = &((immap_t *) gd->bd->bi_immr_base)->im_siu_conf;
228 #endif
229
230                 mon_printf ("\ntgcr=0x%x, tmr=0x%x, trr=0x%x,"
231                         " tcr=0x%x, tcn=0x%x, ter=0x%x\n",
232                                 *hwp->tgcrp, *hwp->tmrp, *hwp->trrp,
233                                 *hwp->tcrp,  *hwp->tcnp, *hwp->terp
234                         );
235 #ifdef  DEBUG
236                 mon_printf ("SIUMCR=0x%08lx, SYPCR=0x%08lx,"
237                         " SIMASK=0x%08lx, SIPEND=0x%08lx\n",
238                                 siup->sc_siumcr,
239                                 siup->sc_sypcr,
240                                 siup->sc_simask,
241                                 siup->sc_sipend
242                         );
243
244                 mon_printf ("CIMR=0x%08lx, CICR=0x%08lx, CIPR=0x%08lx\n",
245                         cpm_icp->cpic_cimr,
246                         cpm_icp->cpic_cicr,
247                         cpm_icp->cpic_cipr
248                         );
249 #endif
250             } else {
251                 mon_printf ("\nEnter: q - quit, b - start timer, e - stop timer, ? - get status\n");
252             }
253             mon_printf (usage);
254         }
255         return (0);
256 }
257
258
259 /* Set period in microseconds and start.
260  * Truncate to maximum period if more than this is requested - but warn about it.
261  */
262
263 void setPeriod (tid_8xx_cpmtimer_t *hwp, ulong interval)
264 {
265         unsigned short prescaler;
266         unsigned long ticks;
267
268         mon_printf ("Set interval %ld us\n", interval);
269
270         /* Warn if requesting longer period than possible */
271         if (interval > CPMT_MAX_INTERVAL) {
272                 mon_printf ("Truncate interval %ld to maximum (%d)\n",
273                                 interval, CPMT_MAX_INTERVAL);
274                 interval = CPMT_MAX_INTERVAL;
275         }
276         /*
277          * Check if we want to use clock divider:
278          * Since the reference counter can be incremented only in integer steps,
279          * we try to keep it as big as possible to allow the resulting period to be
280          * as precise as possible.
281          */
282         /* prescaler, enable interrupt, restart after ref count is reached */
283         prescaler = (ushort) ((CPMT_PRESCALER - 1) << 8) |
284                         CPMT_MR_ORI |
285                         CPMT_MR_FRR;
286
287         ticks = ((ulong) CLOCKRATE * interval);
288
289         if (ticks > CPMT_MAX_TICKS) {
290                 ticks /= CPMT_CLOCK_DIV;
291                 prescaler |= CPMT_MR_ICLK_CLKDIV;       /* use system clock divided by 16 */
292         } else {
293                 prescaler |= CPMT_MR_ICLK_CLK;  /* use system clock without divider */
294         }
295
296 #ifdef  DEBUG
297         mon_printf ("clock/%d, prescale factor %d, reference %ld, ticks %ld\n",
298                         (ticks > CPMT_MAX_TICKS) ? CPMT_CLOCK_DIV : 1,
299                         CPMT_PRESCALER,
300                         (ticks / CPMT_PRESCALER),
301                         ticks
302                         );
303 #endif
304
305         /* set prescaler register */
306         *hwp->tmrp = prescaler;
307
308         /* clear timer counter */
309         *hwp->tcnp = 0;
310
311         /* set reference register */
312         *hwp->trrp = (unsigned short) (ticks / CPMT_PRESCALER);
313
314 #ifdef  DEBUG
315         mon_printf ("tgcr=0x%x, tmr=0x%x, trr=0x%x,"
316                 " tcr=0x%x, tcn=0x%x, ter=0x%x\n",
317                         *hwp->tgcrp, *hwp->tmrp, *hwp->trrp,
318                         *hwp->tcrp,  *hwp->tcnp, *hwp->terp
319                 );
320 #endif
321 }
322
323 /*
324  * Handler for CPMVEC_TIMER1 interrupt
325  */
326 static
327 void timer_handler (void *arg)
328 {
329         tid_8xx_cpmtimer_t *hwp = (tid_8xx_cpmtimer_t *)arg;
330
331         /* printf ("** TER1=%04x ** ", *hwp->terp); */
332
333         /* just for demonstration */
334         mon_printf (".");
335
336         /* clear all possible events: Ref. and Cap. */
337         *hwp->terp = (CPMT_EVENT_CAP | CPMT_EVENT_REF);
338 }