OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [io/] [adc/] [current/] [tests/] [adc2.c] - Blame information for rev 825

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
//==========================================================================
2
//
3
//        adc2.c
4
//
5
//        ADC performance test
6
//
7
//==========================================================================
8
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
9
// -------------------------------------------                              
10
// This file is part of eCos, the Embedded Configurable Operating System.   
11
// Copyright (C) 2009 Free Software Foundation, Inc.                        
12
//
13
// eCos is free software; you can redistribute it and/or modify it under    
14
// the terms of the GNU General Public License as published by the Free     
15
// Software Foundation; either version 2 or (at your option) any later      
16
// version.                                                                 
17
//
18
// eCos is distributed in the hope that it will be useful, but WITHOUT      
19
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
20
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
21
// for more details.                                                        
22
//
23
// You should have received a copy of the GNU General Public License        
24
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
25
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
26
//
27
// As a special exception, if other files instantiate templates or use      
28
// macros or inline functions from this file, or you compile this file      
29
// and link it with other works to produce a work based on this file,       
30
// this file does not by itself cause the resulting work to be covered by   
31
// the GNU General Public License. However the source code for this file    
32
// must still be made available in accordance with section (3) of the GNU   
33
// General Public License v2.                                               
34
//
35
// This exception does not invalidate any other reasons why a work based    
36
// on this file might be covered by the GNU General Public License.         
37
// -------------------------------------------                              
38
// ####ECOSGPLCOPYRIGHTEND####                                              
39
//==========================================================================
40
//#####DESCRIPTIONBEGIN####
41
//
42
// Author(s):     Simon Kallweit <simon.kallweit@intefo.ch>
43
// Contributors:
44
// Date:          2009-03-02
45
// Description:   ADC performance test
46
//####DESCRIPTIONEND####
47
 
48
#include <pkgconf/system.h>
49
 
50
#include <cyg/infra/testcase.h>
51
#include <cyg/infra/cyg_ass.h>
52
#include <cyg/infra/diag.h>
53
#include <cyg/hal/hal_diag.h>
54
#include <cyg/hal/hal_arch.h>
55
 
56
// Package requirements
57
#if defined(CYGPKG_IO_ADC) && defined(CYGPKG_KERNEL)
58
 
59
#include <pkgconf/kernel.h>
60
#include <cyg/io/io.h>
61
#include <cyg/io/devtab.h>
62
#include <cyg/io/adc.h>
63
 
64
// Package option requirements
65
#if defined(CYGFUN_KERNEL_API_C)
66
 
67
#include <cyg/kernel/kapi.h>
68
 
69
#define MAX_CHANNELS                64  // Max channels to test
70
 
71
#define TICKS_PER_SECOND            \
72
    (1000000000 / (CYGNUM_HAL_RTC_NUMERATOR / CYGNUM_HAL_RTC_DENOMINATOR))
73
 
74
// ADC test channel
75
typedef struct test_channel {
76
    const char *dev;            // ADC channel device name
77
    cyg_io_handle_t handle;     // ADC channel handle
78
    cyg_uint32 count;           // Sample counter
79
} test_channel;
80
 
81
// ADC test channels
82
static test_channel test_channels[MAX_CHANNELS];
83
 
84
// Thread data
85
cyg_handle_t thread_handle;
86
cyg_thread thread_data;
87
cyg_uint8 thread_stack[CYGNUM_HAL_STACK_SIZE_TYPICAL];
88
 
89
static void
90
adc_thread(cyg_addrword_t data)
91
{
92
    cyg_uint32 num = 0;
93
    cyg_devtab_entry_t *t;
94
    test_channel *chan;
95
    cyg_adc_sample_t sample;
96
    Cyg_ErrNo res;
97
    cyg_uint32 cfg_data;
98
    cyg_uint32 len;
99
    cyg_uint32 start_time;
100
    cyg_uint32 end_time;
101
    int i;
102
    cyg_uint8 seconds = 0;
103
    float final_seconds;
104
    cyg_uint32 samples_expected;
105
 
106
    CYG_TEST_INFO("ADC performance test");
107
 
108
    // This test reads samples from all enabled ADC channels. Each second, the
109
    // number of already acquired samples is printed. After 10 seconds, all ADC
110
    // channels are stpped and each ADC buffer is read until empty. If the
111
    // number of acquired samples is much smaller than the number of expected
112
    // samples, the rate is too high.
113
 
114
    CYG_TEST_INFO("Opening available ADC channels");
115
 
116
    for (t = &__DEVTAB__[0]; t != &__DEVTAB_END__; t++) {
117
        if (t->handlers != &cyg_io_adc_devio)
118
            continue;
119
        chan = &test_channels[num++];
120
        chan->dev = t->name;
121
        if (cyg_io_lookup(chan->dev, &chan->handle) != ENOERR)
122
            CYG_TEST_FAIL_FINISH("Cannot open ADC channel");
123
    }
124
 
125
    diag_printf("Opened %d ADC channels\n", num);
126
 
127
    CYG_TEST_INFO("Preparing ADC channels for test");
128
 
129
    for (i = 0; i < num; i++) {
130
        chan = &test_channels[i];
131
 
132
        // Disable channel
133
        res = cyg_io_set_config(chan->handle, CYG_IO_SET_CONFIG_ADC_DISABLE, 0, 0);
134
        if (res != ENOERR)
135
            CYG_TEST_FAIL_FINISH("Failed to disable ADC channel");
136
 
137
        // Make channel non-blocking
138
        cfg_data = 0;
139
        len = sizeof(cfg_data);
140
        res = cyg_io_set_config(chan->handle,
141
                                CYG_IO_SET_CONFIG_READ_BLOCKING,
142
                                &cfg_data, &len);
143
        if (res != ENOERR)
144
            CYG_TEST_FAIL_FINISH("Failed to make ADC channel non-blocking");
145
 
146
        // Set channel sampling rate
147
        cfg_data = CYGNUM_IO_ADC_PERFORMANCE_TEST_RATE;
148
        len = sizeof(cfg_data);
149
        res = cyg_io_set_config(chan->handle,
150
                                CYG_IO_SET_CONFIG_ADC_RATE,
151
                                &cfg_data, &len);
152
        if (res != ENOERR)
153
            CYG_TEST_FAIL_FINISH("Failed to set ADC channel sampling rate");
154
 
155
        // Flush channel
156
        do {
157
            len = sizeof(sample);
158
            res = cyg_io_read(chan->handle, &sample, &len);
159
        } while (res == ENOERR);
160
        chan->count = 0;
161
    }
162
 
163
    CYG_TEST_INFO("Starting measurement");
164
 
165
    for (i = 0; i < num; i++) {
166
        chan = &test_channels[i];
167
 
168
        // Enable channel
169
        res = cyg_io_set_config(chan->handle, CYG_IO_SET_CONFIG_ADC_ENABLE, 0, 0);
170
        if (res != ENOERR)
171
            CYG_TEST_FAIL_FINISH("Failed to enabled ADC channel");
172
    }
173
 
174
    start_time = cyg_current_time();
175
    do {
176
        for (i = 0; i < num; i++) {
177
            chan = &test_channels[i];
178
 
179
            // Read & count samples
180
            do {
181
                cyg_uint32 len = sizeof(sample);
182
                res = cyg_io_read(chan->handle, &sample, &len);
183
                if (res == ENOERR)
184
                    chan->count++;
185
            } while (res == ENOERR);
186
        }
187
 
188
        // Print number of acquired samples - if one second is expired. We
189
        // expect that the number of acquired samples is nearly the sample rate
190
        end_time = cyg_current_time();
191
        if ((end_time - start_time) >= TICKS_PER_SECOND) {
192
            start_time = end_time;
193
            diag_printf("\n");
194
            for (i = 0; i < num; i++) {
195
                chan = &test_channels[i];
196
                diag_printf("%-20s\t= %d\n", chan->dev, chan->count);
197
            }
198
            seconds++;
199
        }
200
    } while (seconds < 10);
201
 
202
    for (i = 0; i < num; i++) {
203
        chan = &test_channels[i];
204
 
205
        // Disable channel
206
        res = cyg_io_set_config(chan->handle, CYG_IO_SET_CONFIG_ADC_DISABLE, 0, 0);
207
        if (res != ENOERR)
208
            CYG_TEST_FAIL_FINISH("Failed to disable ADC channel");
209
    }
210
 
211
    end_time = cyg_current_time();
212
 
213
    for (i = 0; i < num; i++) {
214
        chan = &test_channels[i];
215
 
216
        // Count remainding samples
217
        do {
218
            len = sizeof(sample);
219
            res = cyg_io_read(chan->handle, &sample, &len);
220
            if (res == ENOERR)
221
                chan->count++;
222
        } while (res == ENOERR);
223
    }
224
 
225
    CYG_TEST_INFO("Finished measurement");
226
 
227
    diag_printf("\n\n----------------------------------------\n");
228
 
229
    final_seconds = (end_time - start_time) + (seconds * TICKS_PER_SECOND);
230
    final_seconds /= TICKS_PER_SECOND;
231
    samples_expected = final_seconds * CYGNUM_IO_ADC_PERFORMANCE_TEST_RATE;
232
    diag_printf("Samples expected after %d milliseconds: %d\n",
233
                (unsigned int) (final_seconds * 1000), samples_expected);
234
 
235
    diag_printf("Samples read (per channel):\n");
236
    for (i = 0; i < num; i++) {
237
        chan = &test_channels[i];
238
        diag_printf("%-20s\t= %d\n", chan->dev, chan->count);
239
    }
240
 
241
    CYG_TEST_PASS_FINISH("ADC performance test OK");
242
}
243
 
244
 
245
void
246
cyg_start(void)
247
{
248
    CYG_TEST_INIT();
249
 
250
    // Create the main ADC test thread
251
    cyg_thread_create(
252
        4,
253
        adc_thread,
254
        (cyg_addrword_t) 0,
255
        "adc2",
256
        thread_stack,
257
        sizeof(thread_stack),
258
        &thread_handle,
259
        &thread_data
260
    );
261
    cyg_thread_resume(thread_handle);
262
    cyg_scheduler_start();
263
}
264
 
265
#else // CYGFUN_KERNEL_API_C
266
#define N_A_MSG "Needs kernel C API"
267
#endif
268
 
269
#else // CYGPKG_IO_ADC && CYGPKG_KERNEL
270
#define N_A_MSG "Needs Kernel and ADC support"
271
#endif
272
 
273
#ifdef N_A_MSG
274
void
275
cyg_start( void )
276
{
277
    CYG_TEST_INIT();
278
    CYG_TEST_NA(N_A_MSG);
279
}
280
#endif // N_A_MSG

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.