aboutsummaryrefslogtreecommitdiff
path: root/drivers/pinctrl/nexell/pinctrl-nexell.h
blob: b21eefcabef77419b1a63d5059676b2418cea621 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* SPDX-License-Identifier: GPL-2.0+
 *
 * Pinctrl driver for Nexell SoCs
 * (C) Copyright 2016 Nexell
 * Bongyu, KOO <freestyle@nexell.co.kr>
 *
 */

#ifndef __PINCTRL_NEXELL_H_
#define __PINCTRL_NEXELL_H_

/**
 * struct nexell_pin_bank_data: represent a controller pin-bank data.
 * @offset: starting offset of the pin-bank registers.
 * @nr_pins: number of pins included in this bank.
 * @name: name to be prefixed for each pin in this pin bank.
 */
struct nexell_pin_bank_data {
	u32		offset;
	u8		nr_pins;
	const char	*name;
	u8		type;
};

#define NEXELL_PIN_BANK(pins, reg, id)			\
	{						\
		.offset		= reg,			\
		.nr_pins	= pins,			\
		.name		= id			\
	}

/**
 * struct nexell_pin_ctrl: represent a pin controller.
 * @pin_banks: list of pin banks included in this controller.
 * @nr_banks: number of pin banks.
 */
struct nexell_pin_ctrl {
	const struct nexell_pin_bank_data *pin_banks;
	u32 nr_banks;
};

/**
 * struct nexell_pinctrl_priv: nexell pin controller driver private data
 * @pin_ctrl: pin controller bank information.
 * @base: base address of the pin controller instance.
 */
struct nexell_pinctrl_priv {
	const struct nexell_pin_ctrl *pin_ctrl;
	unsigned long base;
};

/**
 * struct nexell_pinctrl_config_data: configuration for a peripheral.
 * @offset: offset of the config registers in the controller.
 * @mask: value of the register to be masked with.
 * @value: new value to be programmed.
 */
struct nexell_pinctrl_config_data {
	const unsigned int	offset;
	const unsigned int	mask;
	const unsigned int	value;
};

unsigned long pin_to_bank_base(struct udevice *dev, const char *pin_name,
			       u32 *pin);
int nexell_pinctrl_probe(struct udevice *dev);

#endif /* __PINCTRL_NEXELL_H_ */