cvmx-tim.c revision 256281
1270096Strasz/***********************license start***************
2270096Strasz * Copyright (c) 2003-2010  Cavium Inc. (support@cavium.com). All rights
3270096Strasz * reserved.
4270096Strasz *
5270096Strasz *
6270096Strasz * Redistribution and use in source and binary forms, with or without
7270096Strasz * modification, are permitted provided that the following conditions are
8270096Strasz * met:
9270096Strasz *
10270096Strasz *   * Redistributions of source code must retain the above copyright
11270096Strasz *     notice, this list of conditions and the following disclaimer.
12270096Strasz *
13270096Strasz *   * Redistributions in binary form must reproduce the above
14270096Strasz *     copyright notice, this list of conditions and the following
15270096Strasz *     disclaimer in the documentation and/or other materials provided
16270096Strasz *     with the distribution.
17270096Strasz
18270096Strasz *   * Neither the name of Cavium Inc. nor the names of
19270096Strasz *     its contributors may be used to endorse or promote products
20270096Strasz *     derived from this software without specific prior written
21270096Strasz *     permission.
22270096Strasz
23270096Strasz * This Software, including technical data, may be subject to U.S. export  control
24270096Strasz * laws, including the U.S. Export Administration Act and its  associated
25270096Strasz * regulations, and may be subject to export or import  regulations in other
26270096Strasz * countries.
27270096Strasz
28270096Strasz * TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
29270096Strasz * AND WITH ALL FAULTS AND CAVIUM INC. MAKES NO PROMISES, REPRESENTATIONS OR
30270096Strasz * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
31270096Strasz * THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR
32270096Strasz * DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM
33270096Strasz * SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE,
34270096Strasz * MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF
35270096Strasz * VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR
36270096Strasz * CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK ARISING OUT OF USE OR
37270096Strasz * PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
38270096Strasz ***********************license end**************************************/
39270096Strasz
40270096Strasz
41270096Strasz
42270096Strasz
43270096Strasz
44270096Strasz
45270096Strasz
46270096Strasz/**
47270096Strasz * @file
48270096Strasz *
49270096Strasz * Support library for the hardware work queue timers.
50270096Strasz *
51270096Strasz * <hr>$Revision: 70030 $<hr>
52270096Strasz */
53270096Strasz#include "executive-config.h"
54270096Strasz#include "cvmx-config.h"
55270096Strasz#include "cvmx.h"
56270096Strasz#include "cvmx-sysinfo.h"
57270096Strasz#include "cvmx-tim.h"
58270096Strasz#include "cvmx-bootmem.h"
59270096Strasz
60270096Strasz/* CSR typedefs have been moved to cvmx-tim-defs.h */
61270096Strasz
62270096Strasz/**
63270096Strasz * Global structure holding the state of all timers.
64270096Strasz */
65270096StraszCVMX_SHARED cvmx_tim_t cvmx_tim;
66270096Strasz
67270096Strasz
68270096Strasz#ifdef CVMX_ENABLE_TIMER_FUNCTIONS
69270096Strasz/**
70270096Strasz * Setup a timer for use. Must be called before the timer
71270096Strasz * can be used.
72270096Strasz *
73283231Strasz * @param tick      Time between each bucket in microseconds. This must not be
74270096Strasz *                  smaller than 1024/(clock frequency in MHz).
75270096Strasz * @param max_ticks The maximum number of ticks the timer must be able
76270096Strasz *                  to schedule in the future. There are guaranteed to be enough
77270096Strasz *                  timer buckets such that:
78270096Strasz *                  number of buckets >= max_ticks.
79270096Strasz * @return Zero on success. Negative on error. Failures are possible
80270096Strasz *         if the number of buckets needed is too large or memory
81270096Strasz *         allocation fails for creating the buckets.
82270096Strasz */
83279741Straszint cvmx_tim_setup(uint64_t tick, uint64_t max_ticks)
84270096Strasz{
85270096Strasz    uint64_t                timer_id;
86270096Strasz    int                     error = -1;
87270096Strasz    uint64_t                tim_clock_hz = cvmx_clock_get_rate(CVMX_CLOCK_TIM);
88270096Strasz    uint64_t                hw_tick_ns;
89270096Strasz    uint64_t                hw_tick_ns_allowed;
90283239Strasz    uint64_t                tick_ns = 1000 * tick;
91270096Strasz    int                     i;
92279741Strasz    uint32_t                temp;
93279741Strasz    int                     timer_thr = 1024;
94270096Strasz
95270096Strasz    /* for the simulator */
96270096Strasz    if (tim_clock_hz == 0)
97270096Strasz        tim_clock_hz = 800000000;
98270096Strasz
99270096Strasz    if (OCTEON_IS_MODEL(OCTEON_CN68XX))
100270096Strasz    {
101270096Strasz        cvmx_tim_fr_rn_tt_t fr_tt;
102270096Strasz        fr_tt.u64 = cvmx_read_csr(CVMX_TIM_FR_RN_TT);
103270096Strasz        timer_thr = fr_tt.s.fr_rn_tt;
104270096Strasz    }
105270096Strasz
106270096Strasz    hw_tick_ns = timer_thr * 1000000000ull / tim_clock_hz;
107270096Strasz    /*
108270096Strasz     * Double the minimal allowed tick to 2 * HW tick.  tick between
109270096Strasz     * (hw_tick_ns, 2*hw_tick_ns) will set config_ring1.s.interval
110270096Strasz     * to zero, or 1024 cycles. This is not enough time for the timer unit
111270096Strasz     * to fetch the bucket data, Resulting in timer ring error interrupt
112270096Strasz     * be always generated. Avoid such setting in software.
113270096Strasz     */
114270096Strasz    hw_tick_ns_allowed = hw_tick_ns * 2;
115
116    /* Make sure the timers are stopped */
117    cvmx_tim_stop();
118
119    /* Reinitialize out timer state */
120    memset(&cvmx_tim, 0, sizeof(cvmx_tim));
121
122    if (tick_ns < hw_tick_ns_allowed)
123    {
124        cvmx_dprintf("ERROR: cvmx_tim_setup: Requested tick %lu(ns) is smaller than"
125                " the minimal ticks allowed by hardware %lu(ns)\n",
126                tick_ns, hw_tick_ns_allowed);
127        return error;
128    }
129    else if (tick_ns > 4194304 * hw_tick_ns)
130    {
131        cvmx_dprintf("ERROR: cvmx_tim_setup: Requested tick %lu(ns) is greater than"
132                " the max ticks %lu(ns)\n", tick_ns, hw_tick_ns);
133        return error;
134    }
135
136    for (i=2; i<20; i++)
137    {
138        if (tick_ns < (hw_tick_ns << i))
139	    break;
140    }
141
142    cvmx_tim.max_ticks = (uint32_t)max_ticks;
143    cvmx_tim.bucket_shift = (uint32_t)(i - 1 + 10);
144    cvmx_tim.tick_cycles = tick * tim_clock_hz / 1000000;
145
146    temp = (max_ticks * cvmx_tim.tick_cycles) >> cvmx_tim.bucket_shift;
147
148    /* round up to nearest power of 2 */
149    temp -= 1;
150    temp = temp | (temp >> 1);
151    temp = temp | (temp >> 2);
152    temp = temp | (temp >> 4);
153    temp = temp | (temp >> 8);
154    temp = temp | (temp >> 16);
155    cvmx_tim.num_buckets = temp + 1;
156
157    /* ensure input params fall into permitted ranges */
158    if ((cvmx_tim.num_buckets < 3) || cvmx_tim.num_buckets > 1048576)
159      {
160	cvmx_dprintf("ERROR: cvmx_tim_setup: num_buckets out of range\n");
161	return error;
162      }
163
164    /* Allocate the timer buckets from hardware addressable memory */
165    cvmx_tim.bucket = cvmx_bootmem_alloc(CVMX_TIM_NUM_TIMERS * cvmx_tim.num_buckets
166					 * sizeof(cvmx_tim_bucket_entry_t), CVMX_CACHE_LINE_SIZE);
167    if (cvmx_tim.bucket == NULL)
168      {
169	cvmx_dprintf("ERROR: cvmx_tim_setup: allocation problem\n");
170	return error;
171      }
172    memset(cvmx_tim.bucket, 0, CVMX_TIM_NUM_TIMERS * cvmx_tim.num_buckets * sizeof(cvmx_tim_bucket_entry_t));
173
174    cvmx_tim.start_time = 0;
175
176    /* Loop through all timers */
177    for (timer_id = 0; timer_id<CVMX_TIM_NUM_TIMERS; timer_id++)
178    {
179        int interval = ((1 << (cvmx_tim.bucket_shift - 10)) - 1);
180        cvmx_tim_bucket_entry_t *bucket = cvmx_tim.bucket + timer_id * cvmx_tim.num_buckets;
181        if (OCTEON_IS_MODEL(OCTEON_CN68XX))
182        {
183            cvmx_tim_ringx_ctl0_t     ring_ctl0;
184            cvmx_tim_ringx_ctl1_t     ring_ctl1;
185            cvmx_tim_ringx_ctl2_t     ring_ctl2;
186            cvmx_tim_reg_flags_t      reg_flags;
187
188            /* Tell the hardware where about the bucket array */
189            ring_ctl2.u64 = 0;
190            ring_ctl2.s.csize = CVMX_FPA_TIMER_POOL_SIZE / 8;
191            ring_ctl2.s.base = cvmx_ptr_to_phys(bucket) >> 5;
192            cvmx_write_csr(CVMX_TIM_RINGX_CTL2(timer_id), ring_ctl2.u64);
193
194            reg_flags.u64 = cvmx_read_csr(CVMX_TIM_REG_FLAGS);
195            ring_ctl1.u64 = 0;
196            ring_ctl1.s.cpool = ((reg_flags.s.ena_dfb == 0) ? CVMX_FPA_TIMER_POOL : 0);
197            ring_ctl1.s.bsize = cvmx_tim.num_buckets - 1;
198            cvmx_write_csr(CVMX_TIM_RINGX_CTL1(timer_id), ring_ctl1.u64);
199
200            ring_ctl0.u64 = 0;
201            ring_ctl0.s.timercount = interval + timer_id * interval / CVMX_TIM_NUM_TIMERS;
202            cvmx_write_csr(CVMX_TIM_RINGX_CTL0(timer_id), ring_ctl0.u64);
203
204            ring_ctl0.u64 = cvmx_read_csr(CVMX_TIM_RINGX_CTL0(timer_id));
205            ring_ctl0.s.ena = 1;
206            ring_ctl0.s.interval = interval;
207            cvmx_write_csr(CVMX_TIM_RINGX_CTL0(timer_id), ring_ctl0.u64);
208            ring_ctl0.u64 = cvmx_read_csr(CVMX_TIM_RINGX_CTL0(timer_id));
209        }
210        else
211        {
212            cvmx_tim_mem_ring0_t    config_ring0;
213            cvmx_tim_mem_ring1_t    config_ring1;
214            /* Tell the hardware where about the bucket array */
215            config_ring0.u64 = 0;
216            config_ring0.s.first_bucket = cvmx_ptr_to_phys(bucket) >> 5;
217            config_ring0.s.num_buckets = cvmx_tim.num_buckets - 1;
218            config_ring0.s.ring = timer_id;
219            cvmx_write_csr(CVMX_TIM_MEM_RING0, config_ring0.u64);
220
221            /* Tell the hardware the size of each chunk block in pointers */
222            config_ring1.u64 = 0;
223            config_ring1.s.enable = 1;
224            config_ring1.s.pool = CVMX_FPA_TIMER_POOL;
225            config_ring1.s.words_per_chunk = CVMX_FPA_TIMER_POOL_SIZE / 8;
226            config_ring1.s.interval = interval;
227            config_ring1.s.ring = timer_id;
228            cvmx_write_csr(CVMX_TIM_MEM_RING1, config_ring1.u64);
229        }
230    }
231
232    return 0;
233}
234#endif
235
236/**
237 * Start the hardware timer processing
238 */
239void cvmx_tim_start(void)
240{
241    cvmx_tim_control_t control;
242
243    control.u64 = cvmx_read_csr(CVMX_TIM_REG_FLAGS);
244    control.s.enable_dwb = 1;
245    control.s.enable_timers = 1;
246
247    /* Remember when we started the timers */
248    cvmx_tim.start_time = cvmx_clock_get_count(CVMX_CLOCK_TIM);
249    cvmx_write_csr(CVMX_TIM_REG_FLAGS, control.u64);
250}
251
252
253/**
254 * Stop the hardware timer processing. Timers stay configured.
255 */
256void cvmx_tim_stop(void)
257{
258    cvmx_tim_control_t control;
259    control.u64 = cvmx_read_csr(CVMX_TIM_REG_FLAGS);
260    control.s.enable_dwb = 0;
261    control.s.enable_timers = 0;
262    cvmx_write_csr(CVMX_TIM_REG_FLAGS, control.u64);
263}
264
265
266/**
267 * Stop the timer. After this the timer must be setup again
268 * before use.
269 */
270#ifdef CVMX_ENABLE_TIMER_FUNCTIONS
271void cvmx_tim_shutdown(void)
272{
273    uint32_t                bucket;
274    uint64_t                timer_id;
275    uint64_t                entries_per_chunk;
276
277    /* Make sure the timers are stopped */
278    cvmx_tim_stop();
279
280    entries_per_chunk = CVMX_FPA_TIMER_POOL_SIZE/8 - 1;
281
282    /* Now walk all buckets freeing the chunks */
283    for (timer_id = 0; timer_id<CVMX_TIM_NUM_TIMERS; timer_id++)
284    {
285        for (bucket=0; bucket<cvmx_tim.num_buckets; bucket++)
286        {
287            uint64_t chunk_addr;
288            uint64_t next_chunk_addr;
289            cvmx_tim_bucket_entry_t *bucket_ptr = cvmx_tim.bucket + timer_id * cvmx_tim.num_buckets + bucket;
290            CVMX_PREFETCH128(CAST64(bucket_ptr));  /* prefetch the next cacheline for future buckets */
291
292            /* Each bucket contains a list of chunks */
293            chunk_addr = bucket_ptr->first_chunk_addr;
294            while (bucket_ptr->num_entries)
295            {
296#ifdef DEBUG
297                cvmx_dprintf("Freeing Timer Chunk 0x%llx\n", CAST64(chunk_addr));
298#endif
299                /* Read next chunk pointer from end of the current chunk */
300                next_chunk_addr = cvmx_read_csr(CVMX_ADD_SEG(CVMX_MIPS_SPACE_XKPHYS, chunk_addr + CVMX_FPA_TIMER_POOL_SIZE - 8));
301
302                cvmx_fpa_free(cvmx_phys_to_ptr(chunk_addr), CVMX_FPA_TIMER_POOL, 0);
303                chunk_addr = next_chunk_addr;
304                if (bucket_ptr->num_entries > entries_per_chunk)
305                    bucket_ptr->num_entries -= entries_per_chunk;
306                else
307                    bucket_ptr->num_entries = 0;
308            }
309        }
310    }
311}
312
313#endif
314