| jilai wang | 9626b69 | 2015-04-10 16:15:59 -0400 | [diff] [blame] | 1 | /* Copyright (c) 2010-2015, The Linux Foundation. All rights reserved. | 
| Lina Iyer | 2ce76a6 | 2015-03-02 16:30:29 -0700 | [diff] [blame] | 2 |  * Copyright (C) 2015 Linaro Ltd. | 
| Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 3 |  * | 
| David Brown | 3162aa2 | 2011-02-14 16:15:26 -0800 | [diff] [blame] | 4 |  * This program is free software; you can redistribute it and/or modify | 
 | 5 |  * it under the terms of the GNU General Public License version 2 and | 
 | 6 |  * only version 2 as published by the Free Software Foundation. | 
| Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 7 |  * | 
| David Brown | 3162aa2 | 2011-02-14 16:15:26 -0800 | [diff] [blame] | 8 |  * This program is distributed in the hope that it will be useful, | 
 | 9 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 10 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 11 |  * GNU General Public License for more details. | 
| Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 12 |  */ | 
| Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 13 | #ifndef __QCOM_SCM_H | 
 | 14 | #define __QCOM_SCM_H | 
| Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 15 |  | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 16 | #define QCOM_SCM_VERSION(major, minor)	(((major) << 16) | ((minor) & 0xFF)) | 
 | 17 | #define QCOM_SCM_CPU_PWR_DOWN_L2_ON	0x0 | 
 | 18 | #define QCOM_SCM_CPU_PWR_DOWN_L2_OFF	0x1 | 
| jilai wang | 9626b69 | 2015-04-10 16:15:59 -0400 | [diff] [blame] | 19 | #define QCOM_SCM_HDCP_MAX_REQ_CNT	5 | 
 | 20 |  | 
 | 21 | struct qcom_scm_hdcp_req { | 
 | 22 | 	u32 addr; | 
 | 23 | 	u32 val; | 
 | 24 | }; | 
 | 25 |  | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 26 | #if IS_ENABLED(CONFIG_QCOM_SCM) | 
 | 27 | extern int qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus); | 
 | 28 | extern int qcom_scm_set_warm_boot_addr(void *entry, const cpumask_t *cpus); | 
| Rob Clark | 2d3c277 | 2015-09-29 15:48:55 -0400 | [diff] [blame] | 29 | extern bool qcom_scm_is_available(void); | 
| jilai wang | 9626b69 | 2015-04-10 16:15:59 -0400 | [diff] [blame] | 30 | extern bool qcom_scm_hdcp_available(void); | 
 | 31 | extern int qcom_scm_hdcp_req(struct qcom_scm_hdcp_req *req, u32 req_cnt, | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 32 | 			     u32 *resp); | 
| Bjorn Andersson | f01e90f | 2015-09-23 12:56:12 -0700 | [diff] [blame] | 33 | extern bool qcom_scm_pas_supported(u32 peripheral); | 
 | 34 | extern int qcom_scm_pas_init_image(u32 peripheral, const void *metadata, | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 35 | 				   size_t size); | 
| Bjorn Andersson | f01e90f | 2015-09-23 12:56:12 -0700 | [diff] [blame] | 36 | extern int qcom_scm_pas_mem_setup(u32 peripheral, phys_addr_t addr, | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 37 | 				  phys_addr_t size); | 
| Bjorn Andersson | f01e90f | 2015-09-23 12:56:12 -0700 | [diff] [blame] | 38 | extern int qcom_scm_pas_auth_and_reset(u32 peripheral); | 
 | 39 | extern int qcom_scm_pas_shutdown(u32 peripheral); | 
| Lina Iyer | 767b023 | 2015-03-02 16:30:30 -0700 | [diff] [blame] | 40 | extern void qcom_scm_cpu_power_down(u32 flags); | 
| Kumar Gala | 4de4347 | 2015-02-04 16:30:46 -0600 | [diff] [blame] | 41 | extern u32 qcom_scm_get_version(void); | 
| Andy Gross | a811b42 | 2017-01-16 23:24:15 -0600 | [diff] [blame] | 42 | extern int qcom_scm_set_remote_state(u32 state, u32 id); | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 43 | #else | 
 | 44 | static inline | 
 | 45 | int qcom_scm_set_cold_boot_addr(void *entry, const cpumask_t *cpus) | 
 | 46 | { | 
 | 47 | 	return -ENODEV; | 
 | 48 | } | 
 | 49 | static inline | 
 | 50 | int qcom_scm_set_warm_boot_addr(void *entry, const cpumask_t *cpus) | 
 | 51 | { | 
 | 52 | 	return -ENODEV; | 
 | 53 | } | 
 | 54 | static inline bool qcom_scm_is_available(void) { return false; } | 
 | 55 | static inline bool qcom_scm_hdcp_available(void) { return false; } | 
 | 56 | static inline int qcom_scm_hdcp_req(struct qcom_scm_hdcp_req *req, u32 req_cnt, | 
 | 57 | 				    u32 *resp) { return -ENODEV; } | 
 | 58 | static inline bool qcom_scm_pas_supported(u32 peripheral) { return false; } | 
 | 59 | static inline int qcom_scm_pas_init_image(u32 peripheral, const void *metadata, | 
 | 60 | 					  size_t size) { return -ENODEV; } | 
 | 61 | static inline int qcom_scm_pas_mem_setup(u32 peripheral, phys_addr_t addr, | 
 | 62 | 					 phys_addr_t size) { return -ENODEV; } | 
 | 63 | static inline int | 
 | 64 | qcom_scm_pas_auth_and_reset(u32 peripheral) { return -ENODEV; } | 
 | 65 | static inline int qcom_scm_pas_shutdown(u32 peripheral) { return -ENODEV; } | 
 | 66 | static inline void qcom_scm_cpu_power_down(u32 flags) {} | 
 | 67 | static inline u32 qcom_scm_get_version(void) { return 0; } | 
| Andy Gross | a811b42 | 2017-01-16 23:24:15 -0600 | [diff] [blame] | 68 | static inline u32 | 
 | 69 | qcom_scm_set_remote_state(u32 state,u32 id) { return -ENODEV; } | 
| Stanimir Varbanov | e127991 | 2016-11-22 19:03:09 +0200 | [diff] [blame] | 70 | #endif | 
| Stephen Boyd | 2a1eb58 | 2010-08-27 10:01:23 -0700 | [diff] [blame] | 71 | #endif |