Index: head/sys/contrib/ncsw/inc/error_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/error_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/error_ext.h (revision 302341) @@ -1,553 +1,554 @@ /* Copyright (c) 2008-2011 Freescale Semiconductor, Inc. * 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 Freescale Semiconductor nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * * ALTERNATIVELY, this software may be distributed under the terms of the * GNU General Public License ("GPL") as published by the Free Software * Foundation, either version 2 of that License or (at your option) any * later version. * * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @File error_ext.h @Description Error definitions. *//***************************************************************************/ #ifndef __ERROR_EXT_H #define __ERROR_EXT_H #include "std_ext.h" #include "xx_ext.h" #include "core_ext.h" /**************************************************************************//** @Group gen_id General Drivers Utilities @Description External routines. @{ *//***************************************************************************/ /**************************************************************************//** @Group gen_error_id Errors, Events and Debug @Description External routines. @{ *//***************************************************************************/ /****************************************************************************** The scheme below provides the bits description for error codes: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Reserved (should be zero) | Module ID | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | Error Type | ******************************************************************************/ #define ERROR_CODE(_err) ((((uint32_t)_err) & 0x0000FFFF) | __ERR_MODULE__) #define GET_ERROR_TYPE(_errcode) ((_errcode) & 0x0000FFFF) /**< Extract module code from error code (#t_Error) */ #define GET_ERROR_MODULE(_errcode) ((_errcode) & 0x00FF0000) /**< Extract error type (#e_ErrorType) from error code (#t_Error) */ /**************************************************************************//** @Description Error Type Enumeration *//***************************************************************************/ typedef enum e_ErrorType /* Comments / Associated Message Strings */ { /* ------------------------------------------------------------ */ E_OK = 0 /* Never use "RETURN_ERROR" with E_OK; Use "return E_OK;" */ /* Invalid Function Calls */ ,E_INVALID_STATE /**< The operation is not allowed in current module state. */ /* String: none. */ ,E_INVALID_OPERATION /**< The operation/command is invalid (unrecognized). */ /* String: none. */ ,E_NOT_SUPPORTED /**< The function is not supported or not implemented. */ /* String: none. */ ,E_NO_DEVICE /**< The associated device is not initialized. */ /* String: none. */ /* Invalid Parameters */ ,E_INVALID_HANDLE /**< Invalid handle of module or object. */ /* String: none, unless the function takes in more than one handle (in this case add the handle description) */ ,E_INVALID_ID /**< Invalid module ID (usually enumeration or index). */ /* String: none, unless the function takes in more than one ID (in this case add the ID description) */ ,E_NULL_POINTER /**< Unexpected NULL pointer. */ /* String: pointer description. */ ,E_INVALID_VALUE /**< Invalid value. */ /* Use for non-enumeration parameters, and only when other error types are not suitable. String: parameter description + "(should be )", e.g: "Maximum Rx buffer length (should be divisible by 8)", "Channel number (should be even)". */ ,E_INVALID_SELECTION /**< Invalid selection or mode. */ /* Use for enumeration values, only when other error types are not suitable. String: parameter description. */ ,E_INVALID_COMM_MODE /**< Invalid communication mode. */ /* String: none, unless the function takes in more than one communication mode indications (in this case add parameter description). */ ,E_INVALID_BYTE_ORDER /**< Invalid byte order. */ /* String: none, unless the function takes in more than one byte order indications (in this case add parameter description). */ ,E_INVALID_MEMORY_TYPE /**< Invalid memory type. */ /* String: none, unless the function takes in more than one memory types (in this case add memory description, e.g: "Data memory", "Buffer descriptors memory"). */ ,E_INVALID_INTR_QUEUE /**< Invalid interrupt queue. */ /* String: none, unless the function takes in more than one interrupt queues (in this case add queue description, e.g: "Rx interrupt queue", "Tx interrupt queue"). */ ,E_INVALID_PRIORITY /**< Invalid priority. */ /* String: none, unless the function takes in more than one priority (in this case add priority description). */ ,E_INVALID_CLOCK /**< Invalid clock. */ /* String: none, unless the function takes in more than one clocks (in this case add clock description, e.g: "Rx clock", "Tx clock"). */ ,E_INVALID_RATE /**< Invalid rate value. */ /* String: none, unless the function takes in more than one rate values (in this case add rate description). */ ,E_INVALID_ADDRESS /**< Invalid address. */ /* String: description of the specific violation. */ ,E_INVALID_BUS /**< Invalid bus type. */ /* String: none, unless the function takes in more than one bus parameters (in this case add bus description). */ ,E_BUS_CONFLICT /**< Bus (or memory) type conflicts with another setting. */ /* String: description of the conflicting buses/memories. */ ,E_CONFLICT /**< Some setting conflicts with another setting. */ /* String: description of the conflicting settings. */ ,E_NOT_ALIGNED /**< Non-aligned address. */ /* String: parameter description + "(should be %d-bytes aligned)", e.g: "Rx data buffer (should be 32-bytes aligned)". */ ,E_NOT_IN_RANGE /**< Parameter value is out of range. */ /* Don't use this error for enumeration parameters. String: parameter description + "(should be %d-%d)", e.g: "Number of pad characters (should be 0-15)". */ /* Frame/Buffer Errors */ ,E_INVALID_FRAME /**< Invalid frame object (NULL handle or missing buffers). */ /* String: none. */ ,E_EMPTY_FRAME /**< Frame object is empty (has no buffers). */ /* String: none. */ ,E_EMPTY_BUFFER /**< Buffer object is empty (no data, or zero data length). */ /* String: none. */ /* Resource Errors */ ,E_NO_MEMORY /**< External memory allocation failed. */ /* String: description of item for which allocation failed. */ ,E_NOT_FOUND /**< Requested resource or item was not found. */ /* Use only when the resource/item is uniquely identified. String: none, unless the operation is not the main goal of the function (in this case add item description). */ ,E_NOT_AVAILABLE /**< Resource is unavailable. */ /* String: none, unless the operation is not the main goal of the function (in this case add resource description). */ ,E_ALREADY_EXISTS /**< Requested resource or item already exists. */ /* Use when resource duplication or sharing are not allowed. String: none, unless the operation is not the main goal of the function (in this case add item description). */ ,E_FULL /**< Resource is full. */ /* String: none, unless the operation is not the main goal of the function (in this case add resource description). */ ,E_EMPTY /**< Resource is empty. */ /* String: none, unless the operation is not the main goal of the function (in this case add resource description). */ ,E_BUSY /**< Resource or module is busy. */ /* String: none, unless the operation is not the main goal of the function (in this case add resource description). */ ,E_ALREADY_FREE /**< Specified resource or item is already free or deleted. */ /* String: none, unless the operation is not the main goal of the function (in this case add item description). */ /* Read/Write Access Errors */ ,E_READ_FAILED /**< Read access failed on memory/device. */ /* String: none, or device name. */ ,E_WRITE_FAILED /**< Write access failed on memory/device. */ /* String: none, or device name. */ /* Send/Receive Failures */ ,E_SEND_FAILED /**< Send operation failed on device. */ /* String: none, or device name. */ ,E_RECEIVE_FAILED /**< Receive operation failed on device. */ /* String: none, or device name. */ /* Operation time-out */ ,E_TIMEOUT /**< The operation timed out. */ /* String: none. */ ,E_DUMMY_LAST /* NEVER USED */ } e_ErrorType; /**************************************************************************//** @Description Event Type Enumeration *//***************************************************************************/ typedef enum e_Event /* Comments / Associated Flags and Message Strings */ { /* ------------------------------------------------------------ */ EV_NO_EVENT = 0 /**< No event; Never used. */ ,EV_RX_DISCARD /**< Received packet discarded (by the driver, and only for complete packets); Flags: error flags in case of error, zero otherwise. */ /* String: reason for discard, e.g: "Error in frame", "Disordered frame", "Incomplete frame", "No frame object". */ ,EV_RX_ERROR /**< Receive error (by hardware/firmware); Flags: usually status flags from the buffer descriptor. */ /* String: none. */ ,EV_TX_ERROR /**< Transmit error (by hardware/firmware); Flags: usually status flags from the buffer descriptor. */ /* String: none. */ ,EV_NO_BUFFERS /**< System ran out of buffer objects; Flags: zero. */ /* String: none. */ ,EV_NO_MB_FRAMES /**< System ran out of multi-buffer frame objects; Flags: zero. */ /* String: none. */ ,EV_NO_SB_FRAMES /**< System ran out of single-buffer frame objects; Flags: zero. */ /* String: none. */ ,EV_TX_QUEUE_FULL /**< Transmit queue is full; Flags: zero. */ /* String: none. */ ,EV_RX_QUEUE_FULL /**< Receive queue is full; Flags: zero. */ /* String: none. */ ,EV_INTR_QUEUE_FULL /**< Interrupt queue overflow; Flags: zero. */ /* String: none. */ ,EV_NO_DATA_BUFFER /**< Data buffer allocation (from higher layer) failed; Flags: zero. */ /* String: none. */ ,EV_OBJ_POOL_EMPTY /**< Objects pool is empty; Flags: zero. */ /* String: object description (name). */ ,EV_BUS_ERROR /**< Illegal access on bus; Flags: the address (if available) or bus identifier */ /* String: bus/address/module description. */ ,EV_PTP_TXTS_QUEUE_FULL /**< PTP Tx timestamps queue is full; Flags: zero. */ /* String: none. */ ,EV_PTP_RXTS_QUEUE_FULL /**< PTP Rx timestamps queue is full; Flags: zero. */ /* String: none. */ ,EV_DUMMY_LAST } e_Event; /**************************************************************************//** @Collection Debug Levels for Errors and Events The level description refers to errors only. For events, classification is done by the user. The TRACE, INFO and WARNING levels are allowed only when using the DBG macro, and are not allowed when using the error macros (RETURN_ERROR or REPORT_ERROR). @{ *//***************************************************************************/ #define REPORT_LEVEL_CRITICAL 1 /**< Crasher: Incorrect flow, NULL pointers/handles. */ #define REPORT_LEVEL_MAJOR 2 /**< Cannot proceed: Invalid operation, parameters or configuration. */ #define REPORT_LEVEL_MINOR 3 /**< Recoverable problem: a repeating call with the same parameters may be successful. */ #define REPORT_LEVEL_WARNING 4 /**< Something is not exactly right, yet it is not an error. */ #define REPORT_LEVEL_INFO 5 /**< Messages which may be of interest to user/programmer. */ #define REPORT_LEVEL_TRACE 6 /**< Program flow messages. */ #define EVENT_DISABLED 0xFF /**< Disabled event (not reported at all) */ /* @} */ #define NO_MSG ("") #ifndef DEBUG_GLOBAL_LEVEL #define DEBUG_GLOBAL_LEVEL REPORT_LEVEL_WARNING #endif /* DEBUG_GLOBAL_LEVEL */ #ifndef ERROR_GLOBAL_LEVEL #define ERROR_GLOBAL_LEVEL DEBUG_GLOBAL_LEVEL #endif /* ERROR_GLOBAL_LEVEL */ #ifndef EVENT_GLOBAL_LEVEL #define EVENT_GLOBAL_LEVEL REPORT_LEVEL_MINOR #endif /* EVENT_GLOBAL_LEVEL */ #ifdef EVENT_LOCAL_LEVEL #define EVENT_DYNAMIC_LEVEL EVENT_LOCAL_LEVEL #else #define EVENT_DYNAMIC_LEVEL EVENT_GLOBAL_LEVEL #endif /* EVENT_LOCAL_LEVEL */ #ifndef DEBUG_DYNAMIC_LEVEL #define DEBUG_USING_STATIC_LEVEL #ifdef DEBUG_STATIC_LEVEL #define DEBUG_DYNAMIC_LEVEL DEBUG_STATIC_LEVEL #else #define DEBUG_DYNAMIC_LEVEL DEBUG_GLOBAL_LEVEL #endif /* DEBUG_STATIC_LEVEL */ #else /* DEBUG_DYNAMIC_LEVEL */ #ifdef DEBUG_STATIC_LEVEL #error "Please use either DEBUG_STATIC_LEVEL or DEBUG_DYNAMIC_LEVEL (not both)" #else int DEBUG_DYNAMIC_LEVEL = DEBUG_GLOBAL_LEVEL; #endif /* DEBUG_STATIC_LEVEL */ #endif /* !DEBUG_DYNAMIC_LEVEL */ #ifndef ERROR_DYNAMIC_LEVEL #ifdef ERROR_STATIC_LEVEL #define ERROR_DYNAMIC_LEVEL ERROR_STATIC_LEVEL #else #define ERROR_DYNAMIC_LEVEL ERROR_GLOBAL_LEVEL #endif /* ERROR_STATIC_LEVEL */ #else /* ERROR_DYNAMIC_LEVEL */ #ifdef ERROR_STATIC_LEVEL #error "Please use either ERROR_STATIC_LEVEL or ERROR_DYNAMIC_LEVEL (not both)" #else int ERROR_DYNAMIC_LEVEL = ERROR_GLOBAL_LEVEL; #endif /* ERROR_STATIC_LEVEL */ #endif /* !ERROR_DYNAMIC_LEVEL */ #define PRINT_FORMAT "[CPU%02d, %s:%d %s]" #define PRINT_FMT_PARAMS CORE_GetId(), __FILE__, __LINE__, __FUNCTION__ +#define ERR_STRING(err) #err #if (!(defined(DEBUG_ERRORS)) || (DEBUG_ERRORS == 0)) /* No debug/error/event messages at all */ #define DBG(_level, _vmsg) #define REPORT_ERROR(_level, _err, _vmsg) #define RETURN_ERROR(_level, _err, _vmsg) \ return ERROR_CODE(_err) #if (REPORT_EVENTS > 0) #define REPORT_EVENT(_ev, _appId, _flg, _vmsg) \ do { \ if (_ev##_LEVEL <= EVENT_DYNAMIC_LEVEL) { \ XX_EventById((uint32_t)(_ev), (t_Handle)(_appId), (uint16_t)(_flg), NO_MSG); \ } \ } while (0) #else #define REPORT_EVENT(_ev, _appId, _flg, _vmsg) #endif /* (REPORT_EVENTS > 0) */ #else /* DEBUG_ERRORS > 0 */ extern const char *dbgLevelStrings[]; extern const char *errTypeStrings[]; extern const char *moduleStrings[]; #if (REPORT_EVENTS > 0) extern const char *eventStrings[]; #endif /* (REPORT_EVENTS > 0) */ #if ((defined(DEBUG_USING_STATIC_LEVEL)) && (DEBUG_DYNAMIC_LEVEL < REPORT_LEVEL_WARNING)) /* No need for DBG macro - debug level is higher anyway */ #define DBG(_level, _vmsg) #else #define DBG(_level, _vmsg) \ do { \ if (REPORT_LEVEL_##_level <= DEBUG_DYNAMIC_LEVEL) { \ XX_Print("> %s (%s) " PRINT_FORMAT ": ", \ dbgLevelStrings[REPORT_LEVEL_##_level - 1], \ - moduleStrings[__ERR_MODULE__ >> 16], \ + ERR_STRING(__ERR_MODULE__), \ PRINT_FMT_PARAMS); \ XX_Print _vmsg; \ XX_Print("\r\n"); \ } \ } while (0) #endif /* (defined(DEBUG_USING_STATIC_LEVEL) && (DEBUG_DYNAMIC_LEVEL < WARNING)) */ #define REPORT_ERROR(_level, _err, _vmsg) \ do { \ if (REPORT_LEVEL_##_level <= ERROR_DYNAMIC_LEVEL) { \ XX_Print("! %s %s Error " PRINT_FORMAT ": %s; ", \ dbgLevelStrings[REPORT_LEVEL_##_level - 1], \ - moduleStrings[__ERR_MODULE__ >> 16], \ + ERR_STRING(__ERR_MODULE__), \ PRINT_FMT_PARAMS, \ errTypeStrings[(GET_ERROR_TYPE(_err) - E_OK - 1)]); \ XX_Print _vmsg; \ XX_Print("\r\n"); \ } \ } while (0) #define RETURN_ERROR(_level, _err, _vmsg) \ do { \ REPORT_ERROR(_level, (_err), _vmsg); \ return ERROR_CODE(_err); \ } while (0) #if (REPORT_EVENTS > 0) #define REPORT_EVENT(_ev, _appId, _flg, _vmsg) \ do { \ if (_ev##_LEVEL <= EVENT_DYNAMIC_LEVEL) { \ XX_Print("~ %s %s Event " PRINT_FORMAT ": %s (flags: 0x%04x); ", \ dbgLevelStrings[_ev##_LEVEL - 1], \ - moduleStrings[__ERR_MODULE__ >> 16], \ + ERR_STRING(__ERR_MODULE__), \ PRINT_FMT_PARAMS, \ eventStrings[((_ev) - EV_NO_EVENT - 1)], \ (uint16_t)(_flg)); \ XX_Print _vmsg; \ XX_Print("\r\n"); \ XX_EventById((uint32_t)(_ev), (t_Handle)(_appId), (uint16_t)(_flg), NO_MSG); \ } \ } while (0) #else /* not REPORT_EVENTS */ #define REPORT_EVENT(_ev, _appId, _flg, _vmsg) #endif /* (REPORT_EVENTS > 0) */ #endif /* (DEBUG_ERRORS > 0) */ /**************************************************************************//** @Function ASSERT_COND @Description Assertion macro. @Param[in] _cond - The condition being checked, in positive form; Failure of the condition triggers the assert. *//***************************************************************************/ #ifdef DISABLE_ASSERTIONS #define ASSERT_COND(_cond) #else #define ASSERT_COND(_cond) \ do { \ if (!(_cond)) { \ XX_Print("*** ASSERT_COND failed " PRINT_FORMAT "\r\n", \ PRINT_FMT_PARAMS); \ XX_Exit(1); \ } \ } while (0) #endif /* DISABLE_ASSERTIONS */ #ifdef DISABLE_INIT_PARAMETERS_CHECK #define CHECK_INIT_PARAMETERS(handle, f_check) #define CHECK_INIT_PARAMETERS_RETURN_VALUE(handle, f_check, retval) #else #define CHECK_INIT_PARAMETERS(handle, f_check) \ do { \ t_Error err = f_check(handle); \ if (err != E_OK) { \ RETURN_ERROR(MAJOR, err, NO_MSG); \ } \ } while (0) #define CHECK_INIT_PARAMETERS_RETURN_VALUE(handle, f_check, retval) \ do { \ t_Error err = f_check(handle); \ if (err != E_OK) { \ REPORT_ERROR(MAJOR, err, NO_MSG); \ return (retval); \ } \ } while (0) #endif /* DISABLE_INIT_PARAMETERS_CHECK */ #ifdef DISABLE_SANITY_CHECKS #define SANITY_CHECK_RETURN_ERROR(_cond, _err) #define SANITY_CHECK_RETURN_VALUE(_cond, _err, retval) #define SANITY_CHECK_RETURN(_cond, _err) #define SANITY_CHECK_EXIT(_cond, _err) #else /* DISABLE_SANITY_CHECKS */ #define SANITY_CHECK_RETURN_ERROR(_cond, _err) \ do { \ if (!(_cond)) { \ RETURN_ERROR(CRITICAL, (_err), NO_MSG); \ } \ } while (0) #define SANITY_CHECK_RETURN_VALUE(_cond, _err, retval) \ do { \ if (!(_cond)) { \ REPORT_ERROR(CRITICAL, (_err), NO_MSG); \ return (retval); \ } \ } while (0) #define SANITY_CHECK_RETURN(_cond, _err) \ do { \ if (!(_cond)) { \ REPORT_ERROR(CRITICAL, (_err), NO_MSG); \ return; \ } \ } while (0) #define SANITY_CHECK_EXIT(_cond, _err) \ do { \ if (!(_cond)) { \ REPORT_ERROR(CRITICAL, (_err), NO_MSG); \ XX_Exit(1); \ } \ } while (0) #endif /* DISABLE_SANITY_CHECKS */ /** @} */ /* end of Debug/error Utils group */ /** @} */ /* end of General Utils group */ #endif /* __ERROR_EXT_H */ Index: head/sys/contrib/ncsw/inc/integrations/P5020/dpaa_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P5020/dpaa_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P5020/dpaa_integration_ext.h (nonexistent) @@ -1,374 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File dpaa_integration_ext.h - - @Description P5020 FM external definitions and structures. -*//***************************************************************************/ -#ifndef __DPAA_INTEGRATION_EXT_H -#define __DPAA_INTEGRATION_EXT_H - -#include "std_ext.h" - - -/**************************************************************************//** - @Description DPAA SW Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_SWPORTAL0 = 0, - e_DPAA_SWPORTAL1, - e_DPAA_SWPORTAL2, - e_DPAA_SWPORTAL3, - e_DPAA_SWPORTAL4, - e_DPAA_SWPORTAL5, - e_DPAA_SWPORTAL6, - e_DPAA_SWPORTAL7, - e_DPAA_SWPORTAL8, - e_DPAA_SWPORTAL9, - e_DPAA_SWPORTAL_DUMMY_LAST -} e_DpaaSwPortal; - -/**************************************************************************//** - @Description DPAA Direct Connect Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_DCPORTAL0 = 0, - e_DPAA_DCPORTAL1, - e_DPAA_DCPORTAL2, - e_DPAA_DCPORTAL3, - e_DPAA_DCPORTAL4, - e_DPAA_DCPORTAL_DUMMY_LAST -} e_DpaaDcPortal; - -#define DPAA_MAX_NUM_OF_SW_PORTALS e_DPAA_SWPORTAL_DUMMY_LAST -#define DPAA_MAX_NUM_OF_DC_PORTALS e_DPAA_DCPORTAL_DUMMY_LAST - -/***************************************************************************** - QMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define QM_MAX_NUM_OF_POOL_CHANNELS 15 /**< Total number of channels, dedicated and pool */ -#define QM_MAX_NUM_OF_WQ 8 /**< Number of work queues per channel */ -#define QM_MAX_NUM_OF_CGS 256 /**< Congestion groups number */ -#define QM_MAX_NUM_OF_FQIDS (16 * MEGABYTE) - /**< FQIDs range - 24 bits */ - -/**************************************************************************//** - @Description Work Queue Channel assignments in QMan. -*//***************************************************************************/ -typedef enum -{ - e_QM_FQ_CHANNEL_SWPORTAL0 = 0, /**< Dedicated channels serviced by software portals 0 to 9 */ - e_QM_FQ_CHANNEL_SWPORTAL1, - e_QM_FQ_CHANNEL_SWPORTAL2, - e_QM_FQ_CHANNEL_SWPORTAL3, - e_QM_FQ_CHANNEL_SWPORTAL4, - e_QM_FQ_CHANNEL_SWPORTAL5, - e_QM_FQ_CHANNEL_SWPORTAL6, - e_QM_FQ_CHANNEL_SWPORTAL7, - e_QM_FQ_CHANNEL_SWPORTAL8, - e_QM_FQ_CHANNEL_SWPORTAL9, - - e_QM_FQ_CHANNEL_POOL1 = 0x21, /**< Pool channels that can be serviced by any of the software portals */ - e_QM_FQ_CHANNEL_POOL2, - e_QM_FQ_CHANNEL_POOL3, - e_QM_FQ_CHANNEL_POOL4, - e_QM_FQ_CHANNEL_POOL5, - e_QM_FQ_CHANNEL_POOL6, - e_QM_FQ_CHANNEL_POOL7, - e_QM_FQ_CHANNEL_POOL8, - e_QM_FQ_CHANNEL_POOL9, - e_QM_FQ_CHANNEL_POOL10, - e_QM_FQ_CHANNEL_POOL11, - e_QM_FQ_CHANNEL_POOL12, - e_QM_FQ_CHANNEL_POOL13, - e_QM_FQ_CHANNEL_POOL14, - e_QM_FQ_CHANNEL_POOL15, - - e_QM_FQ_CHANNEL_FMAN0_SP0 = 0x40, /**< Dedicated channels serviced by Direct Connect Portal 0: - connected to FMan 0; assigned in incrementing order to - each sub-portal (SP) in the portal */ - e_QM_FQ_CHANNEL_FMAN0_SP1, - e_QM_FQ_CHANNEL_FMAN0_SP2, - e_QM_FQ_CHANNEL_FMAN0_SP3, - e_QM_FQ_CHANNEL_FMAN0_SP4, - e_QM_FQ_CHANNEL_FMAN0_SP5, - e_QM_FQ_CHANNEL_FMAN0_SP6, - e_QM_FQ_CHANNEL_FMAN0_SP7, - e_QM_FQ_CHANNEL_FMAN0_SP8, - e_QM_FQ_CHANNEL_FMAN0_SP9, - e_QM_FQ_CHANNEL_FMAN0_SP10, - e_QM_FQ_CHANNEL_FMAN0_SP11, - - e_QM_FQ_CHANNEL_RMAN_SP2 = 0x62, /**< Dedicated channels serviced by Direct Connect Portal 1: connected to RMan */ - e_QM_FQ_CHANNEL_RMAN_SP3, - - e_QM_FQ_CHANNEL_CAAM = 0x80, /**< Dedicated channel serviced by Direct Connect Portal 2: - connected to SEC 4.x */ - - e_QM_FQ_CHANNEL_PME = 0xA0, /**< Dedicated channel serviced by Direct Connect Portal 3: - connected to PME */ - e_QM_FQ_CHANNEL_RAID = 0xC0 /**< Dedicated channel serviced by Direct Connect Portal 4: - connected to RAID */ -} e_QmFQChannel; - -/***************************************************************************** - BMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define BM_MAX_NUM_OF_POOLS 64 /**< Number of buffers pools */ - -/***************************************************************************** - FM INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define INTG_MAX_NUM_OF_FM 1 - -/* Ports defines */ -#define FM_MAX_NUM_OF_1G_MACS 5 -#define FM_MAX_NUM_OF_10G_MACS 1 -#define FM_MAX_NUM_OF_MACS (FM_MAX_NUM_OF_1G_MACS + FM_MAX_NUM_OF_10G_MACS) -#define FM_MAX_NUM_OF_OH_PORTS 7 - -#define FM_MAX_NUM_OF_1G_RX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_RX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_RX_PORTS (FM_MAX_NUM_OF_10G_RX_PORTS + FM_MAX_NUM_OF_1G_RX_PORTS) - -#define FM_MAX_NUM_OF_1G_TX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_TX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_TX_PORTS (FM_MAX_NUM_OF_10G_TX_PORTS + FM_MAX_NUM_OF_1G_TX_PORTS) - -#define FM_PORT_MAX_NUM_OF_EXT_POOLS 8 /**< Number of external BM pools per Rx port */ -#define FM_PORT_NUM_OF_CONGESTION_GRPS 256 /**< Total number of congestion groups in QM */ -#define FM_MAX_NUM_OF_SUB_PORTALS 12 -#define FM_PORT_MAX_NUM_OF_OBSERVED_EXT_POOLS 0 - -/* RAMs defines */ -#define FM_MURAM_SIZE (160 * KILOBYTE) -#define FM_IRAM_SIZE ( 64 * KILOBYTE) - -/* PCD defines */ -#define FM_PCD_PLCR_NUM_ENTRIES 256 /**< Total number of policer profiles */ -#define FM_PCD_KG_NUM_OF_SCHEMES 32 /**< Total number of KG schemes */ -#define FM_PCD_MAX_NUM_OF_CLS_PLANS 256 /**< Number of classification plan entries. */ - -/* RTC defines */ -#define FM_RTC_NUM_OF_ALARMS 2 /**< RTC number of alarms */ -#define FM_RTC_NUM_OF_PERIODIC_PULSES 2 /**< RTC number of periodic pulses */ -#define FM_RTC_NUM_OF_EXT_TRIGGERS 2 /**< RTC number of external triggers */ - -/* QMI defines */ -#define QMI_MAX_NUM_OF_TNUMS 64 -#define MAX_QMI_DEQ_SUBPORTAL 12 -#define QMI_DEF_TNUMS_THRESH 48 - -/* FPM defines */ -#define FM_NUM_OF_FMAN_CTRL_EVENT_REGS 4 - -/* DMA defines */ -#define DMA_THRESH_MAX_COMMQ 31 -#define DMA_THRESH_MAX_BUF 127 - -/* BMI defines */ -#define BMI_MAX_NUM_OF_TASKS 128 -#define BMI_MAX_NUM_OF_DMAS 32 -#define BMI_MAX_FIFO_SIZE (FM_MURAM_SIZE) -#define PORT_MAX_WEIGHT 16 - - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmEventModules -{ - e_FM_MOD_PRS, /**< Parser event */ - e_FM_MOD_KG, /**< Keygen event */ - e_FM_MOD_PLCR, /**< Policer event */ - e_FM_MOD_10G_MAC, /**< 10G MAC error event */ - e_FM_MOD_1G_MAC, /**< 1G MAC error event */ - e_FM_MOD_TMR, /**< Timer event */ - e_FM_MOD_1G_MAC_TMR, /**< 1G MAC timer event */ - e_FM_MOD_FMAN_CTRL, /**< FMAN Controller timer event */ - e_FM_MOD_DUMMY_LAST -} e_FmEventModules; - -/**************************************************************************//** - @Description Enum for interrupts types -*//***************************************************************************/ -typedef enum e_FmIntrType -{ - e_FM_INTR_TYPE_ERR, - e_FM_INTR_TYPE_NORMAL -} e_FmIntrType; - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmInterModuleEvent -{ - e_FM_EV_PRS, /**< Parser event */ - e_FM_EV_ERR_PRS, /**< Parser error event */ - e_FM_EV_KG, /**< Keygen event */ - e_FM_EV_ERR_KG, /**< Keygen error event */ - e_FM_EV_PLCR, /**< Policer event */ - e_FM_EV_ERR_PLCR, /**< Policer error event */ - e_FM_EV_ERR_10G_MAC0, /**< 10G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC0, /**< 1G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC1, /**< 1G MAC 1 error event */ - e_FM_EV_ERR_1G_MAC2, /**< 1G MAC 2 error event */ - e_FM_EV_ERR_1G_MAC3, /**< 1G MAC 3 error event */ - e_FM_EV_ERR_1G_MAC4, /**< 1G MAC 4 error event */ - e_FM_EV_TMR, /**< Timer event */ - e_FM_EV_1G_MAC0_TMR, /**< 1G MAC 0 timer event */ - e_FM_EV_1G_MAC1_TMR, /**< 1G MAC 1 timer event */ - e_FM_EV_1G_MAC2_TMR, /**< 1G MAC 2 timer event */ - e_FM_EV_1G_MAC3_TMR, /**< 1G MAC 3 timer event */ - e_FM_EV_1G_MAC4_TMR, /**< 1G MAC 4 timer event */ - e_FM_EV_FMAN_CTRL_0, /**< Fman controller event 0 */ - e_FM_EV_FMAN_CTRL_1, /**< Fman controller event 1 */ - e_FM_EV_FMAN_CTRL_2, /**< Fman controller event 2 */ - e_FM_EV_FMAN_CTRL_3, /**< Fman controller event 3 */ - e_FM_EV_DUMMY_LAST -} e_FmInterModuleEvent; - -#define GET_FM_MODULE_EVENT(mod, id, intrType, event) \ - switch(mod){ \ - case e_FM_MOD_PRS: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PRS : e_FM_EV_PRS; \ - break; \ - case e_FM_MOD_KG: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_KG : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_PLCR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PLCR : e_FM_EV_PLCR; \ - break; \ - case e_FM_MOD_10G_MAC: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_10G_MAC0 : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_1G_MAC: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC0 : e_FM_EV_DUMMY_LAST; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC1 : e_FM_EV_DUMMY_LAST; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC2 : e_FM_EV_DUMMY_LAST; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC3 : e_FM_EV_DUMMY_LAST; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC4 : e_FM_EV_DUMMY_LAST; break; \ - } \ - break; \ - case e_FM_MOD_TMR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_TMR; \ - break; \ - case e_FM_MOD_1G_MAC_TMR: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC0_TMR; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC1_TMR; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC2_TMR; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC3_TMR; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC4_TMR; break; \ - } \ - break; \ - case e_FM_MOD_FMAN_CTRL: \ - if (intrType == e_FM_INTR_TYPE_ERR) event = e_FM_EV_DUMMY_LAST; \ - else switch(id){ \ - case(0): event = e_FM_EV_FMAN_CTRL_0; break; \ - case(1): event = e_FM_EV_FMAN_CTRL_1; break; \ - case(2): event = e_FM_EV_FMAN_CTRL_2; break; \ - case(3): event = e_FM_EV_FMAN_CTRL_3; break; \ - } \ - break; \ - default: event = e_FM_EV_DUMMY_LAST; \ - break;} - -#define FM_CHECK_PORT_RESTRICTIONS(__validPorts, __newPortIndx) TRUE - -/* P5020 unique features */ -#define FM_QMI_DEQ_OPTIONS_SUPPORT -#define FM_NO_DISPATCH_RAM_ECC -#define FM_FIFO_ALLOCATION_OLD_ALG -#define FM_NO_WATCHDOG -#define FM_NO_TNUM_AGING -#define FM_NO_TGEC_LOOPBACK -#define FM_KG_NO_BYPASS_FQID_GEN -#define FM_KG_NO_BYPASS_PLCR_PROFILE_GEN -#define FM_NO_BACKUP_POOLS -#define FM_NO_OP_OBSERVED_POOLS -#define FM_NO_ADVANCED_RATE_LIMITER -#define FM_NO_OP_OBSERVED_CGS - -/* FM erratas */ -#define FM_TX_ECC_FRMS_ERRATA_10GMAC_A004 -#define FM_TX_SHORT_FRAME_BAD_TS_ERRATA_10GMAC_A006 /* No implementation, Out of LLD scope */ -#define FM_TX_FIFO_CORRUPTION_ERRATA_10GMAC_A007 -#define FM_ECC_HALT_NO_SYNC_ERRATA_10GMAC_A008 - -#define FM_NO_RX_PREAM_ERRATA_DTSECx1 -#define FM_RX_PREAM_4_ERRATA_DTSEC_A001 FM_NO_RX_PREAM_ERRATA_DTSECx1 -#define FM_GRS_ERRATA_DTSEC_A002 -#define FM_BAD_TX_TS_IN_B_2_B_ERRATA_DTSEC_A003 -#define FM_GTS_ERRATA_DTSEC_A004 -#define FM_PAUSE_BLOCK_ERRATA_DTSEC_A006 /* do nothing */ -#define FM_RESERVED_ACCESS_TO_DISABLED_DEV_ERRATA_DTSEC_A0011 /* do nothing */ -#define FM_GTS_AFTER_MAC_ABORTED_FRAME_ERRATA_DTSEC_A0012 FM_GTS_ERRATA_DTSEC_A004 -#define FM_MAGIC_PACKET_UNRECOGNIZED_ERRATA_DTSEC2 /* No implementation, Out of LLD scope */ -#define FM_10_100_SGMII_NO_TS_ERRATA_DTSEC3 -#define FM_TX_LOCKUP_ERRATA_DTSEC6 - -#define FM_IM_TX_SYNC_SKIP_TNUM_ERRATA_FMAN_A001 /* Implemented by ucode */ -#define FM_HC_DEF_FQID_ONLY_ERRATA_FMAN_A003 /* Implemented by ucode */ -#define FM_IM_TX_SHARED_TNUM_ERRATA_FMAN4 /* Implemented by ucode */ -#define FM_IM_GS_DEADLOCK_ERRATA_FMAN5 /* Implemented by ucode */ -#define FM_IM_DEQ_PIPELINE_DEPTH_ERRATA_FMAN10 /* Implemented by ucode */ -#define FM_CC_GEN6_MISSMATCH_ERRATA_FMAN12 /* Implemented by ucode */ -#define FM_CC_CHANGE_SHARED_TNUM_ERRATA_FMAN13 /* Implemented by ucode */ -#define FM_IM_LARGE_MRBLR_ERRATA_FMAN15 /* Implemented by ucode */ -#define FM_BMI_TO_RISC_ENQ_ERRATA_FMANc /* No implementation, Out of LLD scope */ -#define FM_INVALID_SWPRS_DATA_ERRATA_FMANd -//#define FM_PRS_MPLS_SSA_ERRATA_FMANj /* No implementation, No patch yet */ -//#define FM_PRS_INITIAL_PLANID_ERRATA_FMANk /* No implementation, No patch yet */ - -#define FM_UCODE_NOT_RESET_ERRATA_BUGZILLA6173 - -#define FM_NO_COPY_CTXA_CTXB_ERRATA_FMAN_SW001 -#define FM_PRS_MEM_ERRATA_FMAN_SW003 -#define FM_LEN_CHECK_ERRATA_FMAN_SW002 - -#define FM_10G_REM_N_LCL_FLT_EX_ERRATA_10GMAC001 - - -#endif /* __DPAA_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P5020/dpaa_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/P5020/part_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P5020/part_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P5020/part_integration_ext.h (nonexistent) @@ -1,1004 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File part_integration_ext.h - - @Description P5020 external definitions and structures. -*//***************************************************************************/ -#ifndef __PART_INTEGRATION_EXT_H -#define __PART_INTEGRATION_EXT_H - -#include "std_ext.h" -#include "ddr_std_ext.h" -#include "enet_ext.h" -#include "dpaa_integration_ext.h" - - -/**************************************************************************//** - @Group P5020_chip_id P5020 Application Programming Interface - - @Description P5020 Chip functions,definitions and enums. - - @{ -*//***************************************************************************/ - -#define CORE_E500MC - -#define INTG_MAX_NUM_OF_CORES 2 - - -/**************************************************************************//** - @Description Module types. -*//***************************************************************************/ -typedef enum e_ModuleId -{ - e_MODULE_ID_DUART_1 = 0, - e_MODULE_ID_DUART_2, - e_MODULE_ID_DUART_3, - e_MODULE_ID_DUART_4, - e_MODULE_ID_LAW, - e_MODULE_ID_LBC, - e_MODULE_ID_PAMU, - e_MODULE_ID_QM, /**< Queue manager module */ - e_MODULE_ID_BM, /**< Buffer manager module */ - e_MODULE_ID_QM_CE_PORTAL_0, - e_MODULE_ID_QM_CI_PORTAL_0, - e_MODULE_ID_QM_CE_PORTAL_1, - e_MODULE_ID_QM_CI_PORTAL_1, - e_MODULE_ID_QM_CE_PORTAL_2, - e_MODULE_ID_QM_CI_PORTAL_2, - e_MODULE_ID_QM_CE_PORTAL_3, - e_MODULE_ID_QM_CI_PORTAL_3, - e_MODULE_ID_QM_CE_PORTAL_4, - e_MODULE_ID_QM_CI_PORTAL_4, - e_MODULE_ID_QM_CE_PORTAL_5, - e_MODULE_ID_QM_CI_PORTAL_5, - e_MODULE_ID_QM_CE_PORTAL_6, - e_MODULE_ID_QM_CI_PORTAL_6, - e_MODULE_ID_QM_CE_PORTAL_7, - e_MODULE_ID_QM_CI_PORTAL_7, - e_MODULE_ID_QM_CE_PORTAL_8, - e_MODULE_ID_QM_CI_PORTAL_8, - e_MODULE_ID_QM_CE_PORTAL_9, - e_MODULE_ID_QM_CI_PORTAL_9, - e_MODULE_ID_BM_CE_PORTAL_0, - e_MODULE_ID_BM_CI_PORTAL_0, - e_MODULE_ID_BM_CE_PORTAL_1, - e_MODULE_ID_BM_CI_PORTAL_1, - e_MODULE_ID_BM_CE_PORTAL_2, - e_MODULE_ID_BM_CI_PORTAL_2, - e_MODULE_ID_BM_CE_PORTAL_3, - e_MODULE_ID_BM_CI_PORTAL_3, - e_MODULE_ID_BM_CE_PORTAL_4, - e_MODULE_ID_BM_CI_PORTAL_4, - e_MODULE_ID_BM_CE_PORTAL_5, - e_MODULE_ID_BM_CI_PORTAL_5, - e_MODULE_ID_BM_CE_PORTAL_6, - e_MODULE_ID_BM_CI_PORTAL_6, - e_MODULE_ID_BM_CE_PORTAL_7, - e_MODULE_ID_BM_CI_PORTAL_7, - e_MODULE_ID_BM_CE_PORTAL_8, - e_MODULE_ID_BM_CI_PORTAL_8, - e_MODULE_ID_BM_CE_PORTAL_9, - e_MODULE_ID_BM_CI_PORTAL_9, - e_MODULE_ID_FM, /**< Frame manager module */ - e_MODULE_ID_FM_RTC, /**< FM Real-Time-Clock */ - e_MODULE_ID_FM_MURAM, /**< FM Multi-User-RAM */ - e_MODULE_ID_FM_BMI, /**< FM BMI block */ - e_MODULE_ID_FM_QMI, /**< FM QMI block */ - e_MODULE_ID_FM_PARSER, /**< FM parser block */ - e_MODULE_ID_FM_PORT_HO1, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO2, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO3, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO4, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO5, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO6, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO7, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_1GRx1, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx2, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx3, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx4, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx5, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GRx, /**< FM Rx 10G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx1, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx2, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx3, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx4, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx5, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GTx, /**< FM Tx 10G MAC port block */ - e_MODULE_ID_FM_PLCR, /**< FM Policer */ - e_MODULE_ID_FM_KG, /**< FM Keygen */ - e_MODULE_ID_FM_DMA, /**< FM DMA */ - e_MODULE_ID_FM_FPM, /**< FM FPM */ - e_MODULE_ID_FM_IRAM, /**< FM Instruction-RAM */ - e_MODULE_ID_FM_1GMDIO1, /**< FM 1G MDIO MAC 1*/ - e_MODULE_ID_FM_1GMDIO2, /**< FM 1G MDIO MAC 2*/ - e_MODULE_ID_FM_1GMDIO3, /**< FM 1G MDIO MAC 3*/ - e_MODULE_ID_FM_1GMDIO4, /**< FM 1G MDIO MAC 4*/ - e_MODULE_ID_FM_1GMDIO5, /**< FM 1G MDIO MAC 5*/ - e_MODULE_ID_FM_10GMDIO, /**< FM 10G MDIO */ - e_MODULE_ID_FM_PRS_IRAM, /**< FM SW-parser Instruction-RAM */ - e_MODULE_ID_FM_1GMAC1, /**< FM 1G MAC #1 */ - e_MODULE_ID_FM_1GMAC2, /**< FM 1G MAC #2 */ - e_MODULE_ID_FM_1GMAC3, /**< FM 1G MAC #3 */ - e_MODULE_ID_FM_1GMAC4, /**< FM 1G MAC #4 */ - e_MODULE_ID_FM_1GMAC5, /**< FM 1G MAC #5 */ - e_MODULE_ID_FM_10GMAC, /**< FM 10G MAC */ - - e_MODULE_ID_SEC_GEN, /**< SEC 4.0 General registers */ - e_MODULE_ID_SEC_QI, /**< SEC 4.0 QI registers */ - e_MODULE_ID_SEC_JQ0, /**< SEC 4.0 JQ-0 registers */ - e_MODULE_ID_SEC_JQ1, /**< SEC 4.0 JQ-1 registers */ - e_MODULE_ID_SEC_JQ2, /**< SEC 4.0 JQ-2 registers */ - e_MODULE_ID_SEC_JQ3, /**< SEC 4.0 JQ-3 registers */ - e_MODULE_ID_SEC_RTIC, /**< SEC 4.0 RTIC registers */ - e_MODULE_ID_SEC_DECO0_CCB0, /**< SEC 4.0 DECO-0/CCB-0 registers */ - e_MODULE_ID_SEC_DECO1_CCB1, /**< SEC 4.0 DECO-1/CCB-1 registers */ - e_MODULE_ID_SEC_DECO2_CCB2, /**< SEC 4.0 DECO-2/CCB-2 registers */ - e_MODULE_ID_SEC_DECO3_CCB3, /**< SEC 4.0 DECO-3/CCB-3 registers */ - e_MODULE_ID_SEC_DECO4_CCB4, /**< SEC 4.0 DECO-4/CCB-4 registers */ - - e_MODULE_ID_PIC, /**< PIC */ - e_MODULE_ID_GPIO, /**< GPIO */ - e_MODULE_ID_SERDES, /**< SERDES */ - e_MODULE_ID_CPC_1, /**< CoreNet-Platform-Cache 1 */ - e_MODULE_ID_CPC_2, /**< CoreNet-Platform-Cache 2 */ - e_MODULE_ID_DUMMY_LAST -} e_ModuleId; - -#define NUM_OF_MODULES e_MODULE_ID_DUMMY_LAST - -/* Offsets relative to CCSR base */ -#define P5020_OFFSET_LAW 0x00000c00 -#define P5020_OFFSET_DDR1 0x00008000 -#define P5020_OFFSET_DDR2 0x00009000 -#define P5020_OFFSET_CPC1 0x00010000 -#define P5020_OFFSET_CPC2 0x00011000 -#define P5020_OFFSET_CCF 0x00018000 -#define P5020_OFFSET_PAMU 0x00020000 -#define P5020_OFFSET_PIC 0x00040000 -#define P5020_OFFSET_GUTIL 0x000e0000 -#define P5020_OFFSET_RCPM 0x000e2000 -#define P5020_OFFSET_SERDES 0x000ea000 -#define P5020_OFFSET_DMA1 0x00100100 -#define P5020_OFFSET_DMA2 0x00101100 -#define P5020_OFFSET_ESPI 0x00110000 -#define P5020_OFFSET_ESDHC 0x00114000 -#define P5020_OFFSET_I2C1 0x00118000 -#define P5020_OFFSET_I2C2 0x00118100 -#define P5020_OFFSET_I2C3 0x00119000 -#define P5020_OFFSET_I2C4 0x00119100 -#define P5020_OFFSET_DUART1 0x0011c500 -#define P5020_OFFSET_DUART2 0x0011c600 -#define P5020_OFFSET_DUART3 0x0011d500 -#define P5020_OFFSET_DUART4 0x0011d600 -#define P5020_OFFSET_LBC 0x00124000 -#define P5020_OFFSET_GPIO 0x00130000 -#define P5020_OFFSET_PCIE1 0x00200000 -#define P5020_OFFSET_PCIE2 0x00201000 -#define P5020_OFFSET_PCIE3 0x00202000 -#define P5020_OFFSET_PCIE4 0x00203000 -#define P5020_OFFSET_USB1 0x00210000 -#define P5020_OFFSET_USB2 0x00211000 -#define P5020_OFFSET_USB_PHY 0x00214000 -#define P5020_OFFSET_SATA1 0x00220000 -#define P5020_OFFSET_SATA2 0x00221000 -#define P5020_OFFSET_SEC_GEN 0x00300000 -#define P5020_OFFSET_SEC_JQ0 0x00301000 -#define P5020_OFFSET_SEC_JQ1 0x00302000 -#define P5020_OFFSET_SEC_JQ2 0x00303000 -#define P5020_OFFSET_SEC_JQ3 0x00304000 -#define P5020_OFFSET_SEC_RESERVED 0x00305000 -#define P5020_OFFSET_SEC_RTIC 0x00306000 -#define P5020_OFFSET_SEC_QI 0x00307000 -#define P5020_OFFSET_SEC_DECO0_CCB0 0x00308000 -#define P5020_OFFSET_SEC_DECO1_CCB1 0x00309000 -#define P5020_OFFSET_PME 0x00316000 -#define P5020_OFFSET_QM 0x00318000 -#define P5020_OFFSET_BM 0x0031a000 -#define P5020_OFFSET_RAID 0x00320000 -#define P5020_OFFSET_FM 0x00400000 - -#define P5020_OFFSET_FM_MURAM P5020_OFFSET_FM -#define P5020_OFFSET_FM_BMI (P5020_OFFSET_FM + 0x00080000) -#define P5020_OFFSET_FM_QMI (P5020_OFFSET_FM + 0x00080400) -#define P5020_OFFSET_FM_PARSER (P5020_OFFSET_FM + 0x00080800) -#define P5020_OFFSET_FM_PORT_HO1 (P5020_OFFSET_FM + 0x00081000) /* host command/offline parser */ -#define P5020_OFFSET_FM_PORT_HO2 (P5020_OFFSET_FM + 0x00082000) -#define P5020_OFFSET_FM_PORT_HO3 (P5020_OFFSET_FM + 0x00083000) -#define P5020_OFFSET_FM_PORT_HO4 (P5020_OFFSET_FM + 0x00084000) -#define P5020_OFFSET_FM_PORT_HO5 (P5020_OFFSET_FM + 0x00085000) -#define P5020_OFFSET_FM_PORT_HO6 (P5020_OFFSET_FM + 0x00086000) -#define P5020_OFFSET_FM_PORT_HO7 (P5020_OFFSET_FM + 0x00087000) -#define P5020_OFFSET_FM_PORT_1GRX1 (P5020_OFFSET_FM + 0x00088000) -#define P5020_OFFSET_FM_PORT_1GRX2 (P5020_OFFSET_FM + 0x00089000) -#define P5020_OFFSET_FM_PORT_1GRX3 (P5020_OFFSET_FM + 0x0008a000) -#define P5020_OFFSET_FM_PORT_1GRX4 (P5020_OFFSET_FM + 0x0008b000) -#define P5020_OFFSET_FM_PORT_1GRX5 (P5020_OFFSET_FM + 0x0008c000) -#define P5020_OFFSET_FM_PORT_10GRX (P5020_OFFSET_FM + 0x00090000) -#define P5020_OFFSET_FM_PORT_1GTX1 (P5020_OFFSET_FM + 0x000a8000) -#define P5020_OFFSET_FM_PORT_1GTX2 (P5020_OFFSET_FM + 0x000a9000) -#define P5020_OFFSET_FM_PORT_1GTX3 (P5020_OFFSET_FM + 0x000aa000) -#define P5020_OFFSET_FM_PORT_1GTX4 (P5020_OFFSET_FM + 0x000ab000) -#define P5020_OFFSET_FM_PORT_1GTX5 (P5020_OFFSET_FM + 0x000ac000) -#define P5020_OFFSET_FM_PORT_10GTX (P5020_OFFSET_FM + 0x000b0000) -#define P5020_OFFSET_FM_PLCR (P5020_OFFSET_FM + 0x000c0000) -#define P5020_OFFSET_FM_KG (P5020_OFFSET_FM + 0x000c1000) -#define P5020_OFFSET_FM_DMA (P5020_OFFSET_FM + 0x000c2000) -#define P5020_OFFSET_FM_FPM (P5020_OFFSET_FM + 0x000c3000) -#define P5020_OFFSET_FM_IRAM (P5020_OFFSET_FM + 0x000c4000) -#define P5020_OFFSET_FM_PARSER_IRAM (P5020_OFFSET_FM + 0x000c7000) -#define P5020_OFFSET_FM_1GMAC1 (P5020_OFFSET_FM + 0x000e0000) -#define P5020_OFFSET_FM_1GMDIO (P5020_OFFSET_FM + 0x000e1000 + 0x120) -#define P5020_OFFSET_FM_1GMAC2 (P5020_OFFSET_FM + 0x000e2000) -#define P5020_OFFSET_FM_1GMAC3 (P5020_OFFSET_FM + 0x000e4000) -#define P5020_OFFSET_FM_1GMAC4 (P5020_OFFSET_FM + 0x000e6000) -#define P5020_OFFSET_FM_1GMAC5 (P5020_OFFSET_FM + 0x000e8000) -#define P5020_OFFSET_FM_10GMAC (P5020_OFFSET_FM + 0x000f0000) -#define P5020_OFFSET_FM_10GMDIO (P5020_OFFSET_FM + 0x000f1000 + 0x030) -#define P5020_OFFSET_FM_RTC (P5020_OFFSET_FM + 0x000fe000) - -/* Offsets relative to QM or BM portals base */ -#define P5020_OFFSET_PORTALS_CE_AREA 0x000000 /* cache enabled area */ -#define P5020_OFFSET_PORTALS_CI_AREA 0x100000 /* cache inhibited area */ - -#define P5020_CE_PORTAL_SIZE 0x4000 -#define P5020_CI_PORTAL_SIZE 0x1000 - -#define P5020_OFFSET_PORTALS_CE(portal) \ - (P5020_OFFSET_PORTALS_CE_AREA + P5020_CE_PORTAL_SIZE * (portal)) -#define P5020_OFFSET_PORTALS_CI(portal) \ - (P5020_OFFSET_PORTALS_CI_AREA + P5020_CI_PORTAL_SIZE * (portal)) - - -/**************************************************************************//** - @Description Transaction source ID (for memory controllers error reporting). -*//***************************************************************************/ -typedef enum e_TransSrc -{ - e_TRANS_SRC_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_TRANS_SRC_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_TRANS_SRC_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_TRANS_SRC_PCIE_4 = 0x3, /**< PCI Express 4 */ - e_TRANS_SRC_SRIO_1 = 0x8, /**< SRIO 1 */ - e_TRANS_SRC_SRIO_2 = 0x9, /**< SRIO 2 */ - e_TRANS_SRC_BMAN = 0x18, /**< BMan */ - e_TRANS_SRC_PAMU = 0x1C, /**< PAMU */ - e_TRANS_SRC_PME = 0x20, /**< PME */ - e_TRANS_SRC_SEC = 0x21, /**< Security engine */ - e_TRANS_SRC_RAID = 0x28, /**< RAID engine */ - e_TRANS_SRC_QMAN = 0x3C, /**< QMan */ - e_TRANS_SRC_USB_1 = 0x40, /**< USB 1 */ - e_TRANS_SRC_USB_2 = 0x41, /**< USB 2 */ - e_TRANS_SRC_ESDHC = 0x44, /**< eSDHC */ - e_TRANS_SRC_PBL = 0x48, /**< Pre-boot loader */ - e_TRANS_SRC_NPC = 0x4B, /**< Nexus port controller */ - e_TRANS_SRC_RMAN = 0x5D, /**< RIO message manager */ - e_TRANS_SRC_SATA_1 = 0x60, /**< SATA 1 */ - e_TRANS_SRC_SATA_2 = 0x61, /**< SATA 2 */ - e_TRANS_SRC_DMA_1 = 0x70, /**< DMA 1 */ - e_TRANS_SRC_DMA_2 = 0x71, /**< DMA 2 */ - e_TRANS_SRC_CORE_0_INST = 0x80, /**< Processor 0 (instruction) */ - e_TRANS_SRC_CORE_0_DATA = 0x81, /**< Processor 0 (data) */ - e_TRANS_SRC_CORE_1_INST = 0x82, /**< Processor 1 (instruction) */ - e_TRANS_SRC_CORE_1_DATA = 0x83, /**< Processor 1 (data) */ - e_TRANS_SRC_FM_10G = 0xC0, /**< FM XAUI */ - e_TRANS_SRC_FM_HO_1 = 0xC1, /**< FM offline, host 1 */ - e_TRANS_SRC_FM_HO_2 = 0xC2, /**< FM offline, host 2 */ - e_TRANS_SRC_FM_HO_3 = 0xC3, /**< FM offline, host 3 */ - e_TRANS_SRC_FM_HO_4 = 0xC4, /**< FM offline, host 4 */ - e_TRANS_SRC_FM_HO_5 = 0xC5, /**< FM offline, host 5 */ - e_TRANS_SRC_FM_HO_6 = 0xC6, /**< FM offline, host 6 */ - e_TRANS_SRC_FM_HO_7 = 0xC7, /**< FM offline, host 7 */ - e_TRANS_SRC_FM_GETH_1 = 0xC8, /**< FM GETH 1 */ - e_TRANS_SRC_FM_GETH_2 = 0xC9, /**< FM GETH 2 */ - e_TRANS_SRC_FM_GETH_3 = 0xCA, /**< FM GETH 3 */ - e_TRANS_SRC_FM_GETH_4 = 0xCB, /**< FM GETH 4 */ - e_TRANS_SRC_FM_GETH_5 = 0xCC /**< FM GETH 5 */ -} e_TransSrc; - -/**************************************************************************//** - @Description Local Access Window Target interface ID -*//***************************************************************************/ -typedef enum e_P5020LawTargetId -{ - e_P5020_LAW_TARGET_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_P5020_LAW_TARGET_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_P5020_LAW_TARGET_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_P5020_LAW_TARGET_PCIE_4 = 0x3, /**< PCI Express 4 */ - e_P5020_LAW_TARGET_SRIO_1 = 0x8, /**< SRIO 1 */ - e_P5020_LAW_TARGET_SRIO_2 = 0x9, /**< SRIO 2 */ - e_P5020_LAW_TARGET_LOCAL_SPACE = 0xF, /**< Inbound ATMUs */ - e_P5020_LAW_TARGET_DDR_CPC_1 = 0x10, /**< DDR controller 1 or CPC 1 SRAM */ - e_P5020_LAW_TARGET_DDR_CPC_2 = 0x11, /**< DDR controller 2 or CPC 2 SRAM */ - e_P5020_LAW_TARGET_DDR_CPC_INTLV = 0x14, /**< Interleaved DDR controllers or CPC SRAM */ - e_P5020_LAW_TARGET_BMAN = 0x18, /**< BMAN target interface ID */ - e_P5020_LAW_TARGET_DCSR = 0x1D, /**< DCSR */ - e_P5020_LAW_TARGET_LBC = 0x1F, /**< Local Bus target interface ID */ - e_P5020_LAW_TARGET_QMAN = 0x3C, /**< QMAN target interface ID */ - e_P5020_LAW_TARGET_NONE = 0xFF /**< None */ -} e_P5020LawTargetId; - -/*************************************************************** - P5020 general routines -****************************************************************/ -/**************************************************************************//** - @Group P5020_init_grp P5020 Initialization Unit - - @Description P5020 initialization unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Description Part ID and revision number -*//***************************************************************************/ -typedef enum e_P5020DeviceName -{ - e_P5020_REV_INVALID = 0x00000000, /**< Invalid revision */ - e_P5020_REV_1_0 = (int)0x82280010, /**< P5020 with security, revision 1.0 */ - e_P5020_REV_1_0_NO_SEC = (int)0x82200010, /**< P5020 without security, revision 1.0 */ - e_P5010_REV_1_0 = (int)0x82290010, /**< P5010 with security, revision 1.0 */ - e_P5010_REV_1_0_NO_SEC = (int)0x82210010 /**< P5010 without security, revision 1.0 */ -} e_P5020DeviceName; - -/**************************************************************************//** - @Description Device Disable Register -*//***************************************************************************/ -typedef enum e_P5020DeviceDisable -{ - e_P5020_DEV_DISABLE_PCIE_1 = 0, /**< PCI Express controller 1 disable */ - e_P5020_DEV_DISABLE_PCIE_2, /**< PCI Express controller 2 disable */ - e_P5020_DEV_DISABLE_PCIE_3, /**< PCI Express controller 3 disable */ - e_P5020_DEV_DISABLE_PCIE_4, /**< PCI Express controller 4 disable */ - e_P5020_DEV_DISABLE_RMAN, /**< RapidIO message manager disable */ - e_P5020_DEV_DISABLE_SRIO_1, /**< Serial RapidIO controller 1 disable */ - e_P5020_DEV_DISABLE_SRIO_2, /**< Serial RapidIO controller 2 disable */ - e_P5020_DEV_DISABLE_DMA_1 = 9, /**< DMA controller 1 disable */ - e_P5020_DEV_DISABLE_DMA_2, /**< DMA controller 2 disable */ - e_P5020_DEV_DISABLE_DDR_1, /**< DDR controller 1 disable */ - e_P5020_DEV_DISABLE_DDR_2, /**< DDR controller 2 disable */ - e_P5020_DEV_DISABLE_SATA_1 = 17, /**< SATA controller 1 disable */ - e_P5020_DEV_DISABLE_SATA_2, /**< SATA controller 2 disable */ - e_P5020_DEV_DISABLE_LBC, /**< eLBC controller disable */ - e_P5020_DEV_DISABLE_USB_1, /**< USB controller 1 disable */ - e_P5020_DEV_DISABLE_USB_2, /**< USB controller 2 disable */ - e_P5020_DEV_DISABLE_ESDHC = 23, /**< eSDHC controller disable */ - e_P5020_DEV_DISABLE_GPIO, /**< GPIO controller disable */ - e_P5020_DEV_DISABLE_ESPI, /**< eSPI controller disable */ - e_P5020_DEV_DISABLE_I2C_1, /**< I2C module 1 (controllers 1 and 2) disable */ - e_P5020_DEV_DISABLE_I2C_2, /**< I2C module 2 (controllers 3 and 4) disable */ - e_P5020_DEV_DISABLE_DUART_1 = 30, /**< DUART controller 1 disable */ - e_P5020_DEV_DISABLE_DUART_2, /**< DUART controller 2 disable */ - e_P5020_DEV_DISABLE_DISR1_DUMMY_LAST = 32, - /**< Dummy entry signing end of DEVDISR1 register controllers */ - e_P5020_DEV_DISABLE_PME = e_P5020_DEV_DISABLE_DISR1_DUMMY_LAST, - /**< Pattern match engine disable */ - e_P5020_DEV_DISABLE_SEC, /**< Security disable */ - e_P5020_DEV_DISABLE_RAID, /**< RAID engine disable */ - e_P5020_DEV_DISABLE_QM_BM = e_P5020_DEV_DISABLE_DISR1_DUMMY_LAST + 4, - /**< Queue manager/buffer manager disable */ - e_P5020_DEV_DISABLE_FM = e_P5020_DEV_DISABLE_DISR1_DUMMY_LAST + 6, - /**< Frame manager disable */ - e_P5020_DEV_DISABLE_10G, /**< 10G Ethernet controller disable */ - e_P5020_DEV_DISABLE_DTSEC_1, /**< dTSEC controller 1 disable */ - e_P5020_DEV_DISABLE_DTSEC_2, /**< dTSEC controller 2 disable */ - e_P5020_DEV_DISABLE_DTSEC_3, /**< dTSEC controller 3 disable */ - e_P5020_DEV_DISABLE_DTSEC_4, /**< dTSEC controller 4 disable */ - e_P5020_DEV_DISABLE_DTSEC_5 /**< dTSEC controller 5 disable */ -} e_P5020DeviceDisable; - - -/**************************************************************************//* - @Description structure representing P5020 devices configuration -*//***************************************************************************/ -typedef struct t_P5020Devices -{ - struct - { - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; /**< Most significant bits represent lanes used by this bank, - one bit for lane, lane A is the first and so on, e.g., - set 0xF000 for ABCD lanes */ - e_EnetInterface ethIf; - uint8_t ratio; - bool divByTwo; - bool isTwoHalfSgmii; - } dtsecs[FM_MAX_NUM_OF_1G_MACS]; - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; - } tgec; - } fm; -} t_P5020Devices; - -/**************************************************************************//** - @Function P5020_GetRevInfo - - @Description Obtain revision information. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return Part ID and revision. -*//***************************************************************************/ -e_P5020DeviceName P5020_GetRevInfo(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P5020_GetE500Factor - - @Description Obtain core's multiplication factors. - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[in] coreIndex - Core index. - @Param[out] p_E500MulFactor - E500 to CCB multification factor. - @Param[out] p_E500DivFactor - E500 to CCB division factor. - -*//***************************************************************************/ -void P5020_GetE500Factor(uintptr_t gutilBase, - uint8_t coreIndex, - uint32_t *p_E500MulFactor, - uint32_t *p_E500DivFactor); - -/**************************************************************************//** - @Function P5020_GetCcbFactor - - @Description Obtain system multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return System multiplication factor. -*//***************************************************************************/ -uint32_t P5020_GetCcbFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P5020_GetDdrFactor - - @Description Obtain DDR clock multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR clock multiplication factor. -*//***************************************************************************/ -uint32_t P5020_GetDdrFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P5020_GetDdrType - - @Description Obtain DDR memory type. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR type. -*//***************************************************************************/ -e_DdrType P5020_GetDdrType(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P5020_GetFmFactor - - @Description returns FM multiplication factors. (This value is returned using - two parameters to avoid using float parameter). - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[out] p_FmMulFactor - FM to CCB multification factor. - @Param[out] p_FmDivFactor - FM to CCB division factor. - -*//***************************************************************************/ -void P5020_GetFmFactor(uintptr_t gutilBase, - uint32_t *p_FmMulFactor, - uint32_t *p_FmDivFactor); - - -void P5020_CoreTimeBaseEnable(uintptr_t rcpmBase); -void P5020_CoreTimeBaseDisable(uintptr_t rcpmBase); - -typedef enum e_SerdesProtocol -{ - SRDS_PROTOCOL_NONE = 0, - SRDS_PROTOCOL_PCIE1, - SRDS_PROTOCOL_PCIE2, - SRDS_PROTOCOL_PCIE3, - SRDS_PROTOCOL_PCIE4, - SRDS_PROTOCOL_SRIO1, - SRDS_PROTOCOL_SRIO2, - SRDS_PROTOCOL_SGMII_FM, - SRDS_PROTOCOL_XAUI_FM, - SRDS_PROTOCOL_SATA1, - SRDS_PROTOCOL_SATA2, - SRDS_PROTOCOL_AURORA -} e_SerdesProtocol; - -t_Error P5020_DeviceDisable(uintptr_t gutilBase, e_P5020DeviceDisable device, bool disable); -void P5020_GetDevicesConfiguration(uintptr_t gutilBase, t_P5020Devices *p_Devices); -t_Error P5020_PamuDisableBypass(uintptr_t gutilBase, uint8_t pamuId, bool disable); -uint32_t P5020_SerdesRcwGetProtocol(uintptr_t gutilBase); -bool P5020_SerdesRcwIsDeviceConfigured(uintptr_t gutilBase, e_SerdesProtocol device); -bool P5020_SerdesRcwIsLaneEnabled(uintptr_t gutilBase, uint32_t lane); - -/** @} */ /* end of P5020_init_grp group */ -/** @} */ /* end of P5020_grp group */ - - -/***************************************************************************** - INTEGRATION-SPECIFIC MODULE CODES -******************************************************************************/ -#define MODULE_UNKNOWN 0x00000000 -#define MODULE_MEM 0x00010000 -#define MODULE_MM 0x00020000 -#define MODULE_CORE 0x00030000 -#define MODULE_P5020 0x00040000 -#define MODULE_P5020_PLATFORM 0x00050000 -#define MODULE_PM 0x00060000 -#define MODULE_MMU 0x00070000 -#define MODULE_PIC 0x00080000 -#define MODULE_CPC 0x00090000 -#define MODULE_DUART 0x000a0000 -#define MODULE_SERDES 0x000b0000 -#define MODULE_PIO 0x000c0000 -#define MODULE_QM 0x000d0000 -#define MODULE_BM 0x000e0000 -#define MODULE_SEC 0x000f0000 -#define MODULE_LAW 0x00100000 -#define MODULE_LBC 0x00110000 -#define MODULE_PAMU 0x00120000 -#define MODULE_FM 0x00130000 -#define MODULE_FM_MURAM 0x00140000 -#define MODULE_FM_PCD 0x00150000 -#define MODULE_FM_RTC 0x00160000 -#define MODULE_FM_MAC 0x00170000 -#define MODULE_FM_PORT 0x00180000 -#define MODULE_DPA 0x00190000 -#define MODULE_MII 0x001a0000 -#define MODULE_I2C 0x001b0000 -#define MODULE_DMA 0x001c0000 -#define MODULE_DDR 0x001d0000 -#define MODULE_ESPI 0x001e0000 - -/***************************************************************************** - PAMU INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define PAMU_NUM_OF_PARTITIONS 4 - - -/***************************************************************************** - LAW INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define LAW_NUM_OF_WINDOWS 32 -#define LAW_MIN_WINDOW_SIZE 0x0000000000001000LL /**< 4KB */ -#define LAW_MAX_WINDOW_SIZE 0x0000002000000000LL /**< 64GB */ - - -/***************************************************************************** - LBC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -/**************************************************************************//** - @Group lbc_exception_grp LBC Exception Unit - - @Description LBC Exception unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Anchor lbc_exbm - - @Collection LBC Errors Bit Mask - - These errors are reported through the exceptions callback.. - The values can be or'ed in any combination in the errors mask - parameter of the errors report structure. - - These errors can also be passed as a bit-mask to - LBC_EnableErrorChecking() or LBC_DisableErrorChecking(), - for enabling or disabling error checking. - @{ -*//***************************************************************************/ -#define LBC_ERR_BUS_MONITOR 0x80000000 /**< Bus monitor error */ -#define LBC_ERR_PARITY_ECC 0x20000000 /**< Parity error for GPCM/UPM */ -#define LBC_ERR_WRITE_PROTECT 0x04000000 /**< Write protection error */ -#define LBC_ERR_CHIP_SELECT 0x00080000 /**< Unrecognized chip select */ - -#define LBC_ERR_ALL (LBC_ERR_BUS_MONITOR | LBC_ERR_PARITY_ECC | \ - LBC_ERR_WRITE_PROTECT | LBC_ERR_CHIP_SELECT) - /**< All possible errors */ -/* @} */ -/** @} */ /* end of lbc_exception_grp group */ - -#define LBC_INCORRECT_ERROR_REPORT_ERRATA - -#define LBC_NUM_OF_BANKS 8 -#define LBC_MAX_CS_SIZE 0x0000000100000000LL /* Up to 4G memory block size */ -#define LBC_PARITY_SUPPORT -#define LBC_ADDRESS_HOLD_TIME_CTRL -#define LBC_HIGH_CLK_DIVIDERS -#define LBC_FCM_AVAILABLE - -/***************************************************************************** - GPIO INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define GPIO_NUM_OF_PORTS 1 /**< Number of ports in GPIO module; - Each port contains up to 32 I/O pins. */ - -#define GPIO_VALID_PIN_MASKS \ - { /* Port A */ 0xFFFFFFFF } - -#define GPIO_VALID_INTR_MASKS \ - { /* Port A */ 0xFFFFFFFF } - - -/***************************************************************************** - SERDES INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define SRDS_MAX_LANES 18 -#define SRDS_MAX_BANK 3 - -/* Serdes lanes general information provided in the following form: - 1) Lane index in Serdes Control Registers Map - 2) Lane enable/disable bit number in RCW - 3) Lane bank index */ -#define SRDS_LANES \ -{ \ - { 0, 152, 0 }, \ - { 1, 153, 0 }, \ - { 2, 154, 0 }, \ - { 3, 155, 0 }, \ - { 4, 156, 0 }, \ - { 5, 157, 0 }, \ - { 6, 158, 0 }, \ - { 7, 159, 0 }, \ - { 8, 160, 0 }, \ - { 9, 161, 0 }, \ - { 16, 162, 1 }, \ - { 17, 163, 1 }, \ - { 18, 164, 1 }, \ - { 19, 165, 1 }, \ - { 20, 166, 2 }, \ - { 21, 167, 2 }, \ - { 22, 168, 2 }, \ - { 23, 169, 2 } \ -} - -#define SRDS_PROTOCOL_ALL_OPTIONS -/* Serdes lanes assignment and multiplexing. - Each option is selected by SRDS_PRTCL bits of RCW. */ -#define SRDS_PROTOCOL_OPTIONS \ -/* Protocol Lane assignment */ \ -{ \ -/* 0x00 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x01 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x02 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x03 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x04 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x05 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x06 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x07 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x08 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x09 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x0A */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x0B */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x0C */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x0D */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x0E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x0F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x10 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x11 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x12 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x13 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x14 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x15 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x16 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1}, \ -/* 0x17 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x18 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x19 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x1A */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x1B */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1C */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x1D */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x20 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x21 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x22 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x23 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x24 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x25 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x26 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x27 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x28 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x29 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x2A */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x2B */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x2C */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x2D */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x2E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x2F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x30 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x31 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x32 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x33 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x34 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x35 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x36 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x37 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2} \ -} - -/***************************************************************************** - DDR INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DDR_NUM_OF_VALID_CS 4 - -/***************************************************************************** - DMA INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DMA_NUM_OF_CONTROLLERS 2 - -/***************************************************************************** - CPC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ - -#define CPC_MAX_SIZE_SRAM_ERRATA_CPC4 -#define CPC_HARDWARE_FLUSH_ERRATA_CPC10 - - -#endif /* __PART_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P5020/part_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/P2041/dpaa_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P2041/dpaa_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P2041/dpaa_integration_ext.h (nonexistent) @@ -1,349 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File dpaa_integration_ext.h - - @Description P2041 FM external definitions and structures. -*//***************************************************************************/ -#ifndef __DPAA_INTEGRATION_EXT_H -#define __DPAA_INTEGRATION_EXT_H - -#include "std_ext.h" - - -/**************************************************************************//** - @Description DPAA SW Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_SWPORTAL0 = 0, - e_DPAA_SWPORTAL1, - e_DPAA_SWPORTAL2, - e_DPAA_SWPORTAL3, - e_DPAA_SWPORTAL4, - e_DPAA_SWPORTAL5, - e_DPAA_SWPORTAL6, - e_DPAA_SWPORTAL7, - e_DPAA_SWPORTAL8, - e_DPAA_SWPORTAL9, - e_DPAA_SWPORTAL_DUMMY_LAST -} e_DpaaSwPortal; - -/**************************************************************************//** - @Description DPAA Direct Connect Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_DCPORTAL0 = 0, - e_DPAA_DCPORTAL1, - e_DPAA_DCPORTAL2, - e_DPAA_DCPORTAL3, - e_DPAA_DCPORTAL4, - e_DPAA_DCPORTAL_DUMMY_LAST -} e_DpaaDcPortal; - -#define DPAA_MAX_NUM_OF_SW_PORTALS e_DPAA_SWPORTAL_DUMMY_LAST -#define DPAA_MAX_NUM_OF_DC_PORTALS e_DPAA_DCPORTAL_DUMMY_LAST - -/***************************************************************************** - QMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define QM_MAX_NUM_OF_POOL_CHANNELS 15 /**< Total number of channels, dedicated and pool */ -#define QM_MAX_NUM_OF_WQ 8 /**< Number of work queues per channel */ -#define QM_MAX_NUM_OF_CGS 256 /**< Congestion groups number */ -#define QM_MAX_NUM_OF_FQIDS (16 * MEGABYTE) - /**< FQIDs range - 24 bits */ - -/**************************************************************************//** - @Description Work Queue Channel assignments in QMan. -*//***************************************************************************/ -typedef enum -{ - e_QM_FQ_CHANNEL_SWPORTAL0 = 0, /**< Dedicated channels serviced by software portals 0 to 9 */ - e_QM_FQ_CHANNEL_SWPORTAL1, - e_QM_FQ_CHANNEL_SWPORTAL2, - e_QM_FQ_CHANNEL_SWPORTAL3, - e_QM_FQ_CHANNEL_SWPORTAL4, - e_QM_FQ_CHANNEL_SWPORTAL5, - e_QM_FQ_CHANNEL_SWPORTAL6, - e_QM_FQ_CHANNEL_SWPORTAL7, - e_QM_FQ_CHANNEL_SWPORTAL8, - e_QM_FQ_CHANNEL_SWPORTAL9, - - e_QM_FQ_CHANNEL_POOL1 = 0x21, /**< Pool channels that can be serviced by any of the software portals */ - e_QM_FQ_CHANNEL_POOL2, - e_QM_FQ_CHANNEL_POOL3, - e_QM_FQ_CHANNEL_POOL4, - e_QM_FQ_CHANNEL_POOL5, - e_QM_FQ_CHANNEL_POOL6, - e_QM_FQ_CHANNEL_POOL7, - e_QM_FQ_CHANNEL_POOL8, - e_QM_FQ_CHANNEL_POOL9, - e_QM_FQ_CHANNEL_POOL10, - e_QM_FQ_CHANNEL_POOL11, - e_QM_FQ_CHANNEL_POOL12, - e_QM_FQ_CHANNEL_POOL13, - e_QM_FQ_CHANNEL_POOL14, - e_QM_FQ_CHANNEL_POOL15, - - e_QM_FQ_CHANNEL_FMAN0_SP0 = 0x40, /**< Dedicated channels serviced by Direct Connect Portal 0: - connected to FMan 0; assigned in incrementing order to - each sub-portal (SP) in the portal */ - e_QM_FQ_CHANNEL_FMAN0_SP1, - e_QM_FQ_CHANNEL_FMAN0_SP2, - e_QM_FQ_CHANNEL_FMAN0_SP3, - e_QM_FQ_CHANNEL_FMAN0_SP4, - e_QM_FQ_CHANNEL_FMAN0_SP5, - e_QM_FQ_CHANNEL_FMAN0_SP6, - e_QM_FQ_CHANNEL_FMAN0_SP7, - e_QM_FQ_CHANNEL_FMAN0_SP8, - e_QM_FQ_CHANNEL_FMAN0_SP9, - e_QM_FQ_CHANNEL_FMAN0_SP10, - e_QM_FQ_CHANNEL_FMAN0_SP11, - - e_QM_FQ_CHANNEL_RMAN_SP2 = 0x62, /**< Dedicated channels serviced by Direct Connect Portal 1: connected to RMan */ - e_QM_FQ_CHANNEL_RMAN_SP3, - - e_QM_FQ_CHANNEL_CAAM = 0x80, /**< Dedicated channel serviced by Direct Connect Portal 2: - connected to SEC 4.x */ - - e_QM_FQ_CHANNEL_PME = 0xA0 /**< Dedicated channel serviced by Direct Connect Portal 3: - connected to PME */ -} e_QmFQChannel; - -/***************************************************************************** - BMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define BM_MAX_NUM_OF_POOLS 64 /**< Number of buffers pools */ - -/***************************************************************************** - SEC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define SEC_NUM_OF_DECOS 2 -#define SEC_ALL_DECOS_MASK 0x00000003 - -/***************************************************************************** - FM INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define INTG_MAX_NUM_OF_FM 1 - -/* Ports defines */ -#define FM_MAX_NUM_OF_1G_MACS 5 -#define FM_MAX_NUM_OF_10G_MACS 1 -#define FM_MAX_NUM_OF_MACS (FM_MAX_NUM_OF_1G_MACS + FM_MAX_NUM_OF_10G_MACS) -#define FM_MAX_NUM_OF_OH_PORTS 7 - -#define FM_MAX_NUM_OF_1G_RX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_RX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_RX_PORTS (FM_MAX_NUM_OF_10G_RX_PORTS + FM_MAX_NUM_OF_1G_RX_PORTS) - -#define FM_MAX_NUM_OF_1G_TX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_TX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_TX_PORTS (FM_MAX_NUM_OF_10G_TX_PORTS + FM_MAX_NUM_OF_1G_TX_PORTS) - -#define FM_PORT_MAX_NUM_OF_EXT_POOLS 8 /**< Number of external BM pools per Rx port */ -#define FM_PORT_NUM_OF_CONGESTION_GRPS 256 /**< Total number of congestion groups in QM */ -#define FM_MAX_NUM_OF_SUB_PORTALS 12 -#define FM_PORT_MAX_NUM_OF_OBSERVED_EXT_POOLS 0 - -/* RAMs defines */ -#define FM_MURAM_SIZE (160 * KILOBYTE) -#define FM_IRAM_SIZE ( 64 * KILOBYTE) - -/* PCD defines */ -#define FM_PCD_PLCR_NUM_ENTRIES 256 /**< Total number of policer profiles */ -#define FM_PCD_KG_NUM_OF_SCHEMES 32 /**< Total number of KG schemes */ -#define FM_PCD_MAX_NUM_OF_CLS_PLANS 256 /**< Number of classification plan entries. */ - -/* RTC defines */ -#define FM_RTC_NUM_OF_ALARMS 2 /**< RTC number of alarms */ -#define FM_RTC_NUM_OF_PERIODIC_PULSES 2 /**< RTC number of periodic pulses */ -#define FM_RTC_NUM_OF_EXT_TRIGGERS 2 /**< RTC number of external triggers */ - -/* QMI defines */ -#define QMI_MAX_NUM_OF_TNUMS 64 -#define MAX_QMI_DEQ_SUBPORTAL 12 -#define QMI_DEF_TNUMS_THRESH 48 - -/* FPM defines */ -#define FM_NUM_OF_FMAN_CTRL_EVENT_REGS 4 - -/* DMA defines */ -#define DMA_THRESH_MAX_COMMQ 31 -#define DMA_THRESH_MAX_BUF 127 - -/* BMI defines */ -#define BMI_MAX_NUM_OF_TASKS 128 -#define BMI_MAX_NUM_OF_DMAS 32 -#define BMI_MAX_FIFO_SIZE (FM_MURAM_SIZE) -#define PORT_MAX_WEIGHT 16 /**< Port weight in BMI arbitration register */ - - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmEventModules -{ - e_FM_MOD_PRS, /**< Parser event */ - e_FM_MOD_KG, /**< Keygen event */ - e_FM_MOD_PLCR, /**< Policer event */ - e_FM_MOD_10G_MAC, /**< 10G MAC error event */ - e_FM_MOD_1G_MAC, /**< 1G MAC error event */ - e_FM_MOD_TMR, /**< Timer event */ - e_FM_MOD_1G_MAC_TMR, /**< 1G MAC timer event */ - e_FM_MOD_FMAN_CTRL, /**< FMAN Controller timer event */ - e_FM_MOD_DUMMY_LAST -} e_FmEventModules; - -/**************************************************************************//** - @Description Enum for interrupts types -*//***************************************************************************/ -typedef enum e_FmIntrType -{ - e_FM_INTR_TYPE_ERR, - e_FM_INTR_TYPE_NORMAL -} e_FmIntrType; - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmInterModuleEvent -{ - e_FM_EV_PRS, /**< Parser event */ - e_FM_EV_ERR_PRS, /**< Parser error event */ - e_FM_EV_KG, /**< Keygen event */ - e_FM_EV_ERR_KG, /**< Keygen error event */ - e_FM_EV_PLCR, /**< Policer event */ - e_FM_EV_ERR_PLCR, /**< Policer error event */ - e_FM_EV_ERR_10G_MAC0, /**< 10G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC0, /**< 1G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC1, /**< 1G MAC 1 error event */ - e_FM_EV_ERR_1G_MAC2, /**< 1G MAC 2 error event */ - e_FM_EV_ERR_1G_MAC3, /**< 1G MAC 3 error event */ - e_FM_EV_ERR_1G_MAC4, /**< 1G MAC 4 error event */ - e_FM_EV_TMR, /**< Timer event */ - e_FM_EV_1G_MAC0_TMR, /**< 1G MAC 0 timer event */ - e_FM_EV_1G_MAC1_TMR, /**< 1G MAC 1 timer event */ - e_FM_EV_1G_MAC2_TMR, /**< 1G MAC 2 timer event */ - e_FM_EV_1G_MAC3_TMR, /**< 1G MAC 3 timer event */ - e_FM_EV_1G_MAC4_TMR, /**< 1G MAC 4 timer event */ - e_FM_EV_FMAN_CTRL_0, /**< Fman controller event 0 */ - e_FM_EV_FMAN_CTRL_1, /**< Fman controller event 1 */ - e_FM_EV_FMAN_CTRL_2, /**< Fman controller event 2 */ - e_FM_EV_FMAN_CTRL_3, /**< Fman controller event 3 */ - e_FM_EV_DUMMY_LAST -} e_FmInterModuleEvent; - -#define GET_FM_MODULE_EVENT(mod, id, intrType, event) \ - switch(mod){ \ - case e_FM_MOD_PRS: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PRS : e_FM_EV_PRS; \ - break; \ - case e_FM_MOD_KG: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_KG : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_PLCR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PLCR : e_FM_EV_PLCR; \ - break; \ - case e_FM_MOD_10G_MAC: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_10G_MAC0 : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_1G_MAC: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC0 : e_FM_EV_DUMMY_LAST; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC1 : e_FM_EV_DUMMY_LAST; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC2 : e_FM_EV_DUMMY_LAST; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC3 : e_FM_EV_DUMMY_LAST; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC4 : e_FM_EV_DUMMY_LAST; break; \ - } \ - break; \ - case e_FM_MOD_TMR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_TMR; \ - break; \ - case e_FM_MOD_1G_MAC_TMR: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC0_TMR; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC1_TMR; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC2_TMR; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC3_TMR; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC4_TMR; break; \ - } \ - break; \ - case e_FM_MOD_FMAN_CTRL: \ - if (intrType == e_FM_INTR_TYPE_ERR) event = e_FM_EV_DUMMY_LAST; \ - else switch(id){ \ - case(0): event = e_FM_EV_FMAN_CTRL_0; break; \ - case(1): event = e_FM_EV_FMAN_CTRL_1; break; \ - case(2): event = e_FM_EV_FMAN_CTRL_2; break; \ - case(3): event = e_FM_EV_FMAN_CTRL_3; break; \ - } \ - break; \ - default: event = e_FM_EV_DUMMY_LAST; \ - break;} - -#define FM_CHECK_PORT_RESTRICTIONS(__validPorts, __newPortIndx) TRUE - -/* P2041 unique features */ -#define FM_QMI_DEQ_OPTIONS_SUPPORT -#define FM_NO_DISPATCH_RAM_ECC -#define FM_FIFO_ALLOCATION_OLD_ALG -#define FM_NO_WATCHDOG -#define FM_NO_TNUM_AGING -#define FM_NO_TGEC_LOOPBACK -#define FM_KG_NO_BYPASS_FQID_GEN -#define FM_KG_NO_BYPASS_PLCR_PROFILE_GEN -#define FM_NO_BACKUP_POOLS -#define FM_NO_OP_OBSERVED_POOLS -#define FM_NO_ADVANCED_RATE_LIMITER -#define FM_NO_OP_OBSERVED_CGS - -/* FM erratas */ -#define FM_BAD_VLAN_DETECT_ERRATA_10GMAC_A010 - -#define FM_RX_PREAM_4_ERRATA_DTSEC_A001 -#define FM_MAGIC_PACKET_UNRECOGNIZED_ERRATA_DTSEC2 /* No implementation, Out of LLD scope */ - -#define FM_UCODE_NOT_RESET_ERRATA_BUGZILLA6173 - -#define FM_LEN_CHECK_ERRATA_FMAN_SW002 -#define FM_PRS_MEM_ERRATA_FMAN_SW003 - -#endif /* __DPAA_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P2041/dpaa_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/P2041/part_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P2041/part_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P2041/part_integration_ext.h (nonexistent) @@ -1,758 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File part_integration_ext.h - - @Description P2041 external definitions and structures. -*//***************************************************************************/ -#ifndef __PART_INTEGRATION_EXT_H -#define __PART_INTEGRATION_EXT_H - -#include "std_ext.h" -#include "ddr_std_ext.h" -#include "enet_ext.h" -#include "dpaa_integration_ext.h" - - -/**************************************************************************//** - @Group P2041_chip_id P2041 Application Programming Interface - - @Description P2041 Chip functions,definitions and enums. - - @{ -*//***************************************************************************/ - -#define CORE_E500MC - -#define INTG_MAX_NUM_OF_CORES 4 - - -/**************************************************************************//** - @Description Module types. -*//***************************************************************************/ -typedef enum e_ModuleId -{ - e_MODULE_ID_DUART_1 = 0, - e_MODULE_ID_DUART_2, - e_MODULE_ID_DUART_3, - e_MODULE_ID_DUART_4, - e_MODULE_ID_LAW, - e_MODULE_ID_LBC, - e_MODULE_ID_PAMU, - e_MODULE_ID_QM, /**< Queue manager module */ - e_MODULE_ID_BM, /**< Buffer manager module */ - e_MODULE_ID_QM_CE_PORTAL_0, - e_MODULE_ID_QM_CI_PORTAL_0, - e_MODULE_ID_QM_CE_PORTAL_1, - e_MODULE_ID_QM_CI_PORTAL_1, - e_MODULE_ID_QM_CE_PORTAL_2, - e_MODULE_ID_QM_CI_PORTAL_2, - e_MODULE_ID_QM_CE_PORTAL_3, - e_MODULE_ID_QM_CI_PORTAL_3, - e_MODULE_ID_QM_CE_PORTAL_4, - e_MODULE_ID_QM_CI_PORTAL_4, - e_MODULE_ID_QM_CE_PORTAL_5, - e_MODULE_ID_QM_CI_PORTAL_5, - e_MODULE_ID_QM_CE_PORTAL_6, - e_MODULE_ID_QM_CI_PORTAL_6, - e_MODULE_ID_QM_CE_PORTAL_7, - e_MODULE_ID_QM_CI_PORTAL_7, - e_MODULE_ID_QM_CE_PORTAL_8, - e_MODULE_ID_QM_CI_PORTAL_8, - e_MODULE_ID_QM_CE_PORTAL_9, - e_MODULE_ID_QM_CI_PORTAL_9, - e_MODULE_ID_BM_CE_PORTAL_0, - e_MODULE_ID_BM_CI_PORTAL_0, - e_MODULE_ID_BM_CE_PORTAL_1, - e_MODULE_ID_BM_CI_PORTAL_1, - e_MODULE_ID_BM_CE_PORTAL_2, - e_MODULE_ID_BM_CI_PORTAL_2, - e_MODULE_ID_BM_CE_PORTAL_3, - e_MODULE_ID_BM_CI_PORTAL_3, - e_MODULE_ID_BM_CE_PORTAL_4, - e_MODULE_ID_BM_CI_PORTAL_4, - e_MODULE_ID_BM_CE_PORTAL_5, - e_MODULE_ID_BM_CI_PORTAL_5, - e_MODULE_ID_BM_CE_PORTAL_6, - e_MODULE_ID_BM_CI_PORTAL_6, - e_MODULE_ID_BM_CE_PORTAL_7, - e_MODULE_ID_BM_CI_PORTAL_7, - e_MODULE_ID_BM_CE_PORTAL_8, - e_MODULE_ID_BM_CI_PORTAL_8, - e_MODULE_ID_BM_CE_PORTAL_9, - e_MODULE_ID_BM_CI_PORTAL_9, - e_MODULE_ID_FM, /**< Frame manager module */ - e_MODULE_ID_FM_RTC, /**< FM Real-Time-Clock */ - e_MODULE_ID_FM_MURAM, /**< FM Multi-User-RAM */ - e_MODULE_ID_FM_BMI, /**< FM BMI block */ - e_MODULE_ID_FM_QMI, /**< FM QMI block */ - e_MODULE_ID_FM_PARSER, /**< FM parser block */ - e_MODULE_ID_FM_PORT_HO1, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO2, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO3, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO4, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO5, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO6, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO7, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_1GRx1, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx2, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx3, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx4, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx5, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GRx, /**< FM Rx 10G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx1, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx2, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx3, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx4, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx5, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GTx, /**< FM Tx 10G MAC port block */ - e_MODULE_ID_FM_PLCR, /**< FM Policer */ - e_MODULE_ID_FM_KG, /**< FM Keygen */ - e_MODULE_ID_FM_DMA, /**< FM DMA */ - e_MODULE_ID_FM_FPM, /**< FM FPM */ - e_MODULE_ID_FM_IRAM, /**< FM Instruction-RAM */ - e_MODULE_ID_FM_1GMDIO1, /**< FM 1G MDIO MAC 1*/ - e_MODULE_ID_FM_1GMDIO2, /**< FM 1G MDIO MAC 2*/ - e_MODULE_ID_FM_1GMDIO3, /**< FM 1G MDIO MAC 3*/ - e_MODULE_ID_FM_1GMDIO4, /**< FM 1G MDIO MAC 4*/ - e_MODULE_ID_FM_1GMDIO5, /**< FM 1G MDIO MAC 5*/ - e_MODULE_ID_FM_10GMDIO, /**< FM 10G MDIO */ - e_MODULE_ID_FM_PRS_IRAM, /**< FM SW-parser Instruction-RAM */ - e_MODULE_ID_FM_1GMAC1, /**< FM 1G MAC #1 */ - e_MODULE_ID_FM_1GMAC2, /**< FM 1G MAC #2 */ - e_MODULE_ID_FM_1GMAC3, /**< FM 1G MAC #3 */ - e_MODULE_ID_FM_1GMAC4, /**< FM 1G MAC #4 */ - e_MODULE_ID_FM_1GMAC5, /**< FM 1G MAC #5 */ - e_MODULE_ID_FM_10GMAC, /**< FM 10G MAC */ - - e_MODULE_ID_SEC_GEN, /**< SEC 4.0 General registers */ - e_MODULE_ID_SEC_QI, /**< SEC 4.0 QI registers */ - e_MODULE_ID_SEC_JQ0, /**< SEC 4.0 JQ-0 registers */ - e_MODULE_ID_SEC_JQ1, /**< SEC 4.0 JQ-1 registers */ - e_MODULE_ID_SEC_JQ2, /**< SEC 4.0 JQ-2 registers */ - e_MODULE_ID_SEC_JQ3, /**< SEC 4.0 JQ-3 registers */ - e_MODULE_ID_SEC_RTIC, /**< SEC 4.0 RTIC registers */ - e_MODULE_ID_SEC_DECO0_CCB0, /**< SEC 4.0 DECO-0/CCB-0 registers */ - e_MODULE_ID_SEC_DECO1_CCB1, /**< SEC 4.0 DECO-1/CCB-1 registers */ - e_MODULE_ID_SEC_DECO2_CCB2, /**< SEC 4.0 DECO-2/CCB-2 registers */ - e_MODULE_ID_SEC_DECO3_CCB3, /**< SEC 4.0 DECO-3/CCB-3 registers */ - e_MODULE_ID_SEC_DECO4_CCB4, /**< SEC 4.0 DECO-4/CCB-4 registers */ - - e_MODULE_ID_PIC, /**< PIC */ - e_MODULE_ID_GPIO, /**< GPIO */ - e_MODULE_ID_SERDES, /**< SERDES */ - e_MODULE_ID_CPC, /**< CoreNet-Platform-Cache */ - e_MODULE_ID_DUMMY_LAST -} e_ModuleId; - -#define NUM_OF_MODULES e_MODULE_ID_DUMMY_LAST - -/* Offsets relative to CCSR base */ -#define P2041_OFFSET_LAW 0x00000c00 -#define P2041_OFFSET_DDR 0x00008000 -#define P2041_OFFSET_CPC 0x00010000 -#define P2041_OFFSET_CCM 0x00018000 -#define P2041_OFFSET_PAMU 0x00020000 -#define P2041_OFFSET_PIC 0x00040000 -#define P2041_OFFSET_GUTIL 0x000e0000 -#define P2041_OFFSET_RCPM 0x000e2000 -#define P2041_OFFSET_SERDES 0x000ea000 -#define P2041_OFFSET_DMA1 0x00100100 -#define P2041_OFFSET_DMA2 0x00101100 -#define P2041_OFFSET_ESPI 0x00110000 -#define P2041_OFFSET_ESDHC 0x00114000 -#define P2041_OFFSET_I2C1 0x00118000 -#define P2041_OFFSET_I2C2 0x00118100 -#define P2041_OFFSET_I2C3 0x00119000 -#define P2041_OFFSET_I2C4 0x00119100 -#define P2041_OFFSET_DUART1 0x0011c500 -#define P2041_OFFSET_DUART2 0x0011c600 -#define P2041_OFFSET_DUART3 0x0011d500 -#define P2041_OFFSET_DUART4 0x0011d600 -#define P2041_OFFSET_LBC 0x00124000 -#define P2041_OFFSET_GPIO 0x00130000 -#define P2041_OFFSET_PCIE1 0x00200000 -#define P2041_OFFSET_PCIE2 0x00201000 -#define P2041_OFFSET_PCIE3 0x00202000 -#define P2041_OFFSET_USB1 0x00210000 -#define P2041_OFFSET_USB2 0x00211000 -#define P2041_OFFSET_USB_PHY 0x00214000 -#define P2041_OFFSET_SATA1 0x00220000 -#define P2041_OFFSET_SATA2 0x00221000 -#define P2041_OFFSET_SEC_GEN 0x00300000 -#define P2041_OFFSET_SEC_JQ0 0x00301000 -#define P2041_OFFSET_SEC_JQ1 0x00302000 -#define P2041_OFFSET_SEC_JQ2 0x00303000 -#define P2041_OFFSET_SEC_JQ3 0x00304000 -#define P2041_OFFSET_SEC_RESERVED 0x00305000 -#define P2041_OFFSET_SEC_RTIC 0x00306000 -#define P2041_OFFSET_SEC_QI 0x00307000 -#define P2041_OFFSET_SEC_DECO0_CCB0 0x00308000 -#define P2041_OFFSET_SEC_DECO1_CCB1 0x00309000 -#define P2041_OFFSET_PME 0x00316000 -#define P2041_OFFSET_QM 0x00318000 -#define P2041_OFFSET_BM 0x0031a000 -#define P2041_OFFSET_FM 0x00400000 - -#define P2041_OFFSET_FM_MURAM P2041_OFFSET_FM -#define P2041_OFFSET_FM_BMI (P2041_OFFSET_FM + 0x00080000) -#define P2041_OFFSET_FM_QMI (P2041_OFFSET_FM + 0x00080400) -#define P2041_OFFSET_FM_PARSER (P2041_OFFSET_FM + 0x00080800) -#define P2041_OFFSET_FM_PORT_HO1 (P2041_OFFSET_FM + 0x00081000) /* host command/offline parser */ -#define P2041_OFFSET_FM_PORT_HO2 (P2041_OFFSET_FM + 0x00082000) -#define P2041_OFFSET_FM_PORT_HO3 (P2041_OFFSET_FM + 0x00083000) -#define P2041_OFFSET_FM_PORT_HO4 (P2041_OFFSET_FM + 0x00084000) -#define P2041_OFFSET_FM_PORT_HO5 (P2041_OFFSET_FM + 0x00085000) -#define P2041_OFFSET_FM_PORT_HO6 (P2041_OFFSET_FM + 0x00086000) -#define P2041_OFFSET_FM_PORT_HO7 (P2041_OFFSET_FM + 0x00087000) -#define P2041_OFFSET_FM_PORT_1GRX1 (P2041_OFFSET_FM + 0x00088000) -#define P2041_OFFSET_FM_PORT_1GRX2 (P2041_OFFSET_FM + 0x00089000) -#define P2041_OFFSET_FM_PORT_1GRX3 (P2041_OFFSET_FM + 0x0008a000) -#define P2041_OFFSET_FM_PORT_1GRX4 (P2041_OFFSET_FM + 0x0008b000) -#define P2041_OFFSET_FM_PORT_1GRX5 (P2041_OFFSET_FM + 0x0008c000) -#define P2041_OFFSET_FM_PORT_10GRX (P2041_OFFSET_FM + 0x00090000) -#define P2041_OFFSET_FM_PORT_1GTX1 (P2041_OFFSET_FM + 0x000a8000) -#define P2041_OFFSET_FM_PORT_1GTX2 (P2041_OFFSET_FM + 0x000a9000) -#define P2041_OFFSET_FM_PORT_1GTX3 (P2041_OFFSET_FM + 0x000aa000) -#define P2041_OFFSET_FM_PORT_1GTX4 (P2041_OFFSET_FM + 0x000ab000) -#define P2041_OFFSET_FM_PORT_1GTX5 (P2041_OFFSET_FM + 0x000ac000) -#define P2041_OFFSET_FM_PORT_10GTX (P2041_OFFSET_FM + 0x000b0000) -#define P2041_OFFSET_FM_PLCR (P2041_OFFSET_FM + 0x000c0000) -#define P2041_OFFSET_FM_KG (P2041_OFFSET_FM + 0x000c1000) -#define P2041_OFFSET_FM_DMA (P2041_OFFSET_FM + 0x000c2000) -#define P2041_OFFSET_FM_FPM (P2041_OFFSET_FM + 0x000c3000) -#define P2041_OFFSET_FM_IRAM (P2041_OFFSET_FM + 0x000c4000) -#define P2041_OFFSET_FM_PARSER_IRAM (P2041_OFFSET_FM + 0x000c7000) -#define P2041_OFFSET_FM_1GMAC1 (P2041_OFFSET_FM + 0x000e0000) -#define P2041_OFFSET_FM_1GMDIO (P2041_OFFSET_FM + 0x000e1000 + 0x120) -#define P2041_OFFSET_FM_1GMAC2 (P2041_OFFSET_FM + 0x000e2000) -#define P2041_OFFSET_FM_1GMAC3 (P2041_OFFSET_FM + 0x000e4000) -#define P2041_OFFSET_FM_1GMAC4 (P2041_OFFSET_FM + 0x000e6000) -#define P2041_OFFSET_FM_1GMAC5 (P2041_OFFSET_FM + 0x000e8000) -#define P2041_OFFSET_FM_10GMAC (P2041_OFFSET_FM + 0x000f0000) -#define P2041_OFFSET_FM_10GMDIO (P2041_OFFSET_FM + 0x000f1000 + 0x030) -#define P2041_OFFSET_FM_RTC (P2041_OFFSET_FM + 0x000fe000) - -/* Offsets relative to QM or BM portals base */ -#define P2041_OFFSET_PORTALS_CE_AREA 0x000000 /* cache enabled area */ -#define P2041_OFFSET_PORTALS_CI_AREA 0x100000 /* cache inhibited area */ - -#define P2041_CE_PORTAL_SIZE 0x4000 -#define P2041_CI_PORTAL_SIZE 0x1000 - -#define P2041_OFFSET_PORTALS_CE(portal) \ - (P2041_OFFSET_PORTALS_CE_AREA + P2041_CE_PORTAL_SIZE * (portal)) -#define P2041_OFFSET_PORTALS_CI(portal) \ - (P2041_OFFSET_PORTALS_CI_AREA + P2041_CI_PORTAL_SIZE * (portal)) - - -/**************************************************************************//** - @Description Transaction source ID (for memory conrollers error reporting). -*//***************************************************************************/ -typedef enum e_TransSrc -{ - e_TRANS_SRC_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_TRANS_SRC_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_TRANS_SRC_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_TRANS_SRC_SRIO_1 = 0x8, /**< SRIO 1 */ - e_TRANS_SRC_SRIO_2 = 0x9, /**< SRIO 2 */ - e_TRANS_SRC_BMAN = 0x18, /**< BMan */ - e_TRANS_SRC_PAMU = 0x1C, /**< PAMU */ - e_TRANS_SRC_PME = 0x20, /**< PME */ - e_TRANS_SRC_SEC = 0x21, /**< Security engine */ - e_TRANS_SRC_QMAN = 0x3C, /**< QMan */ - e_TRANS_SRC_USB_1 = 0x40, /**< USB 1 */ - e_TRANS_SRC_USB_2 = 0x41, /**< USB 2 */ - e_TRANS_SRC_ESDHC = 0x44, /**< eSDHC */ - e_TRANS_SRC_PBL = 0x48, /**< Pre-boot loader */ - e_TRANS_SRC_NPC = 0x4B, /**< Nexus port controller */ - e_TRANS_SRC_RMAN = 0x5D, /**< RIO message manager */ - e_TRANS_SRC_SATA_1 = 0x60, /**< SATA 1 */ - e_TRANS_SRC_SATA_2 = 0x61, /**< SATA 2 */ - e_TRANS_SRC_DMA_1 = 0x70, /**< DMA 1 */ - e_TRANS_SRC_DMA_2 = 0x71, /**< DMA 2 */ - e_TRANS_SRC_CORE_0_INST = 0x80, /**< Processor 0 (instruction) */ - e_TRANS_SRC_CORE_0_DATA = 0x81, /**< Processor 0 (data) */ - e_TRANS_SRC_CORE_1_INST = 0x82, /**< Processor 1 (instruction) */ - e_TRANS_SRC_CORE_1_DATA = 0x83, /**< Processor 1 (data) */ - e_TRANS_SRC_CORE_2_INST = 0x84, /**< Processor 2 (instruction) */ - e_TRANS_SRC_CORE_2_DATA = 0x85, /**< Processor 2 (data) */ - e_TRANS_SRC_CORE_3_INST = 0x86, /**< Processor 3 (instruction) */ - e_TRANS_SRC_CORE_3_DATA = 0x87, /**< Processor 3 (data) */ - e_TRANS_SRC_FM_10G = 0xC0, /**< FM XAUI */ - e_TRANS_SRC_FM_HO_1 = 0xC1, /**< FM offline, host 1 */ - e_TRANS_SRC_FM_HO_2 = 0xC2, /**< FM offline, host 2 */ - e_TRANS_SRC_FM_HO_3 = 0xC3, /**< FM offline, host 3 */ - e_TRANS_SRC_FM_HO_4 = 0xC4, /**< FM offline, host 4 */ - e_TRANS_SRC_FM_HO_5 = 0xC5, /**< FM offline, host 5 */ - e_TRANS_SRC_FM_HO_6 = 0xC6, /**< FM offline, host 6 */ - e_TRANS_SRC_FM_HO_7 = 0xC7, /**< FM offline, host 7 */ - e_TRANS_SRC_FM_GETH_1 = 0xC8, /**< FM GETH 1 */ - e_TRANS_SRC_FM_GETH_2 = 0xC9, /**< FM GETH 2 */ - e_TRANS_SRC_FM_GETH_3 = 0xCA, /**< FM GETH 3 */ - e_TRANS_SRC_FM_GETH_4 = 0xCB, /**< FM GETH 4 */ - e_TRANS_SRC_FM_GETH_5 = 0xCC /**< FM GETH 5 */ -} e_TransSrc; - -/**************************************************************************//** - @Description Local Access Window Target interface ID -*//***************************************************************************/ -typedef enum e_P2041LawTargetId -{ - e_P2041_LAW_TARGET_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_P2041_LAW_TARGET_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_P2041_LAW_TARGET_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_P2041_LAW_TARGET_SRIO_1 = 0x8, /**< SRIO 1 */ - e_P2041_LAW_TARGET_SRIO_2 = 0x9, /**< SRIO 2 */ - e_P2041_LAW_TARGET_DDR_CPC = 0x10, /**< DDR controller or CPC SRAM */ - e_P2041_LAW_TARGET_BMAN = 0x18, /**< BMAN target interface ID */ - e_P2041_LAW_TARGET_DCSR = 0x1D, /**< DCSR */ - e_P2041_LAW_TARGET_LBC = 0x1F, /**< Local Bus target interface ID */ - e_P2041_LAW_TARGET_QMAN = 0x3C, /**< QMAN target interface ID */ - e_P2041_LAW_TARGET_NONE = 0xFF /**< None */ -} e_P2041LawTargetId; - -/*************************************************************** - P2041 general routines -****************************************************************/ -/**************************************************************************//** - @Group P2041_init_grp P2041 Initialization Unit - - @Description P2041 initialization unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Description Part ID and revision number -*//***************************************************************************/ -typedef enum e_P2041DeviceName -{ - e_P2041_REV_INVALID = 0x00000000, /**< Invalid revision */ - e_P2040_REV_1_0 = (int)0x82180010, /**< P2040 with security, revision 1.0 */ - e_P2040_REV_1_0_NO_SEC = (int)0x82100010, /**< P2040 without security, revision 1.0 */ - e_P2041_REV_1_0 = (int)0x82180110, /**< P2041 with security, revision 1.0 */ - e_P2041_REV_1_0_NO_SEC = (int)0x82100110 /**< P2041 without security, revision 1.0 */ -} e_P2041DeviceName; - -/**************************************************************************//** - @Description Device Disable Register -*//***************************************************************************/ -typedef enum e_P2041DeviceDisable -{ - e_P2041_DEV_DISABLE_PCIE_1 = 0, /**< PCI Express controller 1 disable */ - e_P2041_DEV_DISABLE_PCIE_2, /**< PCI Express controller 2 disable */ - e_P2041_DEV_DISABLE_PCIE_3, /**< PCI Express controller 3 disable */ - e_P2041_DEV_DISABLE_RMAN = 4, /**< RapidIO message manager disable */ - e_P2041_DEV_DISABLE_SRIO_1, /**< Serial RapidIO controller 1 disable */ - e_P2041_DEV_DISABLE_SRIO_2, /**< Serial RapidIO controller 2 disable */ - e_P2041_DEV_DISABLE_DMA_1 = 9, /**< DMA controller 1 disable */ - e_P2041_DEV_DISABLE_DMA_2, /**< DMA controller 2 disable */ - e_P2041_DEV_DISABLE_DDR, /**< DDR controller disable */ - e_P2041_DEV_DISABLE_SATA_1 = 17, /**< SATA controller 1 disable */ - e_P2041_DEV_DISABLE_SATA_2, /**< SATA controller 2 disable */ - e_P2041_DEV_DISABLE_LBC, /**< eLBC controller disable */ - e_P2041_DEV_DISABLE_USB_1, /**< USB controller 1 disable */ - e_P2041_DEV_DISABLE_USB_2, /**< USB controller 2 disable */ - e_P2041_DEV_DISABLE_ESDHC = 23, /**< eSDHC controller disable */ - e_P2041_DEV_DISABLE_GPIO, /**< GPIO controller disable */ - e_P2041_DEV_DISABLE_ESPI, /**< eSPI controller disable */ - e_P2041_DEV_DISABLE_I2C_1, /**< I2C module 1 (controllers 1 and 2) disable */ - e_P2041_DEV_DISABLE_I2C_2, /**< I2C module 2 (controllers 3 and 4) disable */ - e_P2041_DEV_DISABLE_DUART_1 = 30, /**< DUART controller 1 disable */ - e_P2041_DEV_DISABLE_DUART_2, /**< DUART controller 2 disable */ - e_P2041_DEV_DISABLE_DISR1_DUMMY_LAST = 32, - /**< Dummy entry signing end of DEVDISR1 register controllers */ - e_P2041_DEV_DISABLE_PME = e_P2041_DEV_DISABLE_DISR1_DUMMY_LAST, - /**< Pattern match engine disable */ - e_P2041_DEV_DISABLE_SEC, /**< Security disable */ - e_P2041_DEV_DISABLE_QM_BM = e_P2041_DEV_DISABLE_DISR1_DUMMY_LAST + 4, - /**< Queue manager/buffer manager disable */ - e_P2041_DEV_DISABLE_FM = e_P2041_DEV_DISABLE_DISR1_DUMMY_LAST + 6, - /**< Frame manager disable */ - e_P2041_DEV_DISABLE_10G, /**< 10G Ethernet controller disable */ - e_P2041_DEV_DISABLE_DTSEC_1, - /**< dTSEC controller 1 disable */ - e_P2041_DEV_DISABLE_DTSEC_2, /**< dTSEC controller 2 disable */ - e_P2041_DEV_DISABLE_DTSEC_3, /**< dTSEC controller 3 disable */ - e_P2041_DEV_DISABLE_DTSEC_4, /**< dTSEC controller 4 disable */ - e_P2041_DEV_DISABLE_DTSEC_5 /**< dTSEC controller 5 disable */ -} e_P2041DeviceDisable; - - -/**************************************************************************//* - @Description structure representing P2041 devices configuration -*//***************************************************************************/ -typedef struct t_P2041Devices -{ - struct - { - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; /**< Most significant bits represent lanes used by this bank, - one bit for lane, lane A is the first and so on, e.g., - set 0xF000 for ABCD lanes */ - e_EnetInterface ethIf; - uint8_t ratio; - bool divByTwo; - bool isTwoHalfSgmii; - } dtsecs[FM_MAX_NUM_OF_1G_MACS]; - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; - } tgec; - } fm; -} t_P2041Devices; - -/**************************************************************************//** - @Function P2041_GetRevInfo - - @Description Obtain revision information. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return Part ID and revision. -*//***************************************************************************/ -e_P2041DeviceName P2041_GetRevInfo(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P2041_GetE500Factor - - @Description Obtain core's multiplication factors. - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[in] coreIndex - Core index. - @Param[out] p_E500MulFactor - E500 to CCB multification factor. - @Param[out] p_E500DivFactor - E500 to CCB division factor. - -*//***************************************************************************/ -void P2041_GetE500Factor(uintptr_t gutilBase, - uint8_t coreIndex, - uint32_t *p_E500MulFactor, - uint32_t *p_E500DivFactor); - -/**************************************************************************//** - @Function P2041_GetCcbFactor - - @Description Obtain system multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return System multiplication factor. -*//***************************************************************************/ -uint32_t P2041_GetCcbFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P2041_GetDdrFactor - - @Description Obtain DDR clock multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR clock multiplication factor. -*//***************************************************************************/ -uint32_t P2041_GetDdrFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P2041_GetDdrType - - @Description Obtain DDR memory type. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR type. -*//***************************************************************************/ -e_DdrType P2041_GetDdrType(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P2041_GetFmFactor - - @Description returns FM multiplication factors. (This value is returned using - two parameters to avoid using float parameter). - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[out] p_FmMulFactor - FM to CCB multification factor. - @Param[out] p_FmDivFactor - FM to CCB division factor. - -*//***************************************************************************/ -void P2041_GetFmFactor(uintptr_t gutilBase, - uint32_t *p_FmMulFactor, - uint32_t *p_FmDivFactor); - - -void P2041_CoreTimeBaseEnable(uintptr_t rcpmBase); -void P2041_CoreTimeBaseDisable(uintptr_t rcpmBase); - -typedef enum e_SerdesProtocol -{ - SRDS_PROTOCOL_NONE = 0, - SRDS_PROTOCOL_PCIE1, - SRDS_PROTOCOL_PCIE2, - SRDS_PROTOCOL_PCIE3, - SRDS_PROTOCOL_SRIO1, - SRDS_PROTOCOL_SRIO2, - SRDS_PROTOCOL_SGMII_FM, - SRDS_PROTOCOL_XAUI_FM, - SRDS_PROTOCOL_SATA1, - SRDS_PROTOCOL_SATA2, - SRDS_PROTOCOL_AURORA -} e_SerdesProtocol; - -t_Error P2041_DeviceDisable(uintptr_t gutilBase, e_P2041DeviceDisable device, bool disable); -void P2041_GetDevicesConfiguration(uintptr_t gutilBase, t_P2041Devices *p_Devices); -t_Error P2041_PamuDisableBypass(uintptr_t gutilBase, uint8_t pamuId, bool disable); -void P2041_SetDmaLiodn(uintptr_t gutilBase, uint8_t dmaId, uint16_t liodn); -uint32_t P2041_SerdesRcwGetProtocol(uintptr_t gutilBase); -bool P2041_SerdesRcwIsDeviceConfigured(uintptr_t gutilBase, e_SerdesProtocol device); -bool P2041_SerdesRcwIsLaneEnabled(uintptr_t gutilBase, uint32_t lane); - -/** @} */ /* end of P2041_init_grp group */ -/** @} */ /* end of P2041_grp group */ - - -/***************************************************************************** - INTEGRATION-SPECIFIC MODULE CODES -******************************************************************************/ -#define MODULE_UNKNOWN 0x00000000 -#define MODULE_MEM 0x00010000 -#define MODULE_MM 0x00020000 -#define MODULE_CORE 0x00030000 -#define MODULE_P2041 0x00040000 -#define MODULE_P2041_PLATFORM 0x00050000 -#define MODULE_PM 0x00060000 -#define MODULE_MMU 0x00070000 -#define MODULE_PIC 0x00080000 -#define MODULE_CPC 0x00090000 -#define MODULE_DUART 0x000a0000 -#define MODULE_SERDES 0x000b0000 -#define MODULE_PIO 0x000c0000 -#define MODULE_QM 0x000d0000 -#define MODULE_BM 0x000e0000 -#define MODULE_SEC 0x000f0000 -#define MODULE_LAW 0x00100000 -#define MODULE_LBC 0x00110000 -#define MODULE_PAMU 0x00120000 -#define MODULE_FM 0x00130000 -#define MODULE_FM_MURAM 0x00140000 -#define MODULE_FM_PCD 0x00150000 -#define MODULE_FM_RTC 0x00160000 -#define MODULE_FM_MAC 0x00170000 -#define MODULE_FM_PORT 0x00180000 -#define MODULE_DPA_PORT 0x00190000 -#define MODULE_MII 0x001a0000 -#define MODULE_I2C 0x001b0000 -#define MODULE_DMA 0x001c0000 -#define MODULE_DDR 0x001d0000 -#define MODULE_ESPI 0x001e0000 - -/***************************************************************************** - PAMU INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define PAMU_NUM_OF_PARTITIONS 4 - - -/***************************************************************************** - LAW INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define LAW_NUM_OF_WINDOWS 32 -#define LAW_MIN_WINDOW_SIZE 0x0000000000001000LL /**< 4KB */ -#define LAW_MAX_WINDOW_SIZE 0x0000002000000000LL /**< 64GB */ - - -/***************************************************************************** - LBC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -/**************************************************************************//** - @Group lbc_exception_grp LBC Exception Unit - - @Description LBC Exception unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Anchor lbc_exbm - - @Collection LBC Errors Bit Mask - - These errors are reported through the exceptions callback.. - The values can be or'ed in any combination in the errors mask - parameter of the errors report structure. - - These errors can also be passed as a bit-mask to - LBC_EnableErrorChecking() or LBC_DisableErrorChecking(), - for enabling or disabling error checking. - @{ -*//***************************************************************************/ -#define LBC_ERR_BUS_MONITOR 0x80000000 /**< Bus monitor error */ -#define LBC_ERR_PARITY_ECC 0x20000000 /**< Parity error for GPCM/UPM */ -#define LBC_ERR_WRITE_PROTECT 0x04000000 /**< Write protection error */ -#define LBC_ERR_CHIP_SELECT 0x00080000 /**< Unrecognized chip select */ - -#define LBC_ERR_ALL (LBC_ERR_BUS_MONITOR | LBC_ERR_PARITY_ECC | \ - LBC_ERR_WRITE_PROTECT | LBC_ERR_CHIP_SELECT) - /**< All possible errors */ -/* @} */ -/** @} */ /* end of lbc_exception_grp group */ - -#define LBC_INCORRECT_ERROR_REPORT_ERRATA - -#define LBC_NUM_OF_BANKS 4 -#define LBC_MAX_CS_SIZE 0x0000000100000000LL /* Up to 4G memory block size */ -#define LBC_PARITY_SUPPORT -#define LBC_ADDRESS_HOLD_TIME_CTRL -#define LBC_HIGH_CLK_DIVIDERS -#define LBC_FCM_AVAILABLE - -/***************************************************************************** - GPIO INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define GPIO_NUM_OF_PORTS 1 /**< Number of ports in GPIO module; - Each port contains up to 32 I/O pins. */ - -#define GPIO_VALID_PIN_MASKS \ - { /* Port A */ 0xFFFFFFFF } - -#define GPIO_VALID_INTR_MASKS \ - { /* Port A */ 0xFFFFFFFF } - - -/***************************************************************************** - SERDES INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define SRDS_MAX_LANES 10 /* Lanes C - H on bank 1, lanes A - D on bank 2 */ -#define SRDS_MAX_BANK 2 - -/* Serdes lanes general information provided in the following form: - 1) Lane index in Serdes Control Registers Map - 2) Lane enable/disable bit number in RCW - 3) Lane bank index */ -#define SRDS_LANES \ -{ \ - { 2, 154, 0 }, \ - { 3, 155, 0 }, \ - { 4, 156, 0 }, \ - { 5, 157, 0 }, \ - { 6, 158, 0 }, \ - { 7, 159, 0 }, \ - { 16, 162, 1 }, \ - { 17, 163, 1 }, \ - { 18, 164, 1 }, \ - { 19, 165, 1 } \ -} - -#define SRDS_PROTOCOL_OPTIONS \ -/* Protocol Lane assignment */ \ -{ \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x02 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x05 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x08 */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x09 */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x0A */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x0F */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x14 */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x16 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x17 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x19 */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1A */ {SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ - {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, \ -/* 0x1C */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_SGMII_FM, 0, 0} \ -} - - -/***************************************************************************** - DDR INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DDR_NUM_OF_VALID_CS 4 - -/***************************************************************************** - DMA INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DMA_NUM_OF_CONTROLLERS 2 - -/***************************************************************************** - CPC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ - -#define CPC_MAX_SIZE_SRAM_ERRATA_CPC4 -#define CPC_HARDWARE_FLUSH_ERRATA_CPC10 - - -#endif /* __PART_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P2041/part_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/P3041/dpaa_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P3041/dpaa_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P3041/dpaa_integration_ext.h (nonexistent) @@ -1,371 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File dpaa_integration_ext.h - - @Description P3041 FM external definitions and structures. -*//***************************************************************************/ -#ifndef __DPAA_INTEGRATION_EXT_H -#define __DPAA_INTEGRATION_EXT_H - -#include "std_ext.h" - - -/**************************************************************************//** - @Description DPAA SW Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_SWPORTAL0 = 0, - e_DPAA_SWPORTAL1, - e_DPAA_SWPORTAL2, - e_DPAA_SWPORTAL3, - e_DPAA_SWPORTAL4, - e_DPAA_SWPORTAL5, - e_DPAA_SWPORTAL6, - e_DPAA_SWPORTAL7, - e_DPAA_SWPORTAL8, - e_DPAA_SWPORTAL9, - e_DPAA_SWPORTAL_DUMMY_LAST -} e_DpaaSwPortal; - -/**************************************************************************//** - @Description DPAA Direct Connect Portals Enumeration. -*//***************************************************************************/ -typedef enum -{ - e_DPAA_DCPORTAL0 = 0, - e_DPAA_DCPORTAL1, - e_DPAA_DCPORTAL2, - e_DPAA_DCPORTAL3, - e_DPAA_DCPORTAL4, - e_DPAA_DCPORTAL_DUMMY_LAST -} e_DpaaDcPortal; - -#define DPAA_MAX_NUM_OF_SW_PORTALS e_DPAA_SWPORTAL_DUMMY_LAST -#define DPAA_MAX_NUM_OF_DC_PORTALS e_DPAA_DCPORTAL_DUMMY_LAST - -/***************************************************************************** - QMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define QM_MAX_NUM_OF_POOL_CHANNELS 15 /**< Total number of channels, dedicated and pool */ -#define QM_MAX_NUM_OF_WQ 8 /**< Number of work queues per channel */ -#define QM_MAX_NUM_OF_CGS 256 /**< Congestion groups number */ -#define QM_MAX_NUM_OF_FQIDS (16 * MEGABYTE) - /**< FQIDs range - 24 bits */ - -/**************************************************************************//** - @Description Work Queue Channel assignments in QMan. -*//***************************************************************************/ -typedef enum -{ - e_QM_FQ_CHANNEL_SWPORTAL0 = 0, /**< Dedicated channels serviced by software portals 0 to 9 */ - e_QM_FQ_CHANNEL_SWPORTAL1, - e_QM_FQ_CHANNEL_SWPORTAL2, - e_QM_FQ_CHANNEL_SWPORTAL3, - e_QM_FQ_CHANNEL_SWPORTAL4, - e_QM_FQ_CHANNEL_SWPORTAL5, - e_QM_FQ_CHANNEL_SWPORTAL6, - e_QM_FQ_CHANNEL_SWPORTAL7, - e_QM_FQ_CHANNEL_SWPORTAL8, - e_QM_FQ_CHANNEL_SWPORTAL9, - - e_QM_FQ_CHANNEL_POOL1 = 0x21, /**< Pool channels that can be serviced by any of the software portals */ - e_QM_FQ_CHANNEL_POOL2, - e_QM_FQ_CHANNEL_POOL3, - e_QM_FQ_CHANNEL_POOL4, - e_QM_FQ_CHANNEL_POOL5, - e_QM_FQ_CHANNEL_POOL6, - e_QM_FQ_CHANNEL_POOL7, - e_QM_FQ_CHANNEL_POOL8, - e_QM_FQ_CHANNEL_POOL9, - e_QM_FQ_CHANNEL_POOL10, - e_QM_FQ_CHANNEL_POOL11, - e_QM_FQ_CHANNEL_POOL12, - e_QM_FQ_CHANNEL_POOL13, - e_QM_FQ_CHANNEL_POOL14, - e_QM_FQ_CHANNEL_POOL15, - - e_QM_FQ_CHANNEL_FMAN0_SP0 = 0x40, /**< Dedicated channels serviced by Direct Connect Portal 0: - connected to FMan 0; assigned in incrementing order to - each sub-portal (SP) in the portal */ - e_QM_FQ_CHANNEL_FMAN0_SP1, - e_QM_FQ_CHANNEL_FMAN0_SP2, - e_QM_FQ_CHANNEL_FMAN0_SP3, - e_QM_FQ_CHANNEL_FMAN0_SP4, - e_QM_FQ_CHANNEL_FMAN0_SP5, - e_QM_FQ_CHANNEL_FMAN0_SP6, - e_QM_FQ_CHANNEL_FMAN0_SP7, - e_QM_FQ_CHANNEL_FMAN0_SP8, - e_QM_FQ_CHANNEL_FMAN0_SP9, - e_QM_FQ_CHANNEL_FMAN0_SP10, - e_QM_FQ_CHANNEL_FMAN0_SP11, - - e_QM_FQ_CHANNEL_RMAN_SP2 = 0x62, /**< Dedicated channels serviced by Direct Connect Portal 1: connected to RMan */ - e_QM_FQ_CHANNEL_RMAN_SP3, - - e_QM_FQ_CHANNEL_CAAM = 0x80, /**< Dedicated channel serviced by Direct Connect Portal 2: - connected to SEC 4.x */ - - e_QM_FQ_CHANNEL_PME = 0xA0 /**< Dedicated channel serviced by Direct Connect Portal 3: - connected to PME */ -} e_QmFQChannel; - -/***************************************************************************** - BMan INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define BM_MAX_NUM_OF_POOLS 64 /**< Number of buffers pools */ - -/***************************************************************************** - FM INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define INTG_MAX_NUM_OF_FM 1 - -/* Ports defines */ -#define FM_MAX_NUM_OF_1G_MACS 5 -#define FM_MAX_NUM_OF_10G_MACS 1 -#define FM_MAX_NUM_OF_MACS (FM_MAX_NUM_OF_1G_MACS + FM_MAX_NUM_OF_10G_MACS) -#define FM_MAX_NUM_OF_OH_PORTS 7 - -#define FM_MAX_NUM_OF_1G_RX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_RX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_RX_PORTS (FM_MAX_NUM_OF_10G_RX_PORTS + FM_MAX_NUM_OF_1G_RX_PORTS) - -#define FM_MAX_NUM_OF_1G_TX_PORTS FM_MAX_NUM_OF_1G_MACS -#define FM_MAX_NUM_OF_10G_TX_PORTS FM_MAX_NUM_OF_10G_MACS -#define FM_MAX_NUM_OF_TX_PORTS (FM_MAX_NUM_OF_10G_TX_PORTS + FM_MAX_NUM_OF_1G_TX_PORTS) - -#define FM_PORT_MAX_NUM_OF_EXT_POOLS 8 /**< Number of external BM pools per Rx port */ -#define FM_PORT_NUM_OF_CONGESTION_GRPS 256 /**< Total number of congestion groups in QM */ -#define FM_MAX_NUM_OF_SUB_PORTALS 12 -#define FM_PORT_MAX_NUM_OF_OBSERVED_EXT_POOLS 0 - -/* RAMs defines */ -#define FM_MURAM_SIZE (160 * KILOBYTE) -#define FM_IRAM_SIZE ( 64 * KILOBYTE) - -/* PCD defines */ -#define FM_PCD_PLCR_NUM_ENTRIES 256 /**< Total number of policer profiles */ -#define FM_PCD_KG_NUM_OF_SCHEMES 32 /**< Total number of KG schemes */ -#define FM_PCD_MAX_NUM_OF_CLS_PLANS 256 /**< Number of classification plan entries. */ - -/* RTC defines */ -#define FM_RTC_NUM_OF_ALARMS 2 /**< RTC number of alarms */ -#define FM_RTC_NUM_OF_PERIODIC_PULSES 2 /**< RTC number of periodic pulses */ -#define FM_RTC_NUM_OF_EXT_TRIGGERS 2 /**< RTC number of external triggers */ - -/* QMI defines */ -#define QMI_MAX_NUM_OF_TNUMS 64 -#define MAX_QMI_DEQ_SUBPORTAL 12 -#define QMI_DEF_TNUMS_THRESH 48 - -/* FPM defines */ -#define FM_NUM_OF_FMAN_CTRL_EVENT_REGS 4 - -/* DMA defines */ -#define DMA_THRESH_MAX_COMMQ 31 -#define DMA_THRESH_MAX_BUF 127 - -/* BMI defines */ -#define BMI_MAX_NUM_OF_TASKS 128 -#define BMI_MAX_NUM_OF_DMAS 32 -#define BMI_MAX_FIFO_SIZE (FM_MURAM_SIZE) -#define PORT_MAX_WEIGHT 16 - - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmEventModules -{ - e_FM_MOD_PRS, /**< Parser event */ - e_FM_MOD_KG, /**< Keygen event */ - e_FM_MOD_PLCR, /**< Policer event */ - e_FM_MOD_10G_MAC, /**< 10G MAC error event */ - e_FM_MOD_1G_MAC, /**< 1G MAC error event */ - e_FM_MOD_TMR, /**< Timer event */ - e_FM_MOD_1G_MAC_TMR, /**< 1G MAC timer event */ - e_FM_MOD_FMAN_CTRL, /**< FMAN Controller timer event */ - e_FM_MOD_DUMMY_LAST -} e_FmEventModules; - -/**************************************************************************//** - @Description Enum for interrupts types -*//***************************************************************************/ -typedef enum e_FmIntrType -{ - e_FM_INTR_TYPE_ERR, - e_FM_INTR_TYPE_NORMAL -} e_FmIntrType; - -/**************************************************************************//** - @Description Enum for inter-module interrupts registration -*//***************************************************************************/ -typedef enum e_FmInterModuleEvent -{ - e_FM_EV_PRS, /**< Parser event */ - e_FM_EV_ERR_PRS, /**< Parser error event */ - e_FM_EV_KG, /**< Keygen event */ - e_FM_EV_ERR_KG, /**< Keygen error event */ - e_FM_EV_PLCR, /**< Policer event */ - e_FM_EV_ERR_PLCR, /**< Policer error event */ - e_FM_EV_ERR_10G_MAC0, /**< 10G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC0, /**< 1G MAC 0 error event */ - e_FM_EV_ERR_1G_MAC1, /**< 1G MAC 1 error event */ - e_FM_EV_ERR_1G_MAC2, /**< 1G MAC 2 error event */ - e_FM_EV_ERR_1G_MAC3, /**< 1G MAC 3 error event */ - e_FM_EV_ERR_1G_MAC4, /**< 1G MAC 4 error event */ - e_FM_EV_TMR, /**< Timer event */ - e_FM_EV_1G_MAC0_TMR, /**< 1G MAC 0 timer event */ - e_FM_EV_1G_MAC1_TMR, /**< 1G MAC 1 timer event */ - e_FM_EV_1G_MAC2_TMR, /**< 1G MAC 2 timer event */ - e_FM_EV_1G_MAC3_TMR, /**< 1G MAC 3 timer event */ - e_FM_EV_1G_MAC4_TMR, /**< 1G MAC 4 timer event */ - e_FM_EV_FMAN_CTRL_0, /**< Fman controller event 0 */ - e_FM_EV_FMAN_CTRL_1, /**< Fman controller event 1 */ - e_FM_EV_FMAN_CTRL_2, /**< Fman controller event 2 */ - e_FM_EV_FMAN_CTRL_3, /**< Fman controller event 3 */ - e_FM_EV_DUMMY_LAST -} e_FmInterModuleEvent; - -#define GET_FM_MODULE_EVENT(mod, id, intrType, event) \ - switch(mod){ \ - case e_FM_MOD_PRS: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PRS : e_FM_EV_PRS; \ - break; \ - case e_FM_MOD_KG: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_KG : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_PLCR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PLCR : e_FM_EV_PLCR; \ - break; \ - case e_FM_MOD_10G_MAC: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_10G_MAC0 : e_FM_EV_DUMMY_LAST; \ - break; \ - case e_FM_MOD_1G_MAC: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC0 : e_FM_EV_DUMMY_LAST; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC1 : e_FM_EV_DUMMY_LAST; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC2 : e_FM_EV_DUMMY_LAST; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC3 : e_FM_EV_DUMMY_LAST; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC4 : e_FM_EV_DUMMY_LAST; break; \ - } \ - break; \ - case e_FM_MOD_TMR: \ - if (id) event = e_FM_EV_DUMMY_LAST; \ - else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_TMR; \ - break; \ - case e_FM_MOD_1G_MAC_TMR: \ - switch(id){ \ - case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC0_TMR; break; \ - case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC1_TMR; break; \ - case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC2_TMR; break; \ - case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC3_TMR; break; \ - case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC4_TMR; break; \ - } \ - break; \ - case e_FM_MOD_FMAN_CTRL: \ - if (intrType == e_FM_INTR_TYPE_ERR) event = e_FM_EV_DUMMY_LAST; \ - else switch(id){ \ - case(0): event = e_FM_EV_FMAN_CTRL_0; break; \ - case(1): event = e_FM_EV_FMAN_CTRL_1; break; \ - case(2): event = e_FM_EV_FMAN_CTRL_2; break; \ - case(3): event = e_FM_EV_FMAN_CTRL_3; break; \ - } \ - break; \ - default: event = e_FM_EV_DUMMY_LAST; \ - break;} - -#define FM_CHECK_PORT_RESTRICTIONS(__validPorts, __newPortIndx) TRUE - -/* P3041 unique features */ -#define FM_QMI_DEQ_OPTIONS_SUPPORT -#define FM_NO_DISPATCH_RAM_ECC -#define FM_FIFO_ALLOCATION_OLD_ALG -#define FM_NO_WATCHDOG -#define FM_NO_TNUM_AGING -#define FM_NO_TGEC_LOOPBACK -#define FM_KG_NO_BYPASS_FQID_GEN -#define FM_KG_NO_BYPASS_PLCR_PROFILE_GEN -#define FM_NO_BACKUP_POOLS -#define FM_NO_OP_OBSERVED_POOLS -#define FM_NO_ADVANCED_RATE_LIMITER -#define FM_NO_OP_OBSERVED_CGS - -/* FM erratas */ -#define FM_TX_ECC_FRMS_ERRATA_10GMAC_A004 -#define FM_TX_SHORT_FRAME_BAD_TS_ERRATA_10GMAC_A006 /* No implementation, Out of LLD scope */ -#define FM_TX_FIFO_CORRUPTION_ERRATA_10GMAC_A007 -#define FM_ECC_HALT_NO_SYNC_ERRATA_10GMAC_A008 - -#define FM_NO_RX_PREAM_ERRATA_DTSECx1 -#define FM_RX_PREAM_4_ERRATA_DTSEC_A001 FM_NO_RX_PREAM_ERRATA_DTSECx1 -#define FM_GRS_ERRATA_DTSEC_A002 -#define FM_BAD_TX_TS_IN_B_2_B_ERRATA_DTSEC_A003 -#define FM_GTS_ERRATA_DTSEC_A004 -#define FM_PAUSE_BLOCK_ERRATA_DTSEC_A006 /* do nothing */ -#define FM_RESERVED_ACCESS_TO_DISABLED_DEV_ERRATA_DTSEC_A0011 /* do nothing */ -#define FM_GTS_AFTER_MAC_ABORTED_FRAME_ERRATA_DTSEC_A0012 FM_GTS_ERRATA_DTSEC_A004 -#define FM_MAGIC_PACKET_UNRECOGNIZED_ERRATA_DTSEC2 /* No implementation, Out of LLD scope */ -#define FM_10_100_SGMII_NO_TS_ERRATA_DTSEC3 -#define FM_TX_LOCKUP_ERRATA_DTSEC6 - -#define FM_IM_TX_SYNC_SKIP_TNUM_ERRATA_FMAN_A001 /* Implemented by ucode */ -#define FM_HC_DEF_FQID_ONLY_ERRATA_FMAN_A003 /* Implemented by ucode */ -#define FM_IM_TX_SHARED_TNUM_ERRATA_FMAN4 /* Implemented by ucode */ -#define FM_IM_GS_DEADLOCK_ERRATA_FMAN5 /* Implemented by ucode */ -#define FM_IM_DEQ_PIPELINE_DEPTH_ERRATA_FMAN10 /* Implemented by ucode */ -#define FM_CC_GEN6_MISSMATCH_ERRATA_FMAN12 /* Implemented by ucode */ -#define FM_CC_CHANGE_SHARED_TNUM_ERRATA_FMAN13 /* Implemented by ucode */ -#define FM_IM_LARGE_MRBLR_ERRATA_FMAN15 /* Implemented by ucode */ -#define FM_BMI_TO_RISC_ENQ_ERRATA_FMANc /* No implementation, Out of LLD scope */ -#define FM_INVALID_SWPRS_DATA_ERRATA_FMANd -/* #define FM_PRS_MPLS_SSA_ERRATA_FMANj */ /* No implementation, No patch yet */ -/* #define FM_PRS_INITIAL_PLANID_ERRATA_FMANk */ /* No implementation, No patch yet */ - -#define FM_UCODE_NOT_RESET_ERRATA_BUGZILLA6173 - -#define FM_NO_COPY_CTXA_CTXB_ERRATA_FMAN_SW001 -#define FM_PRS_MEM_ERRATA_FMAN_SW003 -#define FM_LEN_CHECK_ERRATA_FMAN_SW002 -#define FM_10G_REM_N_LCL_FLT_EX_ERRATA_10GMAC001 - - -#endif /* __DPAA_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P3041/dpaa_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/P3041/part_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/P3041/part_integration_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/P3041/part_integration_ext.h (nonexistent) @@ -1,995 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - **************************************************************************/ -/** - - @File part_integration_ext.h - - @Description P3041 external definitions and structures. -*//***************************************************************************/ -#ifndef __PART_INTEGRATION_EXT_H -#define __PART_INTEGRATION_EXT_H - -#include "std_ext.h" -#include "ddr_std_ext.h" -#include "enet_ext.h" -#include "dpaa_integration_ext.h" - - -/**************************************************************************//** - @Group P3041_chip_id P3041 Application Programming Interface - - @Description P3041 Chip functions,definitions and enums. - - @{ -*//***************************************************************************/ - -#define CORE_E500MC - -#define INTG_MAX_NUM_OF_CORES 4 - - -/**************************************************************************//** - @Description Module types. -*//***************************************************************************/ -typedef enum e_ModuleId -{ - e_MODULE_ID_DUART_1 = 0, - e_MODULE_ID_DUART_2, - e_MODULE_ID_DUART_3, - e_MODULE_ID_DUART_4, - e_MODULE_ID_LAW, - e_MODULE_ID_LBC, - e_MODULE_ID_PAMU, - e_MODULE_ID_QM, /**< Queue manager module */ - e_MODULE_ID_BM, /**< Buffer manager module */ - e_MODULE_ID_QM_CE_PORTAL_0, - e_MODULE_ID_QM_CI_PORTAL_0, - e_MODULE_ID_QM_CE_PORTAL_1, - e_MODULE_ID_QM_CI_PORTAL_1, - e_MODULE_ID_QM_CE_PORTAL_2, - e_MODULE_ID_QM_CI_PORTAL_2, - e_MODULE_ID_QM_CE_PORTAL_3, - e_MODULE_ID_QM_CI_PORTAL_3, - e_MODULE_ID_QM_CE_PORTAL_4, - e_MODULE_ID_QM_CI_PORTAL_4, - e_MODULE_ID_QM_CE_PORTAL_5, - e_MODULE_ID_QM_CI_PORTAL_5, - e_MODULE_ID_QM_CE_PORTAL_6, - e_MODULE_ID_QM_CI_PORTAL_6, - e_MODULE_ID_QM_CE_PORTAL_7, - e_MODULE_ID_QM_CI_PORTAL_7, - e_MODULE_ID_QM_CE_PORTAL_8, - e_MODULE_ID_QM_CI_PORTAL_8, - e_MODULE_ID_QM_CE_PORTAL_9, - e_MODULE_ID_QM_CI_PORTAL_9, - e_MODULE_ID_BM_CE_PORTAL_0, - e_MODULE_ID_BM_CI_PORTAL_0, - e_MODULE_ID_BM_CE_PORTAL_1, - e_MODULE_ID_BM_CI_PORTAL_1, - e_MODULE_ID_BM_CE_PORTAL_2, - e_MODULE_ID_BM_CI_PORTAL_2, - e_MODULE_ID_BM_CE_PORTAL_3, - e_MODULE_ID_BM_CI_PORTAL_3, - e_MODULE_ID_BM_CE_PORTAL_4, - e_MODULE_ID_BM_CI_PORTAL_4, - e_MODULE_ID_BM_CE_PORTAL_5, - e_MODULE_ID_BM_CI_PORTAL_5, - e_MODULE_ID_BM_CE_PORTAL_6, - e_MODULE_ID_BM_CI_PORTAL_6, - e_MODULE_ID_BM_CE_PORTAL_7, - e_MODULE_ID_BM_CI_PORTAL_7, - e_MODULE_ID_BM_CE_PORTAL_8, - e_MODULE_ID_BM_CI_PORTAL_8, - e_MODULE_ID_BM_CE_PORTAL_9, - e_MODULE_ID_BM_CI_PORTAL_9, - e_MODULE_ID_FM, /**< Frame manager module */ - e_MODULE_ID_FM_RTC, /**< FM Real-Time-Clock */ - e_MODULE_ID_FM_MURAM, /**< FM Multi-User-RAM */ - e_MODULE_ID_FM_BMI, /**< FM BMI block */ - e_MODULE_ID_FM_QMI, /**< FM QMI block */ - e_MODULE_ID_FM_PARSER, /**< FM parser block */ - e_MODULE_ID_FM_PORT_HO1, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO2, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO3, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO4, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO5, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO6, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_HO7, /**< FM Host-command/offline-parsing port block */ - e_MODULE_ID_FM_PORT_1GRx1, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx2, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx3, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx4, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GRx5, /**< FM Rx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GRx, /**< FM Rx 10G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx1, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx2, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx3, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx4, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_1GTx5, /**< FM Tx 1G MAC port block */ - e_MODULE_ID_FM_PORT_10GTx, /**< FM Tx 10G MAC port block */ - e_MODULE_ID_FM_PLCR, /**< FM Policer */ - e_MODULE_ID_FM_KG, /**< FM Keygen */ - e_MODULE_ID_FM_DMA, /**< FM DMA */ - e_MODULE_ID_FM_FPM, /**< FM FPM */ - e_MODULE_ID_FM_IRAM, /**< FM Instruction-RAM */ - e_MODULE_ID_FM_1GMDIO1, /**< FM 1G MDIO MAC 1*/ - e_MODULE_ID_FM_1GMDIO2, /**< FM 1G MDIO MAC 2*/ - e_MODULE_ID_FM_1GMDIO3, /**< FM 1G MDIO MAC 3*/ - e_MODULE_ID_FM_1GMDIO4, /**< FM 1G MDIO MAC 4*/ - e_MODULE_ID_FM_1GMDIO5, /**< FM 1G MDIO MAC 5*/ - e_MODULE_ID_FM_10GMDIO, /**< FM 10G MDIO */ - e_MODULE_ID_FM_PRS_IRAM, /**< FM SW-parser Instruction-RAM */ - e_MODULE_ID_FM_1GMAC1, /**< FM 1G MAC #1 */ - e_MODULE_ID_FM_1GMAC2, /**< FM 1G MAC #2 */ - e_MODULE_ID_FM_1GMAC3, /**< FM 1G MAC #3 */ - e_MODULE_ID_FM_1GMAC4, /**< FM 1G MAC #4 */ - e_MODULE_ID_FM_1GMAC5, /**< FM 1G MAC #5 */ - e_MODULE_ID_FM_10GMAC, /**< FM 10G MAC */ - - e_MODULE_ID_SEC_GEN, /**< SEC 4.0 General registers */ - e_MODULE_ID_SEC_QI, /**< SEC 4.0 QI registers */ - e_MODULE_ID_SEC_JQ0, /**< SEC 4.0 JQ-0 registers */ - e_MODULE_ID_SEC_JQ1, /**< SEC 4.0 JQ-1 registers */ - e_MODULE_ID_SEC_JQ2, /**< SEC 4.0 JQ-2 registers */ - e_MODULE_ID_SEC_JQ3, /**< SEC 4.0 JQ-3 registers */ - e_MODULE_ID_SEC_RTIC, /**< SEC 4.0 RTIC registers */ - e_MODULE_ID_SEC_DECO0_CCB0, /**< SEC 4.0 DECO-0/CCB-0 registers */ - e_MODULE_ID_SEC_DECO1_CCB1, /**< SEC 4.0 DECO-1/CCB-1 registers */ - e_MODULE_ID_SEC_DECO2_CCB2, /**< SEC 4.0 DECO-2/CCB-2 registers */ - e_MODULE_ID_SEC_DECO3_CCB3, /**< SEC 4.0 DECO-3/CCB-3 registers */ - e_MODULE_ID_SEC_DECO4_CCB4, /**< SEC 4.0 DECO-4/CCB-4 registers */ - - e_MODULE_ID_PIC, /**< PIC */ - e_MODULE_ID_GPIO, /**< GPIO */ - e_MODULE_ID_SERDES, /**< SERDES */ - e_MODULE_ID_CPC, /**< CoreNet-Platform-Cache */ - e_MODULE_ID_DUMMY_LAST -} e_ModuleId; - -#define NUM_OF_MODULES e_MODULE_ID_DUMMY_LAST - -/* Offsets relative to CCSR base */ -#define P3041_OFFSET_LAW 0x00000c00 -#define P3041_OFFSET_DDR 0x00008000 -#define P3041_OFFSET_CPC 0x00010000 -#define P3041_OFFSET_CCM 0x00018000 -#define P3041_OFFSET_PAMU 0x00020000 -#define P3041_OFFSET_PIC 0x00040000 -#define P3041_OFFSET_GUTIL 0x000e0000 -#define P3041_OFFSET_RCPM 0x000e2000 -#define P3041_OFFSET_SERDES 0x000ea000 -#define P3041_OFFSET_DMA1 0x00100100 -#define P3041_OFFSET_DMA2 0x00101100 -#define P3041_OFFSET_ESPI 0x00110000 -#define P3041_OFFSET_ESDHC 0x00114000 -#define P3041_OFFSET_I2C1 0x00118000 -#define P3041_OFFSET_I2C2 0x00118100 -#define P3041_OFFSET_I2C3 0x00119000 -#define P3041_OFFSET_I2C4 0x00119100 -#define P3041_OFFSET_DUART1 0x0011c500 -#define P3041_OFFSET_DUART2 0x0011c600 -#define P3041_OFFSET_DUART3 0x0011d500 -#define P3041_OFFSET_DUART4 0x0011d600 -#define P3041_OFFSET_LBC 0x00124000 -#define P3041_OFFSET_GPIO 0x00130000 -#define P3041_OFFSET_PCIE1 0x00200000 -#define P3041_OFFSET_PCIE2 0x00201000 -#define P3041_OFFSET_PCIE3 0x00202000 -#define P3041_OFFSET_PCIE4 0x00203000 -#define P3041_OFFSET_USB1 0x00210000 -#define P3041_OFFSET_USB2 0x00211000 -#define P3041_OFFSET_USB_PHY 0x00214000 -#define P3041_OFFSET_SATA1 0x00220000 -#define P3041_OFFSET_SATA2 0x00221000 -#define P3041_OFFSET_SEC_GEN 0x00300000 -#define P3041_OFFSET_SEC_JQ0 0x00301000 -#define P3041_OFFSET_SEC_JQ1 0x00302000 -#define P3041_OFFSET_SEC_JQ2 0x00303000 -#define P3041_OFFSET_SEC_JQ3 0x00304000 -#define P3041_OFFSET_SEC_RESERVED 0x00305000 -#define P3041_OFFSET_SEC_RTIC 0x00306000 -#define P3041_OFFSET_SEC_QI 0x00307000 -#define P3041_OFFSET_SEC_DECO0_CCB0 0x00308000 -#define P3041_OFFSET_SEC_DECO1_CCB1 0x00309000 -#define P3041_OFFSET_PME 0x00316000 -#define P3041_OFFSET_QM 0x00318000 -#define P3041_OFFSET_BM 0x0031a000 -#define P3041_OFFSET_FM 0x00400000 - -#define P3041_OFFSET_FM_MURAM P3041_OFFSET_FM -#define P3041_OFFSET_FM_BMI (P3041_OFFSET_FM + 0x00080000) -#define P3041_OFFSET_FM_QMI (P3041_OFFSET_FM + 0x00080400) -#define P3041_OFFSET_FM_PARSER (P3041_OFFSET_FM + 0x00080800) -#define P3041_OFFSET_FM_PORT_HO1 (P3041_OFFSET_FM + 0x00081000) /* host command/offline parser */ -#define P3041_OFFSET_FM_PORT_HO2 (P3041_OFFSET_FM + 0x00082000) -#define P3041_OFFSET_FM_PORT_HO3 (P3041_OFFSET_FM + 0x00083000) -#define P3041_OFFSET_FM_PORT_HO4 (P3041_OFFSET_FM + 0x00084000) -#define P3041_OFFSET_FM_PORT_HO5 (P3041_OFFSET_FM + 0x00085000) -#define P3041_OFFSET_FM_PORT_HO6 (P3041_OFFSET_FM + 0x00086000) -#define P3041_OFFSET_FM_PORT_HO7 (P3041_OFFSET_FM + 0x00087000) -#define P3041_OFFSET_FM_PORT_1GRX1 (P3041_OFFSET_FM + 0x00088000) -#define P3041_OFFSET_FM_PORT_1GRX2 (P3041_OFFSET_FM + 0x00089000) -#define P3041_OFFSET_FM_PORT_1GRX3 (P3041_OFFSET_FM + 0x0008a000) -#define P3041_OFFSET_FM_PORT_1GRX4 (P3041_OFFSET_FM + 0x0008b000) -#define P3041_OFFSET_FM_PORT_1GRX5 (P3041_OFFSET_FM + 0x0008c000) -#define P3041_OFFSET_FM_PORT_10GRX (P3041_OFFSET_FM + 0x00090000) -#define P3041_OFFSET_FM_PORT_1GTX1 (P3041_OFFSET_FM + 0x000a8000) -#define P3041_OFFSET_FM_PORT_1GTX2 (P3041_OFFSET_FM + 0x000a9000) -#define P3041_OFFSET_FM_PORT_1GTX3 (P3041_OFFSET_FM + 0x000aa000) -#define P3041_OFFSET_FM_PORT_1GTX4 (P3041_OFFSET_FM + 0x000ab000) -#define P3041_OFFSET_FM_PORT_1GTX5 (P3041_OFFSET_FM + 0x000ac000) -#define P3041_OFFSET_FM_PORT_10GTX (P3041_OFFSET_FM + 0x000b0000) -#define P3041_OFFSET_FM_PLCR (P3041_OFFSET_FM + 0x000c0000) -#define P3041_OFFSET_FM_KG (P3041_OFFSET_FM + 0x000c1000) -#define P3041_OFFSET_FM_DMA (P3041_OFFSET_FM + 0x000c2000) -#define P3041_OFFSET_FM_FPM (P3041_OFFSET_FM + 0x000c3000) -#define P3041_OFFSET_FM_IRAM (P3041_OFFSET_FM + 0x000c4000) -#define P3041_OFFSET_FM_PARSER_IRAM (P3041_OFFSET_FM + 0x000c7000) -#define P3041_OFFSET_FM_1GMAC1 (P3041_OFFSET_FM + 0x000e0000) -#define P3041_OFFSET_FM_1GMDIO (P3041_OFFSET_FM + 0x000e1000 + 0x120) -#define P3041_OFFSET_FM_1GMAC2 (P3041_OFFSET_FM + 0x000e2000) -#define P3041_OFFSET_FM_1GMAC3 (P3041_OFFSET_FM + 0x000e4000) -#define P3041_OFFSET_FM_1GMAC4 (P3041_OFFSET_FM + 0x000e6000) -#define P3041_OFFSET_FM_1GMAC5 (P3041_OFFSET_FM + 0x000e8000) -#define P3041_OFFSET_FM_10GMAC (P3041_OFFSET_FM + 0x000f0000) -#define P3041_OFFSET_FM_10GMDIO (P3041_OFFSET_FM + 0x000f1000 + 0x030) -#define P3041_OFFSET_FM_RTC (P3041_OFFSET_FM + 0x000fe000) - -/* Offsets relative to QM or BM portals base */ -#define P3041_OFFSET_PORTALS_CE_AREA 0x000000 /* cache enabled area */ -#define P3041_OFFSET_PORTALS_CI_AREA 0x100000 /* cache inhibited area */ - -#define P3041_CE_PORTAL_SIZE 0x4000 -#define P3041_CI_PORTAL_SIZE 0x1000 - -#define P3041_OFFSET_PORTALS_CE(portal) \ - (P3041_OFFSET_PORTALS_CE_AREA + P3041_CE_PORTAL_SIZE * (portal)) -#define P3041_OFFSET_PORTALS_CI(portal) \ - (P3041_OFFSET_PORTALS_CI_AREA + P3041_CI_PORTAL_SIZE * (portal)) - - -/**************************************************************************//** - @Description Transaction source ID (for memory controllers error reporting). -*//***************************************************************************/ -typedef enum e_TransSrc -{ - e_TRANS_SRC_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_TRANS_SRC_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_TRANS_SRC_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_TRANS_SRC_PCIE_4 = 0x3, /**< PCI Express 4 */ - e_TRANS_SRC_SRIO_1 = 0x8, /**< SRIO 1 */ - e_TRANS_SRC_SRIO_2 = 0x9, /**< SRIO 2 */ - e_TRANS_SRC_BMAN = 0x18, /**< BMan */ - e_TRANS_SRC_PAMU = 0x1C, /**< PAMU */ - e_TRANS_SRC_PME = 0x20, /**< PME */ - e_TRANS_SRC_SEC = 0x21, /**< Security engine */ - e_TRANS_SRC_QMAN = 0x3C, /**< QMan */ - e_TRANS_SRC_USB_1 = 0x40, /**< USB 1 */ - e_TRANS_SRC_USB_2 = 0x41, /**< USB 2 */ - e_TRANS_SRC_ESDHC = 0x44, /**< eSDHC */ - e_TRANS_SRC_PBL = 0x48, /**< Pre-boot loader */ - e_TRANS_SRC_NPC = 0x4B, /**< Nexus port controller */ - e_TRANS_SRC_RMAN = 0x5D, /**< RIO message manager */ - e_TRANS_SRC_SATA_1 = 0x60, /**< SATA 1 */ - e_TRANS_SRC_SATA_2 = 0x61, /**< SATA 2 */ - e_TRANS_SRC_DMA_1 = 0x70, /**< DMA 1 */ - e_TRANS_SRC_DMA_2 = 0x71, /**< DMA 2 */ - e_TRANS_SRC_CORE_0_INST = 0x80, /**< Processor 0 (instruction) */ - e_TRANS_SRC_CORE_0_DATA = 0x81, /**< Processor 0 (data) */ - e_TRANS_SRC_CORE_1_INST = 0x82, /**< Processor 1 (instruction) */ - e_TRANS_SRC_CORE_1_DATA = 0x83, /**< Processor 1 (data) */ - e_TRANS_SRC_CORE_2_INST = 0x84, /**< Processor 2 (instruction) */ - e_TRANS_SRC_CORE_2_DATA = 0x85, /**< Processor 2 (data) */ - e_TRANS_SRC_CORE_3_INST = 0x86, /**< Processor 3 (instruction) */ - e_TRANS_SRC_CORE_3_DATA = 0x87, /**< Processor 3 (data) */ - e_TRANS_SRC_FM_10G = 0xC0, /**< FM XAUI */ - e_TRANS_SRC_FM_HO_1 = 0xC1, /**< FM offline, host 1 */ - e_TRANS_SRC_FM_HO_2 = 0xC2, /**< FM offline, host 2 */ - e_TRANS_SRC_FM_HO_3 = 0xC3, /**< FM offline, host 3 */ - e_TRANS_SRC_FM_HO_4 = 0xC4, /**< FM offline, host 4 */ - e_TRANS_SRC_FM_HO_5 = 0xC5, /**< FM offline, host 5 */ - e_TRANS_SRC_FM_HO_6 = 0xC6, /**< FM offline, host 6 */ - e_TRANS_SRC_FM_HO_7 = 0xC7, /**< FM offline, host 7 */ - e_TRANS_SRC_FM_GETH_1 = 0xC8, /**< FM GETH 1 */ - e_TRANS_SRC_FM_GETH_2 = 0xC9, /**< FM GETH 2 */ - e_TRANS_SRC_FM_GETH_3 = 0xCA, /**< FM GETH 3 */ - e_TRANS_SRC_FM_GETH_4 = 0xCB, /**< FM GETH 4 */ - e_TRANS_SRC_FM_GETH_5 = 0xCC /**< FM GETH 5 */ -} e_TransSrc; - -/**************************************************************************//** - @Description Local Access Window Target interface ID -*//***************************************************************************/ -typedef enum e_P3041LawTargetId -{ - e_P3041_LAW_TARGET_PCIE_1 = 0x0, /**< PCI Express 1 */ - e_P3041_LAW_TARGET_PCIE_2 = 0x1, /**< PCI Express 2 */ - e_P3041_LAW_TARGET_PCIE_3 = 0x2, /**< PCI Express 3 */ - e_P3041_LAW_TARGET_PCIE_4 = 0x3, /**< PCI Express 4 */ - e_P3041_LAW_TARGET_SRIO_1 = 0x8, /**< SRIO 1 */ - e_P3041_LAW_TARGET_SRIO_2 = 0x9, /**< SRIO 2 */ - e_P3041_LAW_TARGET_DDR_CPC = 0x10, /**< DDR controller or CPC SRAM */ - e_P3041_LAW_TARGET_BMAN = 0x18, /**< BMAN target interface ID */ - e_P3041_LAW_TARGET_DCSR = 0x1D, /**< DCSR */ - e_P3041_LAW_TARGET_LBC = 0x1F, /**< Local Bus target interface ID */ - e_P3041_LAW_TARGET_QMAN = 0x3C, /**< QMAN target interface ID */ - e_P3041_LAW_TARGET_NONE = 0xFF /**< None */ -} e_P3041LawTargetId; - -/*************************************************************** - P3041 general routines -****************************************************************/ -/**************************************************************************//** - @Group P3041_init_grp P3041 Initialization Unit - - @Description P3041 initialization unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Description Part ID and revision number -*//***************************************************************************/ -typedef enum e_P3041DeviceName -{ - e_P3041_REV_INVALID = 0x00000000, /**< Invalid revision */ - e_P3041_REV_1_0 = (int)0x82190310, /**< P3041 with security, revision 1.0 */ - e_P3041_REV_1_0_NO_SEC = (int)0x82110310 /**< P3041 without security, revision 1.0 */ -} e_P3041DeviceName; - -/**************************************************************************//** - @Description Device Disable Register -*//***************************************************************************/ -typedef enum e_P3041DeviceDisable -{ - e_P3041_DEV_DISABLE_PCIE_1 = 0, /**< PCI Express controller 1 disable */ - e_P3041_DEV_DISABLE_PCIE_2, /**< PCI Express controller 2 disable */ - e_P3041_DEV_DISABLE_PCIE_3, /**< PCI Express controller 3 disable */ - e_P3041_DEV_DISABLE_PCIE_4, /**< PCI Express controller 4 disable */ - e_P3041_DEV_DISABLE_RMAN, /**< RapidIO message manager disable */ - e_P3041_DEV_DISABLE_SRIO_1, /**< Serial RapidIO controller 1 disable */ - e_P3041_DEV_DISABLE_SRIO_2, /**< Serial RapidIO controller 2 disable */ - e_P3041_DEV_DISABLE_DMA_1 = 9, /**< DMA controller 1 disable */ - e_P3041_DEV_DISABLE_DMA_2, /**< DMA controller 2 disable */ - e_P3041_DEV_DISABLE_DDR, /**< DDR controller disable */ - e_P3041_DEV_DISABLE_SATA_1 = 17, /**< SATA controller 1 disable */ - e_P3041_DEV_DISABLE_SATA_2, /**< SATA controller 2 disable */ - e_P3041_DEV_DISABLE_LBC, /**< eLBC controller disable */ - e_P3041_DEV_DISABLE_USB_1, /**< USB controller 1 disable */ - e_P3041_DEV_DISABLE_USB_2, /**< USB controller 2 disable */ - e_P3041_DEV_DISABLE_ESDHC = 23, /**< eSDHC controller disable */ - e_P3041_DEV_DISABLE_GPIO, /**< GPIO controller disable */ - e_P3041_DEV_DISABLE_ESPI, /**< eSPI controller disable */ - e_P3041_DEV_DISABLE_I2C_1, /**< I2C module 1 (controllers 1 and 2) disable */ - e_P3041_DEV_DISABLE_I2C_2, /**< I2C module 2 (controllers 3 and 4) disable */ - e_P3041_DEV_DISABLE_DUART_1 = 30, /**< DUART controller 1 disable */ - e_P3041_DEV_DISABLE_DUART_2, /**< DUART controller 2 disable */ - e_P3041_DEV_DISABLE_DISR1_DUMMY_LAST = 32, - /**< Dummy entry signing end of DEVDISR1 register controllers */ - e_P3041_DEV_DISABLE_PME = e_P3041_DEV_DISABLE_DISR1_DUMMY_LAST, - /**< Pattern match engine disable */ - e_P3041_DEV_DISABLE_SEC, /**< Security disable */ - e_P3041_DEV_DISABLE_QM_BM = e_P3041_DEV_DISABLE_DISR1_DUMMY_LAST + 4, - /**< Queue manager/buffer manager disable */ - e_P3041_DEV_DISABLE_FM = e_P3041_DEV_DISABLE_DISR1_DUMMY_LAST + 6, - /**< Frame manager disable */ - e_P3041_DEV_DISABLE_10G, /**< 10G Ethernet controller disable */ - e_P3041_DEV_DISABLE_DTSEC_1, /**< dTSEC controller 1 disable */ - e_P3041_DEV_DISABLE_DTSEC_2, /**< dTSEC controller 2 disable */ - e_P3041_DEV_DISABLE_DTSEC_3, /**< dTSEC controller 3 disable */ - e_P3041_DEV_DISABLE_DTSEC_4, /**< dTSEC controller 4 disable */ - e_P3041_DEV_DISABLE_DTSEC_5 /**< dTSEC controller 5 disable */ -} e_P3041DeviceDisable; - - -/**************************************************************************//* - @Description structure representing P3041 devices configuration -*//***************************************************************************/ -typedef struct t_P3041Devices -{ - struct - { - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; /**< Most significant bits represent lanes used by this bank, - one bit for lane, lane A is the first and so on, e.g., - set 0xF000 for ABCD lanes */ - e_EnetInterface ethIf; - uint8_t ratio; - bool divByTwo; - bool isTwoHalfSgmii; - } dtsecs[FM_MAX_NUM_OF_1G_MACS]; - struct - { - bool enabled; - uint8_t serdesBank; - uint16_t serdesLane; - } tgec; - } fm; -} t_P3041Devices; - -/**************************************************************************//** - @Function P3041_GetRevInfo - - @Description Obtain revision information. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return Part ID and revision. -*//***************************************************************************/ -e_P3041DeviceName P3041_GetRevInfo(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P3041_GetE500Factor - - @Description Obtain core's multiplication factors. - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[in] coreIndex - Core index. - @Param[out] p_E500MulFactor - E500 to CCB multification factor. - @Param[out] p_E500DivFactor - E500 to CCB division factor. - -*//***************************************************************************/ -void P3041_GetE500Factor(uintptr_t gutilBase, - uint8_t coreIndex, - uint32_t *p_E500MulFactor, - uint32_t *p_E500DivFactor); - -/**************************************************************************//** - @Function P3041_GetCcbFactor - - @Description Obtain system multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return System multiplication factor. -*//***************************************************************************/ -uint32_t P3041_GetCcbFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P3041_GetDdrFactor - - @Description Obtain DDR clock multiplication factor. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR clock multiplication factor. -*//***************************************************************************/ -uint32_t P3041_GetDdrFactor(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P3041_GetDdrType - - @Description Obtain DDR memory type. - - @Param[in] gutilBase - Gutil memory map virtual base address. - - @Return DDR type. -*//***************************************************************************/ -e_DdrType P3041_GetDdrType(uintptr_t gutilBase); - -/**************************************************************************//** - @Function P3041_GetFmFactor - - @Description returns FM multiplication factors. (This value is returned using - two parameters to avoid using float parameter). - - @Param[in] gutilBase - Gutil memory map virtual base address. - @Param[out] p_FmMulFactor - FM to CCB multification factor. - @Param[out] p_FmDivFactor - FM to CCB division factor. - -*//***************************************************************************/ -void P3041_GetFmFactor(uintptr_t gutilBase, - uint32_t *p_FmMulFactor, - uint32_t *p_FmDivFactor); - - -void P3041_CoreTimeBaseEnable(uintptr_t rcpmBase); -void P3041_CoreTimeBaseDisable(uintptr_t rcpmBase); - -typedef enum e_SerdesProtocol -{ - SRDS_PROTOCOL_NONE = 0, - SRDS_PROTOCOL_PCIE1, - SRDS_PROTOCOL_PCIE2, - SRDS_PROTOCOL_PCIE3, - SRDS_PROTOCOL_PCIE4, - SRDS_PROTOCOL_SRIO1, - SRDS_PROTOCOL_SRIO2, - SRDS_PROTOCOL_SGMII_FM, - SRDS_PROTOCOL_XAUI_FM, - SRDS_PROTOCOL_SATA1, - SRDS_PROTOCOL_SATA2, - SRDS_PROTOCOL_AURORA -} e_SerdesProtocol; - -t_Error P3041_DeviceDisable(uintptr_t gutilBase, e_P3041DeviceDisable device, bool disable); -void P3041_GetDevicesConfiguration(uintptr_t gutilBase, t_P3041Devices *p_Devices); -t_Error P3041_PamuDisableBypass(uintptr_t gutilBase, uint8_t pamuId, bool disable); -uint32_t P3041_SerdesRcwGetProtocol(uintptr_t gutilBase); -bool P3041_SerdesRcwIsDeviceConfigured(uintptr_t gutilBase, e_SerdesProtocol device); -bool P3041_SerdesRcwIsLaneEnabled(uintptr_t gutilBase, uint32_t lane); - -/** @} */ /* end of P3041_init_grp group */ -/** @} */ /* end of P3041_grp group */ - - -/***************************************************************************** - INTEGRATION-SPECIFIC MODULE CODES -******************************************************************************/ -#define MODULE_UNKNOWN 0x00000000 -#define MODULE_MEM 0x00010000 -#define MODULE_MM 0x00020000 -#define MODULE_CORE 0x00030000 -#define MODULE_P3041 0x00040000 -#define MODULE_P3041_PLATFORM 0x00050000 -#define MODULE_PM 0x00060000 -#define MODULE_MMU 0x00070000 -#define MODULE_PIC 0x00080000 -#define MODULE_CPC 0x00090000 -#define MODULE_DUART 0x000a0000 -#define MODULE_SERDES 0x000b0000 -#define MODULE_PIO 0x000c0000 -#define MODULE_QM 0x000d0000 -#define MODULE_BM 0x000e0000 -#define MODULE_SEC 0x000f0000 -#define MODULE_LAW 0x00100000 -#define MODULE_LBC 0x00110000 -#define MODULE_PAMU 0x00120000 -#define MODULE_FM 0x00130000 -#define MODULE_FM_MURAM 0x00140000 -#define MODULE_FM_PCD 0x00150000 -#define MODULE_FM_RTC 0x00160000 -#define MODULE_FM_MAC 0x00170000 -#define MODULE_FM_PORT 0x00180000 -#define MODULE_DPA 0x00190000 -#define MODULE_MII 0x001a0000 -#define MODULE_I2C 0x001b0000 -#define MODULE_DMA 0x001c0000 -#define MODULE_DDR 0x001d0000 -#define MODULE_ESPI 0x001e0000 - -/***************************************************************************** - PAMU INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define PAMU_NUM_OF_PARTITIONS 4 - - -/***************************************************************************** - LAW INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define LAW_NUM_OF_WINDOWS 32 -#define LAW_MIN_WINDOW_SIZE 0x0000000000001000LL /**< 4KB */ -#define LAW_MAX_WINDOW_SIZE 0x0000002000000000LL /**< 64GB */ - - -/***************************************************************************** - LBC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -/**************************************************************************//** - @Group lbc_exception_grp LBC Exception Unit - - @Description LBC Exception unit API functions, definitions and enums - - @{ -*//***************************************************************************/ - -/**************************************************************************//** - @Anchor lbc_exbm - - @Collection LBC Errors Bit Mask - - These errors are reported through the exceptions callback.. - The values can be or'ed in any combination in the errors mask - parameter of the errors report structure. - - These errors can also be passed as a bit-mask to - LBC_EnableErrorChecking() or LBC_DisableErrorChecking(), - for enabling or disabling error checking. - @{ -*//***************************************************************************/ -#define LBC_ERR_BUS_MONITOR 0x80000000 /**< Bus monitor error */ -#define LBC_ERR_PARITY_ECC 0x20000000 /**< Parity error for GPCM/UPM */ -#define LBC_ERR_WRITE_PROTECT 0x04000000 /**< Write protection error */ -#define LBC_ERR_CHIP_SELECT 0x00080000 /**< Unrecognized chip select */ - -#define LBC_ERR_ALL (LBC_ERR_BUS_MONITOR | LBC_ERR_PARITY_ECC | \ - LBC_ERR_WRITE_PROTECT | LBC_ERR_CHIP_SELECT) - /**< All possible errors */ -/* @} */ -/** @} */ /* end of lbc_exception_grp group */ - -#define LBC_INCORRECT_ERROR_REPORT_ERRATA - -#define LBC_NUM_OF_BANKS 8 -#define LBC_MAX_CS_SIZE 0x0000000100000000LL /* Up to 4G memory block size */ -#define LBC_PARITY_SUPPORT -#define LBC_HIGH_CLK_DIVIDERS -#define LBC_FCM_AVAILABLE - -/***************************************************************************** - GPIO INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define GPIO_NUM_OF_PORTS 1 /**< Number of ports in GPIO module; - Each port contains up to 32 I/O pins. */ - -#define GPIO_VALID_PIN_MASKS \ - { /* Port A */ 0xFFFFFFFF } - -#define GPIO_VALID_INTR_MASKS \ - { /* Port A */ 0xFFFFFFFF } - - -/***************************************************************************** - SERDES INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define SRDS_MAX_LANES 18 -#define SRDS_MAX_BANK 3 - -/* Serdes lanes general information provided in the following form: - 1) Lane index in Serdes Control Registers Map - 2) Lane enable/disable bit number in RCW - 3) Lane bank index */ -#define SRDS_LANES \ -{ \ - { 0, 152, 0 }, \ - { 1, 153, 0 }, \ - { 2, 154, 0 }, \ - { 3, 155, 0 }, \ - { 4, 156, 0 }, \ - { 5, 157, 0 }, \ - { 6, 158, 0 }, \ - { 7, 159, 0 }, \ - { 8, 160, 0 }, \ - { 9, 161, 0 }, \ - { 16, 162, 1 }, \ - { 17, 163, 1 }, \ - { 18, 164, 1 }, \ - { 19, 165, 1 }, \ - { 20, 166, 2 }, \ - { 21, 167, 2 }, \ - { 22, 168, 2 }, \ - { 23, 169, 2 } \ -} - -#define SRDS_PROTOCOL_ALL_OPTIONS -/* Serdes lanes assignment and multiplexing. - Each option is selected by SRDS_PRTCL bits of RCW. */ -#define SRDS_PROTOCOL_OPTIONS \ -/* Protocol Lane assignment */ \ -{ \ -/* 0x00 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x01 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x02 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_PCIE4, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x03 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x04 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x05 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x06 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x07 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x08 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x09 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x0A */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x0B */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x0C */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x0D */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x0E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x0F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x10 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x11 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x12 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x13 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x14 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x15 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x16 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1}, \ -/* 0x17 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x18 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x19 */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x1A */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x1B */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1C */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x1D */ {SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x1F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x20 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x21 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x22 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x23 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x24 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x25 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x26 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM}, \ -/* 0x27 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x28 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x29 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x2A */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x2B */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x2C */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x2D */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x2E */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x2F */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO2, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x30 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x31 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_SGMII_FM, 0, 0, 0}, \ -/* 0x32 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM}, \ -/* 0x33 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, SRDS_PROTOCOL_SRIO1, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x34 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x35 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x36 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2}, \ -/* 0x37 */ {SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE1, SRDS_PROTOCOL_PCIE3, SRDS_PROTOCOL_PCIE3, \ - SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_PCIE2, SRDS_PROTOCOL_SGMII_FM, SRDS_PROTOCOL_SGMII_FM, \ - SRDS_PROTOCOL_AURORA, SRDS_PROTOCOL_AURORA, \ - SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, SRDS_PROTOCOL_XAUI_FM, \ - 0, 0, SRDS_PROTOCOL_SATA1, SRDS_PROTOCOL_SATA2} \ -} - -/***************************************************************************** - DDR INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DDR_NUM_OF_VALID_CS 4 - -/***************************************************************************** - DMA INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ -#define DMA_NUM_OF_CONTROLLERS 2 - -/***************************************************************************** - CPC INTEGRATION-SPECIFIC DEFINITIONS -******************************************************************************/ - -#define CPC_MAX_SIZE_SRAM_ERRATA_CPC4 -#define CPC_HARDWARE_FLUSH_ERRATA_CPC10 - - -#endif /* __PART_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/P3041/part_integration_ext.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/dpaa_integration_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/dpaa_integration_ext.h (nonexistent) +++ head/sys/contrib/ncsw/inc/integrations/dpaa_integration_ext.h (revision 302341) @@ -0,0 +1,378 @@ +/****************************************************************************** + + © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. + All rights reserved. + + This is proprietary source code of Freescale Semiconductor Inc., + and its use is subject to the NetComm Device Drivers EULA. + The copyright notice above does not evidence any actual or intended + publication of such source code. + + ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + **************************************************************************/ +/** + + @File dpaa_integration_ext.h + + @Description P5020 FM external definitions and structures. +*//***************************************************************************/ +#ifndef __DPAA_INTEGRATION_EXT_H +#define __DPAA_INTEGRATION_EXT_H + +#include "std_ext.h" + + +/**************************************************************************//** + @Description DPAA SW Portals Enumeration. +*//***************************************************************************/ +typedef enum +{ + e_DPAA_SWPORTAL0 = 0, + e_DPAA_SWPORTAL1, + e_DPAA_SWPORTAL2, + e_DPAA_SWPORTAL3, + e_DPAA_SWPORTAL4, + e_DPAA_SWPORTAL5, + e_DPAA_SWPORTAL6, + e_DPAA_SWPORTAL7, + e_DPAA_SWPORTAL8, + e_DPAA_SWPORTAL9, + e_DPAA_SWPORTAL_DUMMY_LAST +} e_DpaaSwPortal; + +/**************************************************************************//** + @Description DPAA Direct Connect Portals Enumeration. +*//***************************************************************************/ +typedef enum +{ + e_DPAA_DCPORTAL0 = 0, + e_DPAA_DCPORTAL1, + e_DPAA_DCPORTAL2, + e_DPAA_DCPORTAL3, + e_DPAA_DCPORTAL4, + e_DPAA_DCPORTAL_DUMMY_LAST +} e_DpaaDcPortal; + +#define DPAA_MAX_NUM_OF_SW_PORTALS e_DPAA_SWPORTAL_DUMMY_LAST +#define DPAA_MAX_NUM_OF_DC_PORTALS e_DPAA_DCPORTAL_DUMMY_LAST + +/***************************************************************************** + QMan INTEGRATION-SPECIFIC DEFINITIONS +******************************************************************************/ +#define QM_MAX_NUM_OF_POOL_CHANNELS 15 /**< Total number of channels, dedicated and pool */ +#define QM_MAX_NUM_OF_WQ 8 /**< Number of work queues per channel */ +#define QM_MAX_NUM_OF_CGS 256 /**< Congestion groups number */ +#define QM_MAX_NUM_OF_FQIDS (16 * MEGABYTE) + /**< FQIDs range - 24 bits */ + +/**************************************************************************//** + @Description Work Queue Channel assignments in QMan. +*//***************************************************************************/ +typedef enum +{ + e_QM_FQ_CHANNEL_SWPORTAL0 = 0, /**< Dedicated channels serviced by software portals 0 to 9 */ + e_QM_FQ_CHANNEL_SWPORTAL1, + e_QM_FQ_CHANNEL_SWPORTAL2, + e_QM_FQ_CHANNEL_SWPORTAL3, + e_QM_FQ_CHANNEL_SWPORTAL4, + e_QM_FQ_CHANNEL_SWPORTAL5, + e_QM_FQ_CHANNEL_SWPORTAL6, + e_QM_FQ_CHANNEL_SWPORTAL7, + e_QM_FQ_CHANNEL_SWPORTAL8, + e_QM_FQ_CHANNEL_SWPORTAL9, + + e_QM_FQ_CHANNEL_POOL1 = 0x21, /**< Pool channels that can be serviced by any of the software portals */ + e_QM_FQ_CHANNEL_POOL2, + e_QM_FQ_CHANNEL_POOL3, + e_QM_FQ_CHANNEL_POOL4, + e_QM_FQ_CHANNEL_POOL5, + e_QM_FQ_CHANNEL_POOL6, + e_QM_FQ_CHANNEL_POOL7, + e_QM_FQ_CHANNEL_POOL8, + e_QM_FQ_CHANNEL_POOL9, + e_QM_FQ_CHANNEL_POOL10, + e_QM_FQ_CHANNEL_POOL11, + e_QM_FQ_CHANNEL_POOL12, + e_QM_FQ_CHANNEL_POOL13, + e_QM_FQ_CHANNEL_POOL14, + e_QM_FQ_CHANNEL_POOL15, + + e_QM_FQ_CHANNEL_FMAN0_SP0 = 0x40, /**< Dedicated channels serviced by Direct Connect Portal 0: + connected to FMan 0; assigned in incrementing order to + each sub-portal (SP) in the portal */ + e_QM_FQ_CHANNEL_FMAN0_SP1, + e_QM_FQ_CHANNEL_FMAN0_SP2, + e_QM_FQ_CHANNEL_FMAN0_SP3, + e_QM_FQ_CHANNEL_FMAN0_SP4, + e_QM_FQ_CHANNEL_FMAN0_SP5, + e_QM_FQ_CHANNEL_FMAN0_SP6, + e_QM_FQ_CHANNEL_FMAN0_SP7, + e_QM_FQ_CHANNEL_FMAN0_SP8, + e_QM_FQ_CHANNEL_FMAN0_SP9, + e_QM_FQ_CHANNEL_FMAN0_SP10, + e_QM_FQ_CHANNEL_FMAN0_SP11, + + e_QM_FQ_CHANNEL_RMAN_SP2 = 0x62, /**< Dedicated channels serviced by Direct Connect Portal 1: connected to RMan */ + e_QM_FQ_CHANNEL_RMAN_SP3, + + e_QM_FQ_CHANNEL_CAAM = 0x80, /**< Dedicated channel serviced by Direct Connect Portal 2: + connected to SEC 4.x */ + + e_QM_FQ_CHANNEL_PME = 0xA0, /**< Dedicated channel serviced by Direct Connect Portal 3: + connected to PME */ + e_QM_FQ_CHANNEL_RAID = 0xC0 /**< Dedicated channel serviced by Direct Connect Portal 4: + connected to RAID */ +} e_QmFQChannel; + +/***************************************************************************** + BMan INTEGRATION-SPECIFIC DEFINITIONS +******************************************************************************/ +#define BM_MAX_NUM_OF_POOLS 64 /**< Number of buffers pools */ + +/***************************************************************************** + FM INTEGRATION-SPECIFIC DEFINITIONS +******************************************************************************/ +#define INTG_MAX_NUM_OF_FM 1 + +/* Ports defines */ +#define FM_MAX_NUM_OF_1G_MACS 5 +#define FM_MAX_NUM_OF_10G_MACS 1 +#define FM_MAX_NUM_OF_MACS (FM_MAX_NUM_OF_1G_MACS + FM_MAX_NUM_OF_10G_MACS) +#define FM_MAX_NUM_OF_OH_PORTS 7 + +#define FM_MAX_NUM_OF_1G_RX_PORTS FM_MAX_NUM_OF_1G_MACS +#define FM_MAX_NUM_OF_10G_RX_PORTS FM_MAX_NUM_OF_10G_MACS +#define FM_MAX_NUM_OF_RX_PORTS (FM_MAX_NUM_OF_10G_RX_PORTS + FM_MAX_NUM_OF_1G_RX_PORTS) + +#define FM_MAX_NUM_OF_1G_TX_PORTS FM_MAX_NUM_OF_1G_MACS +#define FM_MAX_NUM_OF_10G_TX_PORTS FM_MAX_NUM_OF_10G_MACS +#define FM_MAX_NUM_OF_TX_PORTS (FM_MAX_NUM_OF_10G_TX_PORTS + FM_MAX_NUM_OF_1G_TX_PORTS) + +#define FM_PORT_MAX_NUM_OF_EXT_POOLS 8 /**< Number of external BM pools per Rx port */ +#define FM_PORT_NUM_OF_CONGESTION_GRPS 256 /**< Total number of congestion groups in QM */ +#define FM_MAX_NUM_OF_SUB_PORTALS 12 +#define FM_PORT_MAX_NUM_OF_OBSERVED_EXT_POOLS 0 + +/* RAMs defines */ +#define FM_MURAM_SIZE (160 * KILOBYTE) +#define FM_IRAM_SIZE ( 64 * KILOBYTE) + +/* PCD defines */ +#define FM_PCD_PLCR_NUM_ENTRIES 256 /**< Total number of policer profiles */ +#define FM_PCD_KG_NUM_OF_SCHEMES 32 /**< Total number of KG schemes */ +#define FM_PCD_MAX_NUM_OF_CLS_PLANS 256 /**< Number of classification plan entries. */ + +/* RTC defines */ +#define FM_RTC_NUM_OF_ALARMS 2 /**< RTC number of alarms */ +#define FM_RTC_NUM_OF_PERIODIC_PULSES 2 /**< RTC number of periodic pulses */ +#define FM_RTC_NUM_OF_EXT_TRIGGERS 2 /**< RTC number of external triggers */ + +/* QMI defines */ +#define QMI_MAX_NUM_OF_TNUMS 64 +#define MAX_QMI_DEQ_SUBPORTAL 12 +#define QMI_DEF_TNUMS_THRESH 48 + +/* FPM defines */ +#define FM_NUM_OF_FMAN_CTRL_EVENT_REGS 4 + +/* DMA defines */ +#define DMA_THRESH_MAX_COMMQ 31 +#define DMA_THRESH_MAX_BUF 127 + +/* BMI defines */ +#define BMI_MAX_NUM_OF_TASKS 128 +#define BMI_MAX_NUM_OF_DMAS 32 +#define BMI_MAX_FIFO_SIZE (FM_MURAM_SIZE) +#define PORT_MAX_WEIGHT 16 + + +/**************************************************************************//** + @Description Enum for inter-module interrupts registration +*//***************************************************************************/ +typedef enum e_FmEventModules +{ + e_FM_MOD_PRS, /**< Parser event */ + e_FM_MOD_KG, /**< Keygen event */ + e_FM_MOD_PLCR, /**< Policer event */ + e_FM_MOD_10G_MAC, /**< 10G MAC error event */ + e_FM_MOD_1G_MAC, /**< 1G MAC error event */ + e_FM_MOD_TMR, /**< Timer event */ + e_FM_MOD_1G_MAC_TMR, /**< 1G MAC timer event */ + e_FM_MOD_FMAN_CTRL, /**< FMAN Controller timer event */ + e_FM_MOD_DUMMY_LAST +} e_FmEventModules; + +/**************************************************************************//** + @Description Enum for interrupts types +*//***************************************************************************/ +typedef enum e_FmIntrType +{ + e_FM_INTR_TYPE_ERR, + e_FM_INTR_TYPE_NORMAL +} e_FmIntrType; + +/**************************************************************************//** + @Description Enum for inter-module interrupts registration +*//***************************************************************************/ +typedef enum e_FmInterModuleEvent +{ + e_FM_EV_PRS, /**< Parser event */ + e_FM_EV_ERR_PRS, /**< Parser error event */ + e_FM_EV_KG, /**< Keygen event */ + e_FM_EV_ERR_KG, /**< Keygen error event */ + e_FM_EV_PLCR, /**< Policer event */ + e_FM_EV_ERR_PLCR, /**< Policer error event */ + e_FM_EV_ERR_10G_MAC0, /**< 10G MAC 0 error event */ + e_FM_EV_ERR_1G_MAC0, /**< 1G MAC 0 error event */ + e_FM_EV_ERR_1G_MAC1, /**< 1G MAC 1 error event */ + e_FM_EV_ERR_1G_MAC2, /**< 1G MAC 2 error event */ + e_FM_EV_ERR_1G_MAC3, /**< 1G MAC 3 error event */ + e_FM_EV_ERR_1G_MAC4, /**< 1G MAC 4 error event */ + e_FM_EV_TMR, /**< Timer event */ + e_FM_EV_1G_MAC0_TMR, /**< 1G MAC 0 timer event */ + e_FM_EV_1G_MAC1_TMR, /**< 1G MAC 1 timer event */ + e_FM_EV_1G_MAC2_TMR, /**< 1G MAC 2 timer event */ + e_FM_EV_1G_MAC3_TMR, /**< 1G MAC 3 timer event */ + e_FM_EV_1G_MAC4_TMR, /**< 1G MAC 4 timer event */ + e_FM_EV_FMAN_CTRL_0, /**< Fman controller event 0 */ + e_FM_EV_FMAN_CTRL_1, /**< Fman controller event 1 */ + e_FM_EV_FMAN_CTRL_2, /**< Fman controller event 2 */ + e_FM_EV_FMAN_CTRL_3, /**< Fman controller event 3 */ + e_FM_EV_DUMMY_LAST +} e_FmInterModuleEvent; + +#define GET_FM_MODULE_EVENT(mod, id, intrType, event) \ + switch(mod){ \ + case e_FM_MOD_PRS: \ + if (id) event = e_FM_EV_DUMMY_LAST; \ + else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PRS : e_FM_EV_PRS; \ + break; \ + case e_FM_MOD_KG: \ + if (id) event = e_FM_EV_DUMMY_LAST; \ + else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_KG : e_FM_EV_DUMMY_LAST; \ + break; \ + case e_FM_MOD_PLCR: \ + if (id) event = e_FM_EV_DUMMY_LAST; \ + else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_PLCR : e_FM_EV_PLCR; \ + break; \ + case e_FM_MOD_10G_MAC: \ + if (id) event = e_FM_EV_DUMMY_LAST; \ + else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_10G_MAC0 : e_FM_EV_DUMMY_LAST; \ + break; \ + case e_FM_MOD_1G_MAC: \ + switch(id){ \ + case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC0 : e_FM_EV_DUMMY_LAST; break; \ + case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC1 : e_FM_EV_DUMMY_LAST; break; \ + case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC2 : e_FM_EV_DUMMY_LAST; break; \ + case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC3 : e_FM_EV_DUMMY_LAST; break; \ + case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_ERR_1G_MAC4 : e_FM_EV_DUMMY_LAST; break; \ + } \ + break; \ + case e_FM_MOD_TMR: \ + if (id) event = e_FM_EV_DUMMY_LAST; \ + else event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_TMR; \ + break; \ + case e_FM_MOD_1G_MAC_TMR: \ + switch(id){ \ + case(0): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC0_TMR; break; \ + case(1): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC1_TMR; break; \ + case(2): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC2_TMR; break; \ + case(3): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC3_TMR; break; \ + case(4): event = (intrType == e_FM_INTR_TYPE_ERR) ? e_FM_EV_DUMMY_LAST : e_FM_EV_1G_MAC4_TMR; break; \ + } \ + break; \ + case e_FM_MOD_FMAN_CTRL: \ + if (intrType == e_FM_INTR_TYPE_ERR) event = e_FM_EV_DUMMY_LAST; \ + else switch(id){ \ + case(0): event = e_FM_EV_FMAN_CTRL_0; break; \ + case(1): event = e_FM_EV_FMAN_CTRL_1; break; \ + case(2): event = e_FM_EV_FMAN_CTRL_2; break; \ + case(3): event = e_FM_EV_FMAN_CTRL_3; break; \ + } \ + break; \ + default: event = e_FM_EV_DUMMY_LAST; \ + break;} + +#define FM_CHECK_PORT_RESTRICTIONS(__validPorts, __newPortIndx) TRUE + +/* P5020 unique features */ +#define FM_QMI_DEQ_OPTIONS_SUPPORT +#define FM_NO_DISPATCH_RAM_ECC +#define FM_FIFO_ALLOCATION_OLD_ALG +#define FM_NO_WATCHDOG +#define FM_NO_TNUM_AGING +#define FM_NO_TGEC_LOOPBACK +#define FM_KG_NO_BYPASS_FQID_GEN +#define FM_KG_NO_BYPASS_PLCR_PROFILE_GEN +#define FM_NO_BACKUP_POOLS +#define FM_NO_OP_OBSERVED_POOLS +#define FM_NO_ADVANCED_RATE_LIMITER +#define FM_NO_OP_OBSERVED_CGS + +/* FM erratas (P5020, P3041) */ +#define FM_TX_ECC_FRMS_ERRATA_10GMAC_A004 +#define FM_TX_SHORT_FRAME_BAD_TS_ERRATA_10GMAC_A006 /* No implementation, Out of LLD scope */ +#define FM_TX_FIFO_CORRUPTION_ERRATA_10GMAC_A007 +#define FM_ECC_HALT_NO_SYNC_ERRATA_10GMAC_A008 + +#define FM_NO_RX_PREAM_ERRATA_DTSECx1 +#define FM_GRS_ERRATA_DTSEC_A002 +#define FM_BAD_TX_TS_IN_B_2_B_ERRATA_DTSEC_A003 +#define FM_GTS_ERRATA_DTSEC_A004 +#define FM_PAUSE_BLOCK_ERRATA_DTSEC_A006 /* do nothing */ +#define FM_RESERVED_ACCESS_TO_DISABLED_DEV_ERRATA_DTSEC_A0011 /* do nothing */ +#define FM_GTS_AFTER_MAC_ABORTED_FRAME_ERRATA_DTSEC_A0012 FM_GTS_ERRATA_DTSEC_A004 +#define FM_10_100_SGMII_NO_TS_ERRATA_DTSEC3 +#define FM_TX_LOCKUP_ERRATA_DTSEC6 + +#define FM_IM_TX_SYNC_SKIP_TNUM_ERRATA_FMAN_A001 /* Implemented by ucode */ +#define FM_HC_DEF_FQID_ONLY_ERRATA_FMAN_A003 /* Implemented by ucode */ +#define FM_IM_TX_SHARED_TNUM_ERRATA_FMAN4 /* Implemented by ucode */ +#define FM_IM_GS_DEADLOCK_ERRATA_FMAN5 /* Implemented by ucode */ +#define FM_IM_DEQ_PIPELINE_DEPTH_ERRATA_FMAN10 /* Implemented by ucode */ +#define FM_CC_GEN6_MISSMATCH_ERRATA_FMAN12 /* Implemented by ucode */ +#define FM_CC_CHANGE_SHARED_TNUM_ERRATA_FMAN13 /* Implemented by ucode */ +#define FM_IM_LARGE_MRBLR_ERRATA_FMAN15 /* Implemented by ucode */ +#define FM_BMI_TO_RISC_ENQ_ERRATA_FMANc /* No implementation, Out of LLD scope */ +#define FM_INVALID_SWPRS_DATA_ERRATA_FMANd +//#define FM_PRS_MPLS_SSA_ERRATA_FMANj /* No implementation, No patch yet */ +//#define FM_PRS_INITIAL_PLANID_ERRATA_FMANk /* No implementation, No patch yet */ + +#define FM_NO_COPY_CTXA_CTXB_ERRATA_FMAN_SW001 + +#define FM_10G_REM_N_LCL_FLT_EX_ERRATA_10GMAC001 + +/* P2041 */ +#define FM_BAD_VLAN_DETECT_ERRATA_10GMAC_A010 + +/* Common to all */ +#define FM_RX_PREAM_4_ERRATA_DTSEC_A001 FM_NO_RX_PREAM_ERRATA_DTSECx1 +#define FM_UCODE_NOT_RESET_ERRATA_BUGZILLA6173 +#define FM_MAGIC_PACKET_UNRECOGNIZED_ERRATA_DTSEC2 /* No implementation, Out of LLD scope */ +#define FM_PRS_MEM_ERRATA_FMAN_SW003 +#define FM_LEN_CHECK_ERRATA_FMAN_SW002 + + +#endif /* __DPAA_INTEGRATION_EXT_H */ Property changes on: head/sys/contrib/ncsw/inc/integrations/dpaa_integration_ext.h ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/inc/integrations/part_ext.h =================================================================== --- head/sys/contrib/ncsw/inc/integrations/part_ext.h (revision 302340) +++ head/sys/contrib/ncsw/inc/integrations/part_ext.h (revision 302341) @@ -1,84 +1,72 @@ /* Copyright (c) 2008-2011 Freescale Semiconductor, Inc. * 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 Freescale Semiconductor nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * * ALTERNATIVELY, this software may be distributed under the terms of the * GNU General Public License ("GPL") as published by the Free Software * Foundation, either version 2 of that License or (at your option) any * later version. * * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /**************************************************************************//** @File part_ext.h @Description Definitions for the part (integration) module. *//***************************************************************************/ #ifndef __PART_EXT_H #define __PART_EXT_H #include "std_ext.h" -#include "part_integration_ext.h" +#include "enet_ext.h" +#include "dpaa_integration_ext.h" +#define CORE_E500MC -#if !(defined(MPC8306) || \ - defined(MPC8309) || \ - defined(MPC834x) || \ - defined(MPC836x) || \ - defined(MPC832x) || \ - defined(MPC837x) || \ - defined(MPC8568) || \ - defined(MPC8569) || \ - defined(P1020) || \ - defined(P1021) || \ - defined(P1022) || \ - defined(P1023) || \ - defined(P2020) || \ - defined(P2040) || \ - defined(P2041) || \ - defined(P3041) || \ - defined(P4080) || \ - defined(SC4080) || \ - defined(P5020) || \ - defined(MSC814x)) -#error "unable to proceed without chip-definition" -#endif /* !(defined(MPC834x) || ... */ +/***************************************************************************** + INTEGRATION-SPECIFIC MODULE CODES +******************************************************************************/ +#define MODULE_MEM 0x00010000 +#define MODULE_MM 0x00020000 +#define MODULE_QM 0x000d0000 +#define MODULE_BM 0x000e0000 +#define MODULE_FM 0x00130000 +#define MODULE_FM_MURAM 0x00140000 +#define MODULE_FM_PCD 0x00150000 +#define MODULE_FM_RTC 0x00160000 +#define MODULE_FM_MAC 0x00170000 +#define MODULE_FM_PORT 0x00180000 - /**************************************************************************//* @Description Part data structure - must be contained in any integration data structure. *//***************************************************************************/ typedef struct t_Part { - uintptr_t (* f_GetModuleBase)(t_Handle h_Part, e_ModuleId moduleId); - /**< Returns the address of the module's memory map base. */ - e_ModuleId (* f_GetModuleIdByBase)(t_Handle h_Part, uintptr_t baseAddress); - /**< Returns the module's ID according to its memory map base. */ } t_Part; #endif /* __PART_EXT_H */ Index: head/sys/contrib/ncsw/integrations/P5020/module_strings.c =================================================================== --- head/sys/contrib/ncsw/integrations/P5020/module_strings.c (revision 302340) +++ head/sys/contrib/ncsw/integrations/P5020/module_strings.c (nonexistent) @@ -1,62 +0,0 @@ -/* Copyright (c) 2008-2011 Freescale Semiconductor, Inc. - * 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 Freescale Semiconductor nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * - * ALTERNATIVELY, this software may be distributed under the terms of the - * GNU General Public License ("GPL") as published by the Free Software - * Foundation, either version 2 of that License or (at your option) any - * later version. - * - * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* Module names for debug messages */ -const char *moduleStrings[] = -{ - "???" /* MODULE_UNKNOWN */ - ,"MEM" /* MODULE_ */ - ,"MM" /* MODULE_MM */ - ,"CORE" /* MODULE_CORE */ - ,"P5020" /* MODULE_P5020 */ - ,"P5020-Platform" /* MODULE_P5020_PLTFRM */ - ,"PM" /* MODULE_PM */ - ,"MMU" /* MODULE_MMU */ - ,"PIC" /* MODULE_PIC */ - ,"L3 cache (CPC)" /* MODULE_CPC */ - ,"DUART" /* MODULE_DUART */ - ,"SerDes" /* MODULE_SERDES */ - ,"PIO" /* MODULE_PIO */ - ,"QM" /* MODULE_QM */ - ,"BM" /* MODULE_BM */ - ,"SEC" /* MODULE_SEC */ - ,"LAW" /* MODULE_LAW */ - ,"LBC" /* MODULE_LBC */ - ,"PAMU" /* MODULE_PAMU */ - ,"FM" /* MODULE_FM */ - ,"FM-MURAM" /* MODULE_FM_MURAM */ - ,"FM-PCD" /* MODULE_FM_PCD */ - ,"FM-RTC" /* MODULE_FM_RTC */ - ,"FM-MAC" /* MODULE_FM_MAC */ - ,"FM-Port" /* MODULE_FM_PORT */ - ,"DPA" /* MODULE_DPA */ -}; Property changes on: head/sys/contrib/ncsw/integrations/P5020/module_strings.c ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/integrations/P2041/module_strings.c =================================================================== --- head/sys/contrib/ncsw/integrations/P2041/module_strings.c (revision 302340) +++ head/sys/contrib/ncsw/integrations/P2041/module_strings.c (nonexistent) @@ -1,62 +0,0 @@ -/* Copyright (c) 2008-2011 Freescale Semiconductor, Inc. - * 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 Freescale Semiconductor nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * - * ALTERNATIVELY, this software may be distributed under the terms of the - * GNU General Public License ("GPL") as published by the Free Software - * Foundation, either version 2 of that License or (at your option) any - * later version. - * - * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* Module names for debug messages */ -const char *moduleStrings[] = -{ - "???" /* MODULE_UNKNOWN */ - ,"MEM" /* MODULE_ */ - ,"MM" /* MODULE_MM */ - ,"CORE" /* MODULE_CORE */ - ,"P2041" /* MODULE_P2041 */ - ,"P2041-Platform" /* MODULE_P2041_PLTFRM */ - ,"PM" /* MODULE_PM */ - ,"MMU" /* MODULE_MMU */ - ,"PIC" /* MODULE_PIC */ - ,"L3 cache (CPC)" /* MODULE_CPC */ - ,"DUART" /* MODULE_DUART */ - ,"SerDes" /* MODULE_SERDES */ - ,"PIO" /* MODULE_PIO */ - ,"QM" /* MODULE_QM */ - ,"BM" /* MODULE_BM */ - ,"SEC" /* MODULE_SEC */ - ,"LAW" /* MODULE_LAW */ - ,"LBC" /* MODULE_LBC */ - ,"PAMU" /* MODULE_PAMU */ - ,"FM" /* MODULE_FM */ - ,"FM-MURAM" /* MODULE_FM_MURAM */ - ,"FM-PCD" /* MODULE_FM_PCD */ - ,"FM-RTC" /* MODULE_FM_RTC */ - ,"FM-MAC" /* MODULE_FM_MAC */ - ,"FM-Port" /* MODULE_FM_PORT */ - ,"DPA" /* MODULE_DPA */ -}; Property changes on: head/sys/contrib/ncsw/integrations/P2041/module_strings.c ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/integrations/P3041/module_strings.c =================================================================== --- head/sys/contrib/ncsw/integrations/P3041/module_strings.c (revision 302340) +++ head/sys/contrib/ncsw/integrations/P3041/module_strings.c (nonexistent) @@ -1,62 +0,0 @@ -/* Copyright (c) 2008-2011 Freescale Semiconductor, Inc. - * 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 Freescale Semiconductor nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * - * ALTERNATIVELY, this software may be distributed under the terms of the - * GNU General Public License ("GPL") as published by the Free Software - * Foundation, either version 2 of that License or (at your option) any - * later version. - * - * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* Module names for debug messages */ -const char *moduleStrings[] = -{ - "???" /* MODULE_UNKNOWN */ - ,"MEM" /* MODULE_ */ - ,"MM" /* MODULE_MM */ - ,"CORE" /* MODULE_CORE */ - ,"P3041" /* MODULE_P3041 */ - ,"P3041-Platform" /* MODULE_P3041_PLTFRM */ - ,"PM" /* MODULE_PM */ - ,"MMU" /* MODULE_MMU */ - ,"PIC" /* MODULE_PIC */ - ,"L3 cache (CPC)" /* MODULE_CPC */ - ,"DUART" /* MODULE_DUART */ - ,"SerDes" /* MODULE_SERDES */ - ,"PIO" /* MODULE_PIO */ - ,"QM" /* MODULE_QM */ - ,"BM" /* MODULE_BM */ - ,"SEC" /* MODULE_SEC */ - ,"LAW" /* MODULE_LAW */ - ,"LBC" /* MODULE_LBC */ - ,"PAMU" /* MODULE_PAMU */ - ,"FM" /* MODULE_FM */ - ,"FM-MURAM" /* MODULE_FM_MURAM */ - ,"FM-PCD" /* MODULE_FM_PCD */ - ,"FM-RTC" /* MODULE_FM_RTC */ - ,"FM-MAC" /* MODULE_FM_MAC */ - ,"FM-Port" /* MODULE_FM_PORT */ - ,"DPA" /* MODULE_DPA */ -}; Property changes on: head/sys/contrib/ncsw/integrations/P3041/module_strings.c ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/integrations/P3041/fman_ctrl_code/p3041_r1.0.h =================================================================== --- head/sys/contrib/ncsw/integrations/P3041/fman_ctrl_code/p3041_r1.0.h (revision 302340) +++ head/sys/contrib/ncsw/integrations/P3041/fman_ctrl_code/p3041_r1.0.h (nonexistent) @@ -1,1801 +0,0 @@ -/****************************************************************************** - - © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. - All rights reserved. - - This is proprietary source code of Freescale Semiconductor Inc., - and its use is subject to the NetComm Device Drivers EULA. - The copyright notice above does not evidence any actual or intended - publication of such source code. - - ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - - **************************************************************************/ -/****************************************************************************** - @File all_img_P3041_r1.0.h - - @Description U-code image for CC_HC_IM for P3041_r1.0. Image ID is: rel_101_8 -******************************************************************************/ - -#ifndef __ALL_IMG_P3041_R1_0_H -#define __ALL_IMG_P3041_R1_0_H - -#define P3041_R1_0_UC_IMG \ -{ \ - 0xb7ff000e \ - , 0x00650008 \ - , 0xb7ff0021 \ - , 0xffffffff \ - , 0xb7ff001f \ - , 0xffffffff \ - , 0xb7ff003a \ - , 0xffffffff \ - , 0xb7ff03b7 \ - , 0xffffffff \ - , 0xb7ff02f3 \ - , 0xffffffff \ - , 0xb7ff0621 \ - , 0xffffffff \ - , 0x7902f800 \ - , 0x7904f800 \ - , 0x7906f800 \ - , 0x7908f800 \ - , 0x790af800 \ - , 0x790cf800 \ - , 0x790ef800 \ - , 0x7910f800 \ - , 0x7912f800 \ - , 0x7914f800 \ - , 0x7916f800 \ - , 0x7918f800 \ - , 0x791af800 \ - , 0x791cf800 \ - , 0x791ef800 \ - , 0x777ff802 \ - , 0x777ff803 \ - , 0x777ff804 \ - , 0x777ff806 \ - , 0xb21f0004 \ - , 0x7900f800 \ - , 0x281ff800 \ - , 0xffffffff \ - , 0xb3ff0698 \ - , 0xc2000001 \ - , 0x7800f900 \ - , 0xbc00ffff \ - , 0xdbc0c0bd \ - , 0xc60c3078 \ - , 0x777ef300 \ - , 0x7809fb00 \ - , 0xc8024a70 \ - , 0x7369f300 \ - , 0x77000001 \ - , 0xc60c3000 \ - , 0xe9c20203 \ - , 0x7362f300 \ - , 0x777ef300 \ - , 0x7800fb00 \ - , 0x2e1f0002 \ - , 0xffffffff \ - , 0xebc00001 \ - , 0x70e00101 \ - , 0x2e3f0002 \ - , 0xffffffff \ - , 0xc60c3074 \ - , 0xe3c20080 \ - , 0x7362f300 \ - , 0x2e1ffff9 \ - , 0xffffffff \ - , 0x0400d018 \ - , 0x0614d030 \ - , 0x0616d038 \ - , 0x06040008 \ - , 0x06180000 \ - , 0xdbc411bd \ - , 0xbc380006 \ - , 0x93e60011 \ - , 0xb4180001 \ - , 0x0604c008 \ - , 0xb3fffffb \ - , 0x0618c000 \ - , 0xbc180008 \ - , 0x0610d010 \ - , 0xb4580002 \ - , 0xfb112400 \ - , 0x2c3f2000 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0x1618d010 \ - , 0x2c382000 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb14e000 \ - , 0x0608e000 \ - , 0x73f8c420 \ - , 0x4d48c800 \ - , 0x2e5f0180 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb14e000 \ - , 0x0608e006 \ - , 0x73f8c420 \ - , 0x4d48c800 \ - , 0x2e5f0178 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb15e000 \ - , 0x0408e000 \ - , 0x73f8c420 \ - , 0x4c48c800 \ - , 0x2e5f0170 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb15e400 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4e44c800 \ - , 0x2e5f0168 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb15e600 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4e44c800 \ - , 0x2e5f0160 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e200 \ - , 0x0408e006 \ - , 0x73f8c420 \ - , 0x4c48c800 \ - , 0x2e5f0158 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e400 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4ec4c800 \ - , 0x2e5f0150 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e600 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4ec4c800 \ - , 0x2e5f0148 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0408e010 \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f0140 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0404e001 \ - , 0x73f8c420 \ - , 0x4e04c800 \ - , 0x2e5f0138 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0408e009 \ - , 0x73f8c420 \ - , 0x4c08c800 \ - , 0x2e5f0130 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0408e00c \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f0128 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0608e00c \ - , 0x73f8c420 \ - , 0x4dc8c800 \ - , 0x2e5f0120 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4ec4c800 \ - , 0x2e5f0118 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0408e006 \ - , 0x73f8c420 \ - , 0x4c08c800 \ - , 0x2e5f0110 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0xebc4000f \ - , 0xf05c4318 \ - , 0xf8044630 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0106 \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0xebc4000f \ - , 0xf05c4308 \ - , 0xf8044630 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f00fe \ - , 0xffffffff \ - , 0xfb17e400 \ - , 0x0408e002 \ - , 0x73f8c420 \ - , 0x4c48c800 \ - , 0x2e5f00f8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e000 \ - , 0x73f8c420 \ - , 0x4c08c800 \ - , 0x2e5f00f0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e004 \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f00e8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e008 \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f00e0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0608e004 \ - , 0x73f8c420 \ - , 0x4dc8c800 \ - , 0x2e5f00d8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e010 \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f00d0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0404e001 \ - , 0x73f8c420 \ - , 0x4e04c800 \ - , 0x2e5f00c8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e009 \ - , 0x73f8c420 \ - , 0x4c08c800 \ - , 0x2e5f00c0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e00c \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f00b8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0608e00c \ - , 0x73f8c420 \ - , 0x4dc8c800 \ - , 0x2e5f00b0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0404e000 \ - , 0x73f8c420 \ - , 0x4ec4c800 \ - , 0x2e5f00a8 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0x0408e006 \ - , 0x73f8c420 \ - , 0x4c08c800 \ - , 0x2e5f00a0 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0xebc4000f \ - , 0xf05c4318 \ - , 0xf8044630 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0096 \ - , 0xffffffff \ - , 0xfb17e200 \ - , 0xebc4000f \ - , 0xf05c4308 \ - , 0xf8044630 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f008e \ - , 0xffffffff \ - , 0xfb17e600 \ - , 0x0408e000 \ - , 0x73f8c420 \ - , 0x4c48c800 \ - , 0x2e5f0088 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e600 \ - , 0x0408e002 \ - , 0x73f8c420 \ - , 0x4c48c800 \ - , 0x2e5f0080 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb17e600 \ - , 0x0408e000 \ - , 0x73f8c420 \ - , 0x4cc8c800 \ - , 0x2e5f0078 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xe55cff00 \ - , 0xfb14e200 \ - , 0xc858e230 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f006f \ - , 0xffffffff \ - , 0xffffffff \ - , 0xe55cff00 \ - , 0xfb14e400 \ - , 0xc858e230 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0067 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xe55cff00 \ - , 0xfb14e600 \ - , 0xc858e230 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f005f \ - , 0xffffffff \ - , 0xffffffff \ - , 0xcf6443c1 \ - , 0xd84fd3f8 \ - , 0x73e52c14 \ - , 0x00087820 \ - , 0xfb04e43c \ - , 0xd848e278 \ - , 0xb3ff0042 \ - , 0xc8584a30 \ - , 0xcf6443c1 \ - , 0xd84fd3f8 \ - , 0x73e52c14 \ - , 0x00087820 \ - , 0xb3ff0040 \ - , 0xcb08e27c \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb04e43c \ - , 0xc858e230 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0048 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb04e43c \ - , 0x73e52c14 \ - , 0xc858e230 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f003f \ - , 0xffffffff \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0004e008 \ - , 0xebcb0010 \ - , 0xec240001 \ - , 0xd0785803 \ - , 0xb3fffe9f \ - , 0x06040008 \ - , 0xffffffff \ - , 0xfb16e000 \ - , 0x0004e007 \ - , 0xebcb0010 \ - , 0xec240001 \ - , 0xd0785803 \ - , 0xb3fffe97 \ - , 0x06040008 \ - , 0xffffffff \ - , 0xd9dfd2f8 \ - , 0xfb045c3c \ - , 0x73e52c14 \ - , 0xc8585a30 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0026 \ - , 0xffffffff \ - , 0xd9dfd2f8 \ - , 0xfb045c00 \ - , 0x02005800 \ - , 0xd9402838 \ - , 0xb3ff0020 \ - , 0xd8580038 \ - , 0xffffffff \ - , 0xffffffff \ - , 0xd9dfd2f8 \ - , 0xfb045c3c \ - , 0xc8585a30 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0xd9df04f8 \ - , 0x2e5f0011 \ - , 0xffffffff \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f0012 \ - , 0xffffffff \ - , 0xc8584a30 \ - , 0x73f8c420 \ - , 0x4808c800 \ - , 0x2e5f000d \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0xffffffff \ - , 0x7809fc10 \ - , 0x0499980c \ - , 0xb7dfffff \ - , 0xdf594e78 \ - , 0x1499980c \ - , 0x06040008 \ - , 0x06180000 \ - , 0xdbc411bd \ - , 0xbc38fe6d \ - , 0x93e6fe78 \ - , 0xb418fe68 \ - , 0x020308d8 \ - , 0x0204000c \ - , 0xebc20001 \ - , 0xf4430301 \ - , 0xdbc020d4 \ - , 0xf4440308 \ - , 0xdbc2003c \ - , 0xf0431b01 \ - , 0x120008da \ - , 0xca03f800 \ - , 0x9ffff400 \ - , 0x020610d2 \ - , 0x02870800 \ - , 0xb7dfffff \ - , 0x0205000a \ - , 0x0204000c \ - , 0xdc252178 \ - , 0xb41f0007 \ - , 0x02030008 \ - , 0xdc4328f8 \ - , 0xd84418f8 \ - , 0xdbc320d5 \ - , 0xb3ff0005 \ - , 0xca03f8c0 \ - , 0xdc4428f8 \ - , 0xdbc320d5 \ - , 0xca03f8c0 \ - , 0xdc2619b8 \ - , 0xbc1f0005 \ - , 0x0201000a \ - , 0xebc00000 \ - , 0xb3ff0004 \ - , 0x120110d0 \ - , 0x12870800 \ - , 0xebc00001 \ - , 0x9ffff400 \ - , 0x0202000a \ - , 0xdbc1207d \ - , 0xca01f8c0 \ - , 0x02000008 \ - , 0xd8421878 \ - , 0xdc210078 \ - , 0xb57f0009 \ - , 0xdc200838 \ - , 0xbc3f0003 \ - , 0xb3ff0005 \ - , 0xebc00000 \ - , 0xdc401038 \ - , 0xdc430038 \ - , 0xca00f800 \ - , 0xb7ff0002 \ - , 0xca01f800 \ - , 0x9ffff400 \ - , 0xebc300c0 \ - , 0xe1c30050 \ - , 0x0282080e \ - , 0xb7dfffff \ - , 0xf0421301 \ - , 0xca02f880 \ - , 0x1282080e \ - , 0x02010000 \ - , 0xbf810007 \ - , 0xebc03020 \ - , 0xcf811045 \ - , 0xe1c0000c \ - , 0xd8410078 \ - , 0xe3c04000 \ - , 0x73600b00 \ - , 0x2c3f1800 \ - , 0xffffffff \ - , 0x020600d2 \ - , 0xebc30004 \ - , 0xdc2330f8 \ - , 0xb81f0003 \ - , 0x06040000 \ - , 0xf0433300 \ - , 0x120600d6 \ - , 0x020900d0 \ - , 0xdbc6223d \ - , 0xd84940f8 \ - , 0xca03f8c0 \ - , 0x041b0800 \ - , 0x06061000 \ - , 0xdbc9f855 \ - , 0xd86749f8 \ - , 0xd8c609b8 \ - , 0xf0400390 \ - , 0xca862180 \ - , 0x02011008 \ - , 0xdc211878 \ - , 0xbc1f000e \ - , 0xdc4308f8 \ - , 0xdc481879 \ - , 0xca01f840 \ - , 0x71e10d00 \ - , 0x55060000 \ - , 0x06061000 \ - , 0xd8400839 \ - , 0xca862180 \ - , 0xf4430b01 \ - , 0xca01f840 \ - , 0x71e10d00 \ - , 0xb3ff0006 \ - , 0x55060000 \ - , 0xf4480b01 \ - , 0xca01f840 \ - , 0x71e10d00 \ - , 0x55060000 \ - , 0x2e3f0059 \ - , 0xffffffff \ - , 0x020700d2 \ - , 0xebc30004 \ - , 0xdc2338f8 \ - , 0xb81f0005 \ - , 0x06040000 \ - , 0xf4473304 \ - , 0xf0433b00 \ - , 0x120600d2 \ - , 0x120700d6 \ - , 0x020900d0 \ - , 0xdbc7223d \ - , 0xd84940f8 \ - , 0xca03f8c0 \ - , 0x041b0800 \ - , 0x06061000 \ - , 0xdbc9f855 \ - , 0xd86749f8 \ - , 0xd8c609b8 \ - , 0xf0400b90 \ - , 0xca862180 \ - , 0x020a1008 \ - , 0xdc2a1ab8 \ - , 0xbc1f0010 \ - , 0xdc435278 \ - , 0xdc4848f9 \ - , 0xca03f8c0 \ - , 0x71e31d00 \ - , 0x55260800 \ - , 0x06061000 \ - , 0xd8411879 \ - , 0xca862180 \ - , 0xf4491301 \ - , 0xca02f880 \ - , 0x71e21500 \ - , 0x55260800 \ - , 0xf0420b01 \ - , 0xb3ff000d \ - , 0x120100d0 \ - , 0xf4481301 \ - , 0xca02f880 \ - , 0x71e21500 \ - , 0x55260800 \ - , 0xdc2350f8 \ - , 0xbc3f0003 \ - , 0xb3ff0005 \ - , 0x121f00d0 \ - , 0xf0420b01 \ - , 0xd8490878 \ - , 0x120100d0 \ - , 0x9ffff400 \ - , 0xebc1038c \ - , 0xdbc040fd \ - , 0xf0411108 \ - , 0xdbc0401d \ - , 0x7c01f905 \ - , 0xdbc1607d \ - , 0xd8420878 \ - , 0x73630b00 \ - , 0x7c01f905 \ - , 0xdbc1607d \ - , 0xd8420878 \ - , 0x77610b00 \ - , 0x7804fb00 \ - , 0xdbc4805d \ - , 0xdc210078 \ - , 0xbc3ffff5 \ - , 0xcdc44011 \ - , 0x9ffff400 \ - , 0x0400d010 \ - , 0xebc200c0 \ - , 0x04000004 \ - , 0x02010000 \ - , 0xbb610008 \ - , 0xe1c20050 \ - , 0xebc03020 \ - , 0xcf811045 \ - , 0xe1c0000c \ - , 0xd8410078 \ - , 0xe3c08000 \ - , 0x73600b00 \ - , 0x2c3f1000 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x0401d010 \ - , 0xf05a0300 \ - , 0xa3ffff83 \ - , 0x04020804 \ - , 0x0618d000 \ - , 0x0200d0d4 \ - , 0x040cd010 \ - , 0x0610d000 \ - , 0xbbe00008 \ - , 0xf05a6b90 \ - , 0xebc00400 \ - , 0x1200d090 \ - , 0x0200d0d4 \ - , 0xf5400301 \ - , 0xb3ff0003 \ - , 0x1200d0d4 \ - , 0x121fd090 \ - , 0x060a6808 \ - , 0x040e6004 \ - , 0xca8a8280 \ - , 0x0200d0da \ - , 0x1200d0dc \ - , 0x121f6802 \ - , 0x041b6000 \ - , 0x0202d0d8 \ - , 0xebc10100 \ - , 0xdc211078 \ - , 0xb01f0015 \ - , 0x0400d0e4 \ - , 0x0401d008 \ - , 0x12016802 \ - , 0x0401d00c \ - , 0x02026800 \ - , 0xcf818043 \ - , 0xf1c10a08 \ - , 0xd9c20878 \ - , 0x12016800 \ - , 0x0201d0d8 \ - , 0xf4410b01 \ - , 0xca01f840 \ - , 0x71e10d00 \ - , 0x552a0000 \ - , 0xf05a0300 \ - , 0xf04c0b00 \ - , 0xa3ffff81 \ - , 0xf04e1300 \ - , 0x2e3fffc3 \ - , 0xffffffff \ - , 0x02026802 \ - , 0xf0421201 \ - , 0x12026802 \ - , 0x6bfffd00 \ - , 0x552a0000 \ - , 0x0202d0d8 \ - , 0xf4421201 \ - , 0x1202d0d8 \ - , 0x0202d0dc \ - , 0xf4421301 \ - , 0x1202d0dc \ - , 0x0222d0dc \ - , 0xbc3f0019 \ - , 0x0201d0d6 \ - , 0xf4410b01 \ - , 0x1201d0d6 \ - , 0x0221d0d6 \ - , 0xbc3f000a \ - , 0xa7ffff9d \ - , 0xffffffff \ - , 0x1400d0e4 \ - , 0xf05a0300 \ - , 0xf04c0b00 \ - , 0xa3ffff66 \ - , 0xf04e1300 \ - , 0x2e3fffb6 \ - , 0xffffffff \ - , 0xf04d6b10 \ - , 0x121f6802 \ - , 0x121f6800 \ - , 0x060a6808 \ - , 0xa3ffff90 \ - , 0xca8a8280 \ - , 0x1400d0e4 \ - , 0x0200d0da \ - , 0xb3ffffc5 \ - , 0x1200d0dc \ - , 0xd86b0af8 \ - , 0xa3ffff89 \ - , 0xd8cafab8 \ - , 0xb3ffffc0 \ - , 0x1400d0e4 \ - , 0x0618d000 \ - , 0x040dd010 \ - , 0x0402d008 \ - , 0xf05a0b00 \ - , 0xf04d0300 \ - , 0x1202d0d8 \ - , 0x040e6804 \ - , 0xf05a8300 \ - , 0x141cd0e4 \ - , 0xa3fffedc \ - , 0xf04e7b0a \ - , 0x1200d0d2 \ - , 0xf04e0300 \ - , 0xf04f0b00 \ - , 0xa3fffee2 \ - , 0xf05a1300 \ - , 0xdc20f838 \ - , 0xb43f0005 \ - , 0xf04e0300 \ - , 0xa3ffff07 \ - , 0xf04d0b00 \ - , 0xb7ff0006 \ - , 0x020180d2 \ - , 0xa3fffef2 \ - , 0xf04e0300 \ - , 0x1200700a \ - , 0x12807800 \ - , 0xebc13000 \ - , 0xe1c1000c \ - , 0x7c00f801 \ - , 0xdbc0c03d \ - , 0xf1c00303 \ - , 0x73600b00 \ - , 0xebc30001 \ - , 0xf0500300 \ - , 0xf04d0b00 \ - , 0xf04e1300 \ - , 0xa3ffff06 \ - , 0x120380d4 \ - , 0x000600a4 \ - , 0x000300a5 \ - , 0x02080898 \ - , 0x06040800 \ - , 0xdc2619b8 \ - , 0xf0405360 \ - , 0xb83f003d \ - , 0xebcb0000 \ - , 0x101f00a4 \ - , 0xebcb0001 \ - , 0x041b0000 \ - , 0x06061000 \ - , 0xd86741f8 \ - , 0xd8c6f9b8 \ - , 0xca862180 \ - , 0x0201100a \ - , 0xdc280a38 \ - , 0xbc1f000e \ - , 0xdc4140b8 \ - , 0xf4221340 \ - , 0xb01f0006 \ - , 0xebc10040 \ - , 0x6b3ffd00 \ - , 0x55065000 \ - , 0xb3ff002b \ - , 0x100100a5 \ - , 0xf4422301 \ - , 0x100200a5 \ - , 0x71e42500 \ - , 0xb3ff0026 \ - , 0x55065000 \ - , 0x02011008 \ - , 0xdc414338 \ - , 0xf42c6340 \ - , 0xb01f0006 \ - , 0xebc30040 \ - , 0x6b3ffd00 \ - , 0x55065000 \ - , 0xb3ff001d \ - , 0x100300a5 \ - , 0x100c00a5 \ - , 0x06081000 \ - , 0xdc436078 \ - , 0xca01f840 \ - , 0xca882200 \ - , 0xdbcc211d \ - , 0xdbc4217d \ - , 0xf44c2301 \ - , 0xd84a2978 \ - , 0x71e42500 \ - , 0x55065000 \ - , 0x0222100a \ - , 0xb43f000f \ - , 0xdc2208b8 \ - , 0xb41f0007 \ - , 0xf4410b01 \ - , 0xca01f840 \ - , 0x71e10d00 \ - , 0x55082800 \ - , 0xb3ff0008 \ - , 0x100300a5 \ - , 0x000100a5 \ - , 0xf4422301 \ - , 0xd8411078 \ - , 0x100100a5 \ - , 0x71e42500 \ - , 0x55082800 \ - , 0xf04b0300 \ - , 0x9ffff400 \ - , 0xdc20f838 \ - , 0xb03f0004 \ - , 0x06082000 \ - , 0xb3ff0003 \ - , 0xebca0000 \ - , 0x040a2094 \ - , 0x14012094 \ - , 0x0005209a \ - , 0x06061008 \ - , 0xebcb0100 \ - , 0xdc4b2af8 \ - , 0xca0bfac0 \ - , 0xca864180 \ - , 0x02091002 \ - , 0x041b1800 \ - , 0xdc695a38 \ - , 0xb17f000c \ - , 0xd8412b38 \ - , 0xf44b1b01 \ - , 0xca03f8c0 \ - , 0x71e31d00 \ - , 0x55066000 \ - , 0xd86759f8 \ - , 0xd8c6f9b8 \ - , 0x16061008 \ - , 0x12081002 \ - , 0xb3ff000a \ - , 0x101f209a \ - , 0xf4491b01 \ - , 0xca03f8c0 \ - , 0x71e31d00 \ - , 0x55066000 \ - , 0xf0431b01 \ - , 0x121f1002 \ - , 0xd84518b8 \ - , 0x1002209a \ - , 0xdc20f838 \ - , 0xbc3f000c \ - , 0xdc2a0ab8 \ - , 0xb43f000a \ - , 0xccca40a1 \ - , 0xdbc1401d \ - , 0xd9c200b8 \ - , 0xebc00388 \ - , 0x7c03f905 \ - , 0xf0400908 \ - , 0xdbc3603d \ - , 0xd8410038 \ - , 0x73620300 \ - , 0x9ffff400 \ - , 0x04040808 \ - , 0xdc20f838 \ - , 0xf0413ba0 \ - , 0xb03f0013 \ - , 0xe3c58000 \ - , 0xccc04061 \ - , 0xdbc0401d \ - , 0xd9c100f8 \ - , 0xebc00388 \ - , 0x7c06f905 \ - , 0xf0400908 \ - , 0xdbc6603d \ - , 0xd8410038 \ - , 0x73630300 \ - , 0x02011098 \ - , 0x02002008 \ - , 0xf0410b10 \ - , 0xdc210078 \ - , 0xbc3f0003 \ - , 0xb3ff0003 \ - , 0x121f200c \ - , 0x1201200c \ - , 0x04813800 \ - , 0xb7dfffff \ - , 0x04201090 \ - , 0xb43f0009 \ - , 0x14813800 \ - , 0x7c01f801 \ - , 0xdbc0c01d \ - , 0x77000001 \ - , 0x73e52901 \ - , 0x263f003c \ - , 0xb3ff0003 \ - , 0x77010801 \ - , 0x14803800 \ - , 0x9ffff400 \ - , 0x0618d000 \ - , 0xccda40e1 \ - , 0xdbda409d \ - , 0xd9c31138 \ - , 0x0400d010 \ - , 0xf05a0b00 \ - , 0xe3c58000 \ - , 0xebc20388 \ - , 0x7c06f905 \ - , 0xf0421908 \ - , 0xdbc660bd \ - , 0xd84310b8 \ - , 0x73641300 \ - , 0x7c02f801 \ - , 0xebc33000 \ - , 0xe1c3000c \ - , 0xdbc2c13d \ - , 0xd9c4d0b8 \ - , 0x048600a0 \ - , 0xb7dfffff \ - , 0xdc26f9b8 \ - , 0xbc3f0006 \ - , 0x141fd090 \ - , 0x148200a0 \ - , 0xf1c41303 \ - , 0xb3ff000c \ - , 0x73621b00 \ - , 0x141fd090 \ - , 0x14023090 \ - , 0x148200a0 \ - , 0xebc00203 \ - , 0xd9c40038 \ - , 0x73601b00 \ - , 0x77631b00 \ - , 0x7800fb00 \ - , 0x281ff800 \ - , 0xffffffff \ - , 0x73e52901 \ - , 0x04020008 \ - , 0x0203100a \ - , 0x0204100c \ - , 0xdc6320f8 \ - , 0xb43f0003 \ - , 0x04030000 \ - , 0xbd030003 \ - , 0x2e3f000a \ - , 0xffffffff \ - , 0xa3ffff36 \ - , 0x1204d098 \ - , 0xdc20f838 \ - , 0xb43f0003 \ - , 0x2e3f002a \ - , 0xffffffff \ - , 0xa7ff0028 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x0401d010 \ - , 0xebc90274 \ - , 0xf05a4300 \ - , 0xe1c900d0 \ - , 0x04020808 \ - , 0x7c03f801 \ - , 0xebc03000 \ - , 0xe1c0000c \ - , 0xdbc3c0fd \ - , 0xf1c31a01 \ - , 0x73630300 \ - , 0x04000800 \ - , 0xbd000009 \ - , 0xf0481300 \ - , 0xa3ffff96 \ - , 0xebc00000 \ - , 0x161f4000 \ - , 0xf0484308 \ - , 0x161f4000 \ - , 0x2c3f4800 \ - , 0xffffffff \ - , 0x0200100a \ - , 0x0203100c \ - , 0xdc601838 \ - , 0xbc3f0003 \ - , 0x2e3fffe6 \ - , 0xffffffff \ - , 0xf0410300 \ - , 0xf0480b00 \ - , 0xa3ffff10 \ - , 0x1203d098 \ - , 0xdc20f838 \ - , 0xb43f0003 \ - , 0x2e3f0004 \ - , 0xffffffff \ - , 0xa7ff0002 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x040ed010 \ - , 0xebc00380 \ - , 0xf04e1360 \ - , 0x7c03f905 \ - , 0xf0400908 \ - , 0xdbc3603d \ - , 0xd8410038 \ - , 0x77600300 \ - , 0x780dfb00 \ - , 0xbc0d0003 \ - , 0x2e3ffff5 \ - , 0xffffffff \ - , 0x000070a4 \ - , 0xf04d0b00 \ - , 0xf04e1b00 \ - , 0xdbc02015 \ - , 0xdbc0203d \ - , 0xd84203f8 \ - , 0x02007802 \ - , 0xf04f1300 \ - , 0xf05a2300 \ - , 0x1400d008 \ - , 0xebc00001 \ - , 0xa3ffff35 \ - , 0x101fd09a \ - , 0x776d6903 \ - , 0xebc00380 \ - , 0xb3ff0010 \ - , 0xf0408908 \ - , 0x7c00f905 \ - , 0xdbc0603d \ - , 0xd8510038 \ - , 0x77600300 \ - , 0x780dfb00 \ - , 0xbc0d0003 \ - , 0x2e3f0018 \ - , 0xffffffff \ - , 0xf04d0b00 \ - , 0xf04f1300 \ - , 0xf04e1b00 \ - , 0xf05a2300 \ - , 0xa3ffff23 \ - , 0xebc00000 \ - , 0x02207802 \ - , 0xbc3ffff1 \ - , 0x02007800 \ - , 0xf5400280 \ - , 0x1200d09c \ - , 0x000070a4 \ - , 0xf0400310 \ - , 0x100070a4 \ - , 0x02007800 \ - , 0xbe800005 \ - , 0xf04d0300 \ - , 0xf04e0b00 \ - , 0xa3ffff47 \ - , 0xf05a1300 \ - , 0x2e3f0033 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x040ed010 \ - , 0x000070a4 \ - , 0xf04e0b60 \ - , 0xdbc02015 \ - , 0xdbc0203d \ - , 0xd84103f8 \ - , 0xebc00380 \ - , 0xf0408908 \ - , 0x0020d09a \ - , 0xb43f0009 \ - , 0x040dd094 \ - , 0xf04f1300 \ - , 0xf04e1b00 \ - , 0xf04d0b00 \ - , 0xf05a2300 \ - , 0xa3ffff01 \ - , 0xebc00000 \ - , 0xb7ff000f \ - , 0x7c00f905 \ - , 0xdbc0603d \ - , 0xd8510038 \ - , 0x77600300 \ - , 0x780dfb00 \ - , 0xbc0d0003 \ - , 0x2e3fffe7 \ - , 0xffffffff \ - , 0xf04d0b00 \ - , 0xf04f1300 \ - , 0xf04e1b00 \ - , 0xf05a2300 \ - , 0xa3fffef2 \ - , 0xebc00000 \ - , 0x02207802 \ - , 0xbc3fffe7 \ - , 0x02007800 \ - , 0xf5400280 \ - , 0x1200d09c \ - , 0x000070a4 \ - , 0xf0400310 \ - , 0x100070a4 \ - , 0x02007800 \ - , 0xbe800005 \ - , 0xf04d0300 \ - , 0xf04e0b00 \ - , 0xa3ffff16 \ - , 0xf05a1300 \ - , 0x2e3f0002 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x0400d010 \ - , 0xebc900d0 \ - , 0x0208d098 \ - , 0x04020008 \ - , 0x0606d000 \ - , 0xf05a0b00 \ - , 0x06041000 \ - , 0xd8654178 \ - , 0xe1c900d0 \ - , 0xd8c4f938 \ - , 0xca843100 \ - , 0x041b0000 \ - , 0x5224089c \ - , 0x0203089c \ - , 0xbe830004 \ - , 0x141f080c \ - , 0x2c3f4800 \ - , 0xffffffff \ - , 0x02031008 \ - , 0xf0482310 \ - , 0xdc241938 \ - , 0xbc3f0003 \ - , 0xb3ff0003 \ - , 0x121f0898 \ - , 0x12040898 \ - , 0xa7fffe81 \ - , 0xffffffff \ - , 0xdc20f838 \ - , 0xb43f0003 \ - , 0x2e3f0004 \ - , 0xffffffff \ - , 0xa7ff0002 \ - , 0xffffffff \ - , 0x0402d010 \ - , 0x0401d008 \ - , 0x000010a4 \ - , 0xf0421360 \ - , 0xf540030f \ - , 0xd8420038 \ - , 0x02000002 \ - , 0xd8410038 \ - , 0xa3ffffa5 \ - , 0x1400d008 \ - , 0x04030804 \ - , 0x04020808 \ - , 0xebc6000f \ - , 0x0484180c \ - , 0xb7dfffff \ - , 0x14040808 \ - , 0xd9c410b8 \ - , 0x1482180c \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0x55220800 \ - , 0xe3c00054 \ - , 0x2c3f0000 \ - , 0xffffffff \ - , 0x04030808 \ - , 0xb603001b \ - , 0xebc20200 \ - , 0xcf0310c5 \ - , 0xe1c2000c \ - , 0xd84310b8 \ - , 0x77621300 \ - , 0x7804fb00 \ - , 0xb4040005 \ - , 0xebc20200 \ - , 0xe1c2000c \ - , 0x77621300 \ - , 0x7804fb00 \ - , 0x04060804 \ - , 0xcf848081 \ - , 0xcb02f8c0 \ - , 0xebc200ff \ - , 0xdbc218fc \ - , 0xcf068081 \ - , 0xcb04f940 \ - , 0xcb03f900 \ - , 0xcb02f880 \ - , 0xd94428f8 \ - , 0xdd4220b8 \ - , 0xd9c310b8 \ - , 0xcb02f880 \ - , 0xf9023420 \ - , 0x14060804 \ - , 0x04040804 \ - , 0xebc20090 \ - , 0xb8240021 \ - , 0xe1c2000c \ - , 0xebc3008c \ - , 0xe1c3000c \ - , 0x73641b00 \ - , 0xb3ff0009 \ - , 0xebc40000 \ - , 0x77621300 \ - , 0x7805fb00 \ - , 0xdbc410fd \ - , 0xd84118f8 \ - , 0x14051810 \ - , 0xf0421304 \ - , 0xf0442301 \ - , 0xf4242310 \ - , 0xb57ffff8 \ - , 0xebc6004f \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff002a \ - , 0x55220800 \ - , 0xebc6008c \ - , 0xce040141 \ - , 0xe1c6000c \ - , 0xb3ff000f \ - , 0xebc70000 \ - , 0xdb5f293d \ - , 0xebc3001f \ - , 0xdc4320f8 \ - , 0xcb03f8c0 \ - , 0xdb451978 \ - , 0xdbc710fd \ - , 0xd84118f8 \ - , 0xf4442310 \ - , 0xdbc4113d \ - , 0x04031810 \ - , 0xd8422138 \ - , 0x73632300 \ - , 0xf0473b01 \ - , 0xdc25f978 \ - , 0xbc3ffff2 \ - , 0x04020804 \ - , 0x73623300 \ - , 0x04020808 \ - , 0xb6020011 \ - , 0xebc60007 \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0x55220800 \ - , 0x9ffff400 \ - , 0x04040804 \ - , 0xebc31100 \ - , 0xf1441003 \ - , 0xdbe2c09d \ - , 0xb83f0069 \ - , 0xe1c3000c \ - , 0xbc240036 \ - , 0xebc211fc \ - , 0xe1c2000c \ - , 0x73641300 \ - , 0x77621300 \ - , 0x7802fb00 \ - , 0xbc420014 \ - , 0xf1c41020 \ - , 0x14020804 \ - , 0xebc60007 \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff00c0 \ - , 0x55220800 \ - , 0xb3ff0009 \ - , 0xebc20000 \ - , 0x77631b00 \ - , 0x7805fb00 \ - , 0xdbc2113d \ - , 0xd8412138 \ - , 0x14052010 \ - , 0xf0431b04 \ - , 0xf0421301 \ - , 0xf4221315 \ - , 0xb57ffff8 \ - , 0xebc60063 \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff00a4 \ - , 0x55220800 \ - , 0xebc211fc \ - , 0xf1c41840 \ - , 0xe1c2000c \ - , 0x73631300 \ - , 0x04060808 \ - , 0xb3ff0010 \ - , 0xebc20000 \ - , 0xdb5f317d \ - , 0xebc3001f \ - , 0xdc4328f8 \ - , 0xcb03f8c0 \ - , 0xdb4619b8 \ - , 0xdbc210fd \ - , 0xd8411938 \ - , 0xebc31100 \ - , 0x04042010 \ - , 0xdbc5117d \ - , 0xe1c3000c \ - , 0xd84518f8 \ - , 0x73641b00 \ - , 0xf0421301 \ - , 0xdc26f9b8 \ - , 0xbc3ffff1 \ - , 0x04030804 \ - , 0xebc211fc \ - , 0xe1c2000c \ - , 0x73631300 \ - , 0x77621300 \ - , 0x7802fb00 \ - , 0xbc420085 \ - , 0xf1c31020 \ - , 0x14020804 \ - , 0xebc60007 \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff0073 \ - , 0x55220800 \ - , 0xf4221301 \ - , 0xbc3f0038 \ - , 0xbc240020 \ - , 0xebc211fc \ - , 0xe1c2000c \ - , 0x73641300 \ - , 0xb3ff0009 \ - , 0xebc20000 \ - , 0x77631b00 \ - , 0x7805fb00 \ - , 0xdbc2113d \ - , 0xd8412138 \ - , 0x14052010 \ - , 0xf0431b04 \ - , 0xf0421301 \ - , 0xf4221308 \ - , 0xb57ffff8 \ - , 0xebc6002f \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff0051 \ - , 0x55220800 \ - , 0xebc511fc \ - , 0xf14422ff \ - , 0xe1c5000c \ - , 0xb3ff000f \ - , 0xebc60000 \ - , 0xdb5f20bd \ - , 0xebc0001f \ - , 0xdc401038 \ - , 0xcb00f800 \ - , 0xdb440138 \ - , 0xdbc6103d \ - , 0xd8410038 \ - , 0xf4421310 \ - , 0xdbc210bd \ - , 0x04000010 \ - , 0xd84310b8 \ - , 0x73601300 \ - , 0xf0463301 \ - , 0xdc24f938 \ - , 0xbc3ffff2 \ - , 0x04000804 \ - , 0xb3ff003a \ - , 0x73602b00 \ - , 0xf4221302 \ - , 0xbc3f0037 \ - , 0xbc240020 \ - , 0xebc211fc \ - , 0xe1c2000c \ - , 0x73641300 \ - , 0xb3ff0009 \ - , 0xebc20000 \ - , 0x77631b00 \ - , 0x7805fb00 \ - , 0xdbc2113d \ - , 0xd8412138 \ - , 0x14052010 \ - , 0xf0431b04 \ - , 0xf0421301 \ - , 0xf4221302 \ - , 0xb57ffff8 \ - , 0xebc60017 \ - , 0x041b0800 \ - , 0xf4263307 \ - , 0xb43f0006 \ - , 0x04040008 \ - , 0xf0461b01 \ - , 0xcc0400a9 \ - , 0xd9c218b8 \ - , 0x14020008 \ - , 0x04020008 \ - , 0x06040000 \ - , 0xcee26001 \ - , 0xd86500f8 \ - , 0xd8c4f8b8 \ - , 0x71e63500 \ - , 0xb3ff0018 \ - , 0x55220800 \ - , 0xebc511fc \ - , 0xf14422ff \ - , 0xe1c5000c \ - , 0xb3ff000f \ - , 0xebc60000 \ - , 0xdb5f20bd \ - , 0xebc0001f \ - , 0xdc401038 \ - , 0xcb00f800 \ - , 0xdb440138 \ - , 0xdbc6103d \ - , 0xd8410038 \ - , 0xf4421310 \ - , 0xdbc210bd \ - , 0x04000010 \ - , 0xd84310b8 \ - , 0x73601300 \ - , 0xf0463301 \ - , 0xdc24f938 \ - , 0xbc3ffff2 \ - , 0x04000804 \ - , 0x73602b00 \ - , 0x9ffff400 \ - , 0xe3c00054 \ - , 0x2c3f0000 \ - , 0xffffffff \ - , 0xebc00001 \ - , 0x70e00101 \ - , 0x2e3ffffb \ - , 0xffffffff \ - , 0x0618d000 \ - , 0xec590008 \ - , 0x0401e004 \ - , 0x0400e008 \ - , 0x06020808 \ - , 0x16020008 \ - , 0x06020800 \ - , 0xa3fffff5 \ - , 0x16020000 \ - , 0x04020008 \ - , 0x04010004 \ - , 0xebc00001 \ - , 0x14011000 \ - , 0x70e00101 \ - , 0x2e3ffff2 \ - , 0xffffffff \ - , 0x0618d000 \ - , 0x0003e003 \ - , 0xf05a0300 \ - , 0xec230005 \ - , 0xb81f001b \ - , 0xf05c0b00 \ - , 0x97430001 \ - , 0xb7ff000a \ - , 0xffffffff \ - , 0xb7ff000b \ - , 0xffffffff \ - , 0xb7ff000c \ - , 0xffffffff \ - , 0xb3ff000d \ - , 0xf0410300 \ - , 0xb7ff000e \ - , 0xffffffff \ - , 0xa7fffe91 \ - , 0xffffffff \ - , 0xb7ff000c \ - , 0xa7fffef6 \ - , 0xffffffff \ - , 0xb7ff0009 \ - , 0xa7ffffd5 \ - , 0xffffffff \ - , 0xb7ff0006 \ - , 0xa7ffffdf \ - , 0xffffffff \ - , 0xb7ff0003 \ - , 0xa7fffe6b \ - , 0xffffffff \ - , 0xe3c00054 \ - , 0x2c3f0000 \ - , 0xffffffff \ - , 0xebc23070 \ - , 0xe1c2000c \ - , 0x77621300 \ - , 0x7803fb00 \ - , 0x77631903 \ - , 0xebc106a7 \ - , 0xebc00018 \ - , 0xe9c10000 \ - , 0xe1c0000b \ - , 0x73610300 \ - , 0xebc00200 \ - , 0xe1c0000b \ - , 0xe3c18000 \ - , 0x73610300 \ - , 0xebc00204 \ - , 0xe1c0000b \ - , 0x737f0300 \ - , 0xebc102c0 \ - , 0xebc00028 \ - , 0xe1c10050 \ - , 0xe1c0000b \ - , 0x73610300 \ - , 0xf5430080 \ - , 0x73601300 \ - , 0xebc10008 \ - , 0xe1c1000f \ - , 0x77610b00 \ - , 0x7800fb00 \ - , 0xf1c00214 \ - , 0x73600b00 \ - , 0xe3c18100 \ - , 0xe3c0000b \ - , 0x73610300 \ - , 0xc6000673 \ - , 0x2c3ff000 \ - , 0xffffffff \ - , 0xebc20204 \ - , 0xe1c2000b \ - , 0x77621300 \ - , 0x7801fb00 \ - , 0xec21001f \ - , 0xb41f002d \ - , 0xe3c10100 \ - , 0xe3c0000b \ - , 0x73610300 \ - , 0xebc00004 \ - , 0xe1c0000b \ - , 0x77600300 \ - , 0x7800fb00 \ - , 0xb4000025 \ - , 0x77621300 \ - , 0x7801fb00 \ - , 0xebc00084 \ - , 0xe1c0000f \ - , 0x77600300 \ - , 0x7800fb00 \ - , 0xdc210078 \ - , 0xbc3f001d \ - , 0xebc0008c \ - , 0xe1c0000f \ - , 0x77600300 \ - , 0x7800fb00 \ - , 0xdc210078 \ - , 0xbc3f0017 \ - , 0xebc00064 \ - , 0xe1c0000f \ - , 0xefc10000 \ - , 0x73610300 \ - , 0xebc10008 \ - , 0xe1c1000f \ - , 0x77610b00 \ - , 0x7800fb00 \ - , 0xf1c00204 \ - , 0xf5400210 \ - , 0x73600b00 \ - , 0xebc03070 \ - , 0xe1c0000c \ - , 0x737c0300 \ - , 0xebc00200 \ - , 0xe1c0000b \ - , 0x737f0300 \ - , 0xe3c00040 \ - , 0xc60c3074 \ - , 0x7360f300 \ - , 0x281ff800 \ - , 0xffffffff \ - , 0x283ff800 \ - , 0xffffffff \ - , 0xebc00388 \ - , 0xdbda409d \ - , 0xdbda407d \ - , 0xd9c20878 \ - , 0xe1c0000b \ - , 0xf05a1300 \ - , 0x73610300 \ - , 0x777ad103 \ - , 0xb3ff0006 \ - , 0xebc10000 \ - , 0xdbc1103d \ - , 0xd8420038 \ - , 0x141f0000 \ - , 0xf0410b01 \ - , 0xf4210b40 \ - , 0xb57ffffb \ - , 0xebc00100 \ - , 0x14001008 \ - , 0x141f100c \ - , 0xc6500010 \ - , 0x2c3ff000 \ - , 0xffffffff \ - , 0xb3ff0003 \ - , 0xebc30000 \ - , 0x7803f900 \ - , 0xbc03ffff \ - , 0xebc13000 \ - , 0xdbc3c0bd \ - , 0xebc00203 \ - , 0xd9c20038 \ - , 0xe1c1000c \ - , 0x73600b00 \ - , 0xebc23078 \ - , 0xe1c2000c \ - , 0x77621300 \ - , 0x7801fb00 \ - , 0xdbc3803d \ - , 0xf54109ff \ - , 0xd9c10038 \ - , 0x73601300 \ - , 0x7c00f801 \ - , 0x77031801 \ - , 0x261fff7e \ - , 0x77600001 \ - , 0x9ffff400 \ -} - -#define P3041_R1_0_UC_IMG_INFO \ - "U-code image for CC_HC_IM for P3041_r1.0. Image ID is: rel_101_8 \r\n" \ - "\r\n" - -#endif /* __ALL_IMG_P3041_R1_0_H */ Property changes on: head/sys/contrib/ncsw/integrations/P3041/fman_ctrl_code/p3041_r1.0.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/integrations/fman_ctrl_code/p3041_r1.0.h =================================================================== --- head/sys/contrib/ncsw/integrations/fman_ctrl_code/p3041_r1.0.h (nonexistent) +++ head/sys/contrib/ncsw/integrations/fman_ctrl_code/p3041_r1.0.h (revision 302341) @@ -0,0 +1,1801 @@ +/****************************************************************************** + + © 1995-2003, 2004, 2005-2011 Freescale Semiconductor, Inc. + All rights reserved. + + This is proprietary source code of Freescale Semiconductor Inc., + and its use is subject to the NetComm Device Drivers EULA. + The copyright notice above does not evidence any actual or intended + publication of such source code. + + ALTERNATIVELY, 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 Freescale Semiconductor 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 IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + + **************************************************************************/ +/****************************************************************************** + @File all_img_P3041_r1.0.h + + @Description U-code image for CC_HC_IM for P3041_r1.0. Image ID is: rel_101_8 +******************************************************************************/ + +#ifndef __ALL_IMG_P3041_R1_0_H +#define __ALL_IMG_P3041_R1_0_H + +#define P3041_R1_0_UC_IMG \ +{ \ + 0xb7ff000e \ + , 0x00650008 \ + , 0xb7ff0021 \ + , 0xffffffff \ + , 0xb7ff001f \ + , 0xffffffff \ + , 0xb7ff003a \ + , 0xffffffff \ + , 0xb7ff03b7 \ + , 0xffffffff \ + , 0xb7ff02f3 \ + , 0xffffffff \ + , 0xb7ff0621 \ + , 0xffffffff \ + , 0x7902f800 \ + , 0x7904f800 \ + , 0x7906f800 \ + , 0x7908f800 \ + , 0x790af800 \ + , 0x790cf800 \ + , 0x790ef800 \ + , 0x7910f800 \ + , 0x7912f800 \ + , 0x7914f800 \ + , 0x7916f800 \ + , 0x7918f800 \ + , 0x791af800 \ + , 0x791cf800 \ + , 0x791ef800 \ + , 0x777ff802 \ + , 0x777ff803 \ + , 0x777ff804 \ + , 0x777ff806 \ + , 0xb21f0004 \ + , 0x7900f800 \ + , 0x281ff800 \ + , 0xffffffff \ + , 0xb3ff0698 \ + , 0xc2000001 \ + , 0x7800f900 \ + , 0xbc00ffff \ + , 0xdbc0c0bd \ + , 0xc60c3078 \ + , 0x777ef300 \ + , 0x7809fb00 \ + , 0xc8024a70 \ + , 0x7369f300 \ + , 0x77000001 \ + , 0xc60c3000 \ + , 0xe9c20203 \ + , 0x7362f300 \ + , 0x777ef300 \ + , 0x7800fb00 \ + , 0x2e1f0002 \ + , 0xffffffff \ + , 0xebc00001 \ + , 0x70e00101 \ + , 0x2e3f0002 \ + , 0xffffffff \ + , 0xc60c3074 \ + , 0xe3c20080 \ + , 0x7362f300 \ + , 0x2e1ffff9 \ + , 0xffffffff \ + , 0x0400d018 \ + , 0x0614d030 \ + , 0x0616d038 \ + , 0x06040008 \ + , 0x06180000 \ + , 0xdbc411bd \ + , 0xbc380006 \ + , 0x93e60011 \ + , 0xb4180001 \ + , 0x0604c008 \ + , 0xb3fffffb \ + , 0x0618c000 \ + , 0xbc180008 \ + , 0x0610d010 \ + , 0xb4580002 \ + , 0xfb112400 \ + , 0x2c3f2000 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0x1618d010 \ + , 0x2c382000 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb14e000 \ + , 0x0608e000 \ + , 0x73f8c420 \ + , 0x4d48c800 \ + , 0x2e5f0180 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb14e000 \ + , 0x0608e006 \ + , 0x73f8c420 \ + , 0x4d48c800 \ + , 0x2e5f0178 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb15e000 \ + , 0x0408e000 \ + , 0x73f8c420 \ + , 0x4c48c800 \ + , 0x2e5f0170 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb15e400 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4e44c800 \ + , 0x2e5f0168 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb15e600 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4e44c800 \ + , 0x2e5f0160 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e200 \ + , 0x0408e006 \ + , 0x73f8c420 \ + , 0x4c48c800 \ + , 0x2e5f0158 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e400 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4ec4c800 \ + , 0x2e5f0150 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e600 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4ec4c800 \ + , 0x2e5f0148 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0408e010 \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f0140 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0404e001 \ + , 0x73f8c420 \ + , 0x4e04c800 \ + , 0x2e5f0138 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0408e009 \ + , 0x73f8c420 \ + , 0x4c08c800 \ + , 0x2e5f0130 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0408e00c \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f0128 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0608e00c \ + , 0x73f8c420 \ + , 0x4dc8c800 \ + , 0x2e5f0120 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4ec4c800 \ + , 0x2e5f0118 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0408e006 \ + , 0x73f8c420 \ + , 0x4c08c800 \ + , 0x2e5f0110 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0xebc4000f \ + , 0xf05c4318 \ + , 0xf8044630 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0106 \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0xebc4000f \ + , 0xf05c4308 \ + , 0xf8044630 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f00fe \ + , 0xffffffff \ + , 0xfb17e400 \ + , 0x0408e002 \ + , 0x73f8c420 \ + , 0x4c48c800 \ + , 0x2e5f00f8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e000 \ + , 0x73f8c420 \ + , 0x4c08c800 \ + , 0x2e5f00f0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e004 \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f00e8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e008 \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f00e0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0608e004 \ + , 0x73f8c420 \ + , 0x4dc8c800 \ + , 0x2e5f00d8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e010 \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f00d0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0404e001 \ + , 0x73f8c420 \ + , 0x4e04c800 \ + , 0x2e5f00c8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e009 \ + , 0x73f8c420 \ + , 0x4c08c800 \ + , 0x2e5f00c0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e00c \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f00b8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0608e00c \ + , 0x73f8c420 \ + , 0x4dc8c800 \ + , 0x2e5f00b0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0404e000 \ + , 0x73f8c420 \ + , 0x4ec4c800 \ + , 0x2e5f00a8 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0x0408e006 \ + , 0x73f8c420 \ + , 0x4c08c800 \ + , 0x2e5f00a0 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0xebc4000f \ + , 0xf05c4318 \ + , 0xf8044630 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0096 \ + , 0xffffffff \ + , 0xfb17e200 \ + , 0xebc4000f \ + , 0xf05c4308 \ + , 0xf8044630 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f008e \ + , 0xffffffff \ + , 0xfb17e600 \ + , 0x0408e000 \ + , 0x73f8c420 \ + , 0x4c48c800 \ + , 0x2e5f0088 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e600 \ + , 0x0408e002 \ + , 0x73f8c420 \ + , 0x4c48c800 \ + , 0x2e5f0080 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb17e600 \ + , 0x0408e000 \ + , 0x73f8c420 \ + , 0x4cc8c800 \ + , 0x2e5f0078 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xe55cff00 \ + , 0xfb14e200 \ + , 0xc858e230 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f006f \ + , 0xffffffff \ + , 0xffffffff \ + , 0xe55cff00 \ + , 0xfb14e400 \ + , 0xc858e230 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0067 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xe55cff00 \ + , 0xfb14e600 \ + , 0xc858e230 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f005f \ + , 0xffffffff \ + , 0xffffffff \ + , 0xcf6443c1 \ + , 0xd84fd3f8 \ + , 0x73e52c14 \ + , 0x00087820 \ + , 0xfb04e43c \ + , 0xd848e278 \ + , 0xb3ff0042 \ + , 0xc8584a30 \ + , 0xcf6443c1 \ + , 0xd84fd3f8 \ + , 0x73e52c14 \ + , 0x00087820 \ + , 0xb3ff0040 \ + , 0xcb08e27c \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb04e43c \ + , 0xc858e230 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0048 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb04e43c \ + , 0x73e52c14 \ + , 0xc858e230 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f003f \ + , 0xffffffff \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0004e008 \ + , 0xebcb0010 \ + , 0xec240001 \ + , 0xd0785803 \ + , 0xb3fffe9f \ + , 0x06040008 \ + , 0xffffffff \ + , 0xfb16e000 \ + , 0x0004e007 \ + , 0xebcb0010 \ + , 0xec240001 \ + , 0xd0785803 \ + , 0xb3fffe97 \ + , 0x06040008 \ + , 0xffffffff \ + , 0xd9dfd2f8 \ + , 0xfb045c3c \ + , 0x73e52c14 \ + , 0xc8585a30 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0026 \ + , 0xffffffff \ + , 0xd9dfd2f8 \ + , 0xfb045c00 \ + , 0x02005800 \ + , 0xd9402838 \ + , 0xb3ff0020 \ + , 0xd8580038 \ + , 0xffffffff \ + , 0xffffffff \ + , 0xd9dfd2f8 \ + , 0xfb045c3c \ + , 0xc8585a30 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0xd9df04f8 \ + , 0x2e5f0011 \ + , 0xffffffff \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f0012 \ + , 0xffffffff \ + , 0xc8584a30 \ + , 0x73f8c420 \ + , 0x4808c800 \ + , 0x2e5f000d \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0xffffffff \ + , 0x7809fc10 \ + , 0x0499980c \ + , 0xb7dfffff \ + , 0xdf594e78 \ + , 0x1499980c \ + , 0x06040008 \ + , 0x06180000 \ + , 0xdbc411bd \ + , 0xbc38fe6d \ + , 0x93e6fe78 \ + , 0xb418fe68 \ + , 0x020308d8 \ + , 0x0204000c \ + , 0xebc20001 \ + , 0xf4430301 \ + , 0xdbc020d4 \ + , 0xf4440308 \ + , 0xdbc2003c \ + , 0xf0431b01 \ + , 0x120008da \ + , 0xca03f800 \ + , 0x9ffff400 \ + , 0x020610d2 \ + , 0x02870800 \ + , 0xb7dfffff \ + , 0x0205000a \ + , 0x0204000c \ + , 0xdc252178 \ + , 0xb41f0007 \ + , 0x02030008 \ + , 0xdc4328f8 \ + , 0xd84418f8 \ + , 0xdbc320d5 \ + , 0xb3ff0005 \ + , 0xca03f8c0 \ + , 0xdc4428f8 \ + , 0xdbc320d5 \ + , 0xca03f8c0 \ + , 0xdc2619b8 \ + , 0xbc1f0005 \ + , 0x0201000a \ + , 0xebc00000 \ + , 0xb3ff0004 \ + , 0x120110d0 \ + , 0x12870800 \ + , 0xebc00001 \ + , 0x9ffff400 \ + , 0x0202000a \ + , 0xdbc1207d \ + , 0xca01f8c0 \ + , 0x02000008 \ + , 0xd8421878 \ + , 0xdc210078 \ + , 0xb57f0009 \ + , 0xdc200838 \ + , 0xbc3f0003 \ + , 0xb3ff0005 \ + , 0xebc00000 \ + , 0xdc401038 \ + , 0xdc430038 \ + , 0xca00f800 \ + , 0xb7ff0002 \ + , 0xca01f800 \ + , 0x9ffff400 \ + , 0xebc300c0 \ + , 0xe1c30050 \ + , 0x0282080e \ + , 0xb7dfffff \ + , 0xf0421301 \ + , 0xca02f880 \ + , 0x1282080e \ + , 0x02010000 \ + , 0xbf810007 \ + , 0xebc03020 \ + , 0xcf811045 \ + , 0xe1c0000c \ + , 0xd8410078 \ + , 0xe3c04000 \ + , 0x73600b00 \ + , 0x2c3f1800 \ + , 0xffffffff \ + , 0x020600d2 \ + , 0xebc30004 \ + , 0xdc2330f8 \ + , 0xb81f0003 \ + , 0x06040000 \ + , 0xf0433300 \ + , 0x120600d6 \ + , 0x020900d0 \ + , 0xdbc6223d \ + , 0xd84940f8 \ + , 0xca03f8c0 \ + , 0x041b0800 \ + , 0x06061000 \ + , 0xdbc9f855 \ + , 0xd86749f8 \ + , 0xd8c609b8 \ + , 0xf0400390 \ + , 0xca862180 \ + , 0x02011008 \ + , 0xdc211878 \ + , 0xbc1f000e \ + , 0xdc4308f8 \ + , 0xdc481879 \ + , 0xca01f840 \ + , 0x71e10d00 \ + , 0x55060000 \ + , 0x06061000 \ + , 0xd8400839 \ + , 0xca862180 \ + , 0xf4430b01 \ + , 0xca01f840 \ + , 0x71e10d00 \ + , 0xb3ff0006 \ + , 0x55060000 \ + , 0xf4480b01 \ + , 0xca01f840 \ + , 0x71e10d00 \ + , 0x55060000 \ + , 0x2e3f0059 \ + , 0xffffffff \ + , 0x020700d2 \ + , 0xebc30004 \ + , 0xdc2338f8 \ + , 0xb81f0005 \ + , 0x06040000 \ + , 0xf4473304 \ + , 0xf0433b00 \ + , 0x120600d2 \ + , 0x120700d6 \ + , 0x020900d0 \ + , 0xdbc7223d \ + , 0xd84940f8 \ + , 0xca03f8c0 \ + , 0x041b0800 \ + , 0x06061000 \ + , 0xdbc9f855 \ + , 0xd86749f8 \ + , 0xd8c609b8 \ + , 0xf0400b90 \ + , 0xca862180 \ + , 0x020a1008 \ + , 0xdc2a1ab8 \ + , 0xbc1f0010 \ + , 0xdc435278 \ + , 0xdc4848f9 \ + , 0xca03f8c0 \ + , 0x71e31d00 \ + , 0x55260800 \ + , 0x06061000 \ + , 0xd8411879 \ + , 0xca862180 \ + , 0xf4491301 \ + , 0xca02f880 \ + , 0x71e21500 \ + , 0x55260800 \ + , 0xf0420b01 \ + , 0xb3ff000d \ + , 0x120100d0 \ + , 0xf4481301 \ + , 0xca02f880 \ + , 0x71e21500 \ + , 0x55260800 \ + , 0xdc2350f8 \ + , 0xbc3f0003 \ + , 0xb3ff0005 \ + , 0x121f00d0 \ + , 0xf0420b01 \ + , 0xd8490878 \ + , 0x120100d0 \ + , 0x9ffff400 \ + , 0xebc1038c \ + , 0xdbc040fd \ + , 0xf0411108 \ + , 0xdbc0401d \ + , 0x7c01f905 \ + , 0xdbc1607d \ + , 0xd8420878 \ + , 0x73630b00 \ + , 0x7c01f905 \ + , 0xdbc1607d \ + , 0xd8420878 \ + , 0x77610b00 \ + , 0x7804fb00 \ + , 0xdbc4805d \ + , 0xdc210078 \ + , 0xbc3ffff5 \ + , 0xcdc44011 \ + , 0x9ffff400 \ + , 0x0400d010 \ + , 0xebc200c0 \ + , 0x04000004 \ + , 0x02010000 \ + , 0xbb610008 \ + , 0xe1c20050 \ + , 0xebc03020 \ + , 0xcf811045 \ + , 0xe1c0000c \ + , 0xd8410078 \ + , 0xe3c08000 \ + , 0x73600b00 \ + , 0x2c3f1000 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x0401d010 \ + , 0xf05a0300 \ + , 0xa3ffff83 \ + , 0x04020804 \ + , 0x0618d000 \ + , 0x0200d0d4 \ + , 0x040cd010 \ + , 0x0610d000 \ + , 0xbbe00008 \ + , 0xf05a6b90 \ + , 0xebc00400 \ + , 0x1200d090 \ + , 0x0200d0d4 \ + , 0xf5400301 \ + , 0xb3ff0003 \ + , 0x1200d0d4 \ + , 0x121fd090 \ + , 0x060a6808 \ + , 0x040e6004 \ + , 0xca8a8280 \ + , 0x0200d0da \ + , 0x1200d0dc \ + , 0x121f6802 \ + , 0x041b6000 \ + , 0x0202d0d8 \ + , 0xebc10100 \ + , 0xdc211078 \ + , 0xb01f0015 \ + , 0x0400d0e4 \ + , 0x0401d008 \ + , 0x12016802 \ + , 0x0401d00c \ + , 0x02026800 \ + , 0xcf818043 \ + , 0xf1c10a08 \ + , 0xd9c20878 \ + , 0x12016800 \ + , 0x0201d0d8 \ + , 0xf4410b01 \ + , 0xca01f840 \ + , 0x71e10d00 \ + , 0x552a0000 \ + , 0xf05a0300 \ + , 0xf04c0b00 \ + , 0xa3ffff81 \ + , 0xf04e1300 \ + , 0x2e3fffc3 \ + , 0xffffffff \ + , 0x02026802 \ + , 0xf0421201 \ + , 0x12026802 \ + , 0x6bfffd00 \ + , 0x552a0000 \ + , 0x0202d0d8 \ + , 0xf4421201 \ + , 0x1202d0d8 \ + , 0x0202d0dc \ + , 0xf4421301 \ + , 0x1202d0dc \ + , 0x0222d0dc \ + , 0xbc3f0019 \ + , 0x0201d0d6 \ + , 0xf4410b01 \ + , 0x1201d0d6 \ + , 0x0221d0d6 \ + , 0xbc3f000a \ + , 0xa7ffff9d \ + , 0xffffffff \ + , 0x1400d0e4 \ + , 0xf05a0300 \ + , 0xf04c0b00 \ + , 0xa3ffff66 \ + , 0xf04e1300 \ + , 0x2e3fffb6 \ + , 0xffffffff \ + , 0xf04d6b10 \ + , 0x121f6802 \ + , 0x121f6800 \ + , 0x060a6808 \ + , 0xa3ffff90 \ + , 0xca8a8280 \ + , 0x1400d0e4 \ + , 0x0200d0da \ + , 0xb3ffffc5 \ + , 0x1200d0dc \ + , 0xd86b0af8 \ + , 0xa3ffff89 \ + , 0xd8cafab8 \ + , 0xb3ffffc0 \ + , 0x1400d0e4 \ + , 0x0618d000 \ + , 0x040dd010 \ + , 0x0402d008 \ + , 0xf05a0b00 \ + , 0xf04d0300 \ + , 0x1202d0d8 \ + , 0x040e6804 \ + , 0xf05a8300 \ + , 0x141cd0e4 \ + , 0xa3fffedc \ + , 0xf04e7b0a \ + , 0x1200d0d2 \ + , 0xf04e0300 \ + , 0xf04f0b00 \ + , 0xa3fffee2 \ + , 0xf05a1300 \ + , 0xdc20f838 \ + , 0xb43f0005 \ + , 0xf04e0300 \ + , 0xa3ffff07 \ + , 0xf04d0b00 \ + , 0xb7ff0006 \ + , 0x020180d2 \ + , 0xa3fffef2 \ + , 0xf04e0300 \ + , 0x1200700a \ + , 0x12807800 \ + , 0xebc13000 \ + , 0xe1c1000c \ + , 0x7c00f801 \ + , 0xdbc0c03d \ + , 0xf1c00303 \ + , 0x73600b00 \ + , 0xebc30001 \ + , 0xf0500300 \ + , 0xf04d0b00 \ + , 0xf04e1300 \ + , 0xa3ffff06 \ + , 0x120380d4 \ + , 0x000600a4 \ + , 0x000300a5 \ + , 0x02080898 \ + , 0x06040800 \ + , 0xdc2619b8 \ + , 0xf0405360 \ + , 0xb83f003d \ + , 0xebcb0000 \ + , 0x101f00a4 \ + , 0xebcb0001 \ + , 0x041b0000 \ + , 0x06061000 \ + , 0xd86741f8 \ + , 0xd8c6f9b8 \ + , 0xca862180 \ + , 0x0201100a \ + , 0xdc280a38 \ + , 0xbc1f000e \ + , 0xdc4140b8 \ + , 0xf4221340 \ + , 0xb01f0006 \ + , 0xebc10040 \ + , 0x6b3ffd00 \ + , 0x55065000 \ + , 0xb3ff002b \ + , 0x100100a5 \ + , 0xf4422301 \ + , 0x100200a5 \ + , 0x71e42500 \ + , 0xb3ff0026 \ + , 0x55065000 \ + , 0x02011008 \ + , 0xdc414338 \ + , 0xf42c6340 \ + , 0xb01f0006 \ + , 0xebc30040 \ + , 0x6b3ffd00 \ + , 0x55065000 \ + , 0xb3ff001d \ + , 0x100300a5 \ + , 0x100c00a5 \ + , 0x06081000 \ + , 0xdc436078 \ + , 0xca01f840 \ + , 0xca882200 \ + , 0xdbcc211d \ + , 0xdbc4217d \ + , 0xf44c2301 \ + , 0xd84a2978 \ + , 0x71e42500 \ + , 0x55065000 \ + , 0x0222100a \ + , 0xb43f000f \ + , 0xdc2208b8 \ + , 0xb41f0007 \ + , 0xf4410b01 \ + , 0xca01f840 \ + , 0x71e10d00 \ + , 0x55082800 \ + , 0xb3ff0008 \ + , 0x100300a5 \ + , 0x000100a5 \ + , 0xf4422301 \ + , 0xd8411078 \ + , 0x100100a5 \ + , 0x71e42500 \ + , 0x55082800 \ + , 0xf04b0300 \ + , 0x9ffff400 \ + , 0xdc20f838 \ + , 0xb03f0004 \ + , 0x06082000 \ + , 0xb3ff0003 \ + , 0xebca0000 \ + , 0x040a2094 \ + , 0x14012094 \ + , 0x0005209a \ + , 0x06061008 \ + , 0xebcb0100 \ + , 0xdc4b2af8 \ + , 0xca0bfac0 \ + , 0xca864180 \ + , 0x02091002 \ + , 0x041b1800 \ + , 0xdc695a38 \ + , 0xb17f000c \ + , 0xd8412b38 \ + , 0xf44b1b01 \ + , 0xca03f8c0 \ + , 0x71e31d00 \ + , 0x55066000 \ + , 0xd86759f8 \ + , 0xd8c6f9b8 \ + , 0x16061008 \ + , 0x12081002 \ + , 0xb3ff000a \ + , 0x101f209a \ + , 0xf4491b01 \ + , 0xca03f8c0 \ + , 0x71e31d00 \ + , 0x55066000 \ + , 0xf0431b01 \ + , 0x121f1002 \ + , 0xd84518b8 \ + , 0x1002209a \ + , 0xdc20f838 \ + , 0xbc3f000c \ + , 0xdc2a0ab8 \ + , 0xb43f000a \ + , 0xccca40a1 \ + , 0xdbc1401d \ + , 0xd9c200b8 \ + , 0xebc00388 \ + , 0x7c03f905 \ + , 0xf0400908 \ + , 0xdbc3603d \ + , 0xd8410038 \ + , 0x73620300 \ + , 0x9ffff400 \ + , 0x04040808 \ + , 0xdc20f838 \ + , 0xf0413ba0 \ + , 0xb03f0013 \ + , 0xe3c58000 \ + , 0xccc04061 \ + , 0xdbc0401d \ + , 0xd9c100f8 \ + , 0xebc00388 \ + , 0x7c06f905 \ + , 0xf0400908 \ + , 0xdbc6603d \ + , 0xd8410038 \ + , 0x73630300 \ + , 0x02011098 \ + , 0x02002008 \ + , 0xf0410b10 \ + , 0xdc210078 \ + , 0xbc3f0003 \ + , 0xb3ff0003 \ + , 0x121f200c \ + , 0x1201200c \ + , 0x04813800 \ + , 0xb7dfffff \ + , 0x04201090 \ + , 0xb43f0009 \ + , 0x14813800 \ + , 0x7c01f801 \ + , 0xdbc0c01d \ + , 0x77000001 \ + , 0x73e52901 \ + , 0x263f003c \ + , 0xb3ff0003 \ + , 0x77010801 \ + , 0x14803800 \ + , 0x9ffff400 \ + , 0x0618d000 \ + , 0xccda40e1 \ + , 0xdbda409d \ + , 0xd9c31138 \ + , 0x0400d010 \ + , 0xf05a0b00 \ + , 0xe3c58000 \ + , 0xebc20388 \ + , 0x7c06f905 \ + , 0xf0421908 \ + , 0xdbc660bd \ + , 0xd84310b8 \ + , 0x73641300 \ + , 0x7c02f801 \ + , 0xebc33000 \ + , 0xe1c3000c \ + , 0xdbc2c13d \ + , 0xd9c4d0b8 \ + , 0x048600a0 \ + , 0xb7dfffff \ + , 0xdc26f9b8 \ + , 0xbc3f0006 \ + , 0x141fd090 \ + , 0x148200a0 \ + , 0xf1c41303 \ + , 0xb3ff000c \ + , 0x73621b00 \ + , 0x141fd090 \ + , 0x14023090 \ + , 0x148200a0 \ + , 0xebc00203 \ + , 0xd9c40038 \ + , 0x73601b00 \ + , 0x77631b00 \ + , 0x7800fb00 \ + , 0x281ff800 \ + , 0xffffffff \ + , 0x73e52901 \ + , 0x04020008 \ + , 0x0203100a \ + , 0x0204100c \ + , 0xdc6320f8 \ + , 0xb43f0003 \ + , 0x04030000 \ + , 0xbd030003 \ + , 0x2e3f000a \ + , 0xffffffff \ + , 0xa3ffff36 \ + , 0x1204d098 \ + , 0xdc20f838 \ + , 0xb43f0003 \ + , 0x2e3f002a \ + , 0xffffffff \ + , 0xa7ff0028 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x0401d010 \ + , 0xebc90274 \ + , 0xf05a4300 \ + , 0xe1c900d0 \ + , 0x04020808 \ + , 0x7c03f801 \ + , 0xebc03000 \ + , 0xe1c0000c \ + , 0xdbc3c0fd \ + , 0xf1c31a01 \ + , 0x73630300 \ + , 0x04000800 \ + , 0xbd000009 \ + , 0xf0481300 \ + , 0xa3ffff96 \ + , 0xebc00000 \ + , 0x161f4000 \ + , 0xf0484308 \ + , 0x161f4000 \ + , 0x2c3f4800 \ + , 0xffffffff \ + , 0x0200100a \ + , 0x0203100c \ + , 0xdc601838 \ + , 0xbc3f0003 \ + , 0x2e3fffe6 \ + , 0xffffffff \ + , 0xf0410300 \ + , 0xf0480b00 \ + , 0xa3ffff10 \ + , 0x1203d098 \ + , 0xdc20f838 \ + , 0xb43f0003 \ + , 0x2e3f0004 \ + , 0xffffffff \ + , 0xa7ff0002 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x040ed010 \ + , 0xebc00380 \ + , 0xf04e1360 \ + , 0x7c03f905 \ + , 0xf0400908 \ + , 0xdbc3603d \ + , 0xd8410038 \ + , 0x77600300 \ + , 0x780dfb00 \ + , 0xbc0d0003 \ + , 0x2e3ffff5 \ + , 0xffffffff \ + , 0x000070a4 \ + , 0xf04d0b00 \ + , 0xf04e1b00 \ + , 0xdbc02015 \ + , 0xdbc0203d \ + , 0xd84203f8 \ + , 0x02007802 \ + , 0xf04f1300 \ + , 0xf05a2300 \ + , 0x1400d008 \ + , 0xebc00001 \ + , 0xa3ffff35 \ + , 0x101fd09a \ + , 0x776d6903 \ + , 0xebc00380 \ + , 0xb3ff0010 \ + , 0xf0408908 \ + , 0x7c00f905 \ + , 0xdbc0603d \ + , 0xd8510038 \ + , 0x77600300 \ + , 0x780dfb00 \ + , 0xbc0d0003 \ + , 0x2e3f0018 \ + , 0xffffffff \ + , 0xf04d0b00 \ + , 0xf04f1300 \ + , 0xf04e1b00 \ + , 0xf05a2300 \ + , 0xa3ffff23 \ + , 0xebc00000 \ + , 0x02207802 \ + , 0xbc3ffff1 \ + , 0x02007800 \ + , 0xf5400280 \ + , 0x1200d09c \ + , 0x000070a4 \ + , 0xf0400310 \ + , 0x100070a4 \ + , 0x02007800 \ + , 0xbe800005 \ + , 0xf04d0300 \ + , 0xf04e0b00 \ + , 0xa3ffff47 \ + , 0xf05a1300 \ + , 0x2e3f0033 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x040ed010 \ + , 0x000070a4 \ + , 0xf04e0b60 \ + , 0xdbc02015 \ + , 0xdbc0203d \ + , 0xd84103f8 \ + , 0xebc00380 \ + , 0xf0408908 \ + , 0x0020d09a \ + , 0xb43f0009 \ + , 0x040dd094 \ + , 0xf04f1300 \ + , 0xf04e1b00 \ + , 0xf04d0b00 \ + , 0xf05a2300 \ + , 0xa3ffff01 \ + , 0xebc00000 \ + , 0xb7ff000f \ + , 0x7c00f905 \ + , 0xdbc0603d \ + , 0xd8510038 \ + , 0x77600300 \ + , 0x780dfb00 \ + , 0xbc0d0003 \ + , 0x2e3fffe7 \ + , 0xffffffff \ + , 0xf04d0b00 \ + , 0xf04f1300 \ + , 0xf04e1b00 \ + , 0xf05a2300 \ + , 0xa3fffef2 \ + , 0xebc00000 \ + , 0x02207802 \ + , 0xbc3fffe7 \ + , 0x02007800 \ + , 0xf5400280 \ + , 0x1200d09c \ + , 0x000070a4 \ + , 0xf0400310 \ + , 0x100070a4 \ + , 0x02007800 \ + , 0xbe800005 \ + , 0xf04d0300 \ + , 0xf04e0b00 \ + , 0xa3ffff16 \ + , 0xf05a1300 \ + , 0x2e3f0002 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x0400d010 \ + , 0xebc900d0 \ + , 0x0208d098 \ + , 0x04020008 \ + , 0x0606d000 \ + , 0xf05a0b00 \ + , 0x06041000 \ + , 0xd8654178 \ + , 0xe1c900d0 \ + , 0xd8c4f938 \ + , 0xca843100 \ + , 0x041b0000 \ + , 0x5224089c \ + , 0x0203089c \ + , 0xbe830004 \ + , 0x141f080c \ + , 0x2c3f4800 \ + , 0xffffffff \ + , 0x02031008 \ + , 0xf0482310 \ + , 0xdc241938 \ + , 0xbc3f0003 \ + , 0xb3ff0003 \ + , 0x121f0898 \ + , 0x12040898 \ + , 0xa7fffe81 \ + , 0xffffffff \ + , 0xdc20f838 \ + , 0xb43f0003 \ + , 0x2e3f0004 \ + , 0xffffffff \ + , 0xa7ff0002 \ + , 0xffffffff \ + , 0x0402d010 \ + , 0x0401d008 \ + , 0x000010a4 \ + , 0xf0421360 \ + , 0xf540030f \ + , 0xd8420038 \ + , 0x02000002 \ + , 0xd8410038 \ + , 0xa3ffffa5 \ + , 0x1400d008 \ + , 0x04030804 \ + , 0x04020808 \ + , 0xebc6000f \ + , 0x0484180c \ + , 0xb7dfffff \ + , 0x14040808 \ + , 0xd9c410b8 \ + , 0x1482180c \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0x55220800 \ + , 0xe3c00054 \ + , 0x2c3f0000 \ + , 0xffffffff \ + , 0x04030808 \ + , 0xb603001b \ + , 0xebc20200 \ + , 0xcf0310c5 \ + , 0xe1c2000c \ + , 0xd84310b8 \ + , 0x77621300 \ + , 0x7804fb00 \ + , 0xb4040005 \ + , 0xebc20200 \ + , 0xe1c2000c \ + , 0x77621300 \ + , 0x7804fb00 \ + , 0x04060804 \ + , 0xcf848081 \ + , 0xcb02f8c0 \ + , 0xebc200ff \ + , 0xdbc218fc \ + , 0xcf068081 \ + , 0xcb04f940 \ + , 0xcb03f900 \ + , 0xcb02f880 \ + , 0xd94428f8 \ + , 0xdd4220b8 \ + , 0xd9c310b8 \ + , 0xcb02f880 \ + , 0xf9023420 \ + , 0x14060804 \ + , 0x04040804 \ + , 0xebc20090 \ + , 0xb8240021 \ + , 0xe1c2000c \ + , 0xebc3008c \ + , 0xe1c3000c \ + , 0x73641b00 \ + , 0xb3ff0009 \ + , 0xebc40000 \ + , 0x77621300 \ + , 0x7805fb00 \ + , 0xdbc410fd \ + , 0xd84118f8 \ + , 0x14051810 \ + , 0xf0421304 \ + , 0xf0442301 \ + , 0xf4242310 \ + , 0xb57ffff8 \ + , 0xebc6004f \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff002a \ + , 0x55220800 \ + , 0xebc6008c \ + , 0xce040141 \ + , 0xe1c6000c \ + , 0xb3ff000f \ + , 0xebc70000 \ + , 0xdb5f293d \ + , 0xebc3001f \ + , 0xdc4320f8 \ + , 0xcb03f8c0 \ + , 0xdb451978 \ + , 0xdbc710fd \ + , 0xd84118f8 \ + , 0xf4442310 \ + , 0xdbc4113d \ + , 0x04031810 \ + , 0xd8422138 \ + , 0x73632300 \ + , 0xf0473b01 \ + , 0xdc25f978 \ + , 0xbc3ffff2 \ + , 0x04020804 \ + , 0x73623300 \ + , 0x04020808 \ + , 0xb6020011 \ + , 0xebc60007 \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0x55220800 \ + , 0x9ffff400 \ + , 0x04040804 \ + , 0xebc31100 \ + , 0xf1441003 \ + , 0xdbe2c09d \ + , 0xb83f0069 \ + , 0xe1c3000c \ + , 0xbc240036 \ + , 0xebc211fc \ + , 0xe1c2000c \ + , 0x73641300 \ + , 0x77621300 \ + , 0x7802fb00 \ + , 0xbc420014 \ + , 0xf1c41020 \ + , 0x14020804 \ + , 0xebc60007 \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff00c0 \ + , 0x55220800 \ + , 0xb3ff0009 \ + , 0xebc20000 \ + , 0x77631b00 \ + , 0x7805fb00 \ + , 0xdbc2113d \ + , 0xd8412138 \ + , 0x14052010 \ + , 0xf0431b04 \ + , 0xf0421301 \ + , 0xf4221315 \ + , 0xb57ffff8 \ + , 0xebc60063 \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff00a4 \ + , 0x55220800 \ + , 0xebc211fc \ + , 0xf1c41840 \ + , 0xe1c2000c \ + , 0x73631300 \ + , 0x04060808 \ + , 0xb3ff0010 \ + , 0xebc20000 \ + , 0xdb5f317d \ + , 0xebc3001f \ + , 0xdc4328f8 \ + , 0xcb03f8c0 \ + , 0xdb4619b8 \ + , 0xdbc210fd \ + , 0xd8411938 \ + , 0xebc31100 \ + , 0x04042010 \ + , 0xdbc5117d \ + , 0xe1c3000c \ + , 0xd84518f8 \ + , 0x73641b00 \ + , 0xf0421301 \ + , 0xdc26f9b8 \ + , 0xbc3ffff1 \ + , 0x04030804 \ + , 0xebc211fc \ + , 0xe1c2000c \ + , 0x73631300 \ + , 0x77621300 \ + , 0x7802fb00 \ + , 0xbc420085 \ + , 0xf1c31020 \ + , 0x14020804 \ + , 0xebc60007 \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff0073 \ + , 0x55220800 \ + , 0xf4221301 \ + , 0xbc3f0038 \ + , 0xbc240020 \ + , 0xebc211fc \ + , 0xe1c2000c \ + , 0x73641300 \ + , 0xb3ff0009 \ + , 0xebc20000 \ + , 0x77631b00 \ + , 0x7805fb00 \ + , 0xdbc2113d \ + , 0xd8412138 \ + , 0x14052010 \ + , 0xf0431b04 \ + , 0xf0421301 \ + , 0xf4221308 \ + , 0xb57ffff8 \ + , 0xebc6002f \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff0051 \ + , 0x55220800 \ + , 0xebc511fc \ + , 0xf14422ff \ + , 0xe1c5000c \ + , 0xb3ff000f \ + , 0xebc60000 \ + , 0xdb5f20bd \ + , 0xebc0001f \ + , 0xdc401038 \ + , 0xcb00f800 \ + , 0xdb440138 \ + , 0xdbc6103d \ + , 0xd8410038 \ + , 0xf4421310 \ + , 0xdbc210bd \ + , 0x04000010 \ + , 0xd84310b8 \ + , 0x73601300 \ + , 0xf0463301 \ + , 0xdc24f938 \ + , 0xbc3ffff2 \ + , 0x04000804 \ + , 0xb3ff003a \ + , 0x73602b00 \ + , 0xf4221302 \ + , 0xbc3f0037 \ + , 0xbc240020 \ + , 0xebc211fc \ + , 0xe1c2000c \ + , 0x73641300 \ + , 0xb3ff0009 \ + , 0xebc20000 \ + , 0x77631b00 \ + , 0x7805fb00 \ + , 0xdbc2113d \ + , 0xd8412138 \ + , 0x14052010 \ + , 0xf0431b04 \ + , 0xf0421301 \ + , 0xf4221302 \ + , 0xb57ffff8 \ + , 0xebc60017 \ + , 0x041b0800 \ + , 0xf4263307 \ + , 0xb43f0006 \ + , 0x04040008 \ + , 0xf0461b01 \ + , 0xcc0400a9 \ + , 0xd9c218b8 \ + , 0x14020008 \ + , 0x04020008 \ + , 0x06040000 \ + , 0xcee26001 \ + , 0xd86500f8 \ + , 0xd8c4f8b8 \ + , 0x71e63500 \ + , 0xb3ff0018 \ + , 0x55220800 \ + , 0xebc511fc \ + , 0xf14422ff \ + , 0xe1c5000c \ + , 0xb3ff000f \ + , 0xebc60000 \ + , 0xdb5f20bd \ + , 0xebc0001f \ + , 0xdc401038 \ + , 0xcb00f800 \ + , 0xdb440138 \ + , 0xdbc6103d \ + , 0xd8410038 \ + , 0xf4421310 \ + , 0xdbc210bd \ + , 0x04000010 \ + , 0xd84310b8 \ + , 0x73601300 \ + , 0xf0463301 \ + , 0xdc24f938 \ + , 0xbc3ffff2 \ + , 0x04000804 \ + , 0x73602b00 \ + , 0x9ffff400 \ + , 0xe3c00054 \ + , 0x2c3f0000 \ + , 0xffffffff \ + , 0xebc00001 \ + , 0x70e00101 \ + , 0x2e3ffffb \ + , 0xffffffff \ + , 0x0618d000 \ + , 0xec590008 \ + , 0x0401e004 \ + , 0x0400e008 \ + , 0x06020808 \ + , 0x16020008 \ + , 0x06020800 \ + , 0xa3fffff5 \ + , 0x16020000 \ + , 0x04020008 \ + , 0x04010004 \ + , 0xebc00001 \ + , 0x14011000 \ + , 0x70e00101 \ + , 0x2e3ffff2 \ + , 0xffffffff \ + , 0x0618d000 \ + , 0x0003e003 \ + , 0xf05a0300 \ + , 0xec230005 \ + , 0xb81f001b \ + , 0xf05c0b00 \ + , 0x97430001 \ + , 0xb7ff000a \ + , 0xffffffff \ + , 0xb7ff000b \ + , 0xffffffff \ + , 0xb7ff000c \ + , 0xffffffff \ + , 0xb3ff000d \ + , 0xf0410300 \ + , 0xb7ff000e \ + , 0xffffffff \ + , 0xa7fffe91 \ + , 0xffffffff \ + , 0xb7ff000c \ + , 0xa7fffef6 \ + , 0xffffffff \ + , 0xb7ff0009 \ + , 0xa7ffffd5 \ + , 0xffffffff \ + , 0xb7ff0006 \ + , 0xa7ffffdf \ + , 0xffffffff \ + , 0xb7ff0003 \ + , 0xa7fffe6b \ + , 0xffffffff \ + , 0xe3c00054 \ + , 0x2c3f0000 \ + , 0xffffffff \ + , 0xebc23070 \ + , 0xe1c2000c \ + , 0x77621300 \ + , 0x7803fb00 \ + , 0x77631903 \ + , 0xebc106a7 \ + , 0xebc00018 \ + , 0xe9c10000 \ + , 0xe1c0000b \ + , 0x73610300 \ + , 0xebc00200 \ + , 0xe1c0000b \ + , 0xe3c18000 \ + , 0x73610300 \ + , 0xebc00204 \ + , 0xe1c0000b \ + , 0x737f0300 \ + , 0xebc102c0 \ + , 0xebc00028 \ + , 0xe1c10050 \ + , 0xe1c0000b \ + , 0x73610300 \ + , 0xf5430080 \ + , 0x73601300 \ + , 0xebc10008 \ + , 0xe1c1000f \ + , 0x77610b00 \ + , 0x7800fb00 \ + , 0xf1c00214 \ + , 0x73600b00 \ + , 0xe3c18100 \ + , 0xe3c0000b \ + , 0x73610300 \ + , 0xc6000673 \ + , 0x2c3ff000 \ + , 0xffffffff \ + , 0xebc20204 \ + , 0xe1c2000b \ + , 0x77621300 \ + , 0x7801fb00 \ + , 0xec21001f \ + , 0xb41f002d \ + , 0xe3c10100 \ + , 0xe3c0000b \ + , 0x73610300 \ + , 0xebc00004 \ + , 0xe1c0000b \ + , 0x77600300 \ + , 0x7800fb00 \ + , 0xb4000025 \ + , 0x77621300 \ + , 0x7801fb00 \ + , 0xebc00084 \ + , 0xe1c0000f \ + , 0x77600300 \ + , 0x7800fb00 \ + , 0xdc210078 \ + , 0xbc3f001d \ + , 0xebc0008c \ + , 0xe1c0000f \ + , 0x77600300 \ + , 0x7800fb00 \ + , 0xdc210078 \ + , 0xbc3f0017 \ + , 0xebc00064 \ + , 0xe1c0000f \ + , 0xefc10000 \ + , 0x73610300 \ + , 0xebc10008 \ + , 0xe1c1000f \ + , 0x77610b00 \ + , 0x7800fb00 \ + , 0xf1c00204 \ + , 0xf5400210 \ + , 0x73600b00 \ + , 0xebc03070 \ + , 0xe1c0000c \ + , 0x737c0300 \ + , 0xebc00200 \ + , 0xe1c0000b \ + , 0x737f0300 \ + , 0xe3c00040 \ + , 0xc60c3074 \ + , 0x7360f300 \ + , 0x281ff800 \ + , 0xffffffff \ + , 0x283ff800 \ + , 0xffffffff \ + , 0xebc00388 \ + , 0xdbda409d \ + , 0xdbda407d \ + , 0xd9c20878 \ + , 0xe1c0000b \ + , 0xf05a1300 \ + , 0x73610300 \ + , 0x777ad103 \ + , 0xb3ff0006 \ + , 0xebc10000 \ + , 0xdbc1103d \ + , 0xd8420038 \ + , 0x141f0000 \ + , 0xf0410b01 \ + , 0xf4210b40 \ + , 0xb57ffffb \ + , 0xebc00100 \ + , 0x14001008 \ + , 0x141f100c \ + , 0xc6500010 \ + , 0x2c3ff000 \ + , 0xffffffff \ + , 0xb3ff0003 \ + , 0xebc30000 \ + , 0x7803f900 \ + , 0xbc03ffff \ + , 0xebc13000 \ + , 0xdbc3c0bd \ + , 0xebc00203 \ + , 0xd9c20038 \ + , 0xe1c1000c \ + , 0x73600b00 \ + , 0xebc23078 \ + , 0xe1c2000c \ + , 0x77621300 \ + , 0x7801fb00 \ + , 0xdbc3803d \ + , 0xf54109ff \ + , 0xd9c10038 \ + , 0x73601300 \ + , 0x7c00f801 \ + , 0x77031801 \ + , 0x261fff7e \ + , 0x77600001 \ + , 0x9ffff400 \ +} + +#define P3041_R1_0_UC_IMG_INFO \ + "U-code image for CC_HC_IM for P3041_r1.0. Image ID is: rel_101_8 \r\n" \ + "\r\n" + +#endif /* __ALL_IMG_P3041_R1_0_H */ Property changes on: head/sys/contrib/ncsw/integrations/fman_ctrl_code/p3041_r1.0.h ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sys/contrib/ncsw/integrations/fman_ucode.h =================================================================== --- head/sys/contrib/ncsw/integrations/fman_ucode.h (revision 302340) +++ head/sys/contrib/ncsw/integrations/fman_ucode.h (revision 302341) @@ -1,48 +1,48 @@ /*- * Copyright (c) 2012 Semihalf. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifndef FMAN_UCODE_H_ #define FMAN_UCODE_H_ /** * @file * Wrapper header for FMan uCode. * * We intentionally use the same uCode from p3041_r1.0.h file as all platforms * we're currently supporting uses the same version of uCode marked rel_101_8. */ /** * Header with actual uCode rel_101_8. */ -#include "P3041/fman_ctrl_code/p3041_r1.0.h" +#include "fman_ctrl_code/p3041_r1.0.h" /** * Generic macro. */ #define FMAN_UC_IMG P3041_R1_0_UC_IMG #endif /* FMAN_UCODE_H_ */ Index: head/sys/powerpc/conf/dpaa/config.p2041 =================================================================== --- head/sys/powerpc/conf/dpaa/config.p2041 (revision 302340) +++ head/sys/powerpc/conf/dpaa/config.p2041 (nonexistent) @@ -1,11 +0,0 @@ -# $FreeBSD$ - -files "dpaa/files.dpaa" -files "dpaa/files.p2041" - -include "dpaa/config.dpaa" - -makeoptions DPAA_COMPILE_CMD="${DPAA_COMPILE_CMD_COMMON} \ - -I$S/contrib/ncsw/inc/integrations/P2041" - -device dpaa Property changes on: head/sys/powerpc/conf/dpaa/config.p2041 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/config.p3041 =================================================================== --- head/sys/powerpc/conf/dpaa/config.p3041 (revision 302340) +++ head/sys/powerpc/conf/dpaa/config.p3041 (nonexistent) @@ -1,11 +0,0 @@ -# $FreeBSD$ - -files "dpaa/files.dpaa" -files "dpaa/files.p3041" - -include "dpaa/config.dpaa" - -makeoptions DPAA_COMPILE_CMD="${DPAA_COMPILE_CMD_COMMON} \ - -I$S/contrib/ncsw/inc/integrations/P3041" - -device dpaa Property changes on: head/sys/powerpc/conf/dpaa/config.p3041 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/config.p5020 =================================================================== --- head/sys/powerpc/conf/dpaa/config.p5020 (revision 302340) +++ head/sys/powerpc/conf/dpaa/config.p5020 (nonexistent) @@ -1,11 +0,0 @@ -# $FreeBSD$ - -files "dpaa/files.dpaa" -files "dpaa/files.p5020" - -include "dpaa/config.dpaa" - -makeoptions DPAA_COMPILE_CMD="${DPAA_COMPILE_CMD_COMMON} \ - -I$S/contrib/ncsw/inc/integrations/P5020" - -device dpaa Property changes on: head/sys/powerpc/conf/dpaa/config.p5020 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/files.p5020 =================================================================== --- head/sys/powerpc/conf/dpaa/files.p5020 (revision 302340) +++ head/sys/powerpc/conf/dpaa/files.p5020 (nonexistent) @@ -1,3 +0,0 @@ -# $FreeBSD$ - -contrib/ncsw/integrations/P5020/module_strings.c optional dpaa Property changes on: head/sys/powerpc/conf/dpaa/files.p5020 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/files.p2041 =================================================================== --- head/sys/powerpc/conf/dpaa/files.p2041 (revision 302340) +++ head/sys/powerpc/conf/dpaa/files.p2041 (nonexistent) @@ -1,3 +0,0 @@ -# $FreeBSD$ - -contrib/ncsw/integrations/P2041/module_strings.c optional dpaa Property changes on: head/sys/powerpc/conf/dpaa/files.p2041 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/files.p3041 =================================================================== --- head/sys/powerpc/conf/dpaa/files.p3041 (revision 302340) +++ head/sys/powerpc/conf/dpaa/files.p3041 (nonexistent) @@ -1,3 +0,0 @@ -# $FreeBSD$ - -contrib/ncsw/integrations/P3041/module_strings.c optional dpaa Property changes on: head/sys/powerpc/conf/dpaa/files.p3041 ___________________________________________________________________ Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/sys/powerpc/conf/dpaa/config.dpaa =================================================================== --- head/sys/powerpc/conf/dpaa/config.dpaa (revision 302340) +++ head/sys/powerpc/conf/dpaa/config.dpaa (revision 302341) @@ -1,21 +1,23 @@ # $FreeBSD$ -makeoptions DPAA_COMPILE_CMD_COMMON="${NORMAL_C} \ +files "dpaa/files.dpaa" + +makeoptions DPAA_COMPILE_CMD="${NORMAL_C} \ -Wno-cast-qual -Wno-unused-function -Wno-init-self -fms-extensions \ -include $S/contrib/ncsw/build/dflags.h \ -I$S/contrib/ncsw/build/ \ -I$S/contrib/ncsw/inc \ -I$S/contrib/ncsw/inc/cores \ -I$S/contrib/ncsw/inc/etc \ -I$S/contrib/ncsw/inc/Peripherals \ -I$S/contrib/ncsw/etc \ -I$S/contrib/ncsw/Peripherals/BM \ -I$S/contrib/ncsw/Peripherals/FM \ -I$S/contrib/ncsw/Peripherals/FM/HC \ -I$S/contrib/ncsw/Peripherals/FM/inc \ -I$S/contrib/ncsw/Peripherals/FM/MAC \ -I$S/contrib/ncsw/Peripherals/FM/Pcd \ -I$S/contrib/ncsw/Peripherals/FM/Port \ -I$S/contrib/ncsw/Peripherals/FM/Rtc \ -I$S/contrib/ncsw/Peripherals/QM \ -I$S/contrib/ncsw/inc/integrations"