Home
last modified time | relevance | path

Searched full:dsr (Results 1 – 25 of 177) sorted by relevance

12345678

/linux/drivers/rtc/
H A Drtc-imxdi.c14 * Note that reading the DSR (DryIce Status Register) automatically clears
55 #define DSR 0x14 /* Status Reg */ macro
103 * @dsr: copy of the DSR register
114 u32 dsr; member
184 static void di_report_tamper_info(struct imxdi_dev *imxdi, u32 dsr) in di_report_tamper_info() argument
192 if (dsr & DSR_VTD) in di_report_tamper_info()
196 if (dsr & DSR_CTD) in di_report_tamper_info()
200 if (dsr & DSR_TTD) in di_report_tamper_info()
204 if (dsr & DSR_SAD) in di_report_tamper_info()
209 if (dsr & DSR_EBD) in di_report_tamper_info()
[all …]
/linux/drivers/infiniband/hw/vmw_pvrdma/
H A Dpvrdma_verbs.c74 props->fw_ver = dev->dsr->caps.fw_ver; in pvrdma_query_device()
75 props->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_query_device()
76 props->max_mr_size = dev->dsr->caps.max_mr_size; in pvrdma_query_device()
77 props->page_size_cap = dev->dsr->caps.page_size_cap; in pvrdma_query_device()
78 props->vendor_id = dev->dsr->caps.vendor_id; in pvrdma_query_device()
80 props->hw_ver = dev->dsr->caps.hw_ver; in pvrdma_query_device()
81 props->max_qp = dev->dsr->caps.max_qp; in pvrdma_query_device()
82 props->max_qp_wr = dev->dsr->caps.max_qp_wr; in pvrdma_query_device()
83 props->device_cap_flags = dev->dsr->caps.device_cap_flags; in pvrdma_query_device()
84 props->max_send_sge = dev->dsr->caps.max_sge; in pvrdma_query_device()
[all …]
H A Dpvrdma_srq.c127 if (init_attr->attr.max_wr > dev->dsr->caps.max_srq_wr || in pvrdma_create_srq()
128 init_attr->attr.max_sge > dev->dsr->caps.max_srq_sge) { in pvrdma_create_srq()
134 if (!atomic_add_unless(&dev->num_srqs, 1, dev->dsr->caps.max_srq)) in pvrdma_create_srq()
194 dev->srq_tbl[srq->srq_handle % dev->dsr->caps.max_srq] = srq; in pvrdma_create_srq()
/linux/drivers/mtd/lpddr/
H A Dlpddr_cmds.c97 static void print_drs_error(unsigned int dsr) in print_drs_error() argument
99 int prog_status = (dsr & DSR_RPS) >> 8; in print_drs_error()
101 if (!(dsr & DSR_AVAILABLE)) in print_drs_error()
102 pr_notice("DSR.15: (0) Device not Available\n"); in print_drs_error()
104 pr_notice("DSR.9,8: (11) Attempt to program invalid half with 41h command\n"); in print_drs_error()
106 pr_notice("DSR.9,8: (10) Object Mode Program attempt in region with Control Mode data\n"); in print_drs_error()
108 pr_notice("DSR.9,8: (01) Program attempt in region with Object Mode data\n"); in print_drs_error()
109 if (!(dsr & DSR_READY_STATUS)) in print_drs_error()
110 pr_notice("DSR.7: (0) Device is Busy\n"); in print_drs_error()
111 if (dsr & DSR_ESS) in print_drs_error()
[all …]
/linux/drivers/misc/sgi-gru/
H A Dgrukservices.c252 * Reserve & get pointers to the DSR/CBRs reserved for the current cpu.
255 static int gru_get_cpu_resources(int dsr_bytes, void **cb, void **dsr) in gru_get_cpu_resources() argument
264 *dsr = bs->kernel_dsr + lcpu * GRU_NUM_KERNEL_DSR_BYTES; in gru_get_cpu_resources()
269 * Free the current cpus reserved DSR/CBR resources.
271 static void gru_free_cpu_resources(void *cb, void *dsr) in gru_free_cpu_resources() argument
283 * dsr_bytes - number of DSR bytes needed
355 * dsr - pointer to first DSR
357 void gru_lock_async_resource(unsigned long han, void **cb, void **dsr) in gru_lock_async_resource() argument
367 if (dsr) in gru_lock_async_resource()
368 *dsr = bs->kernel_dsr + ncpus * GRU_NUM_KERNEL_DSR_BYTES; in gru_lock_async_resource()
[all …]
H A Dgrukservices.h16 * Processes SENDING messages will use a kernel CBR/DSR to send
90 #define MQE_BUG_NO_RESOURCES 11 /* BUG - could not alloc GRU cb/dsr */
156 * dsr_bytes - number of DSR bytes needed
189 * dsr - pointer to first DSR
191 extern void gru_lock_async_resource(unsigned long han, void **cb, void **dsr);
/linux/Documentation/ABI/testing/
H A Dsysfs-class-led-trigger-tty34 What: /sys/class/leds/<tty_led>/dsr
38 DSR = Data Set Ready
41 If set to 0 (default), the LED will not evaluate DSR.
42 If set to 1, the LED will evaluate DSR.
/linux/arch/mips/boot/dts/cavium-octeon/
H A Ddlink_dsr-500n.dts3 * Device tree source for D-Link DSR-500N.
12 model = "dlink,dsr-500n";
13 compatible = "dlink,dsr-500n", "cavium,octeon-3860";
H A Ddlink_dsr-1000n.dts3 * Device tree source for D-Link DSR-1000N.
12 model = "dlink,dsr-1000n";
/linux/include/linux/
H A Dparport_pc.h90 unsigned char dsr = inb (STATUS (p)); in dump_parport_state() local
116 printk ("] dsr=["); in dump_parport_state()
117 if (!(dsr & 0x80)) printk ("BUSY"); in dump_parport_state()
118 if (dsr & 0x40) printk (",N-ACK"); in dump_parport_state()
119 if (dsr & 0x20) printk (",PERROR"); in dump_parport_state()
120 if (dsr & 0x10) printk (",SELECT"); in dump_parport_state()
121 if (dsr & 0x08) printk (",N-FAULT"); in dump_parport_state()
H A Dserial.h37 * Counters of the input lines (CTS, DSR, RI, CD) interrupts
41 __u32 cts, dsr, rng, dcd, tx, rx; member
/linux/Documentation/devicetree/bindings/serial/
H A Dcirrus,clps711x-uart.txt11 - {rts,cts,dtr,dsr,rng,dcd}-gpios: specify a GPIO for RTS/CTS/DTR/DSR/RI/DCD
29 dsr-gpios = <&sysgpio 1 GPIO_ACTIVE_LOW>;
H A Dserial.yaml40 dsr-gpios:
44 the UART's DSR line.
/linux/arch/arm/boot/dts/ti/omap/
H A Dam335x-netcom-plus-2xx.dts28 AM33XX_PADCONF(AM335X_PIN_LCD_HSYNC, PIN_INPUT_PULLDOWN, MUX_MODE7) /* DSR */
41 AM33XX_PADCONF(AM335X_PIN_GPMC_AD13, PIN_INPUT_PULLDOWN, MUX_MODE7) /* DSR */
61 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
72 dsr-gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;
H A Dam335x-baltos-ir3220.dts34 …3XX_PADCONF(AM335X_PIN_LCD_HSYNC, PIN_INPUT_PULLDOWN, MUX_MODE7) /* lcd_hsync.gpio2[23] DSR */
47 …3XX_PADCONF(AM335X_PIN_GPMC_AD13, PIN_INPUT_PULLDOWN, MUX_MODE7) /* gpmc_ad13.gpio1[13] DSR */
66 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
77 dsr-gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;
H A Dam335x-baltos-ir5221.dts42 …3XX_PADCONF(AM335X_PIN_LCD_HSYNC, PIN_INPUT_PULLDOWN, MUX_MODE7) /* lcd_hsync.gpio2[23] DSR */
55 …3XX_PADCONF(AM335X_PIN_GPMC_AD13, PIN_INPUT_PULLDOWN, MUX_MODE7) /* gpmc_ad13.gpio1[13] DSR */
74 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
85 dsr-gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;
H A Dam335x-baltos-ir2110.dts28 …3XX_PADCONF(AM335X_PIN_LCD_HSYNC, PIN_INPUT_PULLDOWN, MUX_MODE7) /* lcd_hsync.gpio2[23] DSR */
45 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
/linux/drivers/usb/serial/
H A Dbelkin_sa.h85 #define BELKIN_SA_FLOW_ODSR 0x0002 /* use DSR input to throttle output */
86 #define BELKIN_SA_FLOW_IDSR 0x0004 /* use DSR input to enable receive */
111 #define BELKIN_SA_MSR_DDSR 0x02 /* Delta DSR */
115 #define BELKIN_SA_MSR_DSR 0x20 /* Current DSR */
H A Dkeyspan_usa49msg.h145 txClocking, // 0=internal, 1=external/DSR
146 rxClocking, // 0=internal, 1=external/DSR
169 dsrFlowControl, // 1=use DSR flow control, 0=don't
244 dsr, // reports DSR pin member
H A Dkeyspan_usa26msg.h132 rxClocking, // USA17: 0=internal, 1=external/RI, other=external/DSR
168 // USA17: 1=use DSR flow control, 0=don't
213 dsr, // USA17: reports DSR pin member
H A Dmct_u232.h122 #define MCT_U232_MSR_DSR 0x20 /* Current DSR */
126 #define MCT_U232_MSR_DDSR 0x02 /* Delta DSR */
244 * DSR, OUT1 is connected to RI, and OUT 2 is connected to DCD.
273 * Bit 5: Data Set Ready (DSR). Reflects the state of the DSR line on the UART.
281 * Bit 1: Delta Data Set Ready (DDSR). Set to "1" if the -DSR line has changed
/linux/arch/powerpc/sysdev/
H A Dfsl_rmu.c136 u32 dsr; member
295 int dsr; in fsl_rio_dbell_handler() local
299 dsr = in_be32(&fsl_dbell->dbell_regs->dsr); in fsl_rio_dbell_handler()
301 if (dsr & DOORBELL_DSR_TE) { in fsl_rio_dbell_handler()
303 out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_TE); in fsl_rio_dbell_handler()
307 if (dsr & DOORBELL_DSR_QFI) { in fsl_rio_dbell_handler()
309 out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_QFI); in fsl_rio_dbell_handler()
313 if (dsr & DOORBELL_DSR_DIQI) { in fsl_rio_dbell_handler()
355 out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_DIQI); in fsl_rio_dbell_handler()
374 out_be32(&dbell->dbell_regs->dsr, IDSR_CLEAR); in msg_unit_error_handler()
[all …]
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6dl-eckelmann-ci4x10.dts241 MX6QDL_PAD_EIM_D25__GPIO3_IO25 0x0001b010 /* DSR */
253 MX6QDL_PAD_NANDF_CS3__GPIO6_IO16 0x0001b010 /* DSR */
335 dsr-gpios = <&gpio3 25 GPIO_ACTIVE_LOW>;
346 dsr-gpios = <&gpio6 16 GPIO_ACTIVE_LOW>;
/linux/drivers/parport/
H A Dparport_ip32.c139 * @dsr: Device Status Register
157 void __iomem *dsr; member
406 unsigned int dsr = readb(priv->regs.dsr); in parport_ip32_dump_state() local
407 printk(KERN_DEBUG PPIP32 " dsr=0x%02x", dsr); in parport_ip32_dump_state()
408 if (!(dsr & DSR_nBUSY)) in parport_ip32_dump_state()
410 if (dsr & DSR_nACK) in parport_ip32_dump_state()
412 if (dsr & DSR_PERROR) in parport_ip32_dump_state()
414 if (dsr & DSR_SELECT) in parport_ip32_dump_state()
416 if (dsr & DSR_nFAULT) in parport_ip32_dump_state()
418 if (!(dsr & DSR_nPRINT)) in parport_ip32_dump_state()
[all …]
/linux/Documentation/usb/
H A Diuu_phoenix.rst44 0=none, 1=CD, 2=!CD, 3=DSR, 4=!DSR, 5=CTS, 6=!CTS, 7=RING, 8=!RING (int)

12345678