Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-570.el9.x86_64/include/soc/microchip/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * * Microchip PolarFire SoC (MPFS) * * Copyright (c) 2020 Microchip Corporation. All rights reserved. * * Author: Conor Dooley <conor.dooley@microchip.com> * */ #ifndef __SOC_MPFS_H__ #define __SOC_MPFS_H__ #include <linux/types.h> #include <linux/of_device.h> struct mpfs_sys_controller; struct mpfs_mss_msg { u8 cmd_opcode; u16 cmd_data_size; struct mpfs_mss_response *response; u8 *cmd_data; u16 mbox_offset; u16 resp_offset; }; struct mpfs_mss_response { u32 resp_status; u32 *resp_msg; u16 resp_size; }; #if IS_ENABLED(CONFIG_POLARFIRE_SOC_SYS_CTRL) int mpfs_blocking_transaction(struct mpfs_sys_controller *mpfs_client, void *msg); struct mpfs_sys_controller *mpfs_sys_controller_get(struct device_node *mailbox_node); #endif /* if IS_ENABLED(CONFIG_POLARFIRE_SOC_SYS_CTRL) */ #endif /* __SOC_MPFS_H__ */