1 /* SPDX-License-Identifier: GPL-2.0 */
3 * SE/HMC Drive FTP Services
5 * Copyright IBM Corp. 2013
6 * Author(s): Ralf Hoppe (rhoppe@de.ibm.com)
9 #ifndef __HMCDRV_FTP_H__
10 #define __HMCDRV_FTP_H__
12 #include <linux/types.h> /* size_t, loff_t */
15 * HMC drive FTP Service max. length of path (w/ EOS)
17 #define HMCDRV_FTP_FIDENT_MAX 192
20 * enum hmcdrv_ftp_cmdid - HMC drive FTP commands
21 * @HMCDRV_FTP_NOOP: do nothing (only for probing)
22 * @HMCDRV_FTP_GET: read a file
23 * @HMCDRV_FTP_PUT: (over-) write a file
24 * @HMCDRV_FTP_APPEND: append to a file
25 * @HMCDRV_FTP_DIR: list directory long (ls -l)
26 * @HMCDRV_FTP_NLIST: list files, no directories (name list)
27 * @HMCDRV_FTP_DELETE: delete a file
28 * @HMCDRV_FTP_CANCEL: cancel operation (SCLP/LPAR only)
30 enum hmcdrv_ftp_cmdid
{
34 HMCDRV_FTP_APPEND
= 3,
37 HMCDRV_FTP_DELETE
= 6,
42 * struct hmcdrv_ftp_cmdspec - FTP command specification
44 * @ofs: offset in file
45 * @fname: filename (ASCII), null-terminated
46 * @buf: kernel-space transfer data buffer, 4k aligned
47 * @len: (max) number of bytes to transfer from/to @buf
49 struct hmcdrv_ftp_cmdspec
{
50 enum hmcdrv_ftp_cmdid id
;
57 int hmcdrv_ftp_startup(void);
58 void hmcdrv_ftp_shutdown(void);
59 int hmcdrv_ftp_probe(void);
60 ssize_t
hmcdrv_ftp_do(const struct hmcdrv_ftp_cmdspec
*ftp
);
61 ssize_t
hmcdrv_ftp_cmd(char __kernel
*cmd
, loff_t offset
,
62 char __user
*buf
, size_t len
);
64 #endif /* __HMCDRV_FTP_H__ */