source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/targets/TARGET_RENESAS/TARGET_RZ_A1H/us_ticker.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 4.2 KB
Line 
1/* mbed Microcontroller Library
2 * Copyright (c) 2006-2013 ARM Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include <stddef.h>
17#include "us_ticker_api.h"
18#include "PeripheralNames.h"
19#include "ostm_iodefine.h"
20
21#include "RZ_A1_Init.h"
22#include "MBRZA1H.h"
23#include "vfp_neon_push_pop.h"
24
25#define US_TICKER_TIMER_IRQn (OSTMI1TINT_IRQn)
26#define CPG_STBCR5_BIT_MSTP50 (0x01u) /* OSTM1 */
27
28#define US_TICKER_CLOCK_US_DEV (1000000)
29
30int us_ticker_inited = 0;
31static double count_clock = 0;
32static uint32_t last_read = 0;
33static uint32_t wrap_arround = 0;
34static uint64_t ticker_us_last64 = 0;
35static uint64_t set_cmp_val64 = 0;
36static uint64_t timestamp64 = 0;
37
38void us_ticker_interrupt(void) {
39 us_ticker_irq_handler();
40}
41
42void us_ticker_init(void) {
43 if (us_ticker_inited) return;
44 us_ticker_inited = 1;
45
46 /* set Counter Clock(us) */
47 if (false == RZ_A1_IsClockMode0()) {
48 count_clock = ((double)CM1_RENESAS_RZ_A1_P0_CLK / (double)US_TICKER_CLOCK_US_DEV);
49 } else {
50 count_clock = ((double)CM0_RENESAS_RZ_A1_P0_CLK / (double)US_TICKER_CLOCK_US_DEV);
51 }
52
53 /* Power Control for Peripherals */
54 CPGSTBCR5 &= ~(CPG_STBCR5_BIT_MSTP50); /* enable OSTM1 clock */
55
56 // timer settings
57 OSTM1TT = 0x01; /* Stop the counter and clears the OSTM1TE bit. */
58 OSTM1CTL = 0x02; /* Free running timer mode. Interrupt disabled when star counter */
59
60 OSTM1TS = 0x1; /* Start the counter and sets the OSTM0TE bit. */
61
62 // INTC settings
63 InterruptHandlerRegister(US_TICKER_TIMER_IRQn, (void (*)(uint32_t))us_ticker_interrupt);
64 GIC_SetPriority(US_TICKER_TIMER_IRQn, 5);
65 GIC_EnableIRQ(US_TICKER_TIMER_IRQn);
66}
67
68static uint64_t ticker_read_counter64(void) {
69 uint32_t cnt_val;
70 uint64_t cnt_val64;
71
72 if (!us_ticker_inited)
73 us_ticker_init();
74
75 /* read counter */
76 cnt_val = OSTM1CNT;
77 if (last_read > cnt_val) {
78 wrap_arround++;
79 }
80 last_read = cnt_val;
81 cnt_val64 = ((uint64_t)wrap_arround << 32) + cnt_val;
82
83 return cnt_val64;
84}
85
86static void us_ticker_read_last(void) {
87 uint64_t cnt_val64;
88
89 cnt_val64 = ticker_read_counter64();
90
91 ticker_us_last64 = (cnt_val64 / count_clock);
92}
93
94uint32_t us_ticker_read() {
95 int check_irq_masked;
96
97#if defined ( __ICCARM__)
98 check_irq_masked = __disable_irq_iar();
99#else
100 check_irq_masked = __disable_irq();
101#endif /* __ICCARM__ */
102
103 __vfp_neon_push();
104 us_ticker_read_last();
105 __vfp_neon_pop();
106
107 if (!check_irq_masked) {
108 __enable_irq();
109 }
110
111 /* clock to us */
112 return (uint32_t)ticker_us_last64;
113}
114
115static void us_ticker_calc_compare_match(void) {
116 set_cmp_val64 = timestamp64 * count_clock;
117}
118
119void us_ticker_set_interrupt(timestamp_t timestamp) {
120 // set match value
121 volatile uint32_t set_cmp_val;
122 uint64_t count_val_64;
123
124 /* calc compare mach timestamp */
125 timestamp64 = (ticker_us_last64 & 0xFFFFFFFF00000000) + timestamp;
126 if (timestamp < (ticker_us_last64 & 0x00000000FFFFFFFF)) {
127 /* This event is wrap arround */
128 timestamp64 += 0x100000000;
129 }
130
131 /* calc compare mach timestamp */
132 __vfp_neon_push();
133 us_ticker_calc_compare_match();
134 __vfp_neon_pop();
135
136 set_cmp_val = (uint32_t)(set_cmp_val64 & 0x00000000FFFFFFFF);
137 count_val_64 = ticker_read_counter64();
138 if (set_cmp_val64 <= (count_val_64 + 500)) {
139 GIC_SetPendingIRQ(US_TICKER_TIMER_IRQn);
140 GIC_EnableIRQ(US_TICKER_TIMER_IRQn);
141 return;
142 }
143 OSTM1CMP = set_cmp_val;
144 GIC_EnableIRQ(US_TICKER_TIMER_IRQn);
145}
146
147void us_ticker_disable_interrupt(void) {
148 GIC_DisableIRQ(US_TICKER_TIMER_IRQn);
149}
150
151void us_ticker_clear_interrupt(void) {
152 GIC_ClearPendingIRQ(US_TICKER_TIMER_IRQn);
153}
Note: See TracBrowser for help on using the repository browser.