blob: 7ea2dbe7d36b6eb10d31c83f355a6ef1b09a87e2 [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
35U_BOOT_DRIVER(imx7ulp_pinctrl) = {
36 .name = "imx7ulp-pinctrl",
37 .id = UCLASS_PINCTRL,
38 .of_match = of_match_ptr(imx7ulp_pinctrl_match),
39 .probe = imx7ulp_pinctrl_probe,
40 .remove = imx_pinctrl_remove,
Simon Glass8a2b47f2020-12-03 16:55:17 -070041 .priv_auto = sizeof(struct imx_pinctrl_priv),
Peng Fanf70bf2b2017-02-22 16:21:49 +080042 .ops = &imx_pinctrl_ops,
43 .flags = DM_FLAG_PRE_RELOC,
Peng Fanf70bf2b2017-02-22 16:21:49 +080044};