summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/mtmips/pinctrl-mtmips-common.h
blob: 25ca19ff6aba7e404367cd4d2f57490ae66ba1fb (plain)
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
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2019 MediaTek Inc. All Rights Reserved.
 *
 * Author: Weijie Gao <weijie.gao@mediatek.com>
 */

#ifndef _PINCTRL_MTMIPS_COMMON_H_
#define _PINCTRL_MTMIPS_COMMON_H_

#include <common.h>
#include <linux/kernel.h>

struct mtmips_pmx_func {
	const char *name;
	int value;
};

struct mtmips_pmx_group {
	const char *name;

	u32 reg;
	u32 shift;
	char mask;

	int nfuncs;
	const struct mtmips_pmx_func *funcs;
};

struct mtmips_pinctrl_priv {
	void __iomem *base;

	u32 ngroups;
	const struct mtmips_pmx_group *groups;

	u32 nfuncs;
	const struct mtmips_pmx_func **funcs;
};

#define FUNC(name, value)	{ name, value }

#define GRP(_name, _funcs, _reg, _shift, _mask) \
	{ .name = (_name), .reg = (_reg), .shift = (_shift), .mask = (_mask), \
	  .funcs = (_funcs), .nfuncs = ARRAY_SIZE(_funcs) }

int mtmips_get_functions_count(struct udevice *dev);
const char *mtmips_get_function_name(struct udevice *dev,
				     unsigned int selector);
int mtmips_pinmux_group_set(struct udevice *dev, unsigned int group_selector,
			    unsigned int func_selector);
int mtmips_pinctrl_probe(struct mtmips_pinctrl_priv *priv, u32 ngroups,
			 const struct mtmips_pmx_group *groups);

#endif /* _PINCTRL_MTMIPS_COMMON_H_ */