blob: a1ed9ca0b784a32634d247ba511404c2a70a203b [file] [log] [blame]
Amol Jadi9f04e7e2013-01-22 12:08:35 -08001/* Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
Ajay Dudani6cff85e2011-02-04 16:02:16 -08002
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
Amol Jadi9f04e7e2013-01-22 12:08:35 -080012 * * Neither the name of The Linux Foundation nor the names of its
Ajay Dudani6cff85e2011-02-04 16:02:16 -080013 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __BASEBAND_H__
30#define __BASEBAND_H__
31
Ajay Dudanib01e5062011-12-03 23:23:42 -080032enum baseband {
33 BASEBAND_MSM = 0,
34 BASEBAND_APQ = 1,
35 BASEBAND_CSFB = 2,
36 BASEBAND_SVLTE1 = 3,
37 BASEBAND_SVLTE2A = 4,
38 BASEBAND_MDM = 5,
Amol Jadi5c61a952012-05-04 17:05:35 -070039 BASEBAND_SGLTE = 6,
Channagoud Kadabi141f2982012-10-31 11:23:02 +053040 BASEBAND_DSDA = 7,
Amol Jadi9f04e7e2013-01-22 12:08:35 -080041 BASEBAND_DSDA2 = 8,
sundarajan srinivasan73d8df32013-02-28 17:03:27 -080042 BASEBAND_SGLTE2 = 9,
Sundarajan Srinivasanaaa8aff2013-11-12 17:19:14 -080043 BASEBAND_MDM2 = 10,
Vijay Kumar Pendotib228cfc2016-06-13 20:15:23 +053044 BASEBAND_APQ_NOWGR = 11,
Ajay Dudanib01e5062011-12-03 23:23:42 -080045 BASEBAND_32BITS = 0x7FFFFFFF
Ajay Dudani6cff85e2011-02-04 16:02:16 -080046};
47
48#endif