Searched refs:lpm (Results 1 - 25 of 31) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/cio/
H A Ddevice_ops.c167 * @lpm: defines the channel path to be used for a specific I/O request. A
179 * -%EACCES, if no path specified in @lpm is operational;
185 unsigned long intparm, __u8 lpm, __u8 key,
217 if (lpm) {
218 lpm &= sch->opm;
219 if (lpm == 0)
222 ret = cio_start_key (sch, cpa, lpm, key);
242 * @lpm: defines the channel path to be used for a specific I/O request. A
259 * -%EACCES, if no path specified in @lpm is operational;
265 unsigned long intparm, __u8 lpm, __u
184 ccw_device_start_key(struct ccw_device *cdev, struct ccw1 *cpa, unsigned long intparm, __u8 lpm, __u8 key, unsigned long flags) argument
264 ccw_device_start_timeout_key(struct ccw_device *cdev, struct ccw1 *cpa, unsigned long intparm, __u8 lpm, __u8 key, unsigned long flags, int expires) argument
302 ccw_device_start(struct ccw_device *cdev, struct ccw1 *cpa, unsigned long intparm, __u8 lpm, unsigned long flags) argument
337 ccw_device_start_timeout(struct ccw_device *cdev, struct ccw1 *cpa, unsigned long intparm, __u8 lpm, unsigned long flags, int expires) argument
602 ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw, unsigned long intparm, u8 lpm, u8 key) argument
638 ccw_device_tm_start_timeout_key(struct ccw_device *cdev, struct tcw *tcw, unsigned long intparm, u8 lpm, u8 key, int expires) argument
662 ccw_device_tm_start(struct ccw_device *cdev, struct tcw *tcw, unsigned long intparm, u8 lpm) argument
681 ccw_device_tm_start_timeout(struct ccw_device *cdev, struct tcw *tcw, unsigned long intparm, u8 lpm, int expires) argument
[all...]
H A Ddevice_pgid.c73 /* Adjust lpm. */
74 req->lpm = lpm_adjust(req->lpm, sch->schib.pmcw.pam & sch->opm);
75 if (!req->lpm)
106 sch->vpm |= req->lpm;
109 req->lpm >>= 1;
124 int i = 8 - ffs(req->lpm);
145 req->lpm = lpm_adjust(req->lpm, cdev->private->pgid_todo_mask);
146 if (!req->lpm)
230 int lpm; local
263 int lpm; local
[all...]
H A Dccwreq.c20 * @lpm: path mask to adjust
23 * Shift @lpm right until @lpm and @mask have at least one bit in common or
24 * until @lpm is zero. Return the resulting lpm.
26 int lpm_adjust(int lpm, int mask) argument
28 while (lpm && ((lpm & mask) == 0))
29 lpm >>= 1;
30 return lpm;
233 u8 lpm; member in struct:__anon14041
[all...]
H A Dcio.c112 cio_start_handle_notoper(struct subchannel *sch, __u8 lpm) argument
116 if (lpm != 0)
117 sch->lpm &= ~lpm;
119 sch->lpm = 0;
132 return (sch->lpm ? -EACCES : -ENODEV);
138 __u8 lpm, /* logical path mask */
156 orb->cmd.lpm = (lpm != 0) ? lpm
136 cio_start_key(struct subchannel *sch, struct ccw1 * cpa, __u8 lpm, __u8 key) argument
190 cio_start(struct subchannel *sch, struct ccw1 *cpa, __u8 lpm) argument
1110 cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key) argument
[all...]
H A Dcio.h29 u8 lpm; /* logical path mask */ member in struct:pmcw
95 __u8 lpm; /* logical path mask */ member in struct:subchannel
127 int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key);
H A Dio_sch.h27 u32 lpm : 8; /* logical path mask */ member in struct:cmd_orb
43 u32 lpm:8; member in struct:tm_orb
90 * @lpm: mask of paths to use
95 * @singlepath: if set, use only one path from @lpm per start I/O
106 u8 lpm; member in struct:ccw_request
H A Ddevice.h101 int lpm_adjust(int lpm, int mask);
H A Ddevice_fsm.c59 printk(KERN_WARNING "cio: subchannel lpm: %02x, opm: %02x, "
60 "vpm: %02x\n", sch->lpm, sch->opm, sch->vpm);
211 if (!(sch->lpm & mask))
238 old_lpm = sch->lpm;
244 sch->lpm = sch->schib.pmcw.pam & sch->opm;
249 if (sch->lpm != old_lpm)
476 /* Update lpm with verified path mask. */
477 sch->lpm = sch->vpm;
888 sch->lpm = sch->schib.pmcw.pam & sch->opm;
H A Ddevice_id.c218 req->lpm = sch->schib.pmcw.pam & sch->opm;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ps3/
H A DMakefile7 obj-$(CONFIG_PS3_LPM) += ps3-lpm.o
H A Dps3-lpm.c89 * The initial value of the shadow registers at lpm creation is
103 * struct ps3_lpm_priv - Private lpm device data.
105 * @open: An atomic variable indicating the lpm driver has been opened.
106 * @rights: The lpm rigths granted by the system policy module. A logical
111 * @lpm_id: The lv1 id of this lpm instance.
112 * @outlet_id: The outlet created by lv1 for this lpm instance.
149 * lpm_priv - Static instance of the lpm data.
1077 * @tb_type: Specifies the type of trace buffer lv1 sould use for this lpm
1169 * ps3_lpm_close - Close the lpm device.
1204 lpm_priv->node_id = dev->lpm
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-pxa/include/plat/
H A Dmfp.h418 #define MFP_CFG_LPM(pin, af, lpm) \
420 (MFP_PIN(MFP_PIN_##pin) | MFP_##af | MFP_LPM_##lpm))
422 #define MFP_CFG_X(pin, af, drv, lpm) \
424 (MFP_PIN(MFP_PIN_##pin) | MFP_##af | MFP_##drv | MFP_LPM_##lpm))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-pxa/
H A Dmfp.c174 int pin, af, drv, lpm, edge, pull; local
182 lpm = MFP_LPM_STATE(c);
193 p->mfpr_run = tmp | mfpr_lpm[lpm] | mfpr_edge[edge];
196 p->mfpr_lpm = tmp | mfpr_lpm[lpm] | mfpr_edge[edge];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/printing/
H A Dprtpub.c104 TCHAR lpm[] = _T("LinesPerMinute"); local
118 printf("printRateUnit: %s\n", lpm);
119 SetPrinterDataEx(ph, SPLDS_DRIVER_KEY, _T("printRateUnit"), REG_SZ, lpm, sizeof(lpm));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/ps3/
H A Ddevice-init.c51 /* The current lpm driver only supports a single BE processor. */
53 result = ps3_repository_read_be_node_id(0, &dev->lpm.node_id);
61 result = ps3_repository_read_lpm_privileges(dev->lpm.node_id, &tmp1,
62 &dev->lpm.rights);
79 if (!(dev->lpm.rights & PS3_LPM_RIGHTS_USE_LPM)) {
80 pr_debug("%s:%d: don't have rights to use lpm\n",
87 __func__, __LINE__, dev->lpm.pu_id, dev->lpm.rights,
88 dev->lpm.rights);
90 result = ps3_repository_read_pu_id(0, &dev->lpm
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/block/
H A Ddasd_erp.c99 cqr->lpm = LPM_ANYPATH;
H A Ddasd_3990_erp.c155 if (erp->lpm == 0)
156 erp->lpm = LPM_ANYPATH & ~(erp->irb.esw.esw0.sublog.lpum);
158 erp->lpm &= ~(erp->irb.esw.esw0.sublog.lpum);
160 if ((erp->lpm & opm) != 0x00) {
163 "try alternate lpm=%x (lpum=%x / opm=%x)",
164 erp->lpm, erp->irb.esw.esw0.sublog.lpum, opm);
274 erp->lpm = LPM_ANYPATH;
1912 /* reset the lpm and the status to be able to
1915 erp->lpm = 0;
H A Ddasd_eckd.c760 struct ciw *ciw, __u8 lpm)
783 cqr->lpm = lpm;
792 int *rcd_buffer_size, __u8 lpm)
821 cqr = dasd_eckd_build_rcd_lpm(device, rcd_buf, ciw, lpm);
904 __u8 lpm; local
911 lpm = 0x80;
914 for (lpm = 0x80; lpm; lpm>>
758 dasd_eckd_build_rcd_lpm(struct dasd_device *device, void *rcd_buffer, struct ciw *ciw, __u8 lpm) argument
790 dasd_eckd_read_conf_lpm(struct dasd_device *device, void **rcd_buffer, int *rcd_buffer_size, __u8 lpm) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Dlangwell_udc.h202 lpm:1; /* LPM capability */ member in struct:langwell_udc
H A Dci13xxx_udc.c129 unsigned lpm; /* is LPM? */ member in struct:__anon16164
139 #define ABS_TESTMODE (hw_bank.lpm ? 0x0FCUL : 0x138UL)
148 #define CAP_USBMODE (hw_bank.lpm ? 0x0C8UL : 0x068UL)
149 #define CAP_ENDPTSETUPSTAT (hw_bank.lpm ? 0x0D8UL : 0x06CUL)
150 #define CAP_ENDPTPRIME (hw_bank.lpm ? 0x0DCUL : 0x070UL)
151 #define CAP_ENDPTFLUSH (hw_bank.lpm ? 0x0E0UL : 0x074UL)
152 #define CAP_ENDPTSTAT (hw_bank.lpm ? 0x0E4UL : 0x078UL)
153 #define CAP_ENDPTCOMPLETE (hw_bank.lpm ? 0x0E8UL : 0x07CUL)
154 #define CAP_ENDPTCTRL (hw_bank.lpm ? 0x0ECUL : 0x080UL)
155 #define CAP_LAST (hw_bank.lpm
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Dccwdev.h184 unsigned long intparm, u8 lpm, u8 key);
H A Dfcx.h193 * @lpm: Logical-Path Mask
207 u32 lpm:8; member in struct:dcw_intrg_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-pxa/
H A Dmfp-pxa2xx.c150 void pxa2xx_mfp_set_lpm(int mfp, unsigned long lpm) argument
162 c = (c & ~MFP_LPM_STATE_MASK) | lpm;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-pxa/include/mach/
H A Dmfp-pxa2xx.h133 extern void pxa2xx_mfp_set_lpm(int mfp, unsigned long lpm);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dps3.h375 } lpm; member in struct:ps3_system_bus_device
473 * @PS3_LPM_RIGHTS_USE_LPM: The right to use the lpm.

Completed in 140 milliseconds

12