1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-10-18 01:15:33 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

53 lines
1.2 KiB
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2020 MediaTek Inc.
*/
#if IS_ENABLED(CONFIG_MTK_TINYSYS_SCP_DEBUG_SUPPORT)
#include <linux/device.h> /* needed by device_* */
#include "scp_ipi_pin.h"
#include "scp_mbox_layout.h"
#include "scp_scpctl.h"
/*
* A device node to send commands to scp wit unified interface
* @magic: should be 666
* @type: a class for different types of commands
* @op: the operation specified in a command type
* @return: 0 if success, -EINVAL if wrong value of number
* of parameters
*/
static ssize_t scpctl_store(struct device *kobj
, struct device_attribute *attr, const char *buf, size_t n)
{
int ret;
int magic, type, op;
struct scpctl_cmd_s cmd;
char *prompt = "[SCPCTL]:";
if (sscanf(buf, "%d %d %d", &magic, &type, &op) != 3)
return -EINVAL;
pr_notice("%s %d %d %d\n", prompt, magic, type, op);
if (magic != 666)
return -EINVAL;
cmd.type = type;
cmd.op = op;
ret = mtk_ipi_send(&scp_ipidev, IPI_OUT_SCPCTL_1, 0, &cmd,
PIN_OUT_SIZE_SCPCTL_1, 0);
if (ret != IPI_ACTION_DONE)
goto _err;
return n;
_err:
pr_notice("%s failed, %d\n", prompt, ret);
return -EIO;
}
DEVICE_ATTR_WO(scpctl);
#endif