~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/soc/qcom/cmd-db.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
  4  * Copyright (c) 2024, Qualcomm Innovation Center, Inc. All rights reserved.
  5  */
  6 
  7 #ifndef __QCOM_COMMAND_DB_H__
  8 #define __QCOM_COMMAND_DB_H__
  9 
 10 #include <linux/err.h>
 11 
 12 enum cmd_db_hw_type {
 13         CMD_DB_HW_INVALID = 0,
 14         CMD_DB_HW_MIN     = 3,
 15         CMD_DB_HW_ARC     = CMD_DB_HW_MIN,
 16         CMD_DB_HW_VRM     = 4,
 17         CMD_DB_HW_BCM     = 5,
 18         CMD_DB_HW_MAX     = CMD_DB_HW_BCM,
 19         CMD_DB_HW_ALL     = 0xff,
 20 };
 21 
 22 #if IS_ENABLED(CONFIG_QCOM_COMMAND_DB)
 23 u32 cmd_db_read_addr(const char *resource_id);
 24 
 25 const void *cmd_db_read_aux_data(const char *resource_id, size_t *len);
 26 
 27 bool cmd_db_match_resource_addr(u32 addr1, u32 addr2);
 28 
 29 enum cmd_db_hw_type cmd_db_read_slave_id(const char *resource_id);
 30 
 31 int cmd_db_ready(void);
 32 #else
 33 static inline u32 cmd_db_read_addr(const char *resource_id)
 34 { return 0; }
 35 
 36 static inline const void *cmd_db_read_aux_data(const char *resource_id, size_t *len)
 37 { return ERR_PTR(-ENODEV); }
 38 
 39 static inline bool cmd_db_match_resource_addr(u32 addr1, u32 addr2)
 40 { return false; }
 41 
 42 static inline enum cmd_db_hw_type cmd_db_read_slave_id(const char *resource_id)
 43 { return -ENODEV; }
 44 
 45 static inline int cmd_db_ready(void)
 46 { return -ENODEV; }
 47 #endif /* CONFIG_QCOM_COMMAND_DB */
 48 #endif /* __QCOM_COMMAND_DB_H__ */
 49 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php