| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /* ----------------------------------------------------------------------
- * Project: CMSIS DSP Library
- * Title: arm_rfft_fast_init_f64.c
- * Description: Split Radix Decimation in Frequency CFFT Double Precision Floating point processing function
- *
- * $Date: 23 April 2021
- * $Revision: V1.9.0
- *
- * Target Processor: Cortex-M and Cortex-A cores
- * -------------------------------------------------------------------- */
- /*
- * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "dsp/transform_functions.h"
- #include "arm_common_tables.h"
- /**
- @ingroup RealFFT
- */
- /**
- @addtogroup RealFFTF64
- @{
- */
- /**
- @brief Initialization function for the 32pt double precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_32_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 16U;
- S->fftLenRFFT = 32U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_16_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_16;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_16;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_32;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 64pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_64_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 32U;
- S->fftLenRFFT = 64U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_32_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_32;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_32;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_64;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 128pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_128_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 64U;
- S->fftLenRFFT = 128U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_64_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_64;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_64;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_128;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 256pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_256_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 128U;
- S->fftLenRFFT = 256U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_128_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_128;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_128;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_256;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 512pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_512_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 256U;
- S->fftLenRFFT = 512U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_256_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_256;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_256;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_512;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 1024pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_1024_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 512U;
- S->fftLenRFFT = 1024U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_512_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_512;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_512;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_1024;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Initialization function for the 2048pt Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_2048_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 1024U;
- S->fftLenRFFT = 2048U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_1024_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_1024;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_1024;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_2048;
- return ARM_MATH_SUCCESS;
- }
- /**
- * @brief Initialization function for the 4096pt Double Precision floating-point real FFT.
- * @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : an error is detected
- */
- arm_status arm_rfft_fast_init_4096_f64( arm_rfft_fast_instance_f64 * S ) {
- arm_cfft_instance_f64 * Sint;
- if( !S ) return ARM_MATH_ARGUMENT_ERROR;
- Sint = &(S->Sint);
- Sint->fftLen = 2048U;
- S->fftLenRFFT = 4096U;
- Sint->bitRevLength = ARMBITREVINDEXTABLEF64_2048_TABLE_LENGTH;
- Sint->pBitRevTable = (uint16_t *)armBitRevIndexTableF64_2048;
- Sint->pTwiddle = (float64_t *) twiddleCoefF64_2048;
- S->pTwiddleRFFT = (float64_t *) twiddleCoefF64_rfft_4096;
- return ARM_MATH_SUCCESS;
- }
- /**
- @brief Generic initialization function for the Double Precision floating-point real FFT.
- @param[in,out] S points to an arm_rfft_fast_instance_f64 structure
- @param[in] fftLen length of the Real Sequence
- @return execution status
- - \ref ARM_MATH_SUCCESS : Operation successful
- - \ref ARM_MATH_ARGUMENT_ERROR : <code>fftLen</code> is not a supported length
- @par Description
- The parameter <code>fftLen</code> specifies the length of RFFT/CIFFT process.
- Supported FFT Lengths are 32, 64, 128, 256, 512, 1024, 2048, 4096.
- @par
- This Function also initializes Twiddle factor table pointer and Bit reversal table pointer.
- @par
- This function should be used only if you don't know the FFT sizes that
- you'll need at build time. The use of this function will prevent the
- linker from removing the FFT tables that are not needed and the library
- code size will be bigger than needed.
- @par
- If you use CMSIS-DSP as a library, and if you know the FFT sizes
- that you need at build time, then it is better to use the initialization
- functions defined for each FFT size.
- */
- arm_status arm_rfft_fast_init_f64(
- arm_rfft_fast_instance_f64 * S,
- uint16_t fftLen)
- {
- arm_status status;
- switch (fftLen)
- {
- case 4096U:
- status = arm_rfft_fast_init_4096_f64(S);
- break;
- case 2048U:
- status = arm_rfft_fast_init_2048_f64(S);
- break;
- case 1024U:
- status = arm_rfft_fast_init_1024_f64(S);
- break;
- case 512U:
- status = arm_rfft_fast_init_512_f64(S);
- break;
- case 256U:
- status = arm_rfft_fast_init_256_f64(S);
- break;
- case 128U:
- status = arm_rfft_fast_init_128_f64(S);
- break;
- case 64U:
- status = arm_rfft_fast_init_64_f64(S);
- break;
- case 32U:
- status = arm_rfft_fast_init_32_f64(S);
- break;
- default:
- return(ARM_MATH_ARGUMENT_ERROR);
- break;
- }
- return(status);
- }
- /**
- @} end of RealFFTF64 group
- */
|