1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
4 * Copyright 2017-2018 NXP
5 * Dong Aisheng <aisheng.dong@nxp.com>
9 #include <linux/firmware/imx/sci.h>
10 #include <linux/of_address.h>
11 #include <linux/pinctrl/pinctrl.h>
12 #include <linux/platform_device.h>
15 #include "pinctrl-imx.h"
18 IMX_SC_PAD_FUNC_SET
= 15,
19 IMX_SC_PAD_FUNC_GET
= 16,
22 struct imx_sc_msg_req_pad_set
{
23 struct imx_sc_rpc_msg hdr
;
28 struct imx_sc_msg_req_pad_get
{
29 struct imx_sc_rpc_msg hdr
;
33 struct imx_sc_msg_resp_pad_get
{
34 struct imx_sc_rpc_msg hdr
;
38 static struct imx_sc_ipc
*pinctrl_ipc_handle
;
40 int imx_pinctrl_sc_ipc_init(struct platform_device
*pdev
)
42 return imx_scu_get_handle(&pinctrl_ipc_handle
);
45 int imx_pinconf_get_scu(struct pinctrl_dev
*pctldev
, unsigned pin_id
,
46 unsigned long *config
)
48 struct imx_sc_msg_req_pad_get msg
;
49 struct imx_sc_msg_resp_pad_get
*resp
;
50 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
53 hdr
->ver
= IMX_SC_RPC_VERSION
;
54 hdr
->svc
= IMX_SC_RPC_SVC_PAD
;
55 hdr
->func
= IMX_SC_PAD_FUNC_GET
;
60 ret
= imx_scu_call_rpc(pinctrl_ipc_handle
, &msg
, true);
64 resp
= (struct imx_sc_msg_resp_pad_get
*)&msg
;
70 int imx_pinconf_set_scu(struct pinctrl_dev
*pctldev
, unsigned pin_id
,
71 unsigned long *configs
, unsigned num_configs
)
73 struct imx_pinctrl
*ipctl
= pinctrl_dev_get_drvdata(pctldev
);
74 struct imx_sc_msg_req_pad_set msg
;
75 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
76 unsigned int mux
= configs
[0];
77 unsigned int conf
= configs
[1];
82 * Set mux and conf together in one IPC call
84 WARN_ON(num_configs
!= 2);
86 val
= conf
| BM_PAD_CTL_IFMUX_ENABLE
| BM_PAD_CTL_GP_ENABLE
;
87 val
|= mux
<< BP_PAD_CTL_IFMUX
;
89 hdr
->ver
= IMX_SC_RPC_VERSION
;
90 hdr
->svc
= IMX_SC_RPC_SVC_PAD
;
91 hdr
->func
= IMX_SC_PAD_FUNC_SET
;
97 ret
= imx_scu_call_rpc(pinctrl_ipc_handle
, &msg
, true);
99 dev_dbg(ipctl
->dev
, "write: pin_id %u config 0x%x val 0x%x\n",
105 void imx_pinctrl_parse_pin_scu(struct imx_pinctrl
*ipctl
,
106 unsigned int *pin_id
, struct imx_pin
*pin
,
107 const __be32
**list_p
)
109 const struct imx_pinctrl_soc_info
*info
= ipctl
->info
;
110 struct imx_pin_scu
*pin_scu
= &pin
->conf
.scu
;
111 const __be32
*list
= *list_p
;
113 pin
->pin
= be32_to_cpu(*list
++);
115 pin_scu
->mux_mode
= be32_to_cpu(*list
++);
116 pin_scu
->config
= be32_to_cpu(*list
++);
119 dev_dbg(ipctl
->dev
, "%s: 0x%x 0x%08lx", info
->pins
[pin
->pin
].name
,
120 pin_scu
->mux_mode
, pin_scu
->config
);