2012-12-16 06:50:44 +08:00
|
|
|
/*
|
|
|
|
* SuperH Pin Function Controller support.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Renesas Solutions Corp.
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
#ifndef __SH_PFC_CORE_H__
|
|
|
|
#define __SH_PFC_CORE_H__
|
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2012-12-16 06:51:55 +08:00
|
|
|
#include "sh_pfc.h"
|
|
|
|
|
2012-12-16 06:50:53 +08:00
|
|
|
struct sh_pfc_window {
|
2012-12-16 06:50:44 +08:00
|
|
|
phys_addr_t phys;
|
|
|
|
void __iomem *virt;
|
|
|
|
unsigned long size;
|
|
|
|
};
|
|
|
|
|
2012-12-16 06:50:46 +08:00
|
|
|
struct sh_pfc_chip;
|
2012-12-16 06:50:47 +08:00
|
|
|
struct sh_pfc_pinctrl;
|
2012-12-16 06:50:46 +08:00
|
|
|
|
2012-12-16 06:50:44 +08:00
|
|
|
struct sh_pfc {
|
2012-12-16 06:50:47 +08:00
|
|
|
struct device *dev;
|
2012-12-16 06:51:20 +08:00
|
|
|
struct sh_pfc_soc_info *info;
|
2012-12-16 06:50:44 +08:00
|
|
|
spinlock_t lock;
|
|
|
|
|
2012-12-16 06:50:55 +08:00
|
|
|
unsigned int num_windows;
|
2012-12-16 06:50:53 +08:00
|
|
|
struct sh_pfc_window *window;
|
2012-12-16 06:50:55 +08:00
|
|
|
|
2012-12-16 06:50:46 +08:00
|
|
|
struct sh_pfc_chip *gpio;
|
2012-12-06 21:49:25 +08:00
|
|
|
struct sh_pfc_chip *func;
|
|
|
|
|
2012-12-16 06:50:47 +08:00
|
|
|
struct sh_pfc_pinctrl *pinctrl;
|
2012-12-16 06:50:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int sh_pfc_register_gpiochip(struct sh_pfc *pfc);
|
2012-12-16 06:50:46 +08:00
|
|
|
int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc);
|
2012-12-16 06:50:44 +08:00
|
|
|
|
|
|
|
int sh_pfc_register_pinctrl(struct sh_pfc *pfc);
|
2012-12-16 06:50:47 +08:00
|
|
|
int sh_pfc_unregister_pinctrl(struct sh_pfc *pfc);
|
2012-12-16 06:50:44 +08:00
|
|
|
|
|
|
|
int sh_pfc_read_bit(struct pinmux_data_reg *dr, unsigned long in_pos);
|
|
|
|
void sh_pfc_write_bit(struct pinmux_data_reg *dr, unsigned long in_pos,
|
|
|
|
unsigned long value);
|
|
|
|
int sh_pfc_get_data_reg(struct sh_pfc *pfc, unsigned gpio,
|
|
|
|
struct pinmux_data_reg **drp, int *bitp);
|
|
|
|
int sh_pfc_config_gpio(struct sh_pfc *pfc, unsigned gpio, int pinmux_type,
|
|
|
|
int cfg_mode);
|
|
|
|
|
2012-12-16 06:51:21 +08:00
|
|
|
extern struct sh_pfc_soc_info r8a7740_pinmux_info;
|
2012-12-16 06:51:22 +08:00
|
|
|
extern struct sh_pfc_soc_info r8a7779_pinmux_info;
|
2012-12-16 06:51:29 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7203_pinmux_info;
|
2012-12-16 06:51:30 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7264_pinmux_info;
|
2012-12-16 06:51:31 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7269_pinmux_info;
|
2012-12-16 06:51:23 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7372_pinmux_info;
|
2012-12-16 06:51:24 +08:00
|
|
|
extern struct sh_pfc_soc_info sh73a0_pinmux_info;
|
2012-12-16 06:51:32 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7720_pinmux_info;
|
2012-12-16 06:51:33 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7722_pinmux_info;
|
2012-12-16 06:51:34 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7723_pinmux_info;
|
2012-12-16 06:51:35 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7724_pinmux_info;
|
2012-12-16 06:51:36 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7734_pinmux_info;
|
2012-12-16 06:51:37 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7757_pinmux_info;
|
2012-12-16 06:51:38 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7785_pinmux_info;
|
2012-12-16 06:51:39 +08:00
|
|
|
extern struct sh_pfc_soc_info sh7786_pinmux_info;
|
2012-12-16 06:51:40 +08:00
|
|
|
extern struct sh_pfc_soc_info shx3_pinmux_info;
|
2012-12-16 06:51:21 +08:00
|
|
|
|
2012-12-16 06:50:44 +08:00
|
|
|
#endif /* __SH_PFC_CORE_H__ */
|