04b6fa8330
facilities as well as support for the Octeon 2 family of SoCs. XXX Note that with our antediluvian assembler, we can't support some Octeon 2 instructions and fall back to using the old ones instead.
322 lines
10 KiB
C
322 lines
10 KiB
C
/***********************license start***************
|
|
* Copyright (c) 2003-2010 Cavium Networks (support@cavium.com). All rights
|
|
* reserved.
|
|
*
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the following
|
|
* disclaimer in the documentation and/or other materials provided
|
|
* with the distribution.
|
|
|
|
* * Neither the name of Cavium Networks nor the names of
|
|
* its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written
|
|
* permission.
|
|
|
|
* This Software, including technical data, may be subject to U.S. export control
|
|
* laws, including the U.S. Export Administration Act and its associated
|
|
* regulations, and may be subject to export or import regulations in other
|
|
* countries.
|
|
|
|
* TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
|
|
* AND WITH ALL FAULTS AND CAVIUM NETWORKS MAKES NO PROMISES, REPRESENTATIONS OR
|
|
* WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
|
|
* THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR
|
|
* DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM
|
|
* SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE,
|
|
* MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF
|
|
* VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR
|
|
* CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR
|
|
* PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
|
|
***********************license end**************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* Interface to PCIe as a host(RC) or target(EP)
|
|
*
|
|
* <hr>$Revision: 52004 $<hr>
|
|
*/
|
|
|
|
#ifndef __CVMX_PCIE_H__
|
|
#define __CVMX_PCIE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* The physical memory base mapped by BAR1. 256MB at the end of the
|
|
* first 4GB.
|
|
*/
|
|
#define CVMX_PCIE_BAR1_PHYS_BASE ((1ull << 32) - (1ull << 28))
|
|
#define CVMX_PCIE_BAR1_PHYS_SIZE (1ull << 28)
|
|
|
|
/*
|
|
* The RC base of BAR1. gen1 has a 39-bit BAR2, gen2 has 41-bit BAR2,
|
|
* place BAR1 so it is the same for both.
|
|
*/
|
|
#define CVMX_PCIE_BAR1_RC_BASE (1ull << 41)
|
|
|
|
typedef union
|
|
{
|
|
uint64_t u64;
|
|
struct
|
|
{
|
|
uint64_t upper : 2; /* Normally 2 for XKPHYS */
|
|
uint64_t reserved_49_61 : 13; /* Must be zero */
|
|
uint64_t io : 1; /* 1 for IO space access */
|
|
uint64_t did : 5; /* PCIe DID = 3 */
|
|
uint64_t subdid : 3; /* PCIe SubDID = 1 */
|
|
uint64_t reserved_36_39 : 4; /* Must be zero */
|
|
uint64_t es : 2; /* Endian swap = 1 */
|
|
uint64_t port : 2; /* PCIe port 0,1 */
|
|
uint64_t reserved_29_31 : 3; /* Must be zero */
|
|
uint64_t ty : 1; /* Selects the type of the configuration request (0 = type 0, 1 = type 1). */
|
|
uint64_t bus : 8; /* Target bus number sent in the ID in the request. */
|
|
uint64_t dev : 5; /* Target device number sent in the ID in the request. Note that Dev must be
|
|
zero for type 0 configuration requests. */
|
|
uint64_t func : 3; /* Target function number sent in the ID in the request. */
|
|
uint64_t reg : 12; /* Selects a register in the configuration space of the target. */
|
|
} config;
|
|
struct
|
|
{
|
|
uint64_t upper : 2; /* Normally 2 for XKPHYS */
|
|
uint64_t reserved_49_61 : 13; /* Must be zero */
|
|
uint64_t io : 1; /* 1 for IO space access */
|
|
uint64_t did : 5; /* PCIe DID = 3 */
|
|
uint64_t subdid : 3; /* PCIe SubDID = 2 */
|
|
uint64_t reserved_36_39 : 4; /* Must be zero */
|
|
uint64_t es : 2; /* Endian swap = 1 */
|
|
uint64_t port : 2; /* PCIe port 0,1 */
|
|
uint64_t address : 32; /* PCIe IO address */
|
|
} io;
|
|
struct
|
|
{
|
|
uint64_t upper : 2; /* Normally 2 for XKPHYS */
|
|
uint64_t reserved_49_61 : 13; /* Must be zero */
|
|
uint64_t io : 1; /* 1 for IO space access */
|
|
uint64_t did : 5; /* PCIe DID = 3 */
|
|
uint64_t subdid : 3; /* PCIe SubDID = 3-6 */
|
|
uint64_t reserved_36_39 : 4; /* Must be zero */
|
|
uint64_t address : 36; /* PCIe Mem address */
|
|
} mem;
|
|
} cvmx_pcie_address_t;
|
|
|
|
|
|
/**
|
|
* Return the Core virtual base address for PCIe IO access. IOs are
|
|
* read/written as an offset from this address.
|
|
*
|
|
* @param pcie_port PCIe port the IO is for
|
|
*
|
|
* @return 64bit Octeon IO base address for read/write
|
|
*/
|
|
uint64_t cvmx_pcie_get_io_base_address(int pcie_port);
|
|
|
|
/**
|
|
* Size of the IO address region returned at address
|
|
* cvmx_pcie_get_io_base_address()
|
|
*
|
|
* @param pcie_port PCIe port the IO is for
|
|
*
|
|
* @return Size of the IO window
|
|
*/
|
|
uint64_t cvmx_pcie_get_io_size(int pcie_port);
|
|
|
|
/**
|
|
* Return the Core virtual base address for PCIe MEM access. Memory is
|
|
* read/written as an offset from this address.
|
|
*
|
|
* @param pcie_port PCIe port the IO is for
|
|
*
|
|
* @return 64bit Octeon IO base address for read/write
|
|
*/
|
|
uint64_t cvmx_pcie_get_mem_base_address(int pcie_port);
|
|
|
|
/**
|
|
* Size of the Mem address region returned at address
|
|
* cvmx_pcie_get_mem_base_address()
|
|
*
|
|
* @param pcie_port PCIe port the IO is for
|
|
*
|
|
* @return Size of the Mem window
|
|
*/
|
|
uint64_t cvmx_pcie_get_mem_size(int pcie_port);
|
|
|
|
/**
|
|
* Initialize a PCIe port for use in host(RC) mode. It doesn't enumerate the bus.
|
|
*
|
|
* @param pcie_port PCIe port to initialize
|
|
*
|
|
* @return Zero on success
|
|
*/
|
|
int cvmx_pcie_rc_initialize(int pcie_port);
|
|
|
|
/**
|
|
* Shutdown a PCIe port and put it in reset
|
|
*
|
|
* @param pcie_port PCIe port to shutdown
|
|
*
|
|
* @return Zero on success
|
|
*/
|
|
int cvmx_pcie_rc_shutdown(int pcie_port);
|
|
|
|
/**
|
|
* Read 8bits from a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
*
|
|
* @return Result of the read
|
|
*/
|
|
uint8_t cvmx_pcie_config_read8(int pcie_port, int bus, int dev, int fn, int reg);
|
|
|
|
/**
|
|
* Read 16bits from a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
*
|
|
* @return Result of the read
|
|
*/
|
|
uint16_t cvmx_pcie_config_read16(int pcie_port, int bus, int dev, int fn, int reg);
|
|
|
|
/**
|
|
* Read 32bits from a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
*
|
|
* @return Result of the read
|
|
*/
|
|
uint32_t cvmx_pcie_config_read32(int pcie_port, int bus, int dev, int fn, int reg);
|
|
|
|
/**
|
|
* Write 8bits to a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
* @param val Value to write
|
|
*/
|
|
void cvmx_pcie_config_write8(int pcie_port, int bus, int dev, int fn, int reg, uint8_t val);
|
|
|
|
/**
|
|
* Write 16bits to a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
* @param val Value to write
|
|
*/
|
|
void cvmx_pcie_config_write16(int pcie_port, int bus, int dev, int fn, int reg, uint16_t val);
|
|
|
|
/**
|
|
* Write 32bits to a Device's config space
|
|
*
|
|
* @param pcie_port PCIe port the device is on
|
|
* @param bus Sub bus
|
|
* @param dev Device ID
|
|
* @param fn Device sub function
|
|
* @param reg Register to access
|
|
* @param val Value to write
|
|
*/
|
|
void cvmx_pcie_config_write32(int pcie_port, int bus, int dev, int fn, int reg, uint32_t val);
|
|
|
|
/**
|
|
* Read a PCIe config space register indirectly. This is used for
|
|
* registers of the form PCIEEP_CFG??? and PCIERC?_CFG???.
|
|
*
|
|
* @param pcie_port PCIe port to read from
|
|
* @param cfg_offset Address to read
|
|
*
|
|
* @return Value read
|
|
*/
|
|
uint32_t cvmx_pcie_cfgx_read(int pcie_port, uint32_t cfg_offset);
|
|
|
|
/**
|
|
* Write a PCIe config space register indirectly. This is used for
|
|
* registers of the form PCIEEP_CFG??? and PCIERC?_CFG???.
|
|
*
|
|
* @param pcie_port PCIe port to write to
|
|
* @param cfg_offset Address to write
|
|
* @param val Value to write
|
|
*/
|
|
void cvmx_pcie_cfgx_write(int pcie_port, uint32_t cfg_offset, uint32_t val);
|
|
|
|
/**
|
|
* Write a 32bit value to the Octeon NPEI register space
|
|
*
|
|
* @param address Address to write to
|
|
* @param val Value to write
|
|
*/
|
|
static inline void cvmx_pcie_npei_write32(uint64_t address, uint32_t val)
|
|
{
|
|
cvmx_write64_uint32(address ^ 4, val);
|
|
cvmx_read64_uint32(address ^ 4);
|
|
}
|
|
|
|
/**
|
|
* Read a 32bit value from the Octeon NPEI register space
|
|
*
|
|
* @param address Address to read
|
|
* @return The result
|
|
*/
|
|
static inline uint32_t cvmx_pcie_npei_read32(uint64_t address)
|
|
{
|
|
return cvmx_read64_uint32(address ^ 4);
|
|
}
|
|
|
|
/**
|
|
* Initialize a PCIe port for use in target(EP) mode.
|
|
*
|
|
* @param pcie_port PCIe port to initialize
|
|
*
|
|
* @return Zero on success
|
|
*/
|
|
int cvmx_pcie_ep_initialize(int pcie_port);
|
|
|
|
/**
|
|
* Wait for posted PCIe read/writes to reach the other side of
|
|
* the internal PCIe switch. This will insure that core
|
|
* read/writes are posted before anything after this function
|
|
* is called. This may be necessary when writing to memory that
|
|
* will later be read using the DMA/PKT engines.
|
|
*
|
|
* @param pcie_port PCIe port to wait for
|
|
*/
|
|
void cvmx_pcie_wait_for_pending(int pcie_port);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|