blob: 3288926ad9eafe4e627df55b02792e359733035d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peng Fanf70bf2b2017-02-22 16:21:49 +08002/*
3 * Copyright (C) 2016 Freescale Semiconductor, Inc.
4 *
5 * Peng Fan <peng.fan@nxp.com>
Peng Fanf70bf2b2017-02-22 16:21:49 +08006 */
7
Simon Glass11c89f32017-05-17 17:18:03 -06008#include <dm.h>
Peng Fanf70bf2b2017-02-22 16:21:49 +08009#include <dm/pinctrl.h>
10
11#include "pinctrl-imx.h"
12
Peng Fan7f0fb442017-08-14 18:09:17 +080013static struct imx_pinctrl_soc_info imx7ulp_pinctrl_soc_info0 = {
Tom Rini364d0022023-01-10 11:19:45 -050014 .flags = ZERO_OFFSET_VALID | SHARE_MUX_CONF_REG | CFG_IBE_OBE,
Peng Fanf70bf2b2017-02-22 16:21:49 +080015};
16
Peng Fan7f0fb442017-08-14 18:09:17 +080017static struct imx_pinctrl_soc_info imx7ulp_pinctrl_soc_info1 = {
Tom Rini364d0022023-01-10 11:19:45 -050018 .flags = ZERO_OFFSET_VALID | SHARE_MUX_CONF_REG | CFG_IBE_OBE,
Peng Fan7f0fb442017-08-14 18:09:17 +080019};
20
Peng Fanf70bf2b2017-02-22 16:21:49 +080021static int imx7ulp_pinctrl_probe(struct udevice *dev)
22{
23 struct imx_pinctrl_soc_info *info =
24 (struct imx_pinctrl_soc_info *)dev_get_driver_data(dev);
25
26 return imx_pinctrl_probe(dev, info);
27}
28
29static const struct udevice_id imx7ulp_pinctrl_match[] = {
Peng Fan7f0fb442017-08-14 18:09:17 +080030 { .compatible = "fsl,imx7ulp-iomuxc-0", .data = (ulong)&imx7ulp_pinctrl_soc_info0 },
31 { .compatible = "fsl,imx7ulp-iomuxc-1", .data = (ulong)&imx7ulp_pinctrl_soc_info1 },
Peng Fanf70bf2b2017-02-22 16:21:49 +080032 { /* sentinel */ }
33};
34
Marek Vasut5b213c32025-01-24 15:50:51 +010035static const struct pinctrl_ops imx7ulp_pinctrl_ops = {
Marek Vasut4646bd92025-01-24 15:50:50 +010036 .set_state = imx_pinctrl_set_state,
37};
38
Peng Fanf70bf2b2017-02-22 16:21:49 +080039U_BOOT_DRIVER(imx7ulp_pinctrl) = {
40 .name = "imx7ulp-pinctrl",
41 .id = UCLASS_PINCTRL,
42 .of_match = of_match_ptr(imx7ulp_pinctrl_match),
43 .probe = imx7ulp_pinctrl_probe,
44 .remove = imx_pinctrl_remove,
Simon Glass8a2b47f2020-12-03 16:55:17 -070045 .priv_auto = sizeof(struct imx_pinctrl_priv),
Marek Vasut5b213c32025-01-24 15:50:51 +010046 .ops = &imx7ulp_pinctrl_ops,
Peng Fanf70bf2b2017-02-22 16:21:49 +080047 .flags = DM_FLAG_PRE_RELOC,
Peng Fanf70bf2b2017-02-22 16:21:49 +080048};