/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
/*
 * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved.
 */

#ifndef _NFCINFO_H_
#define _NFCINFO_H_

#include <linux/ioctl.h>

#define NFCC_MAGIC 0xE9
#define NFCC_GET_INFO _IOW(NFCC_MAGIC, 0x09, unsigned int)

struct nqx_devinfo {
	unsigned char chip_type;
	unsigned char rom_version;
	unsigned char fw_major;
	unsigned char fw_minor;
};

union nqx_uinfo {
	unsigned int i;
	struct nqx_devinfo info;
};

#endif
