aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2013-08-04 09:39:23 -0400
committerNitin Garg <nitin.garg@freescale.com>2014-04-16 09:01:10 -0400
commitca27347744bd1831da498d4c53c3505dda865df4 (patch)
treeead9aeb40ea0f758f0bca4d9b39bea6f6a75e2fe
parenta887a55e350b3a90e90750d1804e1443f41d9dd0 (diff)
pinctrl: imx: work around select input quirk
The select input for some pin may not be implemented using the regular select input register but the general purpose register. A real example is that imx6q designers found the select input for USB OTG ID pin is missing at the very late stage, and can not add a new select input register but have to use a general purpose register bit to implement it. The patch adds a workaround for such select input quirk by interpreting the input_val cell of pin function ID in a different way, so that all the info that needed for setting up select input bits in general purpose register could be decoded from there. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Tested-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/pinctrl/pinctrl-imx.c34
1 files changed, 32 insertions, 2 deletions
diff --git a/drivers/pinctrl/pinctrl-imx.c b/drivers/pinctrl/pinctrl-imx.c
index 57a4eb0add2e..7284b8678ead 100644
--- a/drivers/pinctrl/pinctrl-imx.c
+++ b/drivers/pinctrl/pinctrl-imx.c
@@ -239,8 +239,38 @@ static int imx_pmx_enable(struct pinctrl_dev *pctldev, unsigned selector,
239 dev_dbg(ipctl->dev, "write: offset 0x%x val 0x%x\n", 239 dev_dbg(ipctl->dev, "write: offset 0x%x val 0x%x\n",
240 pin_reg->mux_reg, mux[i]); 240 pin_reg->mux_reg, mux[i]);
241 241
242 /* some pins also need select input setting, set it if found */ 242 /*
243 if (input_reg[i]) { 243 * If the select input value begins with 0xff, it's a quirky
244 * select input and the value should be interpreted as below.
245 * 31 23 15 7 0
246 * | 0xff | shift | width | select |
247 * It's used to work around the problem that the select
248 * input for some pin is not implemented in the select
249 * input register but in some general purpose register.
250 * We encode the select input value, width and shift of
251 * the bit field into input_val cell of pin function ID
252 * in device tree, and then decode them here for setting
253 * up the select input bits in general purpose register.
254 */
255 if (input_val[i] >> 24 == 0xff) {
256 u32 val = input_val[i];
257 u8 select = val & 0xff;
258 u8 width = (val >> 8) & 0xff;
259 u8 shift = (val >> 16) & 0xff;
260 u32 mask = ((1 << width) - 1) << shift;
261 /*
262 * The input_reg[i] here is actually some IOMUXC general
263 * purpose register, not regular select input register.
264 */
265 val = readl(ipctl->base + input_reg[i]);
266 val &= ~mask;
267 val |= select << shift;
268 writel(val, ipctl->base + input_reg[i]);
269 } else if (input_reg[i]) {
270 /*
271 * Regular select input register can never be at offset
272 * 0, and we only print register value for regular case.
273 */
244 writel(input_val[i], ipctl->base + input_reg[i]); 274 writel(input_val[i], ipctl->base + input_reg[i]);
245 dev_dbg(ipctl->dev, 275 dev_dbg(ipctl->dev,
246 "==>select_input: offset 0x%x val 0x%x\n", 276 "==>select_input: offset 0x%x val 0x%x\n",