cregit-Linux how code gets into the kernel

Release 4.18 include/soc/qcom/cmd-db.h

Directory: include/soc/qcom
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2016-2018, The Linux Foundation. All rights reserved. */

#ifndef __QCOM_COMMAND_DB_H__

#define __QCOM_COMMAND_DB_H__



enum cmd_db_hw_type {
	
CMD_DB_HW_INVALID = 0,
	
CMD_DB_HW_MIN     = 3,
	
CMD_DB_HW_ARC     = CMD_DB_HW_MIN,
	
CMD_DB_HW_VRM     = 4,
	
CMD_DB_HW_BCM     = 5,
	
CMD_DB_HW_MAX     = CMD_DB_HW_BCM,
	
CMD_DB_HW_ALL     = 0xff,
};

#if IS_ENABLED(CONFIG_QCOM_COMMAND_DB)
u32 cmd_db_read_addr(const char *resource_id);

int cmd_db_read_aux_data(const char *resource_id, u8 *data, size_t len);

size_t cmd_db_read_aux_data_len(const char *resource_id);

enum cmd_db_hw_type cmd_db_read_slave_id(const char *resource_id);

int cmd_db_ready(void);
#else

static inline u32 cmd_db_read_addr(const char *resource_id) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian15100.00%1100.00%
Total15100.00%1100.00%


static inline int cmd_db_read_aux_data(const char *resource_id, u8 *data, size_t len) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian23100.00%1100.00%
Total23100.00%1100.00%


static inline size_t cmd_db_read_aux_data_len(const char *resource_id) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian16100.00%1100.00%
Total16100.00%1100.00%


static inline enum cmd_db_hw_type cmd_db_read_slave_id(const char *resource_id) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian17100.00%1100.00%
Total17100.00%1100.00%


static inline int cmd_db_ready(void) { return -ENODEV; }

Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian13100.00%1100.00%
Total13100.00%1100.00%

#endif /* CONFIG_QCOM_COMMAND_DB */ #endif /* __QCOM_COMMAND_DB_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Mahesh Sivasubramanian188100.00%1100.00%
Total188100.00%1100.00%
Directory: include/soc/qcom
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.