eFEX firmware
1.7.3
ATLAS l1-calo - electron and tau feature extraction firmware for eFEX boards
Back to eFEX documentation
Infrastructure
control_fpga
src
cntrl_slaves
pll_selector.vhd
Go to the documentation of this file.
1
6
7
library
IEEE
;
8
use
IEEE.STD_LOGIC_1164.
ALL
;
10
entity
pll_selector
is
11
Port
(
13
sel
:
in
STD_LOGIC_VECTOR
(
1
downto
0
)
;
15
pll_en_1
:
out
STD_LOGIC
;
17
pll_en_3
:
out
STD_LOGIC
;
19
pll_en
:
in
STD_LOGIC
)
;
20
end
pll_selector
;
22
architecture
Behavioral
of
pll_selector
is
23
24
begin
25
26
pll_en_1
<=
pll_en
when
sel
=
"00"
else
'
1
'
;
27
pll_en_3
<=
pll_en
when
sel
=
"10"
else
'
1
'
;
28
29
end
Behavioral
;
pll_selector.Behavioral
PLL enable for the control FPGA.
Definition:
pll_selector.vhd:22
pll_selector
PLL enable for the control FPGA.
Definition:
pll_selector.vhd:10
pll_selector.sel
in sel STD_LOGIC_VECTOR( 1 downto 0)
selector bits
Definition:
pll_selector.vhd:13
pll_selector.pll_en_1
out pll_en_1 STD_LOGIC
enable pll 1
Definition:
pll_selector.vhd:15
pll_selector.pll_en
in pll_en STD_LOGIC
pll enable
Definition:
pll_selector.vhd:19
pll_selector.pll_en_3
out pll_en_3 STD_LOGIC
enable pll 3
Definition:
pll_selector.vhd:17
Generated on Tue Nov 11 2025 09:44:32 for eFEX firmware by
1.9.1