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

Subversion Repositories pci

[/] [pci/] [tags/] [asyst_3/] [rtl/] [verilog/] [pci_user_constants.v] - Diff between revs 106 and 132

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 106 Rev 132
Line 37... Line 37...
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
//
//
// CVS Revision History
// CVS Revision History
//
//
// $Log: not supported by cvs2svn $
// $Log: not supported by cvs2svn $
 
// Revision 1.9  2003/08/03 18:05:06  mihad
 
// Added limited WISHBONE B3 support for WISHBONE Slave Unit.
 
// Doesn't support full speed bursts yet.
 
//
// Revision 1.8  2003/03/14 15:31:57  mihad
// Revision 1.8  2003/03/14 15:31:57  mihad
// Entered the option to disable no response counter in wb master.
// Entered the option to disable no response counter in wb master.
//
//
// Revision 1.7  2003/01/27 17:05:50  mihad
// Revision 1.7  2003/01/27 17:05:50  mihad
// Updated.
// Updated.
Line 74... Line 78...
// width of 40 and instantiate it in pci_tpram.v. If RAM_DONT_SHARE is defined, then these can be dual port rams ( write port
// width of 40 and instantiate it in pci_tpram.v. If RAM_DONT_SHARE is defined, then these can be dual port rams ( write port
// in one clock domain, read in other ), otherwise it must be two port RAM ( read and write ports in both clock domains ).
// in one clock domain, read in other ), otherwise it must be two port RAM ( read and write ports in both clock domains ).
// If RAM_DONT_SHARE is defined, then all RAM address lengths must be specified accordingly, otherwise there are two relevant lengths - PCI_FIFO_RAM_ADDR_LENGTH and
// If RAM_DONT_SHARE is defined, then all RAM address lengths must be specified accordingly, otherwise there are two relevant lengths - PCI_FIFO_RAM_ADDR_LENGTH and
// WB_FIFO_RAM_ADDR_LENGTH.
// WB_FIFO_RAM_ADDR_LENGTH.
 
 
`define WBW_ADDR_LENGTH 3
`define WBW_ADDR_LENGTH 7
`define WBR_ADDR_LENGTH 5
`define WBR_ADDR_LENGTH 7
`define PCIW_ADDR_LENGTH 3
`define PCIW_ADDR_LENGTH 7
`define PCIR_ADDR_LENGTH 3
`define PCIR_ADDR_LENGTH 7
 
 
`define FPGA
//`define FPGA
`define XILINX
//`define XILINX
 
 
//`define WB_RAM_DONT_SHARE
//`define WB_RAM_DONT_SHARE
`define PCI_RAM_DONT_SHARE
//`define PCI_RAM_DONT_SHARE
 
 
`ifdef FPGA
`ifdef FPGA
    `ifdef XILINX
    `ifdef XILINX
        `define PCI_FIFO_RAM_ADDR_LENGTH 4      // PCI target unit fifo storage definition
        `define PCI_FIFO_RAM_ADDR_LENGTH 8      // PCI target unit fifo storage definition
        `define WB_FIFO_RAM_ADDR_LENGTH 8       // WB slave unit fifo storage definition
        `define WB_FIFO_RAM_ADDR_LENGTH 8       // WB slave unit fifo storage definition
        //`define PCI_XILINX_RAMB4
        `define PCI_XILINX_RAMB4
        `define WB_XILINX_RAMB4
        `define WB_XILINX_RAMB4
        `define PCI_XILINX_DIST_RAM
        //`define PCI_XILINX_DIST_RAM
        //`define WB_XILINX_DIST_RAM
        //`define WB_XILINX_DIST_RAM
    `endif
    `endif
`else
`else
    `define PCI_FIFO_RAM_ADDR_LENGTH 4      // PCI target unit fifo storage definition when RAM sharing is used ( both pcir and pciw fifo use same instance of RAM )
    `define PCI_FIFO_RAM_ADDR_LENGTH 8      // PCI target unit fifo storage definition when RAM sharing is used ( both pcir and pciw fifo use same instance of RAM )
    `define WB_FIFO_RAM_ADDR_LENGTH 7       // WB slave unit fifo storage definition when RAM sharing is used ( both wbr and wbw fifo use same instance of RAM )
    `define WB_FIFO_RAM_ADDR_LENGTH 8       // WB slave unit fifo storage definition when RAM sharing is used ( both wbr and wbw fifo use same instance of RAM )
//    `define WB_ARTISAN_SDP
//    `define WB_ARTISAN_SDP
//    `define PCI_ARTISAN_SDP
//    `define PCI_ARTISAN_SDP
//    `define PCI_VS_STP
//    `define PCI_VS_STP
//    `define WB_VS_STP
//    `define WB_VS_STP
`endif
`endif
Line 124... Line 128...
// number defined here specifies how many MS bits in PCI address are compared with base address, to decode
// number defined here specifies how many MS bits in PCI address are compared with base address, to decode
// accesses. Maximum number allows for minimum image size ( number = 20, image size = 4KB ), minimum number
// accesses. Maximum number allows for minimum image size ( number = 20, image size = 4KB ), minimum number
// allows for maximum image size ( number = 1, image size = 2GB ). If you intend on using different sizes of PCI images,
// allows for maximum image size ( number = 1, image size = 2GB ). If you intend on using different sizes of PCI images,
// you have to define a number of minimum sized image and enlarge others by specifying different address mask.
// you have to define a number of minimum sized image and enlarge others by specifying different address mask.
// smaller the number here, faster the decoder operation
// smaller the number here, faster the decoder operation
`define PCI_NUM_OF_DEC_ADDR_LINES 12
`define PCI_NUM_OF_DEC_ADDR_LINES 20
 
 
// no. of PCI Target IMAGES
// no. of PCI Target IMAGES
// - PCI provides 6 base address registers for image implementation.
// - PCI provides 6 base address registers for image implementation.
// PCI_IMAGE1 definition is not required and has no effect, since PCI image 1 is always implemented
// PCI_IMAGE1 definition is not required and has no effect, since PCI image 1 is always implemented
// If GUEST is defined, PCI Image 0 is also always implemented and is used for configuration space
// If GUEST is defined, PCI Image 0 is also always implemented and is used for configuration space
Line 138... Line 142...
// is no access to Configuration space possible from PCI bus.
// is no access to Configuration space possible from PCI bus.
// Implementation of all other PCI images is selected by defining PCI_IMAGE2 through PCI_IMAGE5 regardles of HOST
// Implementation of all other PCI images is selected by defining PCI_IMAGE2 through PCI_IMAGE5 regardles of HOST
// or GUEST implementation.
// or GUEST implementation.
`ifdef HOST
`ifdef HOST
    `ifdef NO_CNF_IMAGE
    `ifdef NO_CNF_IMAGE
        `define PCI_IMAGE0
        //`define PCI_IMAGE0
    `endif
    `endif
`endif
`endif
 
 
//`define PCI_IMAGE2
`define PCI_IMAGE2
//`define PCI_IMAGE3
`define PCI_IMAGE3
//`define PCI_IMAGE4
`define PCI_IMAGE4
//`define PCI_IMAGE5
`define PCI_IMAGE5
 
 
// initial value for PCI image address masks. Address masks can be defined in enabled state,
// initial value for PCI image address masks. Address masks can be defined in enabled state,
// to allow device independent software to detect size of image and map base addresses to
// to allow device independent software to detect size of image and map base addresses to
// memory space. If initial mask for an image is defined as 0, then device independent software
// memory space. If initial mask for an image is defined as 0, then device independent software
// won't detect base address implemented and device dependent software will have to configure
// won't detect base address implemented and device dependent software will have to configure
Line 174... Line 178...
// number defined here specifies how many MS bits in WB address are compared with base address, to decode
// number defined here specifies how many MS bits in WB address are compared with base address, to decode
// accesses. Maximum number allows for minimum image size ( number = 20, image size = 4KB ), minimum number
// accesses. Maximum number allows for minimum image size ( number = 20, image size = 4KB ), minimum number
// allows for maximum image size ( number = 1, image size = 2GB ). If you intend on using different sizes of WB images,
// allows for maximum image size ( number = 1, image size = 2GB ). If you intend on using different sizes of WB images,
// you have to define a number of minimum sized image and enlarge others by specifying different address mask.
// you have to define a number of minimum sized image and enlarge others by specifying different address mask.
// smaller the number here, faster the decoder operation
// smaller the number here, faster the decoder operation
`define WB_NUM_OF_DEC_ADDR_LINES 3
`define WB_NUM_OF_DEC_ADDR_LINES 20
 
 
// no. of WISHBONE Slave IMAGES
// no. of WISHBONE Slave IMAGES
// WB image 0 is always used for access to configuration space. In case configuration space access is not implemented,
// WB image 0 is always used for access to configuration space. In case configuration space access is not implemented,
// ( both GUEST and NO_CNF_IMAGE defined ), then WB image 0 is not implemented. User doesn't need to define image 0.
// ( both GUEST and NO_CNF_IMAGE defined ), then WB image 0 is not implemented. User doesn't need to define image 0.
// WB Image 1 is always implemented and user doesnt need to specify its definition
// WB Image 1 is always implemented and user doesnt need to specify its definition
// WB images' 2 through 5 implementation by defining each one.
// WB images' 2 through 5 implementation by defining each one.
//`define WB_IMAGE2
`define WB_IMAGE2
//`define WB_IMAGE3
`define WB_IMAGE3
//`define WB_IMAGE4
`define WB_IMAGE4
//`define WB_IMAGE5
`define WB_IMAGE5
 
 
// If this define is commented out, then address translation will not be implemented.
// If this define is commented out, then address translation will not be implemented.
// addresses will pass through bridge unchanged, regardles of address translation enable bits.
// addresses will pass through bridge unchanged, regardles of address translation enable bits.
// Address translation also slows down the decoding
// Address translation also slows down the decoding
//`define ADDR_TRAN_IMPL
`define ADDR_TRAN_IMPL
 
 
// decode speed for WISHBONE definition - initial cycle on WISHBONE bus will take 1 WS for FAST, 2 WSs for MEDIUM and 3 WSs for slow.
// decode speed for WISHBONE definition - initial cycle on WISHBONE bus will take 1 WS for FAST, 2 WSs for MEDIUM and 3 WSs for slow.
// slower decode speed can be used, to provide enough time for address to be decoded.
// slower decode speed can be used, to provide enough time for address to be decoded.
`define WB_DECODE_FAST
`define WB_DECODE_FAST
//`define WB_DECODE_MEDIUM
//`define WB_DECODE_MEDIUM
//`define WB_DECODE_SLOW
//`define WB_DECODE_SLOW
 
 
// Base address for Configuration space access from WB bus. This value cannot be changed during runtime
// Base address for Configuration space access from WB bus. This value cannot be changed during runtime
`define WB_CONFIGURATION_BASE 20'hF300_0
`define WB_CONFIGURATION_BASE 20'h0000_0
 
 
// Turn registered WISHBONE slave outputs on or off
// Turn registered WISHBONE slave outputs on or off
// all outputs from WB Slave state machine are registered, if this is defined - WB bus outputs as well as
// all outputs from WB Slave state machine are registered, if this is defined - WB bus outputs as well as
// outputs to internals of the core.
// outputs to internals of the core.
//`define REGISTER_WBS_OUTPUTS
//`define REGISTER_WBS_OUTPUTS
Line 225... Line 229...
`define HEADER_REVISION_ID  8'h01
`define HEADER_REVISION_ID  8'h01
 
 
// Turn registered WISHBONE master outputs on or off
// Turn registered WISHBONE master outputs on or off
// all outputs from WB Master state machine are registered, if this is defined - WB bus outputs as well as
// all outputs from WB Master state machine are registered, if this is defined - WB bus outputs as well as
// outputs to internals of the core.
// outputs to internals of the core.
`define REGISTER_WBM_OUTPUTS
//`define REGISTER_WBM_OUTPUTS
 
 
// MAX Retry counter value for WISHBONE Master state-machine
// MAX Retry counter value for WISHBONE Master state-machine
//      This value is 8-bit because of 8-bit retry counter !!!
//      This value is 8-bit because of 8-bit retry counter !!!
`define WB_RTY_CNT_MAX                  8'hff
`define WB_RTY_CNT_MAX                  8'hff
 
 
// define the macro below to disable internal retry generation in the wishbone master interface
// define the macro below to disable internal retry generation in the wishbone master interface
// used when wb master accesses extremly slow devices.
// used when wb master accesses extremly slow devices.
`define PCI_WBM_NO_RESPONSE_CNT_DISABLE
//`define PCI_WBM_NO_RESPONSE_CNT_DISABLE
 
 
//`define PCI_WB_REV_B3
`define PCI_WB_REV_B3
//`define PCI_WBS_B3_RTY_DISABLE
//`define PCI_WBS_B3_RTY_DISABLE
 
 
//`define PCI_WBS_ALLOW_NON_ALLIGNED_CONFIG_ACCESS
 
 No newline at end of file
 No newline at end of file
 
`ifdef GUEST
 
    `define PCI_CPCI_HS_IMPLEMENT
 
`endif
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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