123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692 |
- /*
- * Copyright IBM Corp. 2002, 2009
- *
- * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
- * Cornelia Huck (cornelia.huck@de.ibm.com)
- */
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/errno.h>
- #include <linux/slab.h>
- #include <linux/list.h>
- #include <linux/device.h>
- #include <linux/delay.h>
- #include <linux/completion.h>
- #include <asm/ccwdev.h>
- #include <asm/idals.h>
- #include <asm/chpid.h>
- #include <asm/fcx.h>
- #include "cio.h"
- #include "cio_debug.h"
- #include "css.h"
- #include "chsc.h"
- #include "device.h"
- #include "chp.h"
- /**
- * ccw_device_set_options_mask() - set some options and unset the rest
- * @cdev: device for which the options are to be set
- * @flags: options to be set
- *
- * All flags specified in @flags are set, all flags not specified in @flags
- * are cleared.
- * Returns:
- * %0 on success, -%EINVAL on an invalid flag combination.
- */
- int ccw_device_set_options_mask(struct ccw_device *cdev, unsigned long flags)
- {
- /*
- * The flag usage is mutal exclusive ...
- */
- if ((flags & CCWDEV_EARLY_NOTIFICATION) &&
- (flags & CCWDEV_REPORT_ALL))
- return -EINVAL;
- cdev->private->options.fast = (flags & CCWDEV_EARLY_NOTIFICATION) != 0;
- cdev->private->options.repall = (flags & CCWDEV_REPORT_ALL) != 0;
- cdev->private->options.pgroup = (flags & CCWDEV_DO_PATHGROUP) != 0;
- cdev->private->options.force = (flags & CCWDEV_ALLOW_FORCE) != 0;
- cdev->private->options.mpath = (flags & CCWDEV_DO_MULTIPATH) != 0;
- return 0;
- }
- /**
- * ccw_device_set_options() - set some options
- * @cdev: device for which the options are to be set
- * @flags: options to be set
- *
- * All flags specified in @flags are set, the remainder is left untouched.
- * Returns:
- * %0 on success, -%EINVAL if an invalid flag combination would ensue.
- */
- int ccw_device_set_options(struct ccw_device *cdev, unsigned long flags)
- {
- /*
- * The flag usage is mutal exclusive ...
- */
- if (((flags & CCWDEV_EARLY_NOTIFICATION) &&
- (flags & CCWDEV_REPORT_ALL)) ||
- ((flags & CCWDEV_EARLY_NOTIFICATION) &&
- cdev->private->options.repall) ||
- ((flags & CCWDEV_REPORT_ALL) &&
- cdev->private->options.fast))
- return -EINVAL;
- cdev->private->options.fast |= (flags & CCWDEV_EARLY_NOTIFICATION) != 0;
- cdev->private->options.repall |= (flags & CCWDEV_REPORT_ALL) != 0;
- cdev->private->options.pgroup |= (flags & CCWDEV_DO_PATHGROUP) != 0;
- cdev->private->options.force |= (flags & CCWDEV_ALLOW_FORCE) != 0;
- cdev->private->options.mpath |= (flags & CCWDEV_DO_MULTIPATH) != 0;
- return 0;
- }
- /**
- * ccw_device_clear_options() - clear some options
- * @cdev: device for which the options are to be cleared
- * @flags: options to be cleared
- *
- * All flags specified in @flags are cleared, the remainder is left untouched.
- */
- void ccw_device_clear_options(struct ccw_device *cdev, unsigned long flags)
- {
- cdev->private->options.fast &= (flags & CCWDEV_EARLY_NOTIFICATION) == 0;
- cdev->private->options.repall &= (flags & CCWDEV_REPORT_ALL) == 0;
- cdev->private->options.pgroup &= (flags & CCWDEV_DO_PATHGROUP) == 0;
- cdev->private->options.force &= (flags & CCWDEV_ALLOW_FORCE) == 0;
- cdev->private->options.mpath &= (flags & CCWDEV_DO_MULTIPATH) == 0;
- }
- /**
- * ccw_device_is_pathgroup - determine if paths to this device are grouped
- * @cdev: ccw device
- *
- * Return non-zero if there is a path group, zero otherwise.
- */
- int ccw_device_is_pathgroup(struct ccw_device *cdev)
- {
- return cdev->private->flags.pgroup;
- }
- EXPORT_SYMBOL(ccw_device_is_pathgroup);
- /**
- * ccw_device_is_multipath - determine if device is operating in multipath mode
- * @cdev: ccw device
- *
- * Return non-zero if device is operating in multipath mode, zero otherwise.
- */
- int ccw_device_is_multipath(struct ccw_device *cdev)
- {
- return cdev->private->flags.mpath;
- }
- EXPORT_SYMBOL(ccw_device_is_multipath);
- /**
- * ccw_device_clear() - terminate I/O request processing
- * @cdev: target ccw device
- * @intparm: interruption parameter; value is only used if no I/O is
- * outstanding, otherwise the intparm associated with the I/O request
- * is returned
- *
- * ccw_device_clear() calls csch on @cdev's subchannel.
- * Returns:
- * %0 on success,
- * -%ENODEV on device not operational,
- * -%EINVAL on invalid device state.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_clear(struct ccw_device *cdev, unsigned long intparm)
- {
- struct subchannel *sch;
- int ret;
- if (!cdev || !cdev->dev.parent)
- return -ENODEV;
- sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state == DEV_STATE_NOT_OPER)
- return -ENODEV;
- if (cdev->private->state != DEV_STATE_ONLINE &&
- cdev->private->state != DEV_STATE_W4SENSE)
- return -EINVAL;
- ret = cio_clear(sch);
- if (ret == 0)
- cdev->private->intparm = intparm;
- return ret;
- }
- /**
- * ccw_device_start_key() - start a s390 channel program with key
- * @cdev: target ccw device
- * @cpa: logical start address of channel program
- * @intparm: user specific interruption parameter; will be presented back to
- * @cdev's interrupt handler. Allows a device driver to associate
- * the interrupt with a particular I/O request.
- * @lpm: defines the channel path to be used for a specific I/O request. A
- * value of 0 will make cio use the opm.
- * @key: storage key to be used for the I/O
- * @flags: additional flags; defines the action to be performed for I/O
- * processing.
- *
- * Start a S/390 channel program. When the interrupt arrives, the
- * IRQ handler is called, either immediately, delayed (dev-end missing,
- * or sense required) or never (no IRQ handler registered).
- * Returns:
- * %0, if the operation was successful;
- * -%EBUSY, if the device is busy, or status pending;
- * -%EACCES, if no path specified in @lpm is operational;
- * -%ENODEV, if the device is not operational.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_start_key(struct ccw_device *cdev, struct ccw1 *cpa,
- unsigned long intparm, __u8 lpm, __u8 key,
- unsigned long flags)
- {
- struct subchannel *sch;
- int ret;
- if (!cdev || !cdev->dev.parent)
- return -ENODEV;
- sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state == DEV_STATE_NOT_OPER)
- return -ENODEV;
- if (cdev->private->state == DEV_STATE_VERIFY) {
- /* Remember to fake irb when finished. */
- if (!cdev->private->flags.fake_irb) {
- cdev->private->flags.fake_irb = FAKE_CMD_IRB;
- cdev->private->intparm = intparm;
- return 0;
- } else
- /* There's already a fake I/O around. */
- return -EBUSY;
- }
- if (cdev->private->state != DEV_STATE_ONLINE ||
- ((sch->schib.scsw.cmd.stctl & SCSW_STCTL_PRIM_STATUS) &&
- !(sch->schib.scsw.cmd.stctl & SCSW_STCTL_SEC_STATUS)) ||
- cdev->private->flags.doverify)
- return -EBUSY;
- ret = cio_set_options (sch, flags);
- if (ret)
- return ret;
- /* Adjust requested path mask to exclude unusable paths. */
- if (lpm) {
- lpm &= sch->lpm;
- if (lpm == 0)
- return -EACCES;
- }
- ret = cio_start_key (sch, cpa, lpm, key);
- switch (ret) {
- case 0:
- cdev->private->intparm = intparm;
- break;
- case -EACCES:
- case -ENODEV:
- dev_fsm_event(cdev, DEV_EVENT_VERIFY);
- break;
- }
- return ret;
- }
- /**
- * ccw_device_start_timeout_key() - start a s390 channel program with timeout and key
- * @cdev: target ccw device
- * @cpa: logical start address of channel program
- * @intparm: user specific interruption parameter; will be presented back to
- * @cdev's interrupt handler. Allows a device driver to associate
- * the interrupt with a particular I/O request.
- * @lpm: defines the channel path to be used for a specific I/O request. A
- * value of 0 will make cio use the opm.
- * @key: storage key to be used for the I/O
- * @flags: additional flags; defines the action to be performed for I/O
- * processing.
- * @expires: timeout value in jiffies
- *
- * Start a S/390 channel program. When the interrupt arrives, the
- * IRQ handler is called, either immediately, delayed (dev-end missing,
- * or sense required) or never (no IRQ handler registered).
- * This function notifies the device driver if the channel program has not
- * completed during the time specified by @expires. If a timeout occurs, the
- * channel program is terminated via xsch, hsch or csch, and the device's
- * interrupt handler will be called with an irb containing ERR_PTR(-%ETIMEDOUT).
- * Returns:
- * %0, if the operation was successful;
- * -%EBUSY, if the device is busy, or status pending;
- * -%EACCES, if no path specified in @lpm is operational;
- * -%ENODEV, if the device is not operational.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_start_timeout_key(struct ccw_device *cdev, struct ccw1 *cpa,
- unsigned long intparm, __u8 lpm, __u8 key,
- unsigned long flags, int expires)
- {
- int ret;
- if (!cdev)
- return -ENODEV;
- ccw_device_set_timeout(cdev, expires);
- ret = ccw_device_start_key(cdev, cpa, intparm, lpm, key, flags);
- if (ret != 0)
- ccw_device_set_timeout(cdev, 0);
- return ret;
- }
- /**
- * ccw_device_start() - start a s390 channel program
- * @cdev: target ccw device
- * @cpa: logical start address of channel program
- * @intparm: user specific interruption parameter; will be presented back to
- * @cdev's interrupt handler. Allows a device driver to associate
- * the interrupt with a particular I/O request.
- * @lpm: defines the channel path to be used for a specific I/O request. A
- * value of 0 will make cio use the opm.
- * @flags: additional flags; defines the action to be performed for I/O
- * processing.
- *
- * Start a S/390 channel program. When the interrupt arrives, the
- * IRQ handler is called, either immediately, delayed (dev-end missing,
- * or sense required) or never (no IRQ handler registered).
- * Returns:
- * %0, if the operation was successful;
- * -%EBUSY, if the device is busy, or status pending;
- * -%EACCES, if no path specified in @lpm is operational;
- * -%ENODEV, if the device is not operational.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_start(struct ccw_device *cdev, struct ccw1 *cpa,
- unsigned long intparm, __u8 lpm, unsigned long flags)
- {
- return ccw_device_start_key(cdev, cpa, intparm, lpm,
- PAGE_DEFAULT_KEY, flags);
- }
- /**
- * ccw_device_start_timeout() - start a s390 channel program with timeout
- * @cdev: target ccw device
- * @cpa: logical start address of channel program
- * @intparm: user specific interruption parameter; will be presented back to
- * @cdev's interrupt handler. Allows a device driver to associate
- * the interrupt with a particular I/O request.
- * @lpm: defines the channel path to be used for a specific I/O request. A
- * value of 0 will make cio use the opm.
- * @flags: additional flags; defines the action to be performed for I/O
- * processing.
- * @expires: timeout value in jiffies
- *
- * Start a S/390 channel program. When the interrupt arrives, the
- * IRQ handler is called, either immediately, delayed (dev-end missing,
- * or sense required) or never (no IRQ handler registered).
- * This function notifies the device driver if the channel program has not
- * completed during the time specified by @expires. If a timeout occurs, the
- * channel program is terminated via xsch, hsch or csch, and the device's
- * interrupt handler will be called with an irb containing ERR_PTR(-%ETIMEDOUT).
- * Returns:
- * %0, if the operation was successful;
- * -%EBUSY, if the device is busy, or status pending;
- * -%EACCES, if no path specified in @lpm is operational;
- * -%ENODEV, if the device is not operational.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_start_timeout(struct ccw_device *cdev, struct ccw1 *cpa,
- unsigned long intparm, __u8 lpm,
- unsigned long flags, int expires)
- {
- return ccw_device_start_timeout_key(cdev, cpa, intparm, lpm,
- PAGE_DEFAULT_KEY, flags,
- expires);
- }
- /**
- * ccw_device_halt() - halt I/O request processing
- * @cdev: target ccw device
- * @intparm: interruption parameter; value is only used if no I/O is
- * outstanding, otherwise the intparm associated with the I/O request
- * is returned
- *
- * ccw_device_halt() calls hsch on @cdev's subchannel.
- * Returns:
- * %0 on success,
- * -%ENODEV on device not operational,
- * -%EINVAL on invalid device state,
- * -%EBUSY on device busy or interrupt pending.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_halt(struct ccw_device *cdev, unsigned long intparm)
- {
- struct subchannel *sch;
- int ret;
- if (!cdev || !cdev->dev.parent)
- return -ENODEV;
- sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state == DEV_STATE_NOT_OPER)
- return -ENODEV;
- if (cdev->private->state != DEV_STATE_ONLINE &&
- cdev->private->state != DEV_STATE_W4SENSE)
- return -EINVAL;
- ret = cio_halt(sch);
- if (ret == 0)
- cdev->private->intparm = intparm;
- return ret;
- }
- /**
- * ccw_device_resume() - resume channel program execution
- * @cdev: target ccw device
- *
- * ccw_device_resume() calls rsch on @cdev's subchannel.
- * Returns:
- * %0 on success,
- * -%ENODEV on device not operational,
- * -%EINVAL on invalid device state,
- * -%EBUSY on device busy or interrupt pending.
- * Context:
- * Interrupts disabled, ccw device lock held
- */
- int ccw_device_resume(struct ccw_device *cdev)
- {
- struct subchannel *sch;
- if (!cdev || !cdev->dev.parent)
- return -ENODEV;
- sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state == DEV_STATE_NOT_OPER)
- return -ENODEV;
- if (cdev->private->state != DEV_STATE_ONLINE ||
- !(sch->schib.scsw.cmd.actl & SCSW_ACTL_SUSPENDED))
- return -EINVAL;
- return cio_resume(sch);
- }
- /**
- * ccw_device_get_ciw() - Search for CIW command in extended sense data.
- * @cdev: ccw device to inspect
- * @ct: command type to look for
- *
- * During SenseID, command information words (CIWs) describing special
- * commands available to the device may have been stored in the extended
- * sense data. This function searches for CIWs of a specified command
- * type in the extended sense data.
- * Returns:
- * %NULL if no extended sense data has been stored or if no CIW of the
- * specified command type could be found,
- * else a pointer to the CIW of the specified command type.
- */
- struct ciw *ccw_device_get_ciw(struct ccw_device *cdev, __u32 ct)
- {
- int ciw_cnt;
- if (cdev->private->flags.esid == 0)
- return NULL;
- for (ciw_cnt = 0; ciw_cnt < MAX_CIWS; ciw_cnt++)
- if (cdev->private->senseid.ciw[ciw_cnt].ct == ct)
- return cdev->private->senseid.ciw + ciw_cnt;
- return NULL;
- }
- /**
- * ccw_device_get_path_mask() - get currently available paths
- * @cdev: ccw device to be queried
- * Returns:
- * %0 if no subchannel for the device is available,
- * else the mask of currently available paths for the ccw device's subchannel.
- */
- __u8 ccw_device_get_path_mask(struct ccw_device *cdev)
- {
- struct subchannel *sch;
- if (!cdev->dev.parent)
- return 0;
- sch = to_subchannel(cdev->dev.parent);
- return sch->lpm;
- }
- /**
- * chp_get_chp_desc - return newly allocated channel-path descriptor
- * @cdev: device to obtain the descriptor for
- * @chp_idx: index of the channel path
- *
- * On success return a newly allocated copy of the channel-path description
- * data associated with the given channel path. Return %NULL on error.
- */
- struct channel_path_desc *ccw_device_get_chp_desc(struct ccw_device *cdev,
- int chp_idx)
- {
- struct subchannel *sch;
- struct chp_id chpid;
- sch = to_subchannel(cdev->dev.parent);
- chp_id_init(&chpid);
- chpid.id = sch->schib.pmcw.chpid[chp_idx];
- return chp_get_chp_desc(chpid);
- }
- /**
- * ccw_device_get_id - obtain a ccw device id
- * @cdev: device to obtain the id for
- * @dev_id: where to fill in the values
- */
- void ccw_device_get_id(struct ccw_device *cdev, struct ccw_dev_id *dev_id)
- {
- *dev_id = cdev->private->dev_id;
- }
- EXPORT_SYMBOL(ccw_device_get_id);
- /**
- * ccw_device_tm_start_key - perform start function
- * @cdev: ccw device on which to perform the start function
- * @tcw: transport-command word to be started
- * @intparm: user defined parameter to be passed to the interrupt handler
- * @lpm: mask of paths to use
- * @key: storage key to use for storage access
- *
- * Start the tcw on the given ccw device. Return zero on success, non-zero
- * otherwise.
- */
- int ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw,
- unsigned long intparm, u8 lpm, u8 key)
- {
- struct subchannel *sch;
- int rc;
- sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state == DEV_STATE_VERIFY) {
- /* Remember to fake irb when finished. */
- if (!cdev->private->flags.fake_irb) {
- cdev->private->flags.fake_irb = FAKE_TM_IRB;
- cdev->private->intparm = intparm;
- return 0;
- } else
- /* There's already a fake I/O around. */
- return -EBUSY;
- }
- if (cdev->private->state != DEV_STATE_ONLINE)
- return -EIO;
- /* Adjust requested path mask to exclude unusable paths. */
- if (lpm) {
- lpm &= sch->lpm;
- if (lpm == 0)
- return -EACCES;
- }
- rc = cio_tm_start_key(sch, tcw, lpm, key);
- if (rc == 0)
- cdev->private->intparm = intparm;
- return rc;
- }
- EXPORT_SYMBOL(ccw_device_tm_start_key);
- /**
- * ccw_device_tm_start_timeout_key - perform start function
- * @cdev: ccw device on which to perform the start function
- * @tcw: transport-command word to be started
- * @intparm: user defined parameter to be passed to the interrupt handler
- * @lpm: mask of paths to use
- * @key: storage key to use for storage access
- * @expires: time span in jiffies after which to abort request
- *
- * Start the tcw on the given ccw device. Return zero on success, non-zero
- * otherwise.
- */
- int ccw_device_tm_start_timeout_key(struct ccw_device *cdev, struct tcw *tcw,
- unsigned long intparm, u8 lpm, u8 key,
- int expires)
- {
- int ret;
- ccw_device_set_timeout(cdev, expires);
- ret = ccw_device_tm_start_key(cdev, tcw, intparm, lpm, key);
- if (ret != 0)
- ccw_device_set_timeout(cdev, 0);
- return ret;
- }
- EXPORT_SYMBOL(ccw_device_tm_start_timeout_key);
- /**
- * ccw_device_tm_start - perform start function
- * @cdev: ccw device on which to perform the start function
- * @tcw: transport-command word to be started
- * @intparm: user defined parameter to be passed to the interrupt handler
- * @lpm: mask of paths to use
- *
- * Start the tcw on the given ccw device. Return zero on success, non-zero
- * otherwise.
- */
- int ccw_device_tm_start(struct ccw_device *cdev, struct tcw *tcw,
- unsigned long intparm, u8 lpm)
- {
- return ccw_device_tm_start_key(cdev, tcw, intparm, lpm,
- PAGE_DEFAULT_KEY);
- }
- EXPORT_SYMBOL(ccw_device_tm_start);
- /**
- * ccw_device_tm_start_timeout - perform start function
- * @cdev: ccw device on which to perform the start function
- * @tcw: transport-command word to be started
- * @intparm: user defined parameter to be passed to the interrupt handler
- * @lpm: mask of paths to use
- * @expires: time span in jiffies after which to abort request
- *
- * Start the tcw on the given ccw device. Return zero on success, non-zero
- * otherwise.
- */
- int ccw_device_tm_start_timeout(struct ccw_device *cdev, struct tcw *tcw,
- unsigned long intparm, u8 lpm, int expires)
- {
- return ccw_device_tm_start_timeout_key(cdev, tcw, intparm, lpm,
- PAGE_DEFAULT_KEY, expires);
- }
- EXPORT_SYMBOL(ccw_device_tm_start_timeout);
- /**
- * ccw_device_get_mdc - accumulate max data count
- * @cdev: ccw device for which the max data count is accumulated
- * @mask: mask of paths to use
- *
- * Return the number of 64K-bytes blocks all paths at least support
- * for a transport command. Return values <= 0 indicate failures.
- */
- int ccw_device_get_mdc(struct ccw_device *cdev, u8 mask)
- {
- struct subchannel *sch = to_subchannel(cdev->dev.parent);
- struct channel_path *chp;
- struct chp_id chpid;
- int mdc = 0, i;
- /* Adjust requested path mask to excluded varied off paths. */
- if (mask)
- mask &= sch->lpm;
- else
- mask = sch->lpm;
- chp_id_init(&chpid);
- for (i = 0; i < 8; i++) {
- if (!(mask & (0x80 >> i)))
- continue;
- chpid.id = sch->schib.pmcw.chpid[i];
- chp = chpid_to_chp(chpid);
- if (!chp)
- continue;
- mutex_lock(&chp->lock);
- if (!chp->desc_fmt1.f) {
- mutex_unlock(&chp->lock);
- return 0;
- }
- if (!chp->desc_fmt1.r)
- mdc = 1;
- mdc = mdc ? min_t(int, mdc, chp->desc_fmt1.mdc) :
- chp->desc_fmt1.mdc;
- mutex_unlock(&chp->lock);
- }
- return mdc;
- }
- EXPORT_SYMBOL(ccw_device_get_mdc);
- /**
- * ccw_device_tm_intrg - perform interrogate function
- * @cdev: ccw device on which to perform the interrogate function
- *
- * Perform an interrogate function on the given ccw device. Return zero on
- * success, non-zero otherwise.
- */
- int ccw_device_tm_intrg(struct ccw_device *cdev)
- {
- struct subchannel *sch = to_subchannel(cdev->dev.parent);
- if (!sch->schib.pmcw.ena)
- return -EINVAL;
- if (cdev->private->state != DEV_STATE_ONLINE)
- return -EIO;
- if (!scsw_is_tm(&sch->schib.scsw) ||
- !(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_START_PEND))
- return -EINVAL;
- return cio_tm_intrg(sch);
- }
- EXPORT_SYMBOL(ccw_device_tm_intrg);
- /**
- * ccw_device_get_schid - obtain a subchannel id
- * @cdev: device to obtain the id for
- * @schid: where to fill in the values
- */
- void ccw_device_get_schid(struct ccw_device *cdev, struct subchannel_id *schid)
- {
- struct subchannel *sch = to_subchannel(cdev->dev.parent);
- *schid = sch->schid;
- }
- EXPORT_SYMBOL_GPL(ccw_device_get_schid);
- MODULE_LICENSE("GPL");
- EXPORT_SYMBOL(ccw_device_set_options_mask);
- EXPORT_SYMBOL(ccw_device_set_options);
- EXPORT_SYMBOL(ccw_device_clear_options);
- EXPORT_SYMBOL(ccw_device_clear);
- EXPORT_SYMBOL(ccw_device_halt);
- EXPORT_SYMBOL(ccw_device_resume);
- EXPORT_SYMBOL(ccw_device_start_timeout);
- EXPORT_SYMBOL(ccw_device_start);
- EXPORT_SYMBOL(ccw_device_start_timeout_key);
- EXPORT_SYMBOL(ccw_device_start_key);
- EXPORT_SYMBOL(ccw_device_get_ciw);
- EXPORT_SYMBOL(ccw_device_get_path_mask);
- EXPORT_SYMBOL_GPL(ccw_device_get_chp_desc);
|