2019-05-27 13:55:01 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-09-05 09:57:13 +07:00
|
|
|
/*
|
|
|
|
* System Control Driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Freescale Semiconductor, Inc.
|
|
|
|
* Copyright (C) 2012 Linaro Ltd.
|
|
|
|
*
|
|
|
|
* Author: Dong Aisheng <dong.aisheng@linaro.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_MFD_SYSCON_H__
|
|
|
|
#define __LINUX_MFD_SYSCON_H__
|
|
|
|
|
2014-05-09 18:07:40 +07:00
|
|
|
#include <linux/err.h>
|
2016-03-23 17:36:53 +07:00
|
|
|
#include <linux/errno.h>
|
2014-05-09 18:07:40 +07:00
|
|
|
|
2013-03-25 23:56:23 +07:00
|
|
|
struct device_node;
|
|
|
|
|
2013-10-22 15:46:25 +07:00
|
|
|
#ifdef CONFIG_MFD_SYSCON
|
2019-07-25 00:16:06 +07:00
|
|
|
extern struct regmap *device_node_to_regmap(struct device_node *np);
|
2012-09-05 09:57:13 +07:00
|
|
|
extern struct regmap *syscon_node_to_regmap(struct device_node *np);
|
|
|
|
extern struct regmap *syscon_regmap_lookup_by_compatible(const char *s);
|
|
|
|
extern struct regmap *syscon_regmap_lookup_by_phandle(
|
|
|
|
struct device_node *np,
|
|
|
|
const char *property);
|
2020-01-21 14:09:38 +07:00
|
|
|
extern struct regmap *syscon_regmap_lookup_by_phandle_args(
|
|
|
|
struct device_node *np,
|
|
|
|
const char *property,
|
|
|
|
int arg_count,
|
|
|
|
unsigned int *out_args);
|
2013-10-22 15:46:25 +07:00
|
|
|
#else
|
2019-07-25 00:16:06 +07:00
|
|
|
static inline struct regmap *device_node_to_regmap(struct device_node *np)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOTSUPP);
|
|
|
|
}
|
|
|
|
|
2013-10-22 15:46:25 +07:00
|
|
|
static inline struct regmap *syscon_node_to_regmap(struct device_node *np)
|
|
|
|
{
|
2016-01-29 15:42:19 +07:00
|
|
|
return ERR_PTR(-ENOTSUPP);
|
2013-10-22 15:46:25 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct regmap *syscon_regmap_lookup_by_compatible(const char *s)
|
|
|
|
{
|
2016-01-29 15:42:19 +07:00
|
|
|
return ERR_PTR(-ENOTSUPP);
|
2013-10-22 15:46:25 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct regmap *syscon_regmap_lookup_by_phandle(
|
|
|
|
struct device_node *np,
|
|
|
|
const char *property)
|
|
|
|
{
|
2016-01-29 15:42:19 +07:00
|
|
|
return ERR_PTR(-ENOTSUPP);
|
2013-10-22 15:46:25 +07:00
|
|
|
}
|
2020-01-21 14:09:38 +07:00
|
|
|
|
2020-01-30 19:55:29 +07:00
|
|
|
static inline struct regmap *syscon_regmap_lookup_by_phandle_args(
|
2020-01-21 14:09:38 +07:00
|
|
|
struct device_node *np,
|
|
|
|
const char *property,
|
|
|
|
int arg_count,
|
|
|
|
unsigned int *out_args)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-ENOTSUPP);
|
|
|
|
}
|
2013-10-22 15:46:25 +07:00
|
|
|
#endif
|
|
|
|
|
2012-09-05 09:57:13 +07:00
|
|
|
#endif /* __LINUX_MFD_SYSCON_H__ */
|