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

Subversion Repositories astron_r2sdf_fft

[/] [astron_r2sdf_fft/] [trunk/] [rTwoSDFPkg.vhd] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 danv
--------------------------------------------------------------------------------
2
--
3 3 danv
-- Copyright 2020
4
-- ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
5
-- P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
6
-- 
7
-- Licensed under the Apache License, Version 2.0 (the "License");
8
-- you may not use this file except in compliance with the License.
9
-- You may obtain a copy of the License at
10
-- 
11
--     http://www.apache.org/licenses/LICENSE-2.0
12
-- 
13
-- Unless required by applicable law or agreed to in writing, software
14
-- distributed under the License is distributed on an "AS IS" BASIS,
15
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
-- See the License for the specific language governing permissions and
17
-- limitations under the License.
18 2 danv
--
19
--------------------------------------------------------------------------------
20
 
21
Library ieee;
22
use IEEE.std_logic_1164.all;
23
 
24
package rTwoSDFPkg is
25
 
26
  -- Internal pipeline latencies and Z^(-1) pipeline settings for a stage in the rTwoSDF FFT
27
  -- Also used for other preallele and wideband FFT implementations (fft_lib)
28
  type t_fft_pipeline is record
29
    -- generics for rTwoSDFStage
30
    stage_lat      : natural;  -- = 1
31
    weight_lat     : natural;  -- = 1
32
    mul_lat        : natural;  -- = 3+1
33
    -- generics for rTwoBFStage
34
    bf_lat         : natural;  -- = 1
35
    -- generics for rTwoBF
36
    bf_use_zdly    : natural;  -- = 1
37
    bf_in_a_zdly   : natural;  -- = 0
38
    bf_out_d_zdly  : natural;  -- = 0
39
  end record;
40
 
41
  constant c_fft_pipeline   : t_fft_pipeline := (1, 1, 4, 1, 1, 0, 0);
42
 
43
end package rTwoSDFPkg;
44
 
45
package body rTwoSDFPkg IS
46
end rTwoSDFPkg;
47
 

powered by: WebSVN 2.1.0

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