hc
2024-08-12 0517ab8c70e05fc5877c0c6dae1a5f42a16dcf88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) Rockchip Electronics Co.Ltd
 * Author: Felix Zeng <felix.zeng@rock-chips.com>
 */
 
#ifndef __LINUX_RKNPU_RESET_H
#define __LINUX_RKNPU_RESET_H
 
#include <linux/reset.h>
 
#include "rknpu_drv.h"
 
int rknpu_reset_get(struct rknpu_device *rknpu_dev);
 
int rknpu_soft_reset(struct rknpu_device *rknpu_dev);
 
#endif