pinctrl: sh-pfc: Move SoC-specific forward declarations to sh_pfc.h
[linux-2.6-block.git] / drivers / pinctrl / sh-pfc / core.h
1 /*
2  * SuperH Pin Function Controller support.
3  *
4  * Copyright (C) 2012  Renesas Solutions Corp.
5  *
6  * This file is subject to the terms and conditions of the GNU General Public
7  * License.  See the file "COPYING" in the main directory of this archive
8  * for more details.
9  */
10 #ifndef __SH_PFC_CORE_H__
11 #define __SH_PFC_CORE_H__
12
13 #include <linux/compiler.h>
14 #include <linux/spinlock.h>
15 #include <linux/types.h>
16
17 #include "sh_pfc.h"
18
19 struct sh_pfc_window {
20         phys_addr_t phys;
21         void __iomem *virt;
22         unsigned long size;
23 };
24
25 struct sh_pfc_chip;
26 struct sh_pfc_pinctrl;
27
28 struct sh_pfc_pin_range {
29         u16 start;
30         u16 end;
31 };
32
33 struct sh_pfc {
34         struct device *dev;
35         const struct sh_pfc_soc_info *info;
36         spinlock_t lock;
37
38         unsigned int num_windows;
39         struct sh_pfc_window *windows;
40         unsigned int num_irqs;
41         unsigned int *irqs;
42
43         struct sh_pfc_pin_range *ranges;
44         unsigned int nr_ranges;
45
46         unsigned int nr_gpio_pins;
47
48         struct sh_pfc_chip *gpio;
49 #ifdef CONFIG_SUPERH
50         struct sh_pfc_chip *func;
51 #endif
52
53 };
54
55 int sh_pfc_register_gpiochip(struct sh_pfc *pfc);
56 int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc);
57
58 int sh_pfc_register_pinctrl(struct sh_pfc *pfc);
59
60 u32 sh_pfc_read_raw_reg(void __iomem *mapped_reg, unsigned int reg_width);
61 void sh_pfc_write_raw_reg(void __iomem *mapped_reg, unsigned int reg_width,
62                           u32 data);
63 u32 sh_pfc_read_reg(struct sh_pfc *pfc, u32 reg, unsigned int width);
64 void sh_pfc_write_reg(struct sh_pfc *pfc, u32 reg, unsigned int width,
65                       u32 data);
66
67 int sh_pfc_get_pin_index(struct sh_pfc *pfc, unsigned int pin);
68 int sh_pfc_config_mux(struct sh_pfc *pfc, unsigned mark, int pinmux_type);
69
70 #endif /* __SH_PFC_CORE_H__ */