]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/pinctrl/freescale/pinctrl-imx.h
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-bionic-kernel.git] / drivers / pinctrl / freescale / pinctrl-imx.h
CommitLineData
ae75ff81
DA
1/*
2 * IMX pinmux core definitions
3 *
4 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 * Copyright (C) 2012 Linaro Ltd.
6 *
7 * Author: Dong Aisheng <dong.aisheng@linaro.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15#ifndef __DRIVERS_PINCTRL_IMX_H
16#define __DRIVERS_PINCTRL_IMX_H
17
18struct platform_device;
19
8f903f8a 20/**
e566fc11 21 * struct imx_pin - describes a single i.MX pin
8f903f8a
SH
22 * @pin: the pin_id of this pin
23 * @mux_mode: the mux mode for this pin.
24 * @input_reg: the select input register offset for this pin if any
25 * 0 if no select input setting needed.
26 * @input_val: the select input value for this pin.
27 * @configs: the config for this pin.
28 */
29struct imx_pin {
30 unsigned int pin;
31 unsigned int mux_mode;
32 u16 input_reg;
33 unsigned int input_val;
34 unsigned long config;
35};
36
ae75ff81
DA
37/**
38 * struct imx_pin_reg - describe a pin reg map
ae75ff81
DA
39 * @mux_reg: mux register offset
40 * @conf_reg: config register offset
ae75ff81
DA
41 */
42struct imx_pin_reg {
3dac1918
SA
43 s16 mux_reg;
44 s16 conf_reg;
ae75ff81
DA
45};
46
47struct imx_pinctrl_soc_info {
48 struct device *dev;
49 const struct pinctrl_pin_desc *pins;
50 unsigned int npins;
e1641531 51 struct imx_pin_reg *pin_regs;
ee163518 52 unsigned int group_index;
bf5a5309 53 unsigned int flags;
8626ada8 54 const char *gpr_compatible;
a51c158b 55 struct mutex mutex;
ae75ff81
DA
56};
57
3dac1918 58#define SHARE_MUX_CONF_REG 0x1
e7b37a52 59#define ZERO_OFFSET_VALID 0x2
bf5a5309 60
ae75ff81
DA
61#define NO_MUX 0x0
62#define NO_PAD 0x0
63
ae75ff81
DA
64#define IMX_PINCTRL_PIN(pin) PINCTRL_PIN(pin, #pin)
65
66#define PAD_CTL_MASK(len) ((1 << len) - 1)
67#define IMX_MUX_MASK 0x7
68#define IOMUXC_CONFIG_SION (0x1 << 4)
69
70int imx_pinctrl_probe(struct platform_device *pdev,
71 struct imx_pinctrl_soc_info *info);
ae75ff81 72#endif /* __DRIVERS_PINCTRL_IMX_H */