2 * Copyright (C) 2015 CNEX Labs. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License version
6 * 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; see the file COPYING. If not, write to
15 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
19 #ifndef _UAPI_LINUX_LIGHTNVM_H
20 #define _UAPI_LINUX_LIGHTNVM_H
23 #include <linux/kernel.h>
24 #include <linux/ioctl.h>
25 #else /* __KERNEL__ */
27 #include <sys/ioctl.h>
28 #define DISK_NAME_LEN 32
29 #endif /* __KERNEL__ */
31 #include <linux/types.h>
32 #include <linux/ioctl.h>
34 #define NVM_TTYPE_NAME_MAX 48
35 #define NVM_TTYPE_MAX 63
36 #define NVM_MMTYPE_LEN 8
38 #define NVM_CTRL_FILE "/dev/lightnvm/control"
40 struct nvm_ioctl_info_tgt
{
43 char tgtname
[NVM_TTYPE_NAME_MAX
];
46 struct nvm_ioctl_info
{
47 __u32 version
[3]; /* in/out - major, minor, patch */
48 __u16 tgtsize
; /* number of targets */
49 __u16 reserved16
; /* pad to 4K page */
51 struct nvm_ioctl_info_tgt tgts
[NVM_TTYPE_MAX
];
55 NVM_DEVICE_ACTIVE
= 1 << 0,
58 struct nvm_ioctl_device_info
{
59 char devname
[DISK_NAME_LEN
];
60 char bmname
[NVM_TTYPE_NAME_MAX
];
66 struct nvm_ioctl_get_devices
{
69 struct nvm_ioctl_device_info info
[31];
72 struct nvm_ioctl_create_simple
{
78 NVM_CONFIG_TYPE_SIMPLE
= 0,
81 struct nvm_ioctl_create_conf
{
84 struct nvm_ioctl_create_simple s
;
88 struct nvm_ioctl_create
{
89 char dev
[DISK_NAME_LEN
]; /* open-channel SSD device */
90 char tgttype
[NVM_TTYPE_NAME_MAX
]; /* target type name */
91 char tgtname
[DISK_NAME_LEN
]; /* dev to expose target as */
95 struct nvm_ioctl_create_conf conf
;
98 struct nvm_ioctl_remove
{
99 char tgtname
[DISK_NAME_LEN
];
104 struct nvm_ioctl_dev_init
{
105 char dev
[DISK_NAME_LEN
]; /* open-channel SSD device */
106 char mmtype
[NVM_MMTYPE_LEN
]; /* register to media manager */
112 NVM_FACTORY_ERASE_ONLY_USER
= 1 << 0, /* erase only blocks used as
113 * host blks or grown blks */
114 NVM_FACTORY_RESET_HOST_BLKS
= 1 << 1, /* remove host blk marks */
115 NVM_FACTORY_RESET_GRWN_BBLKS
= 1 << 2, /* remove grown blk marks */
116 NVM_FACTORY_NR_BITS
= 1 << 3, /* stops here */
119 struct nvm_ioctl_dev_factory
{
120 char dev
[DISK_NAME_LEN
];
125 /* The ioctl type, 'L', 0x20 - 0x2F documented in ioctl-number.txt */
131 /* device level cmds */
135 /* Init a device to support LightNVM media managers */
138 /* Factory reset device */
142 #define NVM_IOCTL 'L' /* 0x4c */
144 #define NVM_INFO _IOWR(NVM_IOCTL, NVM_INFO_CMD, \
145 struct nvm_ioctl_info)
146 #define NVM_GET_DEVICES _IOR(NVM_IOCTL, NVM_GET_DEVICES_CMD, \
147 struct nvm_ioctl_get_devices)
148 #define NVM_DEV_CREATE _IOW(NVM_IOCTL, NVM_DEV_CREATE_CMD, \
149 struct nvm_ioctl_create)
150 #define NVM_DEV_REMOVE _IOW(NVM_IOCTL, NVM_DEV_REMOVE_CMD, \
151 struct nvm_ioctl_remove)
152 #define NVM_DEV_INIT _IOW(NVM_IOCTL, NVM_DEV_INIT_CMD, \
153 struct nvm_ioctl_dev_init)
154 #define NVM_DEV_FACTORY _IOW(NVM_IOCTL, NVM_DEV_FACTORY_CMD, \
155 struct nvm_ioctl_dev_factory)
157 #define NVM_VERSION_MAJOR 1
158 #define NVM_VERSION_MINOR 0
159 #define NVM_VERSION_PATCHLEVEL 0