xref: /freebsd/sys/contrib/ncsw/inc/integrations/part_ext.h (revision 91ebf7d76582a73ac4c0a32964e4d3912010671e)
10aeed3e9SJustin Hibbits /* Copyright (c) 2008-2011 Freescale Semiconductor, Inc.
20aeed3e9SJustin Hibbits  * All rights reserved.
30aeed3e9SJustin Hibbits  *
40aeed3e9SJustin Hibbits  * Redistribution and use in source and binary forms, with or without
50aeed3e9SJustin Hibbits  * modification, are permitted provided that the following conditions are met:
60aeed3e9SJustin Hibbits  *     * Redistributions of source code must retain the above copyright
70aeed3e9SJustin Hibbits  *       notice, this list of conditions and the following disclaimer.
80aeed3e9SJustin Hibbits  *     * Redistributions in binary form must reproduce the above copyright
90aeed3e9SJustin Hibbits  *       notice, this list of conditions and the following disclaimer in the
100aeed3e9SJustin Hibbits  *       documentation and/or other materials provided with the distribution.
110aeed3e9SJustin Hibbits  *     * Neither the name of Freescale Semiconductor nor the
120aeed3e9SJustin Hibbits  *       names of its contributors may be used to endorse or promote products
130aeed3e9SJustin Hibbits  *       derived from this software without specific prior written permission.
140aeed3e9SJustin Hibbits  *
150aeed3e9SJustin Hibbits  *
160aeed3e9SJustin Hibbits  * ALTERNATIVELY, this software may be distributed under the terms of the
170aeed3e9SJustin Hibbits  * GNU General Public License ("GPL") as published by the Free Software
180aeed3e9SJustin Hibbits  * Foundation, either version 2 of that License or (at your option) any
190aeed3e9SJustin Hibbits  * later version.
200aeed3e9SJustin Hibbits  *
210aeed3e9SJustin Hibbits  * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
220aeed3e9SJustin Hibbits  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
230aeed3e9SJustin Hibbits  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
240aeed3e9SJustin Hibbits  * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
250aeed3e9SJustin Hibbits  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
260aeed3e9SJustin Hibbits  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
270aeed3e9SJustin Hibbits  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
280aeed3e9SJustin Hibbits  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
290aeed3e9SJustin Hibbits  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
300aeed3e9SJustin Hibbits  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
310aeed3e9SJustin Hibbits  */
320aeed3e9SJustin Hibbits 
330aeed3e9SJustin Hibbits /**************************************************************************//**
340aeed3e9SJustin Hibbits 
350aeed3e9SJustin Hibbits  @File          part_ext.h
360aeed3e9SJustin Hibbits 
370aeed3e9SJustin Hibbits  @Description   Definitions for the part (integration) module.
380aeed3e9SJustin Hibbits *//***************************************************************************/
390aeed3e9SJustin Hibbits 
400aeed3e9SJustin Hibbits #ifndef __PART_EXT_H
410aeed3e9SJustin Hibbits #define __PART_EXT_H
420aeed3e9SJustin Hibbits 
430aeed3e9SJustin Hibbits #include "std_ext.h"
44*91ebf7d7SJustin Hibbits #include "enet_ext.h"
45*91ebf7d7SJustin Hibbits #include "dpaa_integration_ext.h"
460aeed3e9SJustin Hibbits 
47*91ebf7d7SJustin Hibbits #define CORE_E500MC
480aeed3e9SJustin Hibbits 
49*91ebf7d7SJustin Hibbits /*****************************************************************************
50*91ebf7d7SJustin Hibbits  INTEGRATION-SPECIFIC MODULE CODES
51*91ebf7d7SJustin Hibbits ******************************************************************************/
52*91ebf7d7SJustin Hibbits #define MODULE_MEM              0x00010000
53*91ebf7d7SJustin Hibbits #define MODULE_MM               0x00020000
54*91ebf7d7SJustin Hibbits #define MODULE_QM               0x000d0000
55*91ebf7d7SJustin Hibbits #define MODULE_BM               0x000e0000
56*91ebf7d7SJustin Hibbits #define MODULE_FM               0x00130000
57*91ebf7d7SJustin Hibbits #define MODULE_FM_MURAM         0x00140000
58*91ebf7d7SJustin Hibbits #define MODULE_FM_PCD           0x00150000
59*91ebf7d7SJustin Hibbits #define MODULE_FM_RTC           0x00160000
60*91ebf7d7SJustin Hibbits #define MODULE_FM_MAC           0x00170000
61*91ebf7d7SJustin Hibbits #define MODULE_FM_PORT          0x00180000
620aeed3e9SJustin Hibbits 
630aeed3e9SJustin Hibbits /**************************************************************************//*
640aeed3e9SJustin Hibbits  @Description   Part data structure - must be contained in any integration
650aeed3e9SJustin Hibbits                 data structure.
660aeed3e9SJustin Hibbits *//***************************************************************************/
670aeed3e9SJustin Hibbits typedef struct t_Part
680aeed3e9SJustin Hibbits {
690aeed3e9SJustin Hibbits } t_Part;
700aeed3e9SJustin Hibbits 
710aeed3e9SJustin Hibbits 
720aeed3e9SJustin Hibbits #endif /* __PART_EXT_H */
73