2 * SuperH Pin Function Controller support.
4 * Copyright (C) 2012 Renesas Solutions Corp.
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
10 #ifndef __SH_PFC_CORE_H__
11 #define __SH_PFC_CORE_H__
13 #include <linux/compiler.h>
14 #include <linux/spinlock.h>
15 #include <linux/types.h>
19 struct sh_pfc_window
{
26 struct sh_pfc_pinctrl
;
28 struct sh_pfc_pin_range
{
35 const struct sh_pfc_soc_info
*info
;
38 unsigned int num_windows
;
39 struct sh_pfc_window
*windows
;
40 unsigned int num_irqs
;
43 struct sh_pfc_pin_range
*ranges
;
44 unsigned int nr_ranges
;
46 unsigned int nr_gpio_pins
;
48 struct sh_pfc_chip
*gpio
;
49 struct sh_pfc_chip
*func
;
51 struct sh_pfc_pinctrl
*pinctrl
;
54 int sh_pfc_register_gpiochip(struct sh_pfc
*pfc
);
55 int sh_pfc_unregister_gpiochip(struct sh_pfc
*pfc
);
57 int sh_pfc_register_pinctrl(struct sh_pfc
*pfc
);
58 int sh_pfc_unregister_pinctrl(struct sh_pfc
*pfc
);
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
,
64 int sh_pfc_get_pin_index(struct sh_pfc
*pfc
, unsigned int pin
);
65 int sh_pfc_config_mux(struct sh_pfc
*pfc
, unsigned mark
, int pinmux_type
);
67 extern const struct sh_pfc_soc_info emev2_pinmux_info
;
68 extern const struct sh_pfc_soc_info r8a73a4_pinmux_info
;
69 extern const struct sh_pfc_soc_info r8a7740_pinmux_info
;
70 extern const struct sh_pfc_soc_info r8a7778_pinmux_info
;
71 extern const struct sh_pfc_soc_info r8a7779_pinmux_info
;
72 extern const struct sh_pfc_soc_info r8a7790_pinmux_info
;
73 extern const struct sh_pfc_soc_info r8a7791_pinmux_info
;
74 extern const struct sh_pfc_soc_info sh7203_pinmux_info
;
75 extern const struct sh_pfc_soc_info sh7264_pinmux_info
;
76 extern const struct sh_pfc_soc_info sh7269_pinmux_info
;
77 extern const struct sh_pfc_soc_info sh73a0_pinmux_info
;
78 extern const struct sh_pfc_soc_info sh7720_pinmux_info
;
79 extern const struct sh_pfc_soc_info sh7722_pinmux_info
;
80 extern const struct sh_pfc_soc_info sh7723_pinmux_info
;
81 extern const struct sh_pfc_soc_info sh7724_pinmux_info
;
82 extern const struct sh_pfc_soc_info sh7734_pinmux_info
;
83 extern const struct sh_pfc_soc_info sh7757_pinmux_info
;
84 extern const struct sh_pfc_soc_info sh7785_pinmux_info
;
85 extern const struct sh_pfc_soc_info sh7786_pinmux_info
;
86 extern const struct sh_pfc_soc_info shx3_pinmux_info
;
88 #endif /* __SH_PFC_CORE_H__ */