----------------------------------------------------------------------------
-- This file is a part of the LEON VHDL model
-- Copyright (C) 1999 European Space Agency (ESA)
--
-- This library is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2 of the License, or (at your option) any later version.
--
-- See the file COPYING.LGPL for the full details of the license.
-----------------------------------------------------------------------------
-- Entity: leon_pci
-- File: leon_pci.vhd
-- Author: Jiri Gaisler - ESA/ESTEC
-- Description: Complete processor with PCI pads
------------------------------------------------------------------------------
library IEEE;
use IEEE.std_logic_1164.all;
use work.leon_target.all;
use work.leon_config.all;
use work.leon_iface.all;
use work.tech_map.all;
-- pragma translate_off
use work.debug.all;
-- pragma translate_on
entity leon_pci is
port (
resetn : in std_logic; -- system signals
clk : in std_logic;
pllref : in std_logic;
plllock : out std_logic;
errorn : out std_logic;
address : out std_logic_vector(27 downto 0); -- memory bus
data : inout std_logic_vector(31 downto 0);
ramsn : out std_logic_vector(4 downto 0);
ramoen : out std_logic_vector(4 downto 0);
rwen : inout std_logic_vector(3 downto 0);
romsn : out std_logic_vector(1 downto 0);
iosn : out std_logic;
oen : out std_logic;
read : out std_logic;
writen : inout std_logic;
brdyn : in std_logic;
bexcn : in std_logic;
-- sdram i/f
sdcke : out std_logic_vector ( 1 downto 0); -- clk en
sdcsn : out std_logic_vector ( 1 downto 0); -- chip sel
sdwen : out std_logic; -- write en
sdrasn : out std_logic; -- row addr stb
sdcasn : out std_logic; -- col addr stb
sddqm : out std_logic_vector ( 3 downto 0); -- data i/o mask
sdclk : out std_logic;
pio : inout std_logic_vector(15 downto 0); -- I/O port
wdogn : out std_logic; -- watchdog output
dsuen : in std_logic;
dsutx : out std_logic;
dsurx : in std_logic;
dsubre : in std_logic;
dsuact : out std_logic;
test : in std_logic;
pci_rst_in_n : in std_logic; -- PCI bus
pci_clk_in : in std_logic;
pci_gnt_in_n : in std_logic;
pci_idsel_in : in std_logic; -- ignored in host bridge core
pci_lock_n : inout std_logic; -- Phoenix core: input only
pci_ad : inout std_logic_vector(31 downto 0);
pci_cbe_n : inout std_logic_vector(3 downto 0);
pci_frame_n : inout std_logic;
pci_irdy_n : inout std_logic;
pci_trdy_n : inout std_logic;
pci_devsel_n : inout std_logic;
pci_stop_n : inout std_logic;
pci_perr_n : inout std_logic;
pci_par : inout std_logic;
pci_req_n : inout std_logic; -- tristate pad but never read
pci_serr_n : inout std_logic; -- open drain output
pci_host : in std_logic;
pci_66 : in std_logic;
pci_arb_req_n : in std_logic_vector(0 to 3);
pci_arb_gnt_n : out std_logic_vector(0 to 3);
power_state : out std_logic_vector(1 downto 0);
pme_enable : out std_logic;
pme_clear : out std_logic;
pme_status : in std_logic
);
end;
architecture rtl of leon_pci is
component mcore
port (
resetn : in std_logic;
clk : in clk_type;
clkn : in clk_type;
pciclk : in clk_type;
memi : in memory_in_type;
memo : out memory_out_type;
ioi : in io_in_type;
ioo : out io_out_type;
pcii : in pci_in_type;
pcio : out pci_out_type;
dsi : in dsuif_in_type;
dso : out dsuif_out_type;
sdo : out sdram_out_type;
ethi : in eth_in_type;
etho : out eth_out_type;
cgo : in clkgen_out_type;
test : in std_logic
);
end component;
signal gnd, clko, sdclkl, resetno : std_logic;
signal clkm, clkn, pciclk : clk_type;
signal memi : memory_in_type;
signal memo : memory_out_type;
signal ioi : io_in_type;
signal ioo : io_out_type;
signal pcii : pci_in_type;
signal pcio : pci_out_type;
signal dsi : dsuif_in_type;
signal dso : dsuif_out_type;
signal sdo : sdram_out_type;
signal pllctrl : std_logic_vector(1 downto 0);
signal ethi : eth_in_type;
signal etho : eth_out_type;
signal cgi : clkgen_in_type;
signal cgo : clkgen_out_type;
signal pci_aden : std_logic_vector(31 downto 0);
signal pci_cbeen : std_logic_vector(3 downto 0);
signal pci_frame_en : std_logic;
signal pci_irdy_en : std_logic;
signal pci_trdy_en : std_logic;
signal pci_devsel_en : std_logic;
signal pci_stop_en : std_logic;
signal pci_perr_en : std_logic;
signal pci_par_en : std_logic;
signal pci_req_en : std_logic;
signal pci_serr_en : std_logic;
signal pci_lock_en : std_logic;
signal pci_lock_out : std_logic;
signal pci_req_in_dummy : std_logic;
signal pci_clk : std_logic;
begin
gnd <= '0';
cgi.pllctrl <= "00"; cgi.pllrst <= resetno; cgi.pllref <= pllref;
-- main processor core
mcore0 : mcore
port map (
resetn => resetno, clk => clkm, clkn => clkn, pciclk => pciclk,
memi => memi, memo => memo, ioi => ioi, ioo => ioo,
pcii => pcii, pcio => pcio, dsi => dsi, dso => dso, sdo => sdo,
ethi => ethi, etho => etho, cgo => cgo, test => test);
-- clock generator
clkgen0 : clkgen
port map ( clko, pci_clk, clkm, clkn, sdclkl, pciclk, cgi, cgo);
-- pads
-- clk_pad : inpad port map (clk, clko); -- clock
clko <= clk; -- avoid buffering during synthesis
reset_pad : smpad port map (resetn, resetno); -- reset
brdyn_pad : inpad port map (brdyn, memi.brdyn); -- bus ready
bexcn_pad : inpad port map (bexcn, memi.bexcn); -- bus exception
ds : if DEBUG_UNIT generate
dsuen_pad : inpad port map (dsuen, dsi.dsui.dsuen); -- DSU enable
dsutx_pad : outpad generic map (1) port map (dso.dcomo.dsutx, dsutx);
dsurx_pad : inpad port map (dsurx, dsi.dcomi.dsurx); -- DSU receive data
dsubre_pad : inpad port map (dsubre, dsi.dsui.dsubre); -- DSU break
dsuact_pad : outpad generic map (1) port map (dso.dsuo.dsuact, dsuact);
end generate;
sd : if SDRAMEN generate
cs_pads: for i in 0 to 1 generate
sdcke_pad : outpad generic map (2) port map (sdo.sdcke(i), sdcke(i));
sdcsn_pad : outpad generic map (2) port map (sdo.sdcsn(i), sdcsn(i));
end generate;
sdwen_pad : outpad generic map (2) port map (sdo.sdwen, sdwen);
sdrasn_pad : outpad generic map (2) port map (sdo.rasn, sdrasn);
sdcasn_pad : outpad generic map (2) port map (sdo.casn, sdcasn);
dqm_pads: for i in 0 to 3 generate
sddqm_pad : outpad generic map (2) port map (sdo.dqm(i), sddqm(i));
end generate;
-- sdclk_pad : outpad generic map (2) port map (sdclkl, sdclk);
sdclk <= sdclkl; -- disable pad for simulation
end generate;
error_pad : odpad generic map (2) port map (ioo.errorn, errorn); -- cpu error mode
d_pads: for i in 0 to 31 generate -- data bus
d_pad : iopad generic map (3) port map (memo.data(i), memo.bdrive((31-i)/8), memi.data(i), data(i));
end generate;
pio_pads : for i in 0 to 15 generate -- parallel I/O port
pio_pad : smiopad generic map (2) port map (ioo.piol(i), ioo.piodir(i), ioi.piol(i), pio(i));
end generate;
rwen_pads : for i in 0 to 3 generate -- ram write strobe
rwen_pad : iopad generic map (2) port map (memo.wrn(i), gnd, memi.wrn(i), rwen(i));
end generate;
-- I/O write strobe
writen_pad : iopad generic map (2) port map (memo.writen, gnd, memi.writen, writen);
a_pads : for i in 0 to 27 generate -- memory address
a_pads : outpad generic map (3) port map (memo.address(i), address(i));
end generate;
ramsn_pads : for i in 0 to 4 generate -- ram oen/rasn
ramsn_pad : outpad generic map (2) port map (memo.ramsn(i), ramsn(i));
end generate;
ramoen_pads : for i in 0 to 4 generate -- ram chip select
ramoen_pad : outpad generic map (2) port map (memo.ramoen(i), ramoen(i));
end generate;
romsn_pads : for i in 0 to 1 generate -- rom chip select
romsn_pad : outpad generic map (2) port map (memo.romsn(i), romsn(i));
end generate;
read_pad : outpad generic map (2) port map (memo.read, read); -- memory read
oen_pad : outpad generic map (2) port map (memo.oen, oen); -- memory oen
iosn_pad : outpad generic map (2) port map (memo.iosn, iosn); -- I/O select
wd : if WDOGEN generate
wdogn_pad : odpad generic map (2) port map (ioo.wdog, wdogn); -- watchdog output
end generate;
pl : if TARGET_CLK /= gen generate
plllock_pad : outpad generic map (2) port map (cgo.clklock, plllock);
end generate;
pcictrl0 : if PCICORE /= opencores generate
pci_trdy_en <= pcio.pci_ctrl_en_n;
pci_devsel_en <= pcio.pci_ctrl_en_n;
pci_stop_en <= pcio.pci_ctrl_en_n;
end generate;
pcictrl1 : if PCICORE = opencores generate
pci_trdy_en <= pcio.pci_trdy_en_n;
pci_devsel_en <= pcio.pci_devsel_en_n;
pci_stop_en <= pcio.pci_stop_en_n;
end generate;
pcictrl2 : if PCIEN generate
pci_aden <= pcio.pci_aden_n;
pci_cbeen(0) <= pcio.pci_cbe0_en_n;
pci_cbeen(1) <= pcio.pci_cbe1_en_n;
pci_cbeen(2) <= pcio.pci_cbe2_en_n;
pci_cbeen(3) <= pcio.pci_cbe3_en_n;
pci_frame_en <= pcio.pci_frame_en_n;
pci_irdy_en <= pcio.pci_irdy_en_n;
pci_perr_en <= pcio.pci_perr_en_n;
pci_par_en <= pcio.pci_par_en_n;
pci_req_en <= pcio.pci_req_en_n;
pci_serr_en <= pcio.pci_serr_out_n; -- open drain pad!
pci_lock_en <= '1'; -- is-core has no lock output -> deactivate
pci_lock_out <= '0'; -- dont care this output
end generate;
pci_rst_in_n_pad : pciinpad port map(pci_rst_in_n, pcii.pci_rst_in_n);
-- pci_clk_in_pad : pciinpad port map(pci_clk_in, pci_clk);
pci_clk <= pci_clk_in;
pci_gnt_in_n_pad : pciinpad port map(pci_gnt_in_n, pcii.pci_gnt_in_n);
pci_idsel_in_pad : pciinpad port map(pci_idsel_in, pcii.pci_idsel_in); -- ignored in host bridge core
-- pci_lock_in_n_pad : pciinpad port map(pci_lock_in_n, pcii.pci_lock_in_n); -- Phoenix core: input only
pci_lock_n_pad : pciiopad port map(pci_lock_out, pci_lock_en, pcii.pci_lock_in_n, pci_lock_n);
pci_ad_pads : for i in 0 to 31 generate
pci_adio_pad : pciiopad
port map(pcio.pci_adout(i), pci_aden(i), pcii.pci_adin(i), pci_ad(i));
end generate pci_ad_pads;
pci_cbe_n_pads : for i in 0 to 3 generate
pci_cbeio_n_pad : pciiopad
port map(pcio.pci_cbeout_n(i), pci_cbeen(i), pcii.pci_cbein_n(i), pci_cbe_n(i));
end generate pci_cbe_n_pads;
pci_frame_io_n_pad : pciiopad port map
(pcio.pci_frame_out_n, pci_frame_en, pcii.pci_frame_in_n, pci_frame_n);
pci_irdy_io_n_pad : pciiopad port map
(pcio.pci_irdy_out_n, pci_irdy_en, pcii.pci_irdy_in_n, pci_irdy_n);
pci_trdy_io_n_pad : pciiopad port map
(pcio.pci_trdy_out_n, pci_trdy_en, pcii.pci_trdy_in_n, pci_trdy_n);
pci_devsel_io_n_pad : pciiopad port map
(pcio.pci_devsel_out_n, pci_devsel_en, pcii.pci_devsel_in_n, pci_devsel_n);
pci_stop_io_n_pad : pciiopad port map
(pcio.pci_stop_out_n, pci_stop_en, pcii.pci_stop_in_n, pci_stop_n);
pci_perr_io_n_pad : pciiopad port map
(pcio.pci_perr_out_n, pci_perr_en, pcii.pci_perr_in_n, pci_perr_n);
pci_par_io_pad : pciiopad port map
(pcio.pci_par_out, pci_par_en, pcii.pci_par_in, pci_par);
pci_req_io_n_pad : pciiopad port map -- tristate pad but never read
(pcio.pci_req_out_n, pci_req_en, pci_req_in_dummy, pci_req_n);
-- open drain bidir
pci_serr_n_pad : pciiodpad port map (pci_serr_en, pcii.pci_serr_in_n, pci_serr_n);
-- PCI host select
pci_host_pad : inpad port map (pci_host, pcii.pci_host);
-- Optional PCI arbiter
parb1 : if PCIARBEN generate
pgnt : for i in 0 to 3 generate
pcignt : pcioutpad port map (ioo.pci_arb_gnt_n(i), pci_arb_gnt_n(i));
end generate;
end generate;
parb2 : if PCIARBEN generate
preq : for i in 0 to 3 generate
pcireq : inpad port map (pci_arb_req_n(i), ioi.pci_arb_req_n(i));
end generate;
end generate;
-- Optional 66 MHz pad
p66 : if PCI66PADEN generate
pci_66_pad : inpad port map(pci_66, pcii.pci_66);
end generate;
np66 : if not PCI66PADEN generate
pcii.pci_66 <= '0';
end generate;
-- Optional power control pads
pme : if PCIPMEEN generate
pmes : for i in 1 downto 0 generate
power_state_pad : pcioutpad port map (pcio.power_state(i), power_state(i));
end generate;
pme_enable_pad : pcioutpad port map (pcio.pme_enable, pme_enable);
pme_clear_pad : pcioutpad port map (pcio.pme_clear, pme_clear);
pme_status_pad : inpad port map(pme_status, pcii.pme_status);
end generate;
npme : if not PCIPMEEN generate
pcii.pme_status <= '0';
end generate;
end ;
Enum unit_status_type defined in /tmp/build_html/vhdl/sparc/fp1eu.vhd |
Enum rdatatype defined in /tmp/build_html/vhdl/sparc/mmu_icache.vhd |
Enum ahbmst_state_type defined in /tmp/build_html/vhdl/sparc/pci_oc.vhd |
Enum txfsmtype defined in /tmp/build_html/vhdl/sparc/dcom_uart.vhd |
Type memory_in_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type memory_out_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type io_in_type defined in /tmp/build_html/vhdl/peripherals/io/peri_io_comp.vhd |
Enum slavestate defined in /tmp/build_html/vhdl/sparc/ahbtest.vhd |
Type io_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type pci_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type pci_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dsu_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dcom_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dsuif_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dsu_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dcom_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type dsuif_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type sdram_out_type defined in /tmp/build_html/vhdl/peripherals/mem/peri_mem_comp.vhd |
Type eth_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type eth_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type clkgen_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type clkgen_in_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Enum execstate defined in /tmp/build_html/vhdl/sparc/fp1eu.vhd |
Enum cpins_type defined in /tmp/build_html/vhdl/sparc/fp1eu.vhd |
Enum dsnoop_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant PCLOW defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant RETT defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant log2 defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Enum multypes defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Enum divtypes defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Type iu_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant iu_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant XNWINDOWS defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant NWINDOWS defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant RABITS defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Type pipeline_control_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type cp_debug_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type iu_debug_out_type defined in /tmp/build_html/vhdl/sparc/leon_iface.vhd |
Type debug_info defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant DEBUGFPU defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Enum fpuiftype defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Enum fpucoretype defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Type fpu_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant fpu_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant FPIFTYPE defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant FPCORE defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Procedure print defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant STMAX defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant bl2 defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant bb defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant CALL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant vlen defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant slen defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function tostf defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function tost defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant FMT2 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UNIMP defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SETHI defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant F0ADDR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FPREG defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant R0ADDR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant NWINLOG2 defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant CWPOPT defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Function regdec defined in /tmp/build_html/vhdl/sparc/iu.vhd |
Constant BICC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FBFCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function branchop defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function fbranchop defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant CBCCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FMT3 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant IAND defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Enum base_type defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Enum vmasktype defined in /tmp/build_html/vhdl/sparc/mmu_dcache.vhd |
Function simm13dec defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function regimm defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function regres defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant IADD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant IOR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant IXOR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ISUB defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ANDN defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ORN defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant IXNOR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ADDX defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SUBX defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ADDCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ANDCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ORCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant XORCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SUBCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ANDNCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ORNCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant XNORCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ADDXCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UMAC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SMAC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UMUL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SMUL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UMULCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SMULCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SUBXCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UDIV defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SDIV defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant UDIVCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SDIVCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant TADDCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant TSUBCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant TADDCCTV defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant TSUBCCTV defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant MULSCC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ISLL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ISRL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ISRA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant RDY defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant RDPSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant RDWIM defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant RDTBR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant WRY defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant WRPSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant WRWIM defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant WRTBR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant JMPL defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant TICC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FLUSH defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Enum states defined in /tmp/build_html/vhdl/sparc/mmutw.vhd |
Constant RESTORE defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SAVE defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FPOP1 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FITOS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant darr defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function tostd defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function freg2 defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant FITOD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSTOI defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FDTOI defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSTOD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FDTOS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FMOVS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FNEGS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FABSS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSQRTS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSQRTD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FADDS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function freg3 defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant FADDD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSUBS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSUBD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FMULS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FMULD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FSMULD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FDIVS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FDIVD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FPOP2 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FCMPS defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function fregc defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant FCMPD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FCMPES defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant FCMPED defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant CPOP1 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function creg3 defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant CPOP2 defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDST defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function stparcp defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant STF defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function stparf defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant ST defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function stparc defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Function stpar defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant STB defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STH defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STDC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STDF defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STCSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STFSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STDCQ defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STDFQ defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant ISTD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function stpara defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant STBA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STHA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant STDA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function ldparcp defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant LDF defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function ldparf defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant LDCSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDFSR defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function ldpar defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant LDUB defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDUH defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDDC defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDDF defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDD defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSB defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSH defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSTUB defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SWAP defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function ldpara defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant LDUBA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDUHA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDDA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSBA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSHA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant LDSTUBA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Constant SWAPA defined in /tmp/build_html/vhdl/sparc/sparcv8.vhd |
Function disas defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Constant DEBUGIURF defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Function tosth defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Procedure trace defined in /tmp/build_html/vhdl/sparc/debug.vhd |
Enum boottype defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Enum areatype defined in /tmp/build_html/vhdl/peripherals/mem/mctrl.vhd |
Type debug_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant debug_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant DEBUG_UNIT defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Type mctrl_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant mctrl_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant SDRAMEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Enum ahbslv_state_type defined in /tmp/build_html/vhdl/sparc/pci_oc.vhd |
Type peri_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant peri_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant WDOGEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Enum targettechs defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Type syn_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant syn_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant TARGET_CLK defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Enum pcitype defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Function priority defined in /tmp/build_html/vhdl/core/ctrl/irqctrl2.vhd |
Type pci_config_type defined in /tmp/build_html/vhdl/sparc/leon_target.vhd |
Constant pci_config defined in /tmp/build_html/vhdl/sparc/leon_device.vhd |
Constant PCICORE defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant PCIEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant PCIARBEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant PCI66PADEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
Constant PCIPMEEN defined in /tmp/build_html/vhdl/sparc/leon_config.vhd |
If you have question mail to: Konrad Eisele<eiselekd@web.de>, created: Wed Apr 14 13:07:33 WEDT 2004
;
This is part of the Core distribution