freebsd-skq/sys/contrib/octeon-sdk/cvmx-csr-db.h
jmallett 4948f4b8d5 Import the Cavium Simple Executive from the Cavium Octeon SDK. The Simple
Executive is a library that can be used by standalone applications and kernels
to abstract access to Octeon SoC and board-specific hardware and facilities.
The FreeBSD port to Octeon will be updated to use this where possible.
2010-07-20 07:19:43 +00:00

180 lines
7.0 KiB
C

/***********************license start***************
* Copyright (c) 2003-2008 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.
*
* 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.
*
*
* For any questions regarding licensing please contact marketing@caviumnetworks.com
*
***********************license end**************************************/
#ifndef __CVMX_CSR_DB_H__
#define __CVMX_CSR_DB_H__
/**
* @file
* Interface for the Octeon CSR database.
*
*
* <hr>$Revision: 41586 $<hr>
*
*/
#include "cvmx-platform.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
CVMX_CSR_DB_TYPE_RSL, /**< Octeon internal address, but indirect and slow (not used for addresses) */
CVMX_CSR_DB_TYPE_NCB, /**< Octeon internal address */
CVMX_CSR_DB_TYPE_PCI_NCB, /**< Can be accessed through PCI BAR0, also an NCB alias (not used for addresses) */
CVMX_CSR_DB_TYPE_PCICONFIG, /**< PCI Config, also an NCB alias */
CVMX_CSR_DB_TYPE_PCI, /**< PCI BAR0 (only) */
CVMX_CSR_DB_TYPE_PEXP, /**< PCIe BAR 0 address only */
CVMX_CSR_DB_TYPE_PEXP_NCB, /**< NCB-direct and PCIe BAR0 address */
CVMX_CSR_DB_TYPE_PCICONFIGEP, /**< PCIe config address (EP mode) + indirect through PESC*_CFG_RD/PESC*_CFG_WR */
CVMX_CSR_DB_TYPE_PCICONFIGRC /**< PCICONFIGRC - PCIe config address (RC mode) + indirect through PESC*_CFG_RD/PESC*_CFG_WR */
} CVMX_CSR_DB_TYPE_FIELD;
/**
* the structure for the cvmx_csr_db_addresses[] array that
* holds all possible Octeon CSR addresses
*/
typedef struct {
char * name; /**< CSR name at the supplied address */
uint64_t address; /**< Address = octeon internal, PCI BAR0 relative, PCI CONFIG relative */
CVMX_CSR_DB_TYPE_FIELD type:8; /**< the type */
uint8_t widthbits; /**< the width of the CSR in bits */
uint16_t csroff; /**< position of the CSR in cvmx_csr_db[] */
} __attribute__ ((packed)) CVMX_CSR_DB_ADDRESS_TYPE;
/**
* the structure for the cvmx_csr_db_fields[] array that
* holds all possible Octeon CSR fields
*/
typedef struct {
char * name; /**< name of the field */
uint8_t startbit; /**< starting bit position of the field */
uint8_t sizebits; /**< the size of the field in bits */
uint16_t csroff; /**< position of the CSR containing the field in cvmx_csr_db[] (get alias from there) */
char * type; /**< the type of the field R/W, R/W1C, ... */
uint8_t rst_unp; /**< set if the reset value is unknown */
uint8_t typ_unp; /**< set if the typical value is unknown */
uint64_t rst_val; /**< the reset value of the field */
uint64_t typ_val; /**< the typical value of the field */
} __attribute__ ((packed)) CVMX_CSR_DB_FIELD_TYPE;
/**
* the structure for the cvmx_csr_db[] array that holds all
* possible Octeon CSR forms
*/
typedef struct {
char *basename; /**< the base name of the CSR */
CVMX_CSR_DB_TYPE_FIELD type:8; /**< the type */
uint8_t widthbits; /**< the width of the CSR in bits */
uint16_t addoff; /**< the position of the first address in cvmx_csr_db_csr_addresses[] (numblocks*indexnum is #) */
uint8_t numfields; /**< the number of fields in the CSR (and in cvmx_csr_db_csr_fields[]) */
uint16_t fieldoff; /**< the position of the first field in cvmx_csr_db_csr_fields[] */
} __attribute__ ((packed)) CVMX_CSR_DB_TYPE;
/**
* This NULL terminated array contains the CVMX_CSR_DB_TYPE
* arrays for each chip. Each array entry is another NULL
* terminated array of CSRs.
*/
extern const CVMX_CSR_DB_TYPE *cvmx_csr_db[];
/**
* This NULL terminated array contains the CVMX_CSR_DB_ADDRESS_TYPE
* arrays for each chip. Each array entry is another NULL
* terminated array of CSR addresses.
*/
extern const CVMX_CSR_DB_ADDRESS_TYPE *cvmx_csr_db_addresses[];
/**
* This NULL terminated array contains the CVMX_CSR_DB_FIELD_TYPE
* arrays for each chip. Each array entry is another NULL
* terminated array of CSR fields.
*/
extern const CVMX_CSR_DB_FIELD_TYPE *cvmx_csr_db_fields[];
/**
* Figure out which database to use for this chip. The passed
* identifier can be a processor ID or a PCI ID.
*
* @param identifier processor ID or a PCI ID
*
* @return index into the csr db
*/
extern int cvmx_db_get_chipindex(int identifier);
/**
* Get the CSR DB entry for the passed Octeon model and CSR name. The
* model can either be specified as a processor id or PCI id.
*
* @param identifier Identifer to choose the CSR DB with
* @param name CSR name to lookup
*
* @return CSR DB entry or NULL on failure
*/
extern const CVMX_CSR_DB_ADDRESS_TYPE *cvmx_csr_db_get(int identifier, const char *name);
/**
* Decode a CSR value into named bitfields. The model can either
* be specified as a processor id or PCI id.
*
* @param identifier Identifer to choose the CSR DB with
* @param address CSR address being decoded
* @param value Value to decode
*/
extern void cvmx_csr_db_decode(int identifier, uint64_t address, uint64_t value);
/**
* Print a list of csrs begimning with a prefix. The
* model can either be specified as a processor id or PCI id.
*
* @param identifier Identifer to choose the CSR DB with
* @param prefix Beginning prefix to look for
*/
extern void cvmx_csr_db_display_list(int identifier, const char *prefix);
#ifdef __cplusplus
}
#endif
#endif