mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
69f637c335
-----BEGIN PGP SIGNATURE----- iQJEBAABCAAuFiEEwPw5LcreJtl1+l5K99NY+ylx4KYFAl/XgdYQHGF4Ym9lQGtl cm5lbC5kawAKCRD301j7KXHgpjTBD/4me2TNvGOogbcL0b1leAotndJ7spI/IcFM NUMNy3pOGuRBcRjwle85xq44puAjlNkZE2LLatem5sT7ZvS+8lPNnOIoTYgfaCjt PhKx2sKlLumVm3BwymYAPcPtke4fikGG15Mwu5nX1oOehmyGrjObGAr3Lo6gexCT tQoCOczVqaTsV+iTXrLlmgEgs07J9Tm93uh2cNR8Jgroxb8ivuWeUq4YgbV4kWk+ Y8XvOyVE/yba0vQf5/hHtWuVoC6RdELnqZ6NCkcP/EicdBecwk1GMJAej1S3zPS1 0BT7GSFTpm3YUHcygD6LRmRg4I/BmWDTDtMi84+jLat6VvSG1HwIm//qHiCJh3ku SlvFZENIWAv5LP92x2vlR5Lt7uE3GK2V/5Pxt2fekyzCth6mzu+hLH4CBPQ3xgyd E1JqIQ/ilbXstp+EYoivV5x8yltZQnKEZRopws0EOqj1LsmDPj9XT1wzE9RnB0o+ PWu/DNhQFhhcmP7Z8uLgPiKIVpyGs+vjxiJLlTtGDFTCy6M5JbcgzGkEkSmnybxH 7lSanjpLt1dWj85FBMc6fNtJkv2rBPfb4+j0d1kZ45Dzcr4umirGIh7wtCHcgc83 brmXSt29hlKHseSHMMuNWK8haXcgAE7gq9tD8GZ/kzM7+vkmLLxHJa22Qhq5rp4w URPeaBaQJw== =ayp2 -----END PGP SIGNATURE----- Merge tag 'for-5.11/drivers-2020-12-14' of git://git.kernel.dk/linux-block Pull block driver updates from Jens Axboe: "Nothing major in here: - NVMe pull request from Christoph: - nvmet passthrough improvements (Chaitanya Kulkarni) - fcloop error injection support (James Smart) - read-only support for zoned namespaces without Zone Append (Javier González) - improve some error message (Minwoo Im) - reject I/O to offline fabrics namespaces (Victor Gladkov) - PCI queue allocation cleanups (Niklas Schnelle) - remove an unused allocation in nvmet (Amit Engel) - a Kconfig spelling fix (Colin Ian King) - nvme_req_qid simplication (Baolin Wang) - MD pull request from Song: - Fix race condition in md_ioctl() (Dae R. Jeong) - Initialize read_slot properly for raid10 (Kevin Vigor) - Code cleanup (Pankaj Gupta) - md-cluster resync/reshape fix (Zhao Heming) - Move null_blk into its own directory (Damien Le Moal) - null_blk zone and discard improvements (Damien Le Moal) - bcache race fix (Dongsheng Yang) - Set of rnbd fixes/improvements (Gioh Kim, Guoqing Jiang, Jack Wang, Lutz Pogrell, Md Haris Iqbal) - lightnvm NULL pointer deref fix (tangzhenhao) - sr in_interrupt() removal (Sebastian Andrzej Siewior) - FC endpoint security support for s390/dasd (Jan Höppner, Sebastian Ott, Vineeth Vijayan). From the s390 arch guys, arch bits included as it made it easier for them to funnel the feature through the block driver tree. - Follow up fixes (Colin Ian King)" * tag 'for-5.11/drivers-2020-12-14' of git://git.kernel.dk/linux-block: (64 commits) block: drop dead assignments in loop_init() sr: Remove in_interrupt() usage in sr_init_command(). sr: Switch the sector size back to 2048 if sr_read_sector() changed it. cdrom: Reset sector_size back it is not 2048. drivers/lightnvm: fix a null-ptr-deref bug in pblk-core.c null_blk: Move driver into its own directory null_blk: Allow controlling max_hw_sectors limit null_blk: discard zones on reset null_blk: cleanup discard handling null_blk: Improve implicit zone close null_blk: improve zone locking block: Align max_hw_sectors to logical blocksize null_blk: Fail zone append to conventional zones null_blk: Fix zone size initialization bcache: fix race between setting bdev state to none and new write request direct to backing block/rnbd: fix a null pointer dereference on dev->blk_symlink_name block/rnbd-clt: Dynamically alloc buffer for pathname & blk_symlink_name block/rnbd: call kobject_put in the failure path Documentation/ABI/rnbd-srv: add document for force_close block/rnbd-srv: close a mapped device from server side. ...
240 lines
8.3 KiB
C
240 lines
8.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright IBM Corp. 2002, 2009
|
|
*
|
|
* Author(s): Arnd Bergmann <arndb@de.ibm.com>
|
|
*
|
|
* Interface for CCW device drivers
|
|
*/
|
|
#ifndef _S390_CCWDEV_H_
|
|
#define _S390_CCWDEV_H_
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <asm/chsc.h>
|
|
#include <asm/fcx.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/schid.h>
|
|
|
|
/* structs from asm/cio.h */
|
|
struct irb;
|
|
struct ccw1;
|
|
struct ccw_dev_id;
|
|
|
|
/* simplified initializers for struct ccw_device:
|
|
* CCW_DEVICE and CCW_DEVICE_DEVTYPE initialize one
|
|
* entry in your MODULE_DEVICE_TABLE and set the match_flag correctly */
|
|
#define CCW_DEVICE(cu, cum) \
|
|
.cu_type=(cu), .cu_model=(cum), \
|
|
.match_flags=(CCW_DEVICE_ID_MATCH_CU_TYPE \
|
|
| (cum ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0))
|
|
|
|
#define CCW_DEVICE_DEVTYPE(cu, cum, dev, devm) \
|
|
.cu_type=(cu), .cu_model=(cum), .dev_type=(dev), .dev_model=(devm),\
|
|
.match_flags=CCW_DEVICE_ID_MATCH_CU_TYPE \
|
|
| ((cum) ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0) \
|
|
| CCW_DEVICE_ID_MATCH_DEVICE_TYPE \
|
|
| ((devm) ? CCW_DEVICE_ID_MATCH_DEVICE_MODEL : 0)
|
|
|
|
/* scan through an array of device ids and return the first
|
|
* entry that matches the device.
|
|
*
|
|
* the array must end with an entry containing zero match_flags
|
|
*/
|
|
static inline const struct ccw_device_id *
|
|
ccw_device_id_match(const struct ccw_device_id *array,
|
|
const struct ccw_device_id *match)
|
|
{
|
|
const struct ccw_device_id *id = array;
|
|
|
|
for (id = array; id->match_flags; id++) {
|
|
if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_TYPE)
|
|
&& (id->cu_type != match->cu_type))
|
|
continue;
|
|
|
|
if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_MODEL)
|
|
&& (id->cu_model != match->cu_model))
|
|
continue;
|
|
|
|
if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_TYPE)
|
|
&& (id->dev_type != match->dev_type))
|
|
continue;
|
|
|
|
if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_MODEL)
|
|
&& (id->dev_model != match->dev_model))
|
|
continue;
|
|
|
|
return id;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* struct ccw_device - channel attached device
|
|
* @ccwlock: pointer to device lock
|
|
* @id: id of this device
|
|
* @drv: ccw driver for this device
|
|
* @dev: embedded device structure
|
|
* @online: online status of device
|
|
* @handler: interrupt handler
|
|
*
|
|
* @handler is a member of the device rather than the driver since a driver
|
|
* can have different interrupt handlers for different ccw devices
|
|
* (multi-subchannel drivers).
|
|
*/
|
|
struct ccw_device {
|
|
spinlock_t *ccwlock;
|
|
/* private: */
|
|
struct ccw_device_private *private; /* cio private information */
|
|
/* public: */
|
|
struct ccw_device_id id;
|
|
struct ccw_driver *drv;
|
|
struct device dev;
|
|
int online;
|
|
void (*handler) (struct ccw_device *, unsigned long, struct irb *);
|
|
};
|
|
|
|
/*
|
|
* Possible events used by the path_event notifier.
|
|
*/
|
|
#define PE_NONE 0x0
|
|
#define PE_PATH_GONE 0x1 /* A path is no longer available. */
|
|
#define PE_PATH_AVAILABLE 0x2 /* A path has become available and
|
|
was successfully verified. */
|
|
#define PE_PATHGROUP_ESTABLISHED 0x4 /* A pathgroup was reset and had
|
|
to be established again. */
|
|
#define PE_PATH_FCES_EVENT 0x8 /* The FCES Status of a path has
|
|
* changed. */
|
|
|
|
/*
|
|
* Possible CIO actions triggered by the unit check handler.
|
|
*/
|
|
enum uc_todo {
|
|
UC_TODO_RETRY,
|
|
UC_TODO_RETRY_ON_NEW_PATH,
|
|
UC_TODO_STOP
|
|
};
|
|
|
|
/**
|
|
* struct ccw_driver - device driver for channel attached devices
|
|
* @ids: ids supported by this driver
|
|
* @probe: function called on probe
|
|
* @remove: function called on remove
|
|
* @set_online: called when setting device online
|
|
* @set_offline: called when setting device offline
|
|
* @notify: notify driver of device state changes
|
|
* @path_event: notify driver of channel path events
|
|
* @shutdown: called at device shutdown
|
|
* @uc_handler: callback for unit check handler
|
|
* @driver: embedded device driver structure
|
|
* @int_class: interruption class to use for accounting interrupts
|
|
*/
|
|
struct ccw_driver {
|
|
struct ccw_device_id *ids;
|
|
int (*probe) (struct ccw_device *);
|
|
void (*remove) (struct ccw_device *);
|
|
int (*set_online) (struct ccw_device *);
|
|
int (*set_offline) (struct ccw_device *);
|
|
int (*notify) (struct ccw_device *, int);
|
|
void (*path_event) (struct ccw_device *, int *);
|
|
void (*shutdown) (struct ccw_device *);
|
|
enum uc_todo (*uc_handler) (struct ccw_device *, struct irb *);
|
|
struct device_driver driver;
|
|
enum interruption_class int_class;
|
|
};
|
|
|
|
extern struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
|
|
const char *bus_id);
|
|
|
|
/* devices drivers call these during module load and unload.
|
|
* When a driver is registered, its probe method is called
|
|
* when new devices for its type pop up */
|
|
extern int ccw_driver_register (struct ccw_driver *driver);
|
|
extern void ccw_driver_unregister (struct ccw_driver *driver);
|
|
|
|
struct ccw1;
|
|
|
|
extern int ccw_device_set_options_mask(struct ccw_device *, unsigned long);
|
|
extern int ccw_device_set_options(struct ccw_device *, unsigned long);
|
|
extern void ccw_device_clear_options(struct ccw_device *, unsigned long);
|
|
int ccw_device_is_pathgroup(struct ccw_device *cdev);
|
|
int ccw_device_is_multipath(struct ccw_device *cdev);
|
|
|
|
/* Allow for i/o completion notification after primary interrupt status. */
|
|
#define CCWDEV_EARLY_NOTIFICATION 0x0001
|
|
/* Report all interrupt conditions. */
|
|
#define CCWDEV_REPORT_ALL 0x0002
|
|
/* Try to perform path grouping. */
|
|
#define CCWDEV_DO_PATHGROUP 0x0004
|
|
/* Allow forced onlining of boxed devices. */
|
|
#define CCWDEV_ALLOW_FORCE 0x0008
|
|
/* Try to use multipath mode. */
|
|
#define CCWDEV_DO_MULTIPATH 0x0010
|
|
|
|
extern int ccw_device_start(struct ccw_device *, struct ccw1 *,
|
|
unsigned long, __u8, unsigned long);
|
|
extern int ccw_device_start_timeout(struct ccw_device *, struct ccw1 *,
|
|
unsigned long, __u8, unsigned long, int);
|
|
extern int ccw_device_start_key(struct ccw_device *, struct ccw1 *,
|
|
unsigned long, __u8, __u8, unsigned long);
|
|
extern int ccw_device_start_timeout_key(struct ccw_device *, struct ccw1 *,
|
|
unsigned long, __u8, __u8,
|
|
unsigned long, int);
|
|
|
|
|
|
extern int ccw_device_resume(struct ccw_device *);
|
|
extern int ccw_device_halt(struct ccw_device *, unsigned long);
|
|
extern int ccw_device_clear(struct ccw_device *, unsigned long);
|
|
int ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw,
|
|
unsigned long intparm, u8 lpm, u8 key);
|
|
int ccw_device_tm_start_key(struct ccw_device *, struct tcw *,
|
|
unsigned long, u8, u8);
|
|
int ccw_device_tm_start_timeout_key(struct ccw_device *, struct tcw *,
|
|
unsigned long, u8, u8, int);
|
|
int ccw_device_tm_start(struct ccw_device *, struct tcw *,
|
|
unsigned long, u8);
|
|
int ccw_device_tm_start_timeout(struct ccw_device *, struct tcw *,
|
|
unsigned long, u8, int);
|
|
int ccw_device_tm_intrg(struct ccw_device *cdev);
|
|
|
|
int ccw_device_get_mdc(struct ccw_device *cdev, u8 mask);
|
|
|
|
extern int ccw_device_set_online(struct ccw_device *cdev);
|
|
extern int ccw_device_set_offline(struct ccw_device *cdev);
|
|
|
|
|
|
extern struct ciw *ccw_device_get_ciw(struct ccw_device *, __u32 cmd);
|
|
extern __u8 ccw_device_get_path_mask(struct ccw_device *);
|
|
extern void ccw_device_get_id(struct ccw_device *, struct ccw_dev_id *);
|
|
|
|
#define get_ccwdev_lock(x) (x)->ccwlock
|
|
|
|
#define to_ccwdev(n) container_of(n, struct ccw_device, dev)
|
|
#define to_ccwdrv(n) container_of(n, struct ccw_driver, driver)
|
|
|
|
extern struct ccw_device *ccw_device_create_console(struct ccw_driver *);
|
|
extern void ccw_device_destroy_console(struct ccw_device *);
|
|
extern int ccw_device_enable_console(struct ccw_device *);
|
|
extern void ccw_device_wait_idle(struct ccw_device *);
|
|
extern int ccw_device_force_console(struct ccw_device *);
|
|
|
|
extern void *ccw_device_dma_zalloc(struct ccw_device *cdev, size_t size);
|
|
extern void ccw_device_dma_free(struct ccw_device *cdev,
|
|
void *cpu_addr, size_t size);
|
|
|
|
int ccw_device_siosl(struct ccw_device *);
|
|
|
|
extern void ccw_device_get_schid(struct ccw_device *, struct subchannel_id *);
|
|
|
|
struct channel_path_desc_fmt0 *ccw_device_get_chp_desc(struct ccw_device *, int);
|
|
u8 *ccw_device_get_util_str(struct ccw_device *cdev, int chp_idx);
|
|
int ccw_device_pnso(struct ccw_device *cdev,
|
|
struct chsc_pnso_area *pnso_area, u8 oc,
|
|
struct chsc_pnso_resume_token resume_token, int cnc);
|
|
int ccw_device_get_cssid(struct ccw_device *cdev, u8 *cssid);
|
|
int ccw_device_get_iid(struct ccw_device *cdev, u8 *iid);
|
|
int ccw_device_get_chpid(struct ccw_device *cdev, int chp_idx, u8 *chpid);
|
|
int ccw_device_get_chid(struct ccw_device *cdev, int chp_idx, u16 *chid);
|
|
#endif /* _S390_CCWDEV_H_ */
|