mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
Convert automotive ISC kernel driver to OOT module. Jira CAMERASW-7592 Change-Id: I0a81b58df941ef38bf0fb3226086e13b6d68d012 Signed-off-by: Frank Chen <frankc@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2811344 Reviewed-by: Justin Kim (SW-TEGRA) <juskim@nvidia.com> Reviewed-by: Shiva Dubey <sdubey@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __UAPI_TEGRA_ISC_MGR_H__
|
|
#define __UAPI_TEGRA_ISC_MGR_H__
|
|
|
|
#include <linux/ioctl.h>
|
|
#include <linux/types.h>
|
|
|
|
#define ISC_MGR_IOCTL_PWR_DN _IOW('o', 1, __s16)
|
|
#define ISC_MGR_IOCTL_PWR_UP _IOR('o', 2, __s16)
|
|
#define ISC_MGR_IOCTL_SET_PID _IOW('o', 3, struct isc_mgr_sinfo)
|
|
#define ISC_MGR_IOCTL_SIGNAL _IOW('o', 4, int)
|
|
#define ISC_MGR_IOCTL_DEV_ADD _IOW('o', 5, struct isc_mgr_new_dev)
|
|
#define ISC_MGR_IOCTL_DEV_DEL _IOW('o', 6, int)
|
|
#define ISC_MGR_IOCTL_PWR_INFO _IOW('o', 7, struct isc_mgr_pwr_info)
|
|
#define ISC_MGR_IOCTL_PWM_ENABLE _IOW('o', 8, int)
|
|
#define ISC_MGR_IOCTL_PWM_CONFIG _IOW('o', 9, struct isc_mgr_pwm_info)
|
|
#define ISC_MGR_IOCTL_WAIT_ERR _IO('o', 10)
|
|
#define ISC_MGR_IOCTL_ABORT_WAIT_ERR _IO('o', 11)
|
|
#define ISC_MGR_IOCTL_GET_EXT_PWR_CTRL _IOR('o', 12, __u8)
|
|
|
|
#define ISC_MGR_POWER_ALL 5
|
|
#define MAX_ISC_NAME_LENGTH 32
|
|
|
|
struct isc_mgr_new_dev {
|
|
__u16 addr;
|
|
__u8 reg_bits;
|
|
__u8 val_bits;
|
|
__u8 drv_name[MAX_ISC_NAME_LENGTH];
|
|
};
|
|
|
|
struct isc_mgr_sinfo {
|
|
__s32 pid;
|
|
__s32 sig_no;
|
|
__u64 context;
|
|
};
|
|
|
|
struct isc_mgr_pwr_info {
|
|
__s32 pwr_gpio;
|
|
__s32 pwr_status;
|
|
};
|
|
|
|
struct isc_mgr_pwm_info {
|
|
__u64 duty_ns;
|
|
__u64 period_ns;
|
|
};
|
|
|
|
enum {
|
|
ISC_MGR_PWM_DISABLE = 0,
|
|
ISC_MGR_PWM_ENABLE,
|
|
};
|
|
|
|
enum {
|
|
ISC_MGR_SIGNAL_RESUME = 0,
|
|
ISC_MGR_SIGNAL_SUSPEND,
|
|
};
|
|
|
|
#endif /* __UAPI_TEGRA_ISC_MGR_H__ */ |