blob: 146235b21724eec6fb8c0c81da37d82483eed563 [file] [log] [blame]
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2016
*
* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS (""MEDIATEK SOFTWARE"")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
* AN ""AS-IS"" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*************************************************************
*
* This Software is the property of VIA Telecom, Inc. and may only be used pursuant to a license from VIA Telecom, Inc.
*
* Any unauthorized use inconsistent with the terms of such license is strictly prohibited.
*
* Copyright (c) 1999-2010 VIA Telecom, Inc. All rights reserved.
*
*************************************************************/
/****************************************************************************
*
* Filename: channel.h
*
* Purpose: Definition of CHANNEL and supporting routines.
*
****************************************************************************
*
* PVCS Header Information
*
* $Revision: 1.2 $
* $Author: fpeng $
*
* $Log: channel.h $
*
* 07 06 2017 sue.zhong
* [MOLY00259241] [6293][C2K]Replace with KAL data type
* Correct copyright file header
* Revision 1.2 2004/03/25 12:09:20 fpeng
* Updated from 6.0 CP 2.5.0
* Revision 1.1 2003/05/12 15:38:31 fpeng
* Initial revision
* Revision 1.6 2002/07/31 16:54:38 hans
* H and G block added for Other Band Class support (cr474).
* Revision 1.5 2002/06/06 13:11:01 chinh
* Changed and Added Copyright
* Revision 1.4 2002/01/02 10:11:21 AMALA
* Added new system selection changes.
* Revision 1.3 2001/11/20 12:28:03 mclee
* Remove BandClass enum
* Revision 1.2 2001/06/27 18:31:08 hans
* BAND_CLASS_2 and BAND_CLASS_5 defined in BandClass enum.
* Revision 1.1 2001/01/17 10:58:10 plabarbe
* Initial revision
* Revision 1.2 2000/11/13 14:25:13 byang
* IS-2000A Idle Mode and LAC intergration - Initial Release.
* Revision 1.1 2000/10/24 21:11:04Z fpeng
* Initial revision
* Revision 1.3 2000/08/23 22:05:17Z RSATTARI
* Isotel release 2.8 plus LSI applicable IS-95B changes
* Revision 1.8 1999/02/23 00:28:41 mhayduk
* Fixed up the frequency to block function so it accounts for
* non-PCS bands.
*
* Revision 1.7 1998/12/07 21:12:41 mhayduk
* Added routine to check if Analog is supported in requested band.
*
* Revision 1.6 1998/10/20 23:58:23 mhayduk
* Added T53 support.
*
* Revision 1.5 1998/06/08 21:48:25 scotvold
* Updated for Release 0.06
*
* Revision 1.4 1998/05/27 17:16:28 scotvold
* Updated for Release 0.05.
*
* Revision 1.3 1998/03/30 23:26:03 mhayduk
* Release 0.03.
*
* Revision 1.1 1997/11/06 17:49:24 mhayduk
* Initial revision
*
*
****************************************************************************
****************************************************************************/
#ifndef _CHANNEL_H_
#define _CHANNEL_H_ 1
/*****************************************************************************
* Includes
****************************************************************************/
#include "pswnam.h"
#include "cssapi.h"
/*****************************************************************************
* Defines
****************************************************************************/
/*****************************************************************************
* Prototypes
****************************************************************************/
kal_bool cpIsBandChannelValid(SysBandChannelT *bandChannel);
kal_bool cpIsBandSupported(SysCdmaBandT band);
kal_bool cpSupportCDMAChannel(SysBandChannelT *bandChannel);
kal_uint8 cpFrequencyToBlock(SysCdmaBandT band,kal_uint16 frequency);
kal_bool cpIsAnalogSupportedInBand(SysCdmaBandT band);
void cpSetCdmaBandSupported(SysCdmaBandT band, kal_bool supported);
void cpSetNumBandsSupported(kal_uint8 numBands);
kal_uint8 cpGetNumBandsSupported(void);
#endif /*_CHANNEL_H_ */