hc
2023-08-30 862c27fc9920c83318c784bfdadf43a65df1ec8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * First generation of pinmux driver for Amlogic Meson SoCs
 *
 * Copyright (C) 2014 Beniamino Galvani <b.galvani@gmail.com>
 * Copyright (C) 2017 Jerome Brunet  <jbrunet@baylibre.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
 
/* For this first generation of pinctrl driver every pinmux group can be
 * enabled by a specific bit in the first register range. When all groups for
 * a given pin are disabled the pin acts as a GPIO.
 */
#include <linux/device.h>
#include <linux/regmap.h>
#include <linux/pinctrl/pinctrl.h>
#include <linux/pinctrl/pinmux.h>
 
#include "pinctrl-meson.h"
#include "pinctrl-meson8-pmx.h"
 
/**
 * meson8_pmx_disable_other_groups() - disable other groups using a given pin
 *
 * @pc:        meson pin controller device
 * @pin:    number of the pin
 * @sel_group:    index of the selected group, or -1 if none
 *
 * The function disables all pinmux groups using a pin except the
 * selected one. If @sel_group is -1 all groups are disabled, leaving
 * the pin in GPIO mode.
 */
static void meson8_pmx_disable_other_groups(struct meson_pinctrl *pc,
                       unsigned int pin, int sel_group)
{
   struct meson_pmx_group *group;
   struct meson8_pmx_data *pmx_data;
   int i, j;
 
   for (i = 0; i < pc->data->num_groups; i++) {
       group = &pc->data->groups[i];
       pmx_data = (struct meson8_pmx_data *)group->data;
       if (pmx_data->is_gpio || i == sel_group)
           continue;
 
       for (j = 0; j < group->num_pins; j++) {
           if (group->pins[j] == pin) {
               /* We have found a group using the pin */
               regmap_update_bits(pc->reg_mux,
                          pmx_data->reg * 4,
                          BIT(pmx_data->bit), 0);
           }
       }
   }
}
 
static int meson8_pmx_set_mux(struct pinctrl_dev *pcdev, unsigned func_num,
                 unsigned group_num)
{
   struct meson_pinctrl *pc = pinctrl_dev_get_drvdata(pcdev);
   struct meson_pmx_func *func = &pc->data->funcs[func_num];
   struct meson_pmx_group *group = &pc->data->groups[group_num];
   struct meson8_pmx_data *pmx_data =
       (struct meson8_pmx_data *)group->data;
   int i, ret = 0;
 
   dev_dbg(pc->dev, "enable function %s, group %s\n", func->name,
       group->name);
 
   /*
    * Disable groups using the same pin.
    * The selected group is not disabled to avoid glitches.
    */
   for (i = 0; i < group->num_pins; i++)
       meson8_pmx_disable_other_groups(pc, group->pins[i], group_num);
 
   /* Function 0 (GPIO) doesn't need any additional setting */
   if (func_num)
       ret = regmap_update_bits(pc->reg_mux, pmx_data->reg * 4,
                    BIT(pmx_data->bit),
                    BIT(pmx_data->bit));
 
   return ret;
}
 
static int meson8_pmx_request_gpio(struct pinctrl_dev *pcdev,
                  struct pinctrl_gpio_range *range,
                  unsigned offset)
{
   struct meson_pinctrl *pc = pinctrl_dev_get_drvdata(pcdev);
 
   meson8_pmx_disable_other_groups(pc, offset, -1);
 
   return 0;
}
 
const struct pinmux_ops meson8_pmx_ops = {
   .set_mux = meson8_pmx_set_mux,
   .get_functions_count = meson_pmx_get_funcs_count,
   .get_function_name = meson_pmx_get_func_name,
   .get_function_groups = meson_pmx_get_groups,
   .gpio_request_enable = meson8_pmx_request_gpio,
};