2019-05-19 13:51:43 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2016-04-23 07:40:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 HiSilicon Technologies Co., Ltd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HISI_RESET_H
|
|
|
|
#define __HISI_RESET_H
|
|
|
|
|
|
|
|
struct device_node;
|
|
|
|
struct hisi_reset_controller;
|
|
|
|
|
|
|
|
#ifdef CONFIG_RESET_CONTROLLER
|
2016-06-15 06:26:34 +00:00
|
|
|
struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev);
|
2016-04-23 07:40:28 +00:00
|
|
|
void hisi_reset_exit(struct hisi_reset_controller *rstc);
|
|
|
|
#else
|
2016-06-15 06:26:34 +00:00
|
|
|
static inline
|
|
|
|
struct hisi_reset_controller *hisi_reset_init(struct platform_device *pdev)
|
2016-04-23 07:40:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static inline void hisi_reset_exit(struct hisi_reset_controller *rstc)
|
|
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __HISI_RESET_H */
|