blob: 8969aea2e3d12fdbf019d83027badbd3887d7246 [file] [log] [blame]
David Wue7ae4cf2019-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 Wu54e75702019-04-16 21:50:55 +080014static int rk3036_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 Wue7ae4cf2019-01-02 21:00:55 +080038#define RK3036_PULL_OFFSET 0x118
39#define RK3036_PULL_PINS_PER_REG 16
40#define RK3036_PULL_BANK_STRIDE 8
41
42static void rk3036_calc_pull_reg_and_bit(struct rockchip_pin_bank *bank,
43 int pin_num, struct regmap **regmap,
44 int *reg, u8 *bit)
45{
46 struct rockchip_pinctrl_priv *priv = bank->priv;
47
48 *regmap = priv->regmap_base;
49 *reg = RK3036_PULL_OFFSET;
50 *reg += bank->bank_num * RK3036_PULL_BANK_STRIDE;
51 *reg += (pin_num / RK3036_PULL_PINS_PER_REG) * 4;
52
53 *bit = pin_num % RK3036_PULL_PINS_PER_REG;
54};
55
56static struct rockchip_pin_bank rk3036_pin_banks[] = {
57 PIN_BANK(0, 32, "gpio0"),
58 PIN_BANK(1, 32, "gpio1"),
59 PIN_BANK(2, 32, "gpio2"),
60};
61
62static struct rockchip_pin_ctrl rk3036_pin_ctrl = {
David Wu8541beb2019-04-16 21:50:54 +080063 .pin_banks = rk3036_pin_banks,
64 .nr_banks = ARRAY_SIZE(rk3036_pin_banks),
65 .label = "RK3036-GPIO",
66 .type = RK3036,
67 .grf_mux_offset = 0xa8,
David Wu54e75702019-04-16 21:50:55 +080068 .set_mux = rk3036_set_mux,
David Wu8541beb2019-04-16 21:50:54 +080069 .pull_calc_reg = rk3036_calc_pull_reg_and_bit,
David Wue7ae4cf2019-01-02 21:00:55 +080070};
71
72static const struct udevice_id rk3036_pinctrl_ids[] = {
73 {
74 .compatible = "rockchip,rk3036-pinctrl",
75 .data = (ulong)&rk3036_pin_ctrl
76 },
77 {}
78};
79
80U_BOOT_DRIVER(pinctrl_rockchip) = {
81 .name = "rk3036-pinctrl",
82 .id = UCLASS_PINCTRL,
83 .of_match = rk3036_pinctrl_ids,
84 .priv_auto_alloc_size = sizeof(struct rockchip_pinctrl_priv),
85 .ops = &rockchip_pinctrl_ops,
86#if !CONFIG_IS_ENABLED(OF_PLATDATA)
87 .bind = dm_scan_fdt_dev,
88#endif
89 .probe = rockchip_pinctrl_probe,
90};