dahdi-linux/drivers/dahdi/oct612x/include/octosdependant.h
Shaun Ruffell bf3fe05dfb wct4xxp: Moving the transmit short detection behind debug module param.
This needs some more testing before it's on by default.  If the card is
otherwise functioning, these messages may be confusing to the user.  If
the card is not functioning, the driver can be reloaded with debug to
check for this condition.

Signed-off-by: Shaun Ruffell <sruffell@digium.com>

git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9205 a0bf4364-ded3-4de4-8d8a-66a801d63aff
2010-08-27 21:59:27 +00:00

171 lines
4.6 KiB
C

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\
File: octosdependant.h
Copyright (c) 2001-2007 Octasic Inc.
Description:
This file is included to set target-specific constants.
This file is part of the Octasic OCT6100 GPL API . The OCT6100 GPL API is
free software; you can redistribute it and/or modify it under the terms of
the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
The OCT6100 GPL API is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with the OCT6100 GPL API; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
$Octasic_Release: OCT612xAPI-01.00-PR49 $
$Octasic_Revision: 18 $
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#ifndef __OCTOSDEPENDANT_H__
#define __OCTOSDEPENDANT_H__
/*--------------------------------------------------------------------------
C language
----------------------------------------------------------------------------*/
#ifdef __cplusplus
extern "C" {
#endif
/*****************************************************************************
Known define values
MSDEV:
WIN32 == WINDOWS 32 bit app
__WIN32__ == WINDOWS 32 bit app
_Windows == WINDOWS 16 bit app
_WINDOWS == Windows application .. not console
_DLL == Dll Application
_CONSOLE == Console Application .. no windows
BORLANDC
__TURBOC__ == Turbo Compiler
__BORLANDC__ == Borland compiler
__OS2__ == Borland OS2 compiler
_Windows == Windows 16 bit app
GCC Compiler
__GNUC__ == GCC Compiler
__unix__ == Unix system
__vax__ == Unix system
unix == Unix system
vax == vax system
TORNADO
_VXWORKS_ == VXWORK
ECOS/CYGWIN
_ECOS_ == eCos
SOLARIS
_SOLARIS_ == Solaris
*****************************************************************************/
/* Machine endian type */
#define OCT_MACH_LITTLE_ENDIAN 1
#define OCT_MACH_BIG_ENDIAN 2
/* Try to find current OCT_MACH_ENDIAN from compiler define values */
#if !defined( MACH_TYPE_BIG_ENDIAN ) && !defined( MACH_TYPE_LITTLE_ENDIAN )
/* Does GNU defines the endian ? */
#if defined(__GNU_C__)
#if defined(_BIG_ENDIAN) || defined(__BIG_ENDIAN__)
#define OCT_MACH_ENDIAN OCT_MACH_BIG_ENDIAN
#elif defined(_LITTLE_ENDIAN) || defined(__LITTLE_ENDIAN__)
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
#endif
#endif
/* Try with cpu type */
#if !defined(OCT_MACH_ENDIAN)
/* Look for intel */
#if defined( _M_IX86 )
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
/* Look for PowerPC */
#elif defined( _M_MPPC ) || defined( _M_PPC ) || defined(PPC) || defined(__PPC) || defined(_ARCH_PPC)
#define OCT_MACH_ENDIAN OCT_MACH_BIG_ENDIAN
/* Look for Blackfin */
#elif defined( __bfin__ )
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
#elif defined( CPU )
#if CPU==PPC860 || CPU==SIMNT
#define OCT_MACH_ENDIAN OCT_MACH_BIG_ENDIAN
#else
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
#endif
#else
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
#endif
#endif
#else
#if defined( MACH_TYPE_BIG_ENDIAN )
#define OCT_MACH_ENDIAN OCT_MACH_BIG_ENDIAN
#else
#define OCT_MACH_ENDIAN OCT_MACH_LITTLE_ENDIAN
#endif
#endif
/* Find system type if not already defined */
#if !defined( OCT_NTDRVENV ) && !defined( OCT_VXENV ) && !defined( OCT_WINENV )
#if defined( WIN32 ) || defined( __WIN32__ ) || defined( _WIN32_ ) || defined( WIN32S )
/* Verif if building a win32 driver */
#if ( defined( WIN32 ) && WIN32==100 )
#define OCT_NTDRVENV
#else
#define OCT_WINENV
#endif
#elif defined( _VXWORKS_ )
#define OCT_VXENV
#elif defined( _ECOS_ )
#ifndef OCT_ECOSENV
#define OCT_ECOSENV
#endif /* OCT_ECOSENV */
#elif defined( _SOLARIS_ )
#define OCT_SOLARISENV
#elif defined( _LINUX_ )
#define OCT_LINUXENV
#else
/* Unknown environment */
#define OCT_UNKNOWNENV
#endif /* WIN env */
#endif /* Already defined */
#if defined( __KERNEL__ ) && defined( OCT_LINUXENV )
#define OCT_LINUXDRVENV
#endif
#ifdef _DEBUG
#define OCT_OPT_USER_DEBUG
#endif
/*--------------------------------------------------------------------------
C language
----------------------------------------------------------------------------*/
#ifdef __cplusplus
}
#endif
#endif /* __OCTOSDEPENDANT_H__ */