/linux-6.14.4/drivers/platform/surface/aggregator/ |
D | ssh_request_layer.c | 102 struct ssh_rtl *rtl = ssh_request_rtl(rqst); in ssh_rtl_queue_remove() local 104 spin_lock(&rtl->queue.lock); in ssh_rtl_queue_remove() 107 spin_unlock(&rtl->queue.lock); in ssh_rtl_queue_remove() 113 spin_unlock(&rtl->queue.lock); in ssh_rtl_queue_remove() 117 static bool ssh_rtl_queue_empty(struct ssh_rtl *rtl) in ssh_rtl_queue_empty() argument 121 spin_lock(&rtl->queue.lock); in ssh_rtl_queue_empty() 122 empty = list_empty(&rtl->queue.head); in ssh_rtl_queue_empty() 123 spin_unlock(&rtl->queue.lock); in ssh_rtl_queue_empty() 130 struct ssh_rtl *rtl = ssh_request_rtl(rqst); in ssh_rtl_pending_remove() local 132 spin_lock(&rtl->pending.lock); in ssh_rtl_pending_remove() [all …]
|
D | ssh_request_layer.h | 41 void (*handle_event)(struct ssh_rtl *rtl, const struct ssh_command *cmd, 105 * @rtl: The request transport layer. 110 static inline struct device *ssh_rtl_get_device(struct ssh_rtl *rtl) in ssh_rtl_get_device() argument 112 return ssh_ptl_get_device(&rtl->ptl); in ssh_rtl_get_device() 129 int ssh_rtl_submit(struct ssh_rtl *rtl, struct ssh_request *rqst); 132 int ssh_rtl_init(struct ssh_rtl *rtl, struct serdev_device *serdev, 135 int ssh_rtl_start(struct ssh_rtl *rtl); 136 int ssh_rtl_flush(struct ssh_rtl *rtl, unsigned long timeout); 137 void ssh_rtl_shutdown(struct ssh_rtl *rtl); 138 void ssh_rtl_destroy(struct ssh_rtl *rtl);
|
D | controller.h | 188 * @rtl: Request transport layer for SSH I/O. 204 struct ssh_rtl rtl; member 223 #define ssam_dbg(ctrl, fmt, ...) rtl_dbg(&(ctrl)->rtl, fmt, ##__VA_ARGS__) 224 #define ssam_info(ctrl, fmt, ...) rtl_info(&(ctrl)->rtl, fmt, ##__VA_ARGS__) 225 #define ssam_warn(ctrl, fmt, ...) rtl_warn(&(ctrl)->rtl, fmt, ##__VA_ARGS__) 226 #define ssam_err(ctrl, fmt, ...) rtl_err(&(ctrl)->rtl, fmt, ##__VA_ARGS__) 244 return ssh_ptl_rx_rcvbuf(&ctrl->rtl.ptl, buf, n); in ssam_controller_receive_buf() 254 ssh_ptl_tx_wakeup_transfer(&ctrl->rtl.ptl); in ssam_controller_write_wakeup()
|
/linux-6.14.4/drivers/net/ethernet/realtek/ |
D | Kconfig | 35 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support" 47 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support" 53 the RTL 8129/8130/8139 chips. If you have one of those, say Y here. 69 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)" 74 RTL-8139 revision K boards, and totally unused otherwise. It tries 80 bool "Support for older RTL-8129/8130 boards" 83 This enables support for the older and uncommon RTL-8129 and 84 RTL-8130 chips, which support MII via an external transceiver,
|
D | 8139too.c | 3 8139too.c: A RealTek RTL-8139 Fast Ethernet driver for Linux. 158 The RTL chips use a 64 element hash table based on the Ethernet CRC. */ 316 Config4 = 0x5A, /* absent on RTL-8139A */ 331 Config5 = 0xD8, /* absent on RTL-8139A */ 514 { "RTL-8139", 519 { "RTL-8139 rev K", 524 { "RTL-8139A", 529 { "RTL-8139A rev G", 534 { "RTL-8139B", 539 { "RTL-8130", [all …]
|
/linux-6.14.4/Documentation/devicetree/bindings/interrupt-controller/ |
D | realtek,rtl-intc.yaml | 4 $id: http://devicetree.org/schemas/interrupt-controller/realtek,rtl-intc.yaml# 7 title: Realtek RTL SoC interrupt controller 29 - const: realtek,rtl-intc 30 - const: realtek,rtl-intc 67 const: realtek,rtl-intc 98 compatible = "realtek,rtl8380-intc", "realtek,rtl-intc";
|
/linux-6.14.4/Documentation/translations/zh_CN/kbuild/ |
D | gcc-plugins.rst | 17 我们可以在编译过程中通过回调 [2]_,GIMPLE [3]_,IPA [4]_ 和 RTL Passes [5]_ 35 .. [5] https://gcc.gnu.org/onlinedocs/gccint/RTL.html 74 $(src)/scripts/gcc-plugins/gcc-generate-rtl-pass.h** 76 这些头文件可以自动生成 GIMPLE、SIMPLE_IPA、IPA 和 RTL passes 的注册结构。
|
/linux-6.14.4/Documentation/devicetree/bindings/i2c/ |
D | microchip,corei2c.yaml | 22 - const: microchip,corei2c-rtl-v7 # Microchip Fabric based i2c IP core 23 - const: microchip,corei2c-rtl-v7 # Microchip Fabric based i2c IP core 51 compatible = "microchip,mpfs-i2c", "microchip,corei2c-rtl-v7";
|
/linux-6.14.4/drivers/bluetooth/ |
D | btrtl.h | 10 #define rtl_dev_err(dev, fmt, ...) bt_dev_err(dev, "RTL: " fmt, ##__VA_ARGS__) 11 #define rtl_dev_warn(dev, fmt, ...) bt_dev_warn(dev, "RTL: " fmt, ##__VA_ARGS__) 12 #define rtl_dev_info(dev, fmt, ...) bt_dev_info(dev, "RTL: " fmt, ##__VA_ARGS__) 13 #define rtl_dev_dbg(dev, fmt, ...) bt_dev_dbg(dev, "RTL: " fmt, ##__VA_ARGS__)
|
/linux-6.14.4/Documentation/kbuild/ |
D | gcc-plugins.rst | 12 callbacks [2]_, GIMPLE [3]_, IPA [4]_ and RTL passes [5]_. 30 .. [5] https://gcc.gnu.org/onlinedocs/gccint/RTL.html 76 $(src)/scripts/gcc-plugins/gcc-generate-rtl-pass.h** 79 GIMPLE, SIMPLE_IPA, IPA and RTL passes.
|
/linux-6.14.4/arch/riscv/boot/dts/microchip/ |
D | mpfs-beaglev-fire-fabric.dtsi | 27 compatible = "microchip,coregpio-rtl-v3"; 40 compatible = "microchip,coregpio-rtl-v3"; 54 compatible = "microchip,coregpio-rtl-v3";
|
D | mpfs-icicle-kit-fabric.dtsi | 9 compatible = "microchip,corepwm-rtl-v4"; 18 compatible = "microchip,corei2c-rtl-v7";
|
/linux-6.14.4/scripts/gcc-plugins/ |
D | stackleak_plugin.c | 24 * - add "-fdump-tree-all -fdump-rtl-all" to the plugin CFLAGS in 274 * which is an RTL representation of the code for a function. in remove_stack_tracking_gcall() 293 * Check the expression code of the insn body, which is an RTL in remove_stack_tracking_gcall() 344 * insns, which is an RTL representation of the code for a function. in remove_stack_tracking_gasm() 363 * Check the expression code of the insn body, which is an RTL in remove_stack_tracking_gasm() 391 * Work with the RTL representation of the code. 518 #include "gcc-generate-rtl-pass.h" 548 * performed just before expanding gcc trees to the RTL. In former in plugin_init() 624 * The stack frame size info is available only at the last RTL pass, in plugin_init()
|
/linux-6.14.4/Documentation/devicetree/bindings/mailbox/ |
D | microchip,sbi-ipc.yaml | 29 const: microchip,miv-ihc-rtl-v2 55 For "microchip,miv-ihc-rtl-v2", the cell represents the physical 116 compatible = "microchip,miv-ihc-rtl-v2";
|
/linux-6.14.4/samples/bpf/ |
D | xdp_router_ipv4_user.c | 98 int rtl; in read_route() local 124 rtl = RTM_PAYLOAD(nh); in read_route() 126 for (; RTA_OK(rt_attr, rtl); rt_attr = RTA_NEXT(rt_attr, rtl)) { in read_route() 321 int rtl, ndm_family; in read_arp() local 337 rtl = RTM_PAYLOAD(nh); in read_arp() 338 for (; RTA_OK(rt_attr, rtl); rt_attr = RTA_NEXT(rt_attr, rtl)) { in read_arp()
|
/linux-6.14.4/drivers/staging/gpib/fmh_gpib/ |
D | fmh_gpib.h | 166 * (and keep asserted) the local rtl message. This is used in conjunction 168 * pulses the rtl message, having the effect of clearing rtl if it was left
|
/linux-6.14.4/Documentation/devicetree/bindings/spi/ |
D | microchip,mpfs-spi.yaml | 23 - const: microchip,coreqspi-rtl-v2 24 - const: microchip,coreqspi-rtl-v2 # FPGA QSPI
|
/linux-6.14.4/Documentation/devicetree/bindings/pwm/ |
D | microchip,corepwm.yaml | 24 - const: microchip,corepwm-rtl-v4 78 compatible = "microchip,corepwm-rtl-v4";
|
/linux-6.14.4/drivers/staging/gpib/eastwood/ |
D | fluke_gpib.h | 128 * (and keep asserted) local rtl message. This is used in conjunction 131 * causes the rtl message to toggle between on and off.
|
/linux-6.14.4/drivers/irqchip/ |
D | irq-realtek-rtl.c | 80 .name = "realtek-rtl-intc", 174 IRQCHIP_DECLARE(realtek_rtl_intc, "realtek,rtl-intc", realtek_rtl_of_init);
|
/linux-6.14.4/lib/ |
D | locking-selftest-rtmutex.h | 3 #define LOCK RTL
|
/linux-6.14.4/drivers/spi/ |
D | spi-realtek-rtl.c | 200 .name = "realtek-rtl-spi", 209 MODULE_DESCRIPTION("Realtek RTL SPI driver");
|
/linux-6.14.4/drivers/net/wireless/realtek/rtlwifi/ |
D | regd.c | 397 "rtl: EEPROM regdomain: 0x%0x country code: %d\n", in rtl_regd_init() 402 "rtl: EEPROM indicates invalid country code, world wide 13 should be used\n"); in rtl_regd_init() 418 "rtl: Country alpha2 being used: %c%c\n", in rtl_regd_init()
|
/linux-6.14.4/Documentation/devicetree/bindings/mips/ |
D | realtek-rtl.yaml | 4 $id: http://devicetree.org/schemas/mips/realtek-rtl.yaml#
|
/linux-6.14.4/Documentation/ABI/testing/ |
D | sysfs-devices-system-ibm-rtl | 20 the RTL table version that lives in the Extended
|