Add samsung specific changes

This commit is contained in:
2025-08-11 14:29:00 +02:00
parent c66122e619
commit 4d134a1294
2688 changed files with 1127995 additions and 11475 deletions

20
include/linux/tmelog.h Normal file
View File

@@ -0,0 +1,20 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#ifndef _TMELOG_H_
#define _TMELOG_H_
/**
* Send data to Tmefw via tmecom interface
*
* @param [in] buf Buffer passed by user.
* @param [in] tme_buf_size Size of passed buffer.
* @param [out] buf_size Size written by Tme FW to passed buffer.
*
* @return 0 if successful, error code otherwise.
*/
int tmelog_process_request(uint32_t buf, uint32_t tme_buf_size, uint32_t *buf_size);
#endif /*_TMELOG_H_ */