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
;
26 } __packed
__aligned(4);
28 struct imx_sc_msg_req_pad_get
{
29 struct imx_sc_rpc_msg hdr
;
31 } __packed
__aligned(4);
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
);
44 EXPORT_SYMBOL_GPL(imx_pinctrl_sc_ipc_init
);
46 int imx_pinconf_get_scu(struct pinctrl_dev
*pctldev
, unsigned pin_id
,
47 unsigned long *config
)
49 struct imx_sc_msg_req_pad_get msg
;
50 struct imx_sc_msg_resp_pad_get
*resp
;
51 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
54 hdr
->ver
= IMX_SC_RPC_VERSION
;
55 hdr
->svc
= IMX_SC_RPC_SVC_PAD
;
56 hdr
->func
= IMX_SC_PAD_FUNC_GET
;
61 ret
= imx_scu_call_rpc(pinctrl_ipc_handle
, &msg
, true);
65 resp
= (struct imx_sc_msg_resp_pad_get
*)&msg
;
70 EXPORT_SYMBOL_GPL(imx_pinconf_get_scu
);
72 int imx_pinconf_set_scu(struct pinctrl_dev
*pctldev
, unsigned pin_id
,
73 unsigned long *configs
, unsigned num_configs
)
75 struct imx_pinctrl
*ipctl
= pinctrl_dev_get_drvdata(pctldev
);
76 struct imx_sc_msg_req_pad_set msg
;
77 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
78 unsigned int mux
= configs
[0];
79 unsigned int conf
= configs
[1];
84 * Set mux and conf together in one IPC call
86 WARN_ON(num_configs
!= 2);
88 val
= conf
| BM_PAD_CTL_IFMUX_ENABLE
| BM_PAD_CTL_GP_ENABLE
;
89 val
|= mux
<< BP_PAD_CTL_IFMUX
;
91 hdr
->ver
= IMX_SC_RPC_VERSION
;
92 hdr
->svc
= IMX_SC_RPC_SVC_PAD
;
93 hdr
->func
= IMX_SC_PAD_FUNC_SET
;
99 ret
= imx_scu_call_rpc(pinctrl_ipc_handle
, &msg
, true);
101 dev_dbg(ipctl
->dev
, "write: pin_id %u config 0x%x val 0x%x\n",
106 EXPORT_SYMBOL_GPL(imx_pinconf_set_scu
);
108 void imx_pinctrl_parse_pin_scu(struct imx_pinctrl
*ipctl
,
109 unsigned int *pin_id
, struct imx_pin
*pin
,
110 const __be32
**list_p
)
112 const struct imx_pinctrl_soc_info
*info
= ipctl
->info
;
113 struct imx_pin_scu
*pin_scu
= &pin
->conf
.scu
;
114 const __be32
*list
= *list_p
;
116 pin
->pin
= be32_to_cpu(*list
++);
118 pin_scu
->mux_mode
= be32_to_cpu(*list
++);
119 pin_scu
->config
= be32_to_cpu(*list
++);
122 dev_dbg(ipctl
->dev
, "%s: 0x%x 0x%08lx", info
->pins
[pin
->pin
].name
,
123 pin_scu
->mux_mode
, pin_scu
->config
);
125 EXPORT_SYMBOL_GPL(imx_pinctrl_parse_pin_scu
);