blob: 8a9c20372689aed06618fc0b0c937045d4004506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
-------------------------------------------------------------------------------
--
-- File: DaughterboardRegs.vhd
-- Author: Daniel Jepson; mods by Humberto Jimenez
-- Original Project: N310; N32x
-- Date: 27 April 2016
--
-------------------------------------------------------------------------------
-- Copyright 2016-2018 Ettus Research, A National Instruments Company
-- SPDX-License-Identifier: LGPL-3.0
-------------------------------------------------------------------------------
--
-- Purpose:
--
-- Register interface to the semi-static control lines for the Mg
-- Daughterboard.
--
-- XML register definition is included below the module.
--
-------------------------------------------------------------------------------
library ieee;
use ieee.std_logic_1164.all;
library work;
use work.PkgDaughterboardRegMap.all;
use work.PkgRegs.all;
entity DaughterboardRegs is
port(
-- Async reset. Can be tied low if desired.
aReset : in boolean;
-- Sync reset... used in the same places as the async one.
bReset : in boolean;
BusClk : in std_logic;
bRegPortOut : out RegPortOut_t;
bRegPortIn : in RegPortIn_t;
-- Slot and DB ID values. These should be tied to constants!
kDbId : in std_logic_vector(15 downto 0);
kSlotId : in std_logic
);
end DaughterboardRegs;
architecture RTL of DaughterboardRegs is
--vhook_sigstart
--vhook_sigend
signal bRegPortOutLcl : RegPortOut_t := kRegPortOutZero;
begin
-- Read Registers : -------------------------------------------------------------------
-- ------------------------------------------------------------------------------------
ReadRegisters: process(aReset, BusClk)
begin
if aReset then
bRegPortOutLcl <= kRegPortOutZero;
elsif rising_edge(BusClk) then
if bReset then
bRegPortOutLcl <= kRegPortOutZero;
else
-- De-assert strobes
bRegPortOutLcl.Data <= kRegPortDataZero;
-- All of these transactions only take one clock cycle, so we do not have to
-- de-assert the Ready signal (ever).
bRegPortOutLcl.Ready <= true;
if RegRead(kDaughterboardId, bRegPortIn) then
bRegPortOutLcl.Data(kDbIdValMsb downto kDbIdVal) <= kDbId;
bRegPortOutLcl.Data(kSlotIdVal) <= kSlotId;
end if;
end if;
end if;
end process ReadRegisters;
-- Local to output
bRegPortOut <= bRegPortOutLcl;
end RTL;
--XmlParse xml_on
--<regmap name="DaughterboardRegMap">
-- <group name="StaticControl" order="1">
--
-- <register name="DaughterboardId" size="32" offset="0x30" attributes="Readable">
-- <info>
-- </info>
-- <bitfield name="DbIdVal" range="15..0">
-- <info>
-- ID for the DB with which this file is designed to communicate. Matches the DB
-- EEPROM ID.
-- </info>
-- </bitfield>
-- <bitfield name="SlotIdVal" range="16">
-- <info>
-- ID for the Slot this module controls. Options are 0 and 1 for the N310 MB.
-- </info>
-- </bitfield>
-- </register>
--
-- </group>
--
--
--</regmap>
--XmlParse xml_off
|