/openbmc/linux/drivers/net/ethernet/mediatek/ |
H A D | mtk_wed_wo.c | 21 mtk_wed_mmio_r32(struct mtk_wed_wo *wo, u32 reg) in mtk_wed_mmio_r32() argument 25 if (regmap_read(wo->mmio.regs, reg, &val)) in mtk_wed_mmio_r32() 32 mtk_wed_mmio_w32(struct mtk_wed_wo *wo, u32 reg, u32 val) in mtk_wed_mmio_w32() argument 34 regmap_write(wo->mmio.regs, reg, val); in mtk_wed_mmio_w32() 38 mtk_wed_wo_get_isr(struct mtk_wed_wo *wo) in mtk_wed_wo_get_isr() argument 40 u32 val = mtk_wed_mmio_r32(wo, MTK_WED_WO_CCIF_RCHNUM); in mtk_wed_wo_get_isr() 46 mtk_wed_wo_set_isr(struct mtk_wed_wo *wo, u32 mask) in mtk_wed_wo_set_isr() argument 48 mtk_wed_mmio_w32(wo, MTK_WED_WO_CCIF_IRQ0_MASK, mask); in mtk_wed_wo_set_isr() 52 mtk_wed_wo_set_ack(struct mtk_wed_wo *wo, u32 mask) in mtk_wed_wo_set_ack() argument 54 mtk_wed_mmio_w32(wo, MTK_WED_WO_CCIF_ACK, mask); in mtk_wed_wo_set_ack() [all …]
|
H A D | mtk_wed_mcu.c | 19 static u32 wo_r32(struct mtk_wed_wo *wo, u32 reg) in wo_r32() argument 21 return readl(wo->boot.addr + reg); in wo_r32() 24 static void wo_w32(struct mtk_wed_wo *wo, u32 reg, u32 val) in wo_w32() argument 26 writel(val, wo->boot.addr + reg); in wo_w32() 48 mtk_wed_mcu_get_response(struct mtk_wed_wo *wo, unsigned long expires) in mtk_wed_mcu_get_response() argument 53 wait_event_timeout(wo->mcu.wait, !skb_queue_empty(&wo->mcu.res_q), in mtk_wed_mcu_get_response() 55 return skb_dequeue(&wo->mcu.res_q); in mtk_wed_mcu_get_response() 58 void mtk_wed_mcu_rx_event(struct mtk_wed_wo *wo, struct sk_buff *skb) in mtk_wed_mcu_rx_event() argument 60 skb_queue_tail(&wo->mcu.res_q, skb); in mtk_wed_mcu_rx_event() 61 wake_up(&wo->mcu.wait); in mtk_wed_mcu_rx_event() [all …]
|
H A D | mtk_wed_wo.h | 256 mtk_wed_mcu_check_msg(struct mtk_wed_wo *wo, struct sk_buff *skb) in mtk_wed_mcu_check_msg() argument 269 void mtk_wed_mcu_rx_event(struct mtk_wed_wo *wo, struct sk_buff *skb); 270 void mtk_wed_mcu_rx_unsolicited_event(struct mtk_wed_wo *wo, 272 int mtk_wed_mcu_send_msg(struct mtk_wed_wo *wo, int id, int cmd, 276 int mtk_wed_mcu_init(struct mtk_wed_wo *wo);
|
H A D | mtk_wed.c | 177 struct mtk_wed_wo *wo = dev->hw->wed_wo; in mtk_wed_wo_reset() local 185 if (mtk_wed_mcu_send_msg(wo, MTK_WED_MODULE_ID_WO, in mtk_wed_wo_reset() 842 struct mtk_wed_wo *wo = dev->hw->wed_wo; in mtk_wed_rro_cfg() local 865 return mtk_wed_mcu_send_msg(wo, MTK_WED_MODULE_ID_WO, in mtk_wed_rro_cfg() 1030 struct mtk_wed_wo *wo = dev->hw->wed_wo; in mtk_wed_rx_reset() local 1034 ret = mtk_wed_mcu_send_msg(wo, MTK_WED_MODULE_ID_WO, in mtk_wed_rx_reset() 1118 ret = mtk_wed_mcu_send_msg(wo, MTK_WED_MODULE_ID_WO, in mtk_wed_rx_reset()
|
/openbmc/linux/kernel/ |
H A D | exit.c | 1059 static int eligible_pid(struct wait_opts *wo, struct task_struct *p) in eligible_pid() argument 1061 return wo->wo_type == PIDTYPE_MAX || in eligible_pid() 1062 task_pid_type(p, wo->wo_type) == wo->wo_pid; in eligible_pid() 1066 eligible_child(struct wait_opts *wo, bool ptrace, struct task_struct *p) in eligible_child() argument 1068 if (!eligible_pid(wo, p)) in eligible_child() 1075 if (ptrace || (wo->wo_flags & __WALL)) in eligible_child() 1086 if ((p->exit_signal != SIGCHLD) ^ !!(wo->wo_flags & __WCLONE)) in eligible_child() 1098 static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p) in wait_task_zombie() argument 1105 if (!likely(wo->wo_flags & WEXITED)) in wait_task_zombie() 1108 if (unlikely(wo->wo_flags & WNOWAIT)) { in wait_task_zombie() [all …]
|
/openbmc/linux/arch/arm64/boot/dts/mediatek/ |
H A D | mt7986a.dtsi | 82 wo_emi0: wo-emi@4fd00000 { 87 wo_emi1: wo-emi@4fd40000 { 92 wo_ilm0: wo-ilm@151e0000 { 97 wo_ilm1: wo-ilm@151f0000 { 102 wo_data: wo-data@4fd80000 { 107 wo_dlm0: wo-dlm@151e8000 { 112 wo_dlm1: wo-dlm@151f8000 { 117 wo_boot: wo-boot@15194000 { 506 memory-region-names = "wo-emi", "wo-ilm", "wo-dlm", 507 "wo-data", "wo-boot"; [all …]
|
/openbmc/linux/drivers/media/usb/dvb-usb/ |
H A D | dibusb-common.c | 141 int ret, wo, len; in dibusb_i2c_msg() local 144 wo = (rbuf == NULL || rlen == 0); in dibusb_i2c_msg() 146 len = 2 + wlen + (wo ? 0 : 2); in dibusb_i2c_msg() 158 sndbuf[0] = wo ? DIBUSB_REQ_I2C_WRITE : DIBUSB_REQ_I2C_READ; in dibusb_i2c_msg() 159 sndbuf[1] = (addr << 1) | (wo ? 0 : 1); in dibusb_i2c_msg() 163 if (!wo) { in dibusb_i2c_msg()
|
H A D | digitv.c | 29 int ret, wo; in digitv_ctrl_msg() local 31 wo = (rbuf == NULL || rlen == 0); /* write-only */ in digitv_ctrl_msg() 41 st->sndbuf[2] = wo ? wlen : rlen; in digitv_ctrl_msg() 43 if (wo) { in digitv_ctrl_msg()
|
/openbmc/linux/Documentation/translations/zh_CN/PCI/ |
H A D | sysfs-pci.rst | 54 remove 从内核的列表中删除设备 (ascii, wo) 69 wo - 只写文件
|
/openbmc/linux/drivers/media/usb/dvb-usb-v2/ |
H A D | au6610.c | 70 u8 wo = (rbuf == NULL || rlen == 0); /* write-only */ in au6610_i2c_msg() local 72 if (wo) { in au6610_i2c_msg()
|
H A D | mxl111sf.c | 56 int wo = (rbuf == NULL || rlen == 0); /* write-only */ in mxl111sf_ctrl_msg() local 73 ret = (wo) ? dvb_usbv2_generic_write(d, state->sndbuf, 1+wlen) : in mxl111sf_ctrl_msg()
|
/openbmc/openbmc/poky/meta/recipes-devtools/pkgconf/pkgconf/ |
H A D | pkg-config-esdk.in | 13 parentpid_info=`ps -wo comm= -o args= -p $parentpid`
|
/openbmc/openbmc/poky/meta/recipes-devtools/pkgconfig/pkgconfig/ |
H A D | pkg-config-esdk.in | 13 parentpid_info=`ps -wo comm= -o args= -p $parentpid`
|
/openbmc/linux/Documentation/trace/coresight/ |
H A D | coresight-tpdm.rst | 34 :File: ``integration_test`` (wo)
|
H A D | coresight-etm4x-reference.rst | 39 :File: ``reset`` (wo) 49 :File: ``enable_source`` (wo)
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ippool/ippool/ |
H A D | 0001-pppd-ippool.c-Fix-type-casting-issues-between-in_add.patch | 66 ipcp_options *wo = &ipcp_wantoptions[0];
|
/openbmc/openbmc/poky/meta/recipes-support/libevent/ |
H A D | libevent_2.1.12.bb | 17 file://0001-test-regress_dns.c-patch-out-tests-that-require-a-wo.patch \
|
/openbmc/linux/Documentation/PCI/ |
H A D | sysfs-pci.rst | 45 remove remove device from kernel's list (ascii, wo) 60 wo - write only file
|
/openbmc/linux/drivers/block/drbd/ |
H A D | drbd_receiver.c | 1430 max_allowed_wo(struct drbd_backing_dev *bdev, enum write_ordering_e wo) in max_allowed_wo() argument 1436 if (wo == WO_BDEV_FLUSH && !dc->disk_flushes) in max_allowed_wo() 1437 wo = WO_DRAIN_IO; in max_allowed_wo() 1438 if (wo == WO_DRAIN_IO && !dc->disk_drain) in max_allowed_wo() 1439 wo = WO_NONE; in max_allowed_wo() 1441 return wo; in max_allowed_wo() 1449 enum write_ordering_e wo) in drbd_bump_write_ordering() argument 1461 if (wo != WO_BDEV_FLUSH) in drbd_bump_write_ordering() 1462 wo = min(pwo, wo); in drbd_bump_write_ordering() 1466 wo = max_allowed_wo(device->ldev, wo); in drbd_bump_write_ordering() [all …]
|
H A D | drbd_int.h | 1533 enum write_ordering_e wo);
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | selftest_workarounds.c | 999 static const struct regmask wo[] = { in writeonly_reg() local 1003 return find_reg(i915, reg, wo, ARRAY_SIZE(wo)); in writeonly_reg()
|
/openbmc/linux/Documentation/sound/ |
H A D | alsa-configuration.rst | 760 * Creative Card wo/Digital out [0x0003/0x1f03] 763 * Creative Card wo/Digital out + LiveDrive [0x3fc3/0x1fc3] 766 * Creative Card wo/Digital out + Digital I/O 2 [0x0fc3/0x1f0f]
|
/openbmc/linux/ |
H A D | opengrok0.0.log | [all...] |
H A D | opengrok1.0.log | [all...] |