1 |
5 |
gedra |
----------------------------------------------------------------------
|
2 |
|
|
---- ----
|
3 |
|
|
---- WISHBONE SPDIF IP Core ----
|
4 |
|
|
---- ----
|
5 |
|
|
---- This file is part of the SPDIF project ----
|
6 |
|
|
---- http://www.opencores.org/cores/spdif_interface/ ----
|
7 |
|
|
---- ----
|
8 |
|
|
---- Description ----
|
9 |
|
|
---- Generic control register. ----
|
10 |
|
|
---- ----
|
11 |
|
|
---- ----
|
12 |
|
|
---- To Do: ----
|
13 |
|
|
---- - ----
|
14 |
|
|
---- ----
|
15 |
|
|
---- Author(s): ----
|
16 |
|
|
---- - Geir Drange, gedra@opencores.org ----
|
17 |
|
|
---- ----
|
18 |
|
|
----------------------------------------------------------------------
|
19 |
|
|
---- ----
|
20 |
|
|
---- Copyright (C) 2004 Authors and OPENCORES.ORG ----
|
21 |
|
|
---- ----
|
22 |
|
|
---- This source file may be used and distributed without ----
|
23 |
|
|
---- restriction provided that this copyright statement is not ----
|
24 |
|
|
---- removed from the file and that any derivative work contains ----
|
25 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
26 |
|
|
---- ----
|
27 |
|
|
---- This source file is free software; you can redistribute it ----
|
28 |
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
29 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
30 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
31 |
|
|
---- later version. ----
|
32 |
|
|
---- ----
|
33 |
|
|
---- This source is distributed in the hope that it will be ----
|
34 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
35 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
36 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
37 |
|
|
---- details. ----
|
38 |
|
|
---- ----
|
39 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
40 |
|
|
---- Public License along with this source; if not, download it ----
|
41 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
42 |
|
|
---- ----
|
43 |
|
|
----------------------------------------------------------------------
|
44 |
|
|
--
|
45 |
|
|
-- CVS Revision History
|
46 |
|
|
--
|
47 |
|
|
-- $Log: not supported by cvs2svn $
|
48 |
8 |
gedra |
-- Revision 1.1 2004/06/03 17:47:17 gedra
|
49 |
|
|
-- Generic control register. Used in both recevier and transmitter.
|
50 |
5 |
gedra |
--
|
51 |
8 |
gedra |
--
|
52 |
5 |
gedra |
|
53 |
|
|
library IEEE;
|
54 |
|
|
use IEEE.std_logic_1164.all;
|
55 |
|
|
use IEEE.std_logic_arith.all;
|
56 |
|
|
|
57 |
|
|
entity gen_control_reg is
|
58 |
8 |
gedra |
generic (DATA_WIDTH: integer;
|
59 |
|
|
ACTIVE_BIT_MASK: std_logic_vector); -- note that this vector is (0 to xx),
|
60 |
|
|
port ( -- reverse order
|
61 |
5 |
gedra |
clk: in std_logic; -- clock
|
62 |
|
|
rst: in std_logic; -- reset
|
63 |
|
|
ctrl_wr: in std_logic; -- control register write
|
64 |
|
|
ctrl_rd: in std_logic; -- control register read
|
65 |
8 |
gedra |
ctrl_din: in std_logic_vector(DATA_WIDTH - 1 downto 0); -- write data
|
66 |
|
|
ctrl_dout: out std_logic_vector(DATA_WIDTH - 1 downto 0); -- read data
|
67 |
|
|
ctrl_bits: out std_logic_vector(DATA_WIDTH - 1 downto 0)); -- control bits
|
68 |
5 |
gedra |
end gen_control_reg;
|
69 |
|
|
|
70 |
|
|
architecture rtl of gen_control_reg is
|
71 |
|
|
|
72 |
8 |
gedra |
signal ctrl_internal: std_logic_vector(DATA_WIDTH - 1 downto 0);
|
73 |
5 |
gedra |
|
74 |
|
|
begin
|
75 |
8 |
gedra |
|
76 |
5 |
gedra |
ctrl_dout <= ctrl_internal when ctrl_rd = '1' else (others => '0');
|
77 |
|
|
ctrl_bits <= ctrl_internal;
|
78 |
|
|
|
79 |
|
|
-- control register generation
|
80 |
8 |
gedra |
CTRLREG: for k in ctrl_din'range generate
|
81 |
|
|
-- active bits can be written to
|
82 |
|
|
ACTIVE: if ACTIVE_BIT_MASK(k) = '1' generate
|
83 |
5 |
gedra |
CBIT: process (clk, rst)
|
84 |
|
|
begin
|
85 |
|
|
if rst = '1' then
|
86 |
|
|
ctrl_internal(k) <= '0';
|
87 |
|
|
else
|
88 |
|
|
if rising_edge(clk) then
|
89 |
|
|
if ctrl_wr = '1' then
|
90 |
|
|
ctrl_internal(k) <= ctrl_din(k);
|
91 |
|
|
end if;
|
92 |
|
|
end if;
|
93 |
|
|
end if;
|
94 |
|
|
end process CBIT;
|
95 |
8 |
gedra |
end generate ACTIVE;
|
96 |
|
|
-- inactive bits are always 0
|
97 |
|
|
INACTIVE: if ACTIVE_BIT_MASK(k) = '0' generate
|
98 |
5 |
gedra |
ctrl_internal(k) <= '0';
|
99 |
8 |
gedra |
end generate INACTIVE;
|
100 |
|
|
end generate CTRLREG;
|
101 |
5 |
gedra |
|
102 |
|
|
end rtl;
|