Home
last modified time | relevance | path

Searched refs:mw (Results 1 – 25 of 87) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/board/beagleboneai/patches/uboot/
H A D0001-BeagleBone-AI-support.patch1271 + "i2c mw 0x50 0x00.2 ff; " \
1272 + "i2c mw 0x50 0x01.2 ff; " \
1273 + "i2c mw 0x50 0x02.2 ff; " \
1274 + "i2c mw 0x50 0x03.2 ff; " \
1275 + "i2c mw 0x50 0x04.2 ff; " \
1276 + "i2c mw 0x50 0x05.2 ff; " \
1277 + "i2c mw 0x50 0x06.2 ff; " \
1278 + "i2c mw 0x50 0x07.2 ff; " \
1279 + "i2c mw 0x50 0x08.2 ff; " \
1280 + "i2c mw 0x50 0x09.2 ff; " \
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ui/
H A Dncurses.py218 mw = self.MainWindow( main_left, main_top, main_width, main_height )
224 mw.setStatus("Idle")
259 mw.appendText("NOTE: %s\n" % event._message)
261mw.appendText(logging.getLevelName(event.levelno) + ': ' + event.getMessage() + '\n')
268 mw.setStatus("Loading Cache: %s [%2d %%]" % ( next(parsespin), x*100/y ) )
270 mw.setStatus("Idle")
271 mw.appendText("Loaded %d entries from dependency cache.\n"
279 mw.setStatus("Parsing Recipes: %s [%2d %%]" % ( next(parsespin), x*100/y ) )
281 mw.setStatus("Idle")
282 mw.appendText("Parsing finished. %d cached, %d parsed, %d skipped, %d masked.\n"
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/opengl/
H A Dmain.cpp72 GLWidget mw(false, Qt::white); in main() local
73 mw.setContentsMargins(0,0,0,0); in main()
74 mw.setWindowFlags(Qt::FramelessWindowHint); in main()
75 mw.resize(1280, 800); in main()
76 mw.show(); in main()
/OK3568_Linux_fs/kernel/net/netfilter/ipvs/
H A Dip_vs_wrr.c63 int mw; /* maximum weight */ member
119 mark->mw = ip_vs_wrr_max_weight(svc) - (mark->di - 1); in ip_vs_wrr_init_svc()
120 mark->cw = mark->mw; in ip_vs_wrr_init_svc()
146 mark->mw = ip_vs_wrr_max_weight(svc) - (mark->di - 1); in ip_vs_wrr_dest_changed()
147 if (mark->cw > mark->mw || !mark->cw) in ip_vs_wrr_dest_changed()
148 mark->cw = mark->mw; in ip_vs_wrr_dest_changed()
172 if (mark->mw == 0) in ip_vs_wrr_schedule()
188 mark->cw = mark->mw; in ip_vs_wrr_schedule()
/OK3568_Linux_fs/kernel/drivers/ntb/
H A Dntb_transport.c619 struct ntb_transport_mw *mw; in ntb_transport_setup_qp_mw() local
631 mw = &nt->mw_vec[mw_num]; in ntb_transport_setup_qp_mw()
633 if (!mw->virt_addr) in ntb_transport_setup_qp_mw()
641 rx_size = (unsigned int)mw->xlat_size / num_qps_mw; in ntb_transport_setup_qp_mw()
642 qp->rx_buff = mw->virt_addr + rx_size * (qp_num / mw_count); in ntb_transport_setup_qp_mw()
795 struct ntb_transport_mw *mw = &nt->mw_vec[num_mw]; in ntb_free_mw() local
798 if (!mw->virt_addr) in ntb_free_mw()
802 dma_free_coherent(&pdev->dev, mw->alloc_size, in ntb_free_mw()
803 mw->alloc_addr, mw->dma_addr); in ntb_free_mw()
804 mw->xlat_size = 0; in ntb_free_mw()
[all …]
/OK3568_Linux_fs/kernel/fs/ocfs2/
H A Ddlmglue.c435 struct ocfs2_mask_waiter *mw, int ret) in ocfs2_update_lock_stats() argument
448 kt = ktime_sub(ktime_get(), mw->mw_lock_start); in ocfs2_update_lock_stats()
475 struct ocfs2_mask_waiter *mw; in ocfs2_track_lock_wait() local
482 mw = list_first_entry(&lockres->l_mask_waiters, in ocfs2_track_lock_wait()
485 ktime_to_us(ktime_mono_to_real(mw->mw_lock_start)); in ocfs2_track_lock_wait()
488 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter *mw) in ocfs2_init_start_time() argument
490 mw->mw_lock_start = ktime_get(); in ocfs2_init_start_time()
497 int level, struct ocfs2_mask_waiter *mw, int ret) in ocfs2_update_lock_stats() argument
506 static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter *mw) in ocfs2_init_start_time() argument
892 struct ocfs2_mask_waiter *mw, *tmp; in lockres_set_flags() local
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx4/
H A Dmr.c815 struct mlx4_mw *mw) in mlx4_mw_alloc() argument
829 mw->key = hw_index_to_key(index); in mlx4_mw_alloc()
830 mw->pd = pd; in mlx4_mw_alloc()
831 mw->type = type; in mlx4_mw_alloc()
832 mw->enabled = MLX4_MPT_DISABLED; in mlx4_mw_alloc()
838 int mlx4_mw_enable(struct mlx4_dev *dev, struct mlx4_mw *mw) in mlx4_mw_enable() argument
844 err = mlx4_mpt_alloc_icm(dev, key_to_hw_index(mw->key)); in mlx4_mw_enable()
858 mpt_entry->key = cpu_to_be32(key_to_hw_index(mw->key)); in mlx4_mw_enable()
859 mpt_entry->pd_flags = cpu_to_be32(mw->pd); in mlx4_mw_enable()
860 if (mw->type == MLX4_MW_TYPE_2) { in mlx4_mw_enable()
[all …]
/OK3568_Linux_fs/u-boot/board/freescale/p1010rdb/
H A DREADME.P1010RDB-PA123 => mw.b ffb00009 1
181 => i2c mw 18 1 f9
182 => i2c mw 18 3 f0
183 => mw.b ffb00011 0
184 => mw.b ffb00017 1
188 => i2c mw 18 1 f1
189 => i2c mw 18 3 f0
190 => mw.b ffb00011 0
191 => mw.b ffb00014 2
192 => mw.b ffb00015 5
[all …]
/OK3568_Linux_fs/u-boot/include/configs/
H A Dp1_p2_rdb_pc.h847 norboot=i2c dev 1; i2c mw 18 1 __SW_BOOT_NOR 1; \
848 i2c mw 18 3 __SW_BOOT_MASK 1; reset
852 spiboot=i2c dev 1; i2c mw 18 1 __SW_BOOT_SPI 1; \
853 i2c mw 18 3 __SW_BOOT_MASK 1; reset
857 sdboot=i2c dev 1; i2c mw 18 1 __SW_BOOT_SD 1; \
858 i2c mw 18 3 __SW_BOOT_MASK 1; reset
862 nandboot=i2c dev 1; i2c mw 18 1 __SW_BOOT_NAND 1; \
863 i2c mw 18 3 __SW_BOOT_MASK 1; reset
867 pciboot=i2c dev 1; i2c mw 18 1 __SW_BOOT_PCIE 1; \
868 i2c mw 18 3 __SW_BOOT_MASK 1; reset
/OK3568_Linux_fs/kernel/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu.c36 static int rvu_mbox_init(struct rvu *rvu, struct mbox_wq_info *mw,
1584 struct mbox_wq_info *mw; in __rvu_mbox_handler() local
1589 mw = &rvu->afpf_wq_info; in __rvu_mbox_handler()
1592 mw = &rvu->afvf_wq_info; in __rvu_mbox_handler()
1598 devid = mwork - mw->mbox_wrk; in __rvu_mbox_handler()
1599 mbox = &mw->mbox; in __rvu_mbox_handler()
1604 if (mw->mbox_wrk[devid].num_msgs == 0) in __rvu_mbox_handler()
1609 for (id = 0; id < mw->mbox_wrk[devid].num_msgs; id++) { in __rvu_mbox_handler()
1642 mw->mbox_wrk[devid].num_msgs = 0; in __rvu_mbox_handler()
1668 struct mbox_wq_info *mw; in __rvu_mbox_up_handler() local
[all …]
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/hns/
H A Dhns_roce_mr.c523 struct hns_roce_mw *mw) in hns_roce_mw_free() argument
528 if (mw->enabled) { in hns_roce_mw_free()
530 key_to_hw_index(mw->rkey) & in hns_roce_mw_free()
536 key_to_hw_index(mw->rkey)); in hns_roce_mw_free()
540 key_to_hw_index(mw->rkey), BITMAP_NO_RR); in hns_roce_mw_free()
544 struct hns_roce_mw *mw) in hns_roce_mw_enable() argument
549 unsigned long mtpt_idx = key_to_hw_index(mw->rkey); in hns_roce_mw_enable()
563 ret = hr_dev->hw->mw_write_mtpt(mailbox->buf, mw); in hns_roce_mw_enable()
576 mw->enabled = 1; in hns_roce_mw_enable()
594 struct hns_roce_mw *mw = to_hr_mw(ibmw); in hns_roce_alloc_mw() local
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dzynqmp-zcu102-revA.dts147 * i2c mw 20 6 0 - setup IO to output
148 * i2c mw 20 2 ef - setup output values on pins 0-7
149 * i2c mw 20 3 ff - setup output values on pins 10-17
194 tca6416_u61: gpio@21 { /* FIXME enable it by i2c mw 21 6 0 */
225 i2c@0 { /* i2c mw 75 0 1 */
281 i2c@1 { /* i2c mw 75 0 1 */
327 i2c@2 { /* i2c mw 75 0 1 */
411 i2c@0 { /* i2c mw 74 0 1 */
428 i2c@1 { /* i2c mw 74 0 2 */
438 i2c@2 { /* i2c mw 74 0 4 */
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.b4860qds272 => mw.b ffdf0040 0x30;
273 => mw.b ffdf0010 0x00;
274 => mw.b ffdf0062 0x02;
275 => mw.b ffdf0050 0x02;
276 => mw.b ffdf0010 0x30;
285 => mw.b ffdf0040 0x30
286 => mw.b ffdf0010 0x00
287 => mw.b 0xffdf0050 0x08
288 => mw.b 0xffdf0060 0x82
289 => mw.b ffdf0061 0x00
[all …]
/OK3568_Linux_fs/kernel/arch/mips/txx9/generic/
H A Dmem_tx4927.c46 unsigned int mw = 0; in tx4927_process_sdccr() local
61 mw = 8 >> sdccr_mw; in tx4927_process_sdccr()
64 return rs * cs * mw * bs; in tx4927_process_sdccr()
/OK3568_Linux_fs/kernel/drivers/clk/rockchip/
H A Dclk.h762 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\ argument
773 .mux_width = mw, \
783 #define COMPOSITE_MUXTBL(_id, cname, pnames, f, mo, ms, mw, mf, \ argument
794 .mux_width = mw, \
805 #define COMPOSITE_DIV_OFFSET(_id, cname, pnames, f, mo, ms, mw, \ argument
816 .mux_width = mw, \
864 #define COMPOSITE_NODIV(_id, cname, pnames, f, mo, ms, mw, mf, \ argument
875 .mux_width = mw, \
882 #define COMPOSITE_NOGATE(_id, cname, pnames, f, mo, ms, mw, mf, \ argument
893 .mux_width = mw, \
[all …]
/OK3568_Linux_fs/kernel/include/linux/usb/
H A Dpd.h249 #define PDO_BATT_MAX_POWER(mw) ((((mw) / 250) & PDO_PWR_MASK) << PDO_BATT_MAX_PWR_SHIFT) argument
374 #define RDO_BATT_OP_PWR(mw) ((((mw) / 250) & RDO_PWR_MASK) << RDO_BATT_OP_PWR_SHIFT) argument
375 #define RDO_BATT_MAX_PWR(mw) ((((mw) / 250) & RDO_PWR_MASK) << RDO_BATT_MAX_PWR_SHIFT) argument
/OK3568_Linux_fs/u-boot/include/power/power_delivery/
H A Dpd.h249 #define PDO_BATT_MAX_POWER(mw) ((((mw) / 250) & PDO_PWR_MASK) << PDO_BATT_MAX_PWR_SHIFT) argument
374 #define RDO_BATT_OP_PWR(mw) ((((mw) / 250) & RDO_PWR_MASK) << RDO_BATT_OP_PWR_SHIFT) argument
375 #define RDO_BATT_MAX_PWR(mw) ((((mw) / 250) & RDO_PWR_MASK) << RDO_BATT_MAX_PWR_SHIFT) argument
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/browser/
H A Dbrowserapplication.cpp187 BrowserMainWindow *mw = new BrowserMainWindow; in lastWindowClosed() local
188 mw->slotHome(); in lastWindowClosed()
189 m_mainWindows.prepend(mw); in lastWindowClosed()
373 BrowserMainWindow *mw = mainWindow(); in event() local
374 if (mw && !mw->isMinimized()) { in event()
/OK3568_Linux_fs/app/forlinx/forlinx_qt/qopenglwidget/
H A Dmain.cpp85 MainWindow mw; in main() local
86 mw.showMaximized(); in main()
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/qopenglwidget/
H A Dmain.cpp85 MainWindow mw; in main() local
86 mw.showMaximized(); in main()
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx4/
H A Dmr.c616 struct mlx4_ib_mw *mw = to_mmw(ibmw); in mlx4_ib_alloc_mw() local
620 to_mlx4_type(ibmw->type), &mw->mmw); in mlx4_ib_alloc_mw()
624 err = mlx4_mw_enable(dev->dev, &mw->mmw); in mlx4_ib_alloc_mw()
628 ibmw->rkey = mw->mmw.key; in mlx4_ib_alloc_mw()
632 mlx4_mw_free(dev->dev, &mw->mmw); in mlx4_ib_alloc_mw()
638 struct mlx4_ib_mw *mw = to_mmw(ibmw); in mlx4_ib_dealloc_mw() local
640 mlx4_mw_free(to_mdev(ibmw->device)->dev, &mw->mmw); in mlx4_ib_dealloc_mw()
/OK3568_Linux_fs/kernel/drivers/mtd/maps/
H A Dphysmap-core.c154 map_word mw; in physmap_addr_gpios_read() local
162 mw.x[0] = word; in physmap_addr_gpios_read()
163 return mw; in physmap_addr_gpios_read()
188 static void physmap_addr_gpios_write(struct map_info *map, map_word mw, in physmap_addr_gpios_write() argument
199 word = mw.x[0]; in physmap_addr_gpios_write()
/OK3568_Linux_fs/u-boot/board/congatec/cgtqmx6eval/
H A DREADME72 => mw.l 0x20d8040 0x3850
73 => mw.l 0x020d8044 0x10000000
/OK3568_Linux_fs/kernel/drivers/infiniband/sw/rxe/
H A Drxe_verbs.h431 static inline struct rxe_mem *to_rmw(struct ib_mw *mw) in to_rmw() argument
433 return mw ? container_of(mw, struct rxe_mem, ibmw) : NULL; in to_rmw()
/OK3568_Linux_fs/u-boot/test/fs/
H A Dfs-test.sh290 mw.b $addr 00 100
308 mw.b $addr 00 100
313 mw.b $addr 00 100

1234