Home
last modified time | relevance | path

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

12345678910>>...17

/kernel/linux/linux-4.19/drivers/rtc/
Drtc-imxdi.c24 * Note that reading the DSR (DryIce Status Register) automatically clears
64 #define DSR 0x14 /* Status Reg */ macro
112 * @dsr: copy of the DSR register
123 u32 dsr; member
193 static void di_report_tamper_info(struct imxdi_dev *imxdi, u32 dsr) in di_report_tamper_info() argument
201 if (dsr & DSR_VTD) in di_report_tamper_info()
205 if (dsr & DSR_CTD) in di_report_tamper_info()
209 if (dsr & DSR_TTD) in di_report_tamper_info()
213 if (dsr & DSR_SAD) in di_report_tamper_info()
218 if (dsr & DSR_EBD) in di_report_tamper_info()
[all …]
/kernel/linux/linux-5.10/drivers/rtc/
Drtc-imxdi.c14 * Note that reading the DSR (DryIce Status Register) automatically clears
54 #define DSR 0x14 /* Status Reg */ macro
102 * @dsr: copy of the DSR register
113 u32 dsr; member
183 static void di_report_tamper_info(struct imxdi_dev *imxdi, u32 dsr) in di_report_tamper_info() argument
191 if (dsr & DSR_VTD) in di_report_tamper_info()
195 if (dsr & DSR_CTD) in di_report_tamper_info()
199 if (dsr & DSR_TTD) in di_report_tamper_info()
203 if (dsr & DSR_SAD) in di_report_tamper_info()
208 if (dsr & DSR_EBD) in di_report_tamper_info()
[all …]
/kernel/linux/linux-4.19/include/linux/mtd/
Dpfow.h97 /* The superset of all possible error bits in DSR */
125 static inline void print_drs_error(unsigned dsr) in print_drs_error() argument
127 int prog_status = (dsr & DSR_RPS) >> 8; in print_drs_error()
129 if (!(dsr & DSR_AVAILABLE)) in print_drs_error()
130 printk(KERN_NOTICE"DSR.15: (0) Device not Available\n"); in print_drs_error()
132 printk(KERN_NOTICE"DSR.9,8: (11) Attempt to program invalid " in print_drs_error()
135 printk(KERN_NOTICE"DSR.9,8: (10) Object Mode Program attempt " in print_drs_error()
138 printk(KERN_NOTICE"DSR.9,8: (01) Program attempt in region " in print_drs_error()
140 if (!(dsr & DSR_READY_STATUS)) in print_drs_error()
141 printk(KERN_NOTICE"DSR.7: (0) Device is Busy\n"); in print_drs_error()
[all …]
/kernel/linux/linux-5.10/drivers/infiniband/hw/vmw_pvrdma/
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 …]
Dpvrdma_main.c105 (int) (dev->dsr->caps.fw_ver >> 32), in pvrdma_get_fw_ver_str()
106 (int) (dev->dsr->caps.fw_ver >> 16) & 0xffff, in pvrdma_get_fw_ver_str()
107 (int) dev->dsr->caps.fw_ver & 0xffff); in pvrdma_get_fw_ver_str()
131 if (dev->dsr->caps.gid_types == PVRDMA_GID_TYPE_FLAG_ROCE_V1) in pvrdma_port_immutable()
133 else if (dev->dsr->caps.gid_types == PVRDMA_GID_TYPE_FLAG_ROCE_V2) in pvrdma_port_immutable()
203 dev->ib_dev.node_guid = dev->dsr->caps.node_guid; in pvrdma_register_device()
204 dev->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_register_device()
231 dev->ib_dev.phys_port_cnt = dev->dsr->caps.phys_port_cnt; in pvrdma_register_device()
238 dev->cq_tbl = kcalloc(dev->dsr->caps.max_cq, sizeof(struct pvrdma_cq *), in pvrdma_register_device()
244 dev->qp_tbl = kcalloc(dev->dsr->caps.max_qp, sizeof(struct pvrdma_qp *), in pvrdma_register_device()
[all …]
/kernel/linux/linux-4.19/drivers/infiniband/hw/vmw_pvrdma/
Dpvrdma_verbs.c75 props->fw_ver = dev->dsr->caps.fw_ver; in pvrdma_query_device()
76 props->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_query_device()
77 props->max_mr_size = dev->dsr->caps.max_mr_size; in pvrdma_query_device()
78 props->page_size_cap = dev->dsr->caps.page_size_cap; in pvrdma_query_device()
79 props->vendor_id = dev->dsr->caps.vendor_id; in pvrdma_query_device()
81 props->hw_ver = dev->dsr->caps.hw_ver; in pvrdma_query_device()
82 props->max_qp = dev->dsr->caps.max_qp; in pvrdma_query_device()
83 props->max_qp_wr = dev->dsr->caps.max_qp_wr; in pvrdma_query_device()
84 props->device_cap_flags = dev->dsr->caps.device_cap_flags; in pvrdma_query_device()
85 props->max_send_sge = dev->dsr->caps.max_sge; in pvrdma_query_device()
[all …]
Dpvrdma_main.c101 (int) (dev->dsr->caps.fw_ver >> 32), in pvrdma_get_fw_ver_str()
102 (int) (dev->dsr->caps.fw_ver >> 16) & 0xffff, in pvrdma_get_fw_ver_str()
103 (int) dev->dsr->caps.fw_ver & 0xffff); in pvrdma_get_fw_ver_str()
127 if (dev->dsr->caps.gid_types == PVRDMA_GID_TYPE_FLAG_ROCE_V1) in pvrdma_port_immutable()
129 else if (dev->dsr->caps.gid_types == PVRDMA_GID_TYPE_FLAG_ROCE_V2) in pvrdma_port_immutable()
166 dev->ib_dev.node_guid = dev->dsr->caps.node_guid; in pvrdma_register_device()
167 dev->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_register_device()
196 dev->ib_dev.phys_port_cnt = dev->dsr->caps.phys_port_cnt; in pvrdma_register_device()
235 dev->cq_tbl = kcalloc(dev->dsr->caps.max_cq, sizeof(struct pvrdma_cq *), in pvrdma_register_device()
241 dev->qp_tbl = kcalloc(dev->dsr->caps.max_qp, sizeof(struct pvrdma_qp *), in pvrdma_register_device()
[all …]
/kernel/linux/linux-5.10/drivers/mtd/lpddr/
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 …]
/kernel/linux/linux-5.10/drivers/misc/sgi-gru/
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
265 *dsr = bs->kernel_dsr + lcpu * GRU_NUM_KERNEL_DSR_BYTES; in gru_get_cpu_resources()
270 * Free the current cpus reserved DSR/CBR resources.
272 static void gru_free_cpu_resources(void *cb, void *dsr) in gru_free_cpu_resources() argument
285 * dsr_bytes - number of DSR bytes needed
357 * dsr - pointer to first DSR
359 void gru_lock_async_resource(unsigned long han, void **cb, void **dsr) in gru_lock_async_resource() argument
369 if (dsr) in gru_lock_async_resource()
370 *dsr = bs->kernel_dsr + ncpus * GRU_NUM_KERNEL_DSR_BYTES; in gru_lock_async_resource()
[all …]
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);
/kernel/linux/linux-4.19/drivers/misc/sgi-gru/
Dgrukservices.c264 * Reserve & get pointers to the DSR/CBRs reserved for the current cpu.
267 static int gru_get_cpu_resources(int dsr_bytes, void **cb, void **dsr) in gru_get_cpu_resources() argument
277 *dsr = bs->kernel_dsr + lcpu * GRU_NUM_KERNEL_DSR_BYTES; in gru_get_cpu_resources()
282 * Free the current cpus reserved DSR/CBR resources.
284 static void gru_free_cpu_resources(void *cb, void *dsr) in gru_free_cpu_resources() argument
297 * dsr_bytes - number of DSR bytes needed
369 * dsr - pointer to first DSR
371 void gru_lock_async_resource(unsigned long han, void **cb, void **dsr) in gru_lock_async_resource() argument
381 if (dsr) in gru_lock_async_resource()
382 *dsr = bs->kernel_dsr + ncpus * GRU_NUM_KERNEL_DSR_BYTES; in gru_lock_async_resource()
[all …]
Dgrukservices.h29 * Processes SENDING messages will use a kernel CBR/DSR to send
103 #define MQE_BUG_NO_RESOURCES 11 /* BUG - could not alloc GRU cb/dsr */
169 * dsr_bytes - number of DSR bytes needed
202 * dsr - pointer to first DSR
204 extern void gru_lock_async_resource(unsigned long han, void **cb, void **dsr);
/kernel/linux/linux-5.10/arch/mips/boot/dts/cavium-octeon/
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";
/kernel/linux/linux-5.10/arch/arm/boot/dts/
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>;
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>;
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>;
/kernel/linux/linux-4.19/arch/mips/boot/dts/cavium-octeon/
Ddlink_dsr-500n.dts2 * Device tree source for D-Link DSR-500N.
15 model = "dlink,dsr-500n";
16 compatible = "dlink,dsr-500n", "cavium,octeon-3860";
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/serial/
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>;
Dfsl-mxs-auart.txt25 - {rts,cts,dtr,dsr,rng,dcd}-gpios: specify a GPIO for RTS/CTS/DTR/DSR/RI/DCD
38 dsr-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;
Dserial.txt12 - dsr-gpios: Must contain a GPIO specifier, referring to the GPIO pin to be
13 used as the UART's DSR line.
41 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/serial/
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>;
/kernel/linux/linux-5.10/include/linux/
Dparport_pc.h87 unsigned char dsr = inb (STATUS (p)); in dump_parport_state() local
113 printk ("] dsr=["); in dump_parport_state()
114 if (!(dsr & 0x80)) printk ("BUSY"); in dump_parport_state()
115 if (dsr & 0x40) printk (",N-ACK"); in dump_parport_state()
116 if (dsr & 0x20) printk (",PERROR"); in dump_parport_state()
117 if (dsr & 0x10) printk (",SELECT"); in dump_parport_state()
118 if (dsr & 0x08) printk (",N-FAULT"); in dump_parport_state()
/kernel/linux/linux-4.19/include/linux/
Dparport_pc.h87 unsigned char dsr = inb (STATUS (p)); in dump_parport_state() local
113 printk ("] dsr=["); in dump_parport_state()
114 if (!(dsr & 0x80)) printk ("BUSY"); in dump_parport_state()
115 if (dsr & 0x40) printk (",N-ACK"); in dump_parport_state()
116 if (dsr & 0x20) printk (",PERROR"); in dump_parport_state()
117 if (dsr & 0x10) printk (",SELECT"); in dump_parport_state()
118 if (dsr & 0x08) printk (",N-FAULT"); in dump_parport_state()
/kernel/linux/linux-4.19/arch/arm/boot/dts/
Dam335x-baltos-ir3220.dts37 AM33XX_IOPAD(0x8e4, PIN_INPUT_PULLDOWN | MUX_MODE7) /* lcd_hsync.gpio2[23] DSR */
50 AM33XX_IOPAD(0x834, PIN_INPUT_PULLDOWN | MUX_MODE7) /* gpmc_ad13.gpio1[13] DSR */
63 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
74 dsr-gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;
Dam335x-baltos-ir5221.dts45 AM33XX_IOPAD(0x8e4, PIN_INPUT_PULLDOWN | MUX_MODE7) /* lcd_hsync.gpio2[23] DSR */
58 AM33XX_IOPAD(0x834, PIN_INPUT_PULLDOWN | MUX_MODE7) /* gpmc_ad13.gpio1[13] DSR */
72 dsr-gpios = <&gpio2 23 GPIO_ACTIVE_LOW>;
83 dsr-gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;

12345678910>>...17