blob: 617ae28ac88e410dbb18d462201c18aba53d039a [file] [log] [blame]
David Wu5f596ae2019-01-02 21:00:55 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019 Rockchip Electronics Co., Ltd
4 */
5
6#include <common.h>
7#include <dm.h>
8#include <dm/pinctrl.h>
9#include <regmap.h>
10#include <syscon.h>
11
12#include "pinctrl-rockchip.h"
13
David Wu3dd7d6c2019-04-16 21:50:55 +080014static int rk3188_set_mux(struct rockchip_pin_bank *bank, int pin, int mux)
15{
16 struct rockchip_pinctrl_priv *priv = bank->priv;
17 int iomux_num = (pin / 8);
18 struct regmap *regmap;
19 int reg, ret, mask, mux_type;
20 u8 bit;
21 u32 data;
22
23 regmap = (bank->iomux[iomux_num].type & IOMUX_SOURCE_PMU)
24 ? priv->regmap_pmu : priv->regmap_base;
25
26 /* get basic quadrupel of mux registers and the correct reg inside */
27 mux_type = bank->iomux[iomux_num].type;
28 reg = bank->iomux[iomux_num].offset;
29 reg += rockchip_get_mux_data(mux_type, pin, &bit, &mask);
30
31 data = (mask << (bit + 16));
32 data |= (mux & mask) << bit;
33 ret = regmap_write(regmap, reg, data);
34
35 return ret;
36}
37
David Wu5f596ae2019-01-02 21:00:55 +080038#define RK3188_PULL_OFFSET 0x164
39#define RK3188_PULL_PMU_OFFSET 0x64
40
41static void rk3188_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
42 int pin_num, struct regmap **regmap,
43 int *reg, u8 *bit)
44{
45 struct rockchip_pinctrl_priv *priv = bank->priv;
46
47 /* The first 12 pins of the first bank are located elsewhere */
48 if (bank->bank_num == 0 && pin_num < 12) {
49 *regmap = priv->regmap_pmu;
50 *reg = RK3188_PULL_PMU_OFFSET;
51
52 *reg += ((pin_num / ROCKCHIP_PULL_PINS_PER_REG) * 4);
53 *bit = pin_num % ROCKCHIP_PULL_PINS_PER_REG;
54 *bit *= ROCKCHIP_PULL_BITS_PER_PIN;
55 } else {
56 *regmap = priv->regmap_base;
57 *reg = RK3188_PULL_OFFSET;
58
59 /* correct the offset, as it is the 2nd pull register */
60 *reg -= 4;
61 *reg += bank->bank_num * ROCKCHIP_PULL_BANK_STRIDE;
62 *reg += ((pin_num / ROCKCHIP_PULL_PINS_PER_REG) * 4);
63
64 /*
65 * The bits in these registers have an inverse ordering
66 * with the lowest pin being in bits 15:14 and the highest
67 * pin in bits 1:0
68 */
69 *bit = 7 - (pin_num % ROCKCHIP_PULL_PINS_PER_REG);
70 *bit *= ROCKCHIP_PULL_BITS_PER_PIN;
71 }
72}
73
74static struct rockchip_pin_bank rk3188_pin_banks[] = {
75 PIN_BANK_IOMUX_FLAGS(0, 32, "gpio0", IOMUX_GPIO_ONLY, 0, 0, 0),
76 PIN_BANK(1, 32, "gpio1"),
77 PIN_BANK(2, 32, "gpio2"),
78 PIN_BANK(3, 32, "gpio3"),
79};
80
81static struct rockchip_pin_ctrl rk3188_pin_ctrl = {
David Wu71aede02019-04-16 21:50:54 +080082 .pin_banks = rk3188_pin_banks,
83 .nr_banks = ARRAY_SIZE(rk3188_pin_banks),
84 .label = "RK3188-GPIO",
85 .type = RK3188,
86 .grf_mux_offset = 0x60,
David Wu3dd7d6c2019-04-16 21:50:55 +080087 .set_mux = rk3188_set_mux,
David Wu71aede02019-04-16 21:50:54 +080088 .pull_calc_reg = rk3188_calc_pull_reg_and_bit,
David Wu5f596ae2019-01-02 21:00:55 +080089};
90
91static const struct udevice_id rk3188_pinctrl_ids[] = {
92 { .compatible = "rockchip,rk3188-pinctrl",
93 .data = (ulong)&rk3188_pin_ctrl },
94 { }
95};
96
97U_BOOT_DRIVER(pinctrl_rk3188) = {
98 .name = "rockchip_rk3188_pinctrl",
99 .id = UCLASS_PINCTRL,
100 .of_match = rk3188_pinctrl_ids,
101 .priv_auto_alloc_size = sizeof(struct rockchip_pinctrl_priv),
102 .ops = &rockchip_pinctrl_ops,
103#if !CONFIG_IS_ENABLED(OF_PLATDATA)
104 .bind = dm_scan_fdt_dev,
105#endif
106 .probe = rockchip_pinctrl_probe,
107};