summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gba/clock/clockdrv.c
blob: 82678f3480b98a94885af02c68402a824edd29fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/**
 *  @file clockdrv.c
 *
 *  Game Boy Advance Clock driver.
 */
/*
 *  RTEMS GBA BSP
 *
 *  Copyright (c) 2004  Markku Puro <markku.puro@kopteri.net>
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#include <rtems.h>
#include <bsp.h>
#include <irq.h>
#include <gba.h>


/*-------------------------------------------------------------------------+
| Clock isr variables
+--------------------------------------------------------------------------*/
rtems_isr Clock_isr(rtems_vector_number vector);
static void clock_isr_on(const rtems_irq_connect_data *unused);
static void clock_isr_off(const rtems_irq_connect_data *unused);
static int clock_isr_is_on(const rtems_irq_connect_data *irq);

rtems_irq_connect_data clock_isr_data = {BSP_IRQ_TIMER3,
                                        (rtems_irq_hdl)Clock_isr,
					 NULL,
                                         clock_isr_on,
                                         clock_isr_off,
                                         clock_isr_is_on};

#define CLOCK_VECTOR  0

#define Clock_driver_support_at_tick()

#define Clock_driver_support_install_isr( _new, _old )  \
  do {                                                  \
        BSP_install_rtems_irq_handler(&clock_isr_data); \
	_old = NULL;					\
     } while(0)

#define Clock_driver_support_shutdown_hardware()        \
  do {                                                  \
  	BSP_remove_rtems_irq_handler(&clock_isr_data);  \
     } while (0)


/*-------------------------------------------------------------------------+
| Calculate Tick Times
|    1 / 16.78Mhz  => 59.595 ns
|   64 / 16.78Mhz  =>  3.814 us
|  256 / 16.78Mhz  => 15.256 us
| 1024 / 16.78Mhz  => 61.025 us
+--------------------------------------------------------------------------*/
#define  __TimTickTime_us   ((1000000L/__ClockFrequency)*__TimPreScaler)
#define  __TimTickTime_ns   ((1000000000L/__ClockFrequency)*__TimPreScaler)

#if (__TimPreScaler==1)
 #define GBA_TMCNT_PS    0x0000
#elif (__TimPreScaler==64)
 #define GBA_TMCNT_PS    0x0001
#elif (__TimPreScaler==256)
 #define GBA_TMCNT_PS    0x0002
#elif (__TimPreScaler==1024)
 #define GBA_TMCNT_PS    0x0003
#else
 #define GBA_TMCNT_PS    0x0003
#endif

/**
 *  @brief This function set up the clock hardware
 *
 *  @param  None
 *  @return None
 */
void Clock_driver_support_initialize_hardware(void)
{
  int tmreload = ((rtems_configuration_get_microseconds_per_tick()*1000)/__TimTickTime_ns);

  if (tmreload>0xFFFF) tmreload = 0xFFFF;
  GBA_REG_TM3CNT = (GBA_TMCNT_PS);
  GBA_REG_TM3D   = (0x0000-tmreload);
  GBA_REG_TM3CNT = (0x00c0|GBA_TMCNT_PS);
}

/**
 *  @brief This function is empty
 *
 *  @param  unused an unused parameter
 *  @return None
 */
static void clock_isr_on(const rtems_irq_connect_data *unused)
{
    return;
}

/**
 *  @brief This function is empty
 *
 *  @param  unused an unused parameter
 *  @return None
 */
static void clock_isr_off(const rtems_irq_connect_data *unused)
{
    return;
}

/**
 *  @brief This function is empty
 *
 *  @param  irq unused
 *  @return constant 1
 */
static int clock_isr_is_on(const rtems_irq_connect_data *irq)
{
    return 1;
}


#include "../../../shared/clockdrv_shell.h"