imx8m: config: convert to bootm_size
[platform/kernel/u-boot.git] / drivers / pinctrl / mvebu / pinctrl-mvebu.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2016 Marvell International Ltd.
4  * https://spdx.org/licenses
5  */
6
7 #include <common.h>
8 #include <config.h>
9 #include <fdtdec.h>
10 #include <errno.h>
11 #include <dm.h>
12 #include <log.h>
13 #include <dm/pinctrl.h>
14 #include <dm/root.h>
15 #include <asm/system.h>
16 #include <asm/io.h>
17 #include <asm/arch-armada8k/soc-info.h>
18 #include <linux/bitops.h>
19 #include "pinctrl-mvebu.h"
20
21 #define AP_EMMC_PHY_CTRL_REG            0x100
22 #define CP_EMMC_PHY_CTRL_REG            0x424
23 #define EMMC_PHY_CTRL_SDPHY_EN          BIT(0)
24
25 #define AP806_EMMC_CLK_PIN_ID           0
26 #define AP806_EMMC_CLK_FUNC             0x1
27 #define CP110_EMMC_CLK_PIN_ID           56
28 #define CP110_EMMC_CLK_FUNC             0xe
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 /* mvebu_pinctl_emmc_set_mux: configure sd/mmc PHY mux
33  * To enable SDIO/eMMC in Armada-APN806/CP110, need to configure PHY mux.
34  * eMMC/SD PHY register responsible for muxing between MPPs and SD/eMMC
35  * controller:
36  * - Bit0 enabled SDIO/eMMC PHY is used as a MPP muxltiplexer,
37  * - Bit0 disabled SDIO/eMMC PHY is connected to SDIO/eMMC controller
38  * If pin function is set to eMMC/SD, then configure the eMMC/SD PHY
39  * muxltiplexer register to be on SDIO/eMMC controller
40  */
41 void mvebu_pinctl_emmc_set_mux(struct udevice *dev, u32 pin, u32 func)
42 {
43         const void *blob = gd->fdt_blob;
44         int node = dev_of_offset(dev);
45         struct mvebu_pinctrl_priv *priv = dev_get_priv(dev);
46
47         if (!fdt_node_check_compatible(blob, node, "marvell,ap806-pinctrl")) {
48                 if ((pin == AP806_EMMC_CLK_PIN_ID) &&
49                     (func == AP806_EMMC_CLK_FUNC)) {
50                         clrbits_le32(priv->base_reg + AP_EMMC_PHY_CTRL_REG,
51                                      EMMC_PHY_CTRL_SDPHY_EN);
52                 }
53         } else if (!fdt_node_check_compatible(blob, node,
54                                         "marvell,armada-8k-cpm-pinctrl")) {
55                 if ((pin == CP110_EMMC_CLK_PIN_ID) &&
56                     (func == CP110_EMMC_CLK_FUNC)) {
57                         clrbits_le32(priv->base_reg + CP_EMMC_PHY_CTRL_REG,
58                                      EMMC_PHY_CTRL_SDPHY_EN);
59                 }
60         }
61 }
62
63 /*
64  * mvebu_pinctrl_set_state: configure pin functions.
65  * @dev: the pinctrl device to be configured.
66  * @config: the state to be configured.
67  * @return: 0 in success
68  */
69 int mvebu_pinctrl_set_state(struct udevice *dev, struct udevice *config)
70 {
71         const void *blob = gd->fdt_blob;
72         int node = dev_of_offset(config);
73         struct mvebu_pinctrl_priv *priv;
74         u32 pin_arr[MVEBU_MAX_PINS_PER_BANK];
75         u32 function;
76         int i, pin_count;
77
78         priv = dev_get_priv(dev);
79
80         pin_count = fdtdec_get_int_array_count(blob, node,
81                                                "marvell,pins",
82                                                pin_arr,
83                                                MVEBU_MAX_PINS_PER_BANK);
84         if (pin_count <= 0) {
85                 debug("Failed reading pins array for pinconfig %s (%d)\n",
86                       config->name, pin_count);
87                 return -EINVAL;
88         }
89
90         function = fdtdec_get_int(blob, node, "marvell,function", 0xff);
91
92         /*
93          * Check if setup of PHY mux is needed for this pins group.
94          * Only the first pin id in array is tested, all the rest use the same
95          * pin function.
96          */
97         mvebu_pinctl_emmc_set_mux(dev, pin_arr[0], function);
98
99         for (i = 0; i < pin_count; i++) {
100                 int reg_offset;
101                 int field_offset;
102                 int pin = pin_arr[i];
103
104                 if (function > priv->max_func) {
105                         debug("Illegal function %d for pinconfig %s\n",
106                               function, config->name);
107                         return -EINVAL;
108                 }
109
110                 /* Calculate register address and bit in register */
111                 reg_offset   = priv->reg_direction * 4 *
112                                         (pin >> (PIN_REG_SHIFT));
113                 field_offset = (BITS_PER_PIN) * (pin & PIN_FIELD_MASK);
114
115                 clrsetbits_le32(priv->base_reg + reg_offset,
116                                 PIN_FUNC_MASK << field_offset,
117                                 (function & PIN_FUNC_MASK) << field_offset);
118         }
119
120         return 0;
121 }
122
123 /*
124  * mvebu_pinctrl_set_state_all: configure the entire bank pin functions.
125  * @dev: the pinctrl device to be configured.
126  * @config: the state to be configured.
127  * @return: 0 in success
128  */
129 static int mvebu_pinctrl_set_state_all(struct udevice *dev,
130                                        struct udevice *config)
131 {
132         const void *blob = gd->fdt_blob;
133         int node = dev_of_offset(config);
134         struct mvebu_pinctrl_priv *priv;
135         u32 func_arr[MVEBU_MAX_PINS_PER_BANK];
136         int pin, err;
137
138         priv = dev_get_priv(dev);
139
140         err = fdtdec_get_int_array(blob, node, "pin-func",
141                                    func_arr, priv->pin_cnt);
142         if (err) {
143                 debug("Failed reading pin functions for bank %s\n",
144                       priv->bank_name);
145                 return -EINVAL;
146         }
147
148         /* Check if setup of PHY mux is needed for this pins group. */
149         if (priv->pin_cnt < CP110_EMMC_CLK_PIN_ID)
150                 mvebu_pinctl_emmc_set_mux(dev, AP806_EMMC_CLK_PIN_ID,
151                                           func_arr[AP806_EMMC_CLK_PIN_ID]);
152         else
153                 mvebu_pinctl_emmc_set_mux(dev, CP110_EMMC_CLK_PIN_ID,
154                                           func_arr[CP110_EMMC_CLK_PIN_ID]);
155
156         for (pin = 0; pin < priv->pin_cnt; pin++) {
157                 int reg_offset;
158                 int field_offset;
159                 u32 func = func_arr[pin];
160
161                 /* Bypass pins with function 0xFF */
162                 if (func == 0xff) {
163                         debug("Warning: pin %d value is not modified ", pin);
164                         debug("(kept as default)\n");
165                         continue;
166                 } else if (func > priv->max_func) {
167                         debug("Illegal function %d for pin %d\n", func, pin);
168                         return -EINVAL;
169                 }
170
171                 /* Calculate register address and bit in register */
172                 reg_offset   = priv->reg_direction * 4 *
173                                         (pin >> (PIN_REG_SHIFT));
174                 field_offset = (BITS_PER_PIN) * (pin & PIN_FIELD_MASK);
175
176                 clrsetbits_le32(priv->base_reg + reg_offset,
177                                 PIN_FUNC_MASK << field_offset,
178                                 (func & PIN_FUNC_MASK) << field_offset);
179         }
180
181         return 0;
182 }
183
184 int mvebu_pinctl_probe(struct udevice *dev)
185 {
186         const void *blob = gd->fdt_blob;
187         int node = dev_of_offset(dev);
188         struct mvebu_pinctrl_priv *priv;
189
190         priv = dev_get_priv(dev);
191         if (!priv) {
192                 debug("%s: Failed to get private\n", __func__);
193                 return -EINVAL;
194         }
195
196         priv->base_reg = devfdt_get_addr_ptr(dev);
197         if (priv->base_reg == (void *)FDT_ADDR_T_NONE) {
198                 debug("%s: Failed to get base address\n", __func__);
199                 return -EINVAL;
200         }
201
202         priv->pin_cnt   = fdtdec_get_int(blob, node, "pin-count",
203                                         MVEBU_MAX_PINS_PER_BANK);
204         priv->max_func  = fdtdec_get_int(blob, node, "max-func",
205                                          MVEBU_MAX_FUNC);
206         priv->bank_name = fdt_getprop(blob, node, "bank-name", NULL);
207
208         priv->reg_direction = 1;
209         if (fdtdec_get_bool(blob, node, "reverse-reg"))
210                 priv->reg_direction = -1;
211
212         return mvebu_pinctrl_set_state_all(dev, dev);
213 }
214
215 static struct pinctrl_ops mvebu_pinctrl_ops = {
216         .set_state      = mvebu_pinctrl_set_state
217 };
218
219 static const struct udevice_id mvebu_pinctrl_ids[] = {
220         { .compatible = "marvell,mvebu-pinctrl" },
221         { .compatible = "marvell,ap806-pinctrl" },
222         { .compatible = "marvell,armada-7k-pinctrl" },
223         { .compatible = "marvell,armada-8k-cpm-pinctrl" },
224         { .compatible = "marvell,armada-8k-cps-pinctrl" },
225         { }
226 };
227
228 U_BOOT_DRIVER(pinctrl_mvebu) = {
229         .name           = "mvebu_pinctrl",
230         .id             = UCLASS_PINCTRL,
231         .of_match       = mvebu_pinctrl_ids,
232         .priv_auto_alloc_size = sizeof(struct mvebu_pinctrl_priv),
233         .ops            = &mvebu_pinctrl_ops,
234         .probe          = mvebu_pinctl_probe
235 };