blob: f1b4ca15c14ecb27f88ba8d94758e3ca0cb9915f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*/
#ifndef _NVS_GTE_IRQ_H_
#define _NVS_GTE_IRQ_H_
#include <linux/device.h>
struct nvs_gte_irq {
void *gte;
const char *dev_name;
int gpio;
int irq;
u64 irq_ts;
u64 err_n;
};
struct nvs_gte_sts {
unsigned int ver;
char *gte;
char *err;
u64 ts_ns;
u64 ts_raw;
};
int nvs_gte_ts(struct nvs_gte_irq *ngi);
int nvs_gte_exit(struct device *dev, struct nvs_gte_irq *ngi, unsigned int n);
int nvs_gte_init(struct device *dev, struct nvs_gte_irq *ngi, unsigned int n);
int nvs_gte_sts(struct nvs_gte_irq *ngi, struct nvs_gte_sts *ngs);
#endif /* _NVS_GTE_IRQ_H_ */
|