blob: 6441a18c6b3238a15e65d6e0c63e1de01b7e4123 [file] [log] [blame]
Matt Wagantall11afeee2012-02-07 18:38:59 -08001/* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved.
Stephen Boyde44ec392011-08-29 12:03:24 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#ifndef __MSM_SCM_PAS_H
13#define __MSM_SCM_PAS_H
14
15enum pas_id {
16 PAS_MODEM,
17 PAS_Q6,
18 PAS_DSPS,
Stephen Boydd89eebe2011-09-28 23:28:11 -070019 PAS_TZAPPS,
Stephen Boyde44ec392011-08-29 12:03:24 -070020 PAS_MODEM_SW,
21 PAS_MODEM_FW,
Tianyi Gouca0aaac2012-07-27 14:13:29 -070022 PAS_WCNSS,
Matt Wagantall11afeee2012-02-07 18:38:59 -080023 PAS_SECAPP,
24 PAS_GSS,
Stephen Boyd7b973de2012-03-09 12:26:16 -080025 PAS_VIDC,
Stephen Boyde44ec392011-08-29 12:03:24 -070026};
27
Stephen Boyd866f9a22012-07-10 18:56:53 -070028#ifdef CONFIG_MSM_PIL
Stephen Boyde44ec392011-08-29 12:03:24 -070029extern int pas_init_image(enum pas_id id, const u8 *metadata, size_t size);
Stephen Boydb16e0162012-07-30 17:10:54 -070030extern int pas_mem_setup(enum pas_id id, u32 start_addr, u32 len);
Stephen Boyde44ec392011-08-29 12:03:24 -070031extern int pas_auth_and_reset(enum pas_id id);
32extern int pas_shutdown(enum pas_id id);
33extern int pas_supported(enum pas_id id);
Stephen Boyd866f9a22012-07-10 18:56:53 -070034#else
35static inline int pas_init_image(enum pas_id id, const u8 *metadata,
36 size_t size)
37{
38 return 0;
39}
Stephen Boydb16e0162012-07-30 17:10:54 -070040static inline int pas_mem_setup(enum pas_id id, u32 start_addr, u32 len)
41{
42 return 0;
43}
Stephen Boyd866f9a22012-07-10 18:56:53 -070044static inline int pas_auth_and_reset(enum pas_id id)
45{
46 return 0;
47}
48static inline int pas_shutdown(enum pas_id id)
49{
50 return 0;
51}
52static inline int pas_supported(enum pas_id id)
53{
54 return 0;
55}
56#endif
57
Stephen Boyde44ec392011-08-29 12:03:24 -070058#endif