/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/usr/diag/prdf/common/plat/prdfL3Table.H $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ /* COPYRIGHT International Business Machines Corp. 2004,2014 */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ /* implied. See the License for the specific language governing */ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ #ifndef PRDFL3TABLE_H #define PRDFL3TABLE_H /** @file prdfL3Table.H @brief Description */ //-------------------------------------------------------------------- // Includes //-------------------------------------------------------------------- #include #include #include namespace PRDF { //-------------------------------------------------------------------- // Forward References //-------------------------------------------------------------------- enum l3TableEnum { LineDeleteTableSize = 10, ///< Size of line delete table TableSizeBytes = LineDeleteTableSize*4, // wl01 allFox = 0xffffffff, ///< uint of -1 l3AddressMask = 0x007ffff0 }; /** Add a cache line address to the cache line delete table

    Parameters: L3 target Handle, cacheline address in format from ReadDataErLg2 register
    Returns: 0 = address already in table, 1-LineDeleteTableSize = position added to table, LineDeleteTableSize + 1 = table overflow
    Requirements: preconditions
    Promises: postconditions
    Exceptions: None.
    Notes:

*/ extern int32_t L3TableAdd(TARGETING::TargetHandle_t i_pl3targetHandle, uint32_t address); /** Copies the line delete table to memory address passed in

    Parameters: L3 target Handle, address of int32[10]
    Returns: returns void
    Requirements: preconditions
    Promises: postconditions
    Exceptions: None.
    Notes:

*/ extern void L3TableGet(TARGETING::TargetHandle_t i_pl3targetHandle, uint32_t table[LineDeleteTableSize]); /** Get the count of line deletes in the table

    Parameters: L3 target Handle
    Returns: returns the number of line deletes in the table
    Requirements: preconditions
    Promises: postconditions
    Exceptions: None.
    Notes:

*/ extern int32_t prdfL3TableCount(TARGETING::TargetHandle_t i_pl3targetHandle); /** Makes the call to DA to do the line delete

    Parameters: L3 target Handle, cacheline address in format from ReadDataErLg2 register
    Returns: returns return code from D/a
    Requirements: preconditions
    Promises: postconditions
    Exceptions: None.
    Notes:

*/ extern errlHndl_t prdfL3LineDelete(TARGETING::TargetHandle_t i_pl3targetHandle, uint32_t address); } // end namespace PRDF #endif /* PRDFL3TABLE_H */