Searched refs:ip (Results 1 - 25 of 2034) sorted by relevance

1234567891011>>

/linux-master/sound/soc/sti/
H A Duniperif.h19 #define GET_UNIPERIF_REG(ip, offset, shift, mask) \
20 ((readl_relaxed(ip->base + offset) >> shift) & mask)
21 #define SET_UNIPERIF_REG(ip, offset, shift, mask, value) \
22 writel_relaxed(((readl_relaxed(ip->base + offset) & \
23 ~(mask << shift)) | (((value) & mask) << shift)), ip->base + offset)
24 #define SET_UNIPERIF_BIT_REG(ip, offset, shift, mask, value) \
25 writel_relaxed((((value) & mask) << shift), ip->base + offset)
31 #define UNIPERIF_SOFT_RST_OFFSET(ip) 0x0000
32 #define GET_UNIPERIF_SOFT_RST(ip) \
33 ((ip)
[all...]
/linux-master/drivers/gpu/drm/lima/
H A Dlima_l2_cache.h9 int lima_l2_cache_resume(struct lima_ip *ip);
10 void lima_l2_cache_suspend(struct lima_ip *ip);
11 int lima_l2_cache_init(struct lima_ip *ip);
12 void lima_l2_cache_fini(struct lima_ip *ip);
14 int lima_l2_cache_flush(struct lima_ip *ip);
H A Dlima_mmu.h10 int lima_mmu_resume(struct lima_ip *ip);
11 void lima_mmu_suspend(struct lima_ip *ip);
12 int lima_mmu_init(struct lima_ip *ip);
13 void lima_mmu_fini(struct lima_ip *ip);
15 void lima_mmu_flush_tlb(struct lima_ip *ip);
16 void lima_mmu_switch_vm(struct lima_ip *ip, struct lima_vm *vm);
17 void lima_mmu_page_fault_resume(struct lima_ip *ip);
H A Dlima_pmu.h9 int lima_pmu_resume(struct lima_ip *ip);
10 void lima_pmu_suspend(struct lima_ip *ip);
11 int lima_pmu_init(struct lima_ip *ip);
12 void lima_pmu_fini(struct lima_ip *ip);
H A Dlima_pp.h10 int lima_pp_resume(struct lima_ip *ip);
11 void lima_pp_suspend(struct lima_ip *ip);
12 int lima_pp_init(struct lima_ip *ip);
13 void lima_pp_fini(struct lima_ip *ip);
15 int lima_pp_bcast_resume(struct lima_ip *ip);
16 void lima_pp_bcast_suspend(struct lima_ip *ip);
17 int lima_pp_bcast_init(struct lima_ip *ip);
18 void lima_pp_bcast_fini(struct lima_ip *ip);
H A Dlima_bcast.h9 int lima_bcast_resume(struct lima_ip *ip);
10 void lima_bcast_suspend(struct lima_ip *ip);
11 int lima_bcast_init(struct lima_ip *ip);
12 void lima_bcast_fini(struct lima_ip *ip);
16 int lima_bcast_mask_irq(struct lima_ip *ip);
17 int lima_bcast_reset(struct lima_ip *ip);
H A Dlima_dlbu.h13 void lima_dlbu_set_reg(struct lima_ip *ip, u32 *reg);
15 int lima_dlbu_resume(struct lima_ip *ip);
16 void lima_dlbu_suspend(struct lima_ip *ip);
17 int lima_dlbu_init(struct lima_ip *ip);
18 void lima_dlbu_fini(struct lima_ip *ip);
H A Dlima_bcast.c11 #define bcast_write(reg, data) writel(data, ip->iomem + reg)
12 #define bcast_read(reg) readl(ip->iomem + reg)
17 struct lima_ip *ip = dev->ip + lima_ip_bcast; local
29 static int lima_bcast_hw_init(struct lima_ip *ip) argument
31 bcast_write(LIMA_BCAST_BROADCAST_MASK, ip->data.mask << 16);
32 bcast_write(LIMA_BCAST_INTERRUPT_MASK, ip->data.mask);
36 int lima_bcast_resume(struct lima_ip *ip) argument
38 return lima_bcast_hw_init(ip);
41 void lima_bcast_suspend(struct lima_ip *ip) argument
46 lima_bcast_mask_irq(struct lima_ip *ip) argument
53 lima_bcast_reset(struct lima_ip *ip) argument
58 lima_bcast_init(struct lima_ip *ip) argument
70 lima_bcast_fini(struct lima_ip *ip) argument
[all...]
H A Dlima_l2_cache.c11 #define l2_cache_write(reg, data) writel(data, ip->iomem + reg)
12 #define l2_cache_read(reg) readl(ip->iomem + reg)
14 static int lima_l2_cache_wait_idle(struct lima_ip *ip) argument
16 struct lima_device *dev = ip->dev;
20 err = readl_poll_timeout(ip->iomem + LIMA_L2_CACHE_STATUS, v,
25 lima_ip_name(ip));
31 int lima_l2_cache_flush(struct lima_ip *ip) argument
35 spin_lock(&ip->data.lock);
37 ret = lima_l2_cache_wait_idle(ip);
38 spin_unlock(&ip
42 lima_l2_cache_hw_init(struct lima_ip *ip) argument
58 lima_l2_cache_resume(struct lima_ip *ip) argument
63 lima_l2_cache_suspend(struct lima_ip *ip) argument
68 lima_l2_cache_init(struct lima_ip *ip) argument
97 lima_l2_cache_fini(struct lima_ip *ip) argument
[all...]
H A Dlima_pmu.c11 #define pmu_write(reg, data) writel(data, ip->iomem + reg)
12 #define pmu_read(reg) readl(ip->iomem + reg)
14 static int lima_pmu_wait_cmd(struct lima_ip *ip) argument
16 struct lima_device *dev = ip->dev;
20 err = readl_poll_timeout(ip->iomem + LIMA_PMU_INT_RAWSTAT,
25 lima_ip_name(ip));
33 static u32 lima_pmu_get_ip_mask(struct lima_ip *ip) argument
35 struct lima_device *dev = ip->dev;
44 if (dev->ip[lima_ip_pp0 + i].present)
48 if (dev->ip[lima_ip_pp
67 lima_pmu_hw_init(struct lima_ip *ip) argument
92 lima_pmu_hw_fini(struct lima_ip *ip) argument
114 lima_pmu_resume(struct lima_ip *ip) argument
119 lima_pmu_suspend(struct lima_ip *ip) argument
124 lima_pmu_init(struct lima_ip *ip) argument
129 lima_pmu_fini(struct lima_ip *ip) argument
[all...]
H A Dlima_gp.h10 int lima_gp_resume(struct lima_ip *ip);
11 void lima_gp_suspend(struct lima_ip *ip);
12 int lima_gp_init(struct lima_ip *ip);
13 void lima_gp_fini(struct lima_ip *ip);
/linux-master/arch/arm/lib/
H A Dio-writesw-armv3.S43 mov ip, r3, lsl #16
44 orr ip, ip, ip, lsr #16
45 str ip, [r0]
47 mov ip, r3, lsr #16
48 orr ip, ip, ip, lsl #16
49 str ip, [r
[all...]
H A Dio-readsw-armv4.S18 .Linsw_align: movs ip, r1, lsl #31
20 ldrh ip, [r0]
22 strh ip, [r1], #2
44 ldrh ip, [r0]
45 pack r5, r5, ip
47 ldrh ip, [r0]
49 pack ip, ip, lr
52 stmia r1!, {r3 - r5, ip}
63 ldrh ip, [r
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dwith_tunnels.sh10 ip link add "ipip_${SUFFIX}" type ipip ${CONFIG}
11 ip link add "gre_${SUFFIX}" type gre ${CONFIG}
12 ip link add "sit_${SUFFIX}" type sit ${CONFIG}
15 ip tunnel show
17 ip link set "ipip_${SUFFIX}" up
18 ip link set "gre_${SUFFIX}" up
19 ip link set "sit_${SUFFIX}" up
24 ip tunnel del "ipip_${SUFFIX}"
25 ip tunnel del "gre_${SUFFIX}"
26 ip tunne
[all...]
H A Dtest_lwt_seg6local.sh51 ip netns del ${NS1} 2> /dev/null
52 ip netns del ${NS2} 2> /dev/null
53 ip netns del ${NS3} 2> /dev/null
54 ip netns del ${NS4} 2> /dev/null
55 ip netns del ${NS5} 2> /dev/null
56 ip netns del ${NS6} 2> /dev/null
62 ip netns add ${NS1}
63 ip netns add ${NS2}
64 ip netns add ${NS3}
65 ip netn
[all...]
/linux-master/arch/arm/mach-davinci/
H A Dsleep.S43 ldr ip, CACHE_FLUSH
44 blx ip
53 ldr ip, [r0, #DDR2_SDRCR_OFFSET]
54 bic ip, ip, #DDR2_SRPD_BIT
55 orr ip, ip, #DDR2_LPMODEN_BIT
56 str ip, [r0, #DDR2_SDRCR_OFFSET]
58 ldr ip, [r0, #DDR2_SDRCR_OFFSET]
59 orr ip, i
[all...]
/linux-master/tools/testing/selftests/drivers/net/bonding/
H A Dbond-arp-interval-causes-panic.sh12 ip netns delete server || true
13 ip netns delete client || true
25 ip netns add "server"
26 ip netns add "client"
27 ip -n client link add eth0 type veth peer name eth0 netns server
28 ip netns exec server ip link set dev eth0 up
29 ip netns exec server ip addr add ${server_ip4}/24 dev eth0
31 ip netn
[all...]
/linux-master/tools/testing/selftests/net/
H A Dvlan_hw_filter.sh9 ip netns del $NETNS
19 ip netns add ${NETNS}
20 ip netns exec ${NETNS} ip link add bond0 type bond mode 0
21 ip netns exec ${NETNS} ip link add bond_slave_1 type veth peer veth2
22 ip netns exec ${NETNS} ip link set bond_slave_1 master bond0
23 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
24 ip netn
[all...]
H A Din_netns.sh11 ip netns add "${NETNS}"
12 ip -netns "${NETNS}" link set lo up
16 ip netns del "${NETNS}"
22 ip netns exec "${NETNS}" "$@"
/linux-master/fs/xfs/
H A Dxfs_inode.h97 static inline bool xfs_inode_on_unlinked_list(const struct xfs_inode *ip) argument
99 return ip->i_prev_unlinked != 0;
102 static inline bool xfs_inode_has_attr_fork(struct xfs_inode *ip) argument
104 return ip->i_forkoff > 0;
109 struct xfs_inode *ip,
114 return &ip->i_df;
116 if (!xfs_inode_has_attr_fork(ip))
118 return &ip->i_af;
120 return ip->i_cowfp;
127 static inline unsigned int xfs_inode_fork_boff(struct xfs_inode *ip) argument
108 xfs_ifork_ptr( struct xfs_inode *ip, int whichfork) argument
132 xfs_inode_data_fork_size(struct xfs_inode *ip) argument
140 xfs_inode_attr_fork_size(struct xfs_inode *ip) argument
148 xfs_inode_fork_size( struct xfs_inode *ip, int whichfork) argument
169 VFS_I(struct xfs_inode *ip) argument
175 VFS_IC(const struct xfs_inode *ip) argument
185 XFS_ISIZE(struct xfs_inode *ip) argument
197 xfs_new_eof(struct xfs_inode *ip, xfs_fsize_t new_size) argument
210 __xfs_iflags_set(xfs_inode_t *ip, unsigned long flags) argument
216 xfs_iflags_set(xfs_inode_t *ip, unsigned long flags) argument
224 xfs_iflags_clear(xfs_inode_t *ip, unsigned long flags) argument
232 __xfs_iflags_test(xfs_inode_t *ip, unsigned long flags) argument
238 xfs_iflags_test(xfs_inode_t *ip, unsigned long flags) argument
248 xfs_iflags_test_and_clear(xfs_inode_t *ip, unsigned long flags) argument
261 xfs_iflags_test_and_set(xfs_inode_t *ip, unsigned long flags) argument
282 xfs_is_reflink_inode(struct xfs_inode *ip) argument
287 xfs_is_metadata_inode(struct xfs_inode *ip) argument
299 xfs_inode_has_cow_data(struct xfs_inode *ip) argument
304 xfs_inode_has_bigtime(struct xfs_inode *ip) argument
309 xfs_inode_has_large_extent_counts(struct xfs_inode *ip) argument
318 xfs_inode_has_bigrtalloc(struct xfs_inode *ip) argument
568 xfs_itruncate_extents( struct xfs_trans **tpp, struct xfs_inode *ip, int whichfork, xfs_fsize_t new_size) argument
581 xfs_update_stable_writes(struct xfs_inode *ip) argument
596 xfs_finish_inode_setup(struct xfs_inode *ip) argument
603 xfs_setup_existing_inode(struct xfs_inode *ip) argument
635 xfs_inode_unlinked_incomplete( struct xfs_inode *ip) argument
650 const struct xfs_inode *ip; member in struct:xfs_dir_update_params
[all...]
H A Dxfs_filestream.h16 void xfs_filestream_deassociate(struct xfs_inode *ip);
22 struct xfs_inode *ip)
24 return xfs_has_filestreams(ip->i_mount) ||
25 (ip->i_diflags & XFS_DIFLAG_FILESTREAM);
21 xfs_inode_is_filestream( struct xfs_inode *ip) argument
H A Dxfs_icache.c76 struct xfs_inode *ip; local
82 ip = alloc_inode_sb(mp->m_super, xfs_inode_cache, GFP_KERNEL | __GFP_NOFAIL);
84 if (inode_init_always(mp->m_super, VFS_I(ip))) {
85 kmem_cache_free(xfs_inode_cache, ip);
90 VFS_I(ip)->i_mode = 0;
91 VFS_I(ip)->i_state = 0;
92 mapping_set_large_folios(VFS_I(ip)->i_mapping);
95 ASSERT(atomic_read(&ip->i_pincount) == 0);
96 ASSERT(ip->i_ino == 0);
99 ip
127 struct xfs_inode *ip = XFS_I(inode); local
154 __xfs_inode_free( struct xfs_inode *ip) argument
166 xfs_inode_free( struct xfs_inode *ip) argument
344 trace_xfs_iget_recycle(ip); variable
375 trace_xfs_iget_recycle_fail(ip); variable
409 xfs_iget_check_free_state( struct xfs_inode *ip, int flags) argument
613 struct xfs_inode *ip; local
749 struct xfs_inode *ip; local
829 xfs_reclaim_igrab( struct xfs_inode *ip, struct xfs_icwalk *icw) argument
868 xfs_reclaim_inode( struct xfs_inode *ip, struct xfs_perag *pag) argument
1034 xfs_icwalk_match_id( struct xfs_inode *ip, struct xfs_icwalk *icw) argument
1058 xfs_icwalk_match_id_union( struct xfs_inode *ip, struct xfs_icwalk *icw) argument
1083 xfs_icwalk_match( struct xfs_inode *ip, struct xfs_icwalk *icw) argument
1125 xfs_inode_free_eofblocks( struct xfs_inode *ip, struct xfs_icwalk *icw, unsigned int *lockflags) argument
1168 xfs_blockgc_set_iflag( struct xfs_inode *ip, unsigned long iflag) argument
1198 xfs_inode_set_eofblocks_tag( xfs_inode_t *ip) argument
1206 xfs_blockgc_clear_iflag( struct xfs_inode *ip, unsigned long iflag) argument
1235 xfs_inode_clear_eofblocks_tag( xfs_inode_t *ip) argument
1248 xfs_prep_free_cowblocks( struct xfs_inode *ip) argument
1287 xfs_inode_free_cowblocks( struct xfs_inode *ip, struct xfs_icwalk *icw, unsigned int *lockflags) argument
1335 xfs_inode_set_cowblocks_tag( xfs_inode_t *ip) argument
1343 xfs_inode_clear_cowblocks_tag( xfs_inode_t *ip) argument
1394 xfs_blockgc_igrab( struct xfs_inode *ip) argument
1428 xfs_blockgc_scan_inode( struct xfs_inode *ip, struct xfs_icwalk *icw) argument
1570 xfs_blockgc_free_quota( struct xfs_inode *ip, unsigned int iwalk_flags) argument
1596 xfs_icwalk_igrab( enum xfs_icwalk_goal goal, struct xfs_inode *ip, struct xfs_icwalk *icw) argument
1616 xfs_icwalk_process_inode( enum xfs_icwalk_goal goal, struct xfs_inode *ip, struct xfs_perag *pag, struct xfs_icwalk *icw) argument
1681 struct xfs_inode *ip = batch[i]; local
1775 xfs_check_delalloc( struct xfs_inode *ip, int whichfork) argument
1801 xfs_inodegc_set_reclaimable( struct xfs_inode *ip) argument
1834 xfs_inodegc_inactivate( struct xfs_inode *ip) argument
1853 struct xfs_inode *ip, *n; local
1972 xfs_inodegc_want_queue_rt_file( struct xfs_inode *ip) argument
1999 xfs_inodegc_want_queue_work( struct xfs_inode *ip, unsigned int items) argument
2046 xfs_inodegc_want_flush_work( struct xfs_inode *ip, unsigned int items, unsigned int shrinker_hits) argument
2069 xfs_inodegc_queue( struct xfs_inode *ip) argument
2134 xfs_inode_mark_reclaimable( struct xfs_inode *ip) argument
[all...]
/linux-master/tools/testing/selftests/net/forwarding/
H A Drouter_nh.sh30 ip link set dev $h1 master vrf-h1
32 ip link set dev vrf-h1 up
33 ip link set dev $h1 up
35 ip address add 192.0.2.2/24 dev $h1
36 ip address add 2001:db8:1::2/64 dev $h1
38 ip route add 198.51.100.0/24 vrf vrf-h1 nexthop via 192.0.2.1
39 ip route add 2001:db8:2::/64 vrf vrf-h1 nexthop via 2001:db8:1::1
44 ip route del 2001:db8:2::/64 vrf vrf-h1
45 ip route del 198.51.100.0/24 vrf vrf-h1
47 ip addres
[all...]
/linux-master/drivers/infiniband/sw/rxe/
H A Drxe_mmap.c18 struct rxe_mmap_info *ip = container_of(ref, local
20 struct rxe_dev *rxe = to_rdev(ip->context->device);
24 if (!list_empty(&ip->pending_mmaps))
25 list_del(&ip->pending_mmaps);
29 vfree(ip->obj); /* buf */
30 kfree(ip);
39 struct rxe_mmap_info *ip = vma->vm_private_data; local
41 kref_get(&ip->ref);
46 struct rxe_mmap_info *ip = vma->vm_private_data; local
48 kref_put(&ip
67 struct rxe_mmap_info *ip, *pp; local
118 struct rxe_mmap_info *ip; local
[all...]
/linux-master/tools/testing/selftests/net/netfilter/
H A Dipvs.sh61 ip link add veth01 netns "${ns0}" type veth peer name veth10 netns "${ns1}"
62 ip link add veth02 netns "${ns0}" type veth peer name veth20 netns "${ns2}"
63 ip link add veth12 netns "${ns1}" type veth peer name veth21 netns "${ns2}"
65 ip netns exec "${ns0}" ip link set veth01 up
66 ip netns exec "${ns0}" ip link set veth02 up
67 ip netns exec "${ns0}" ip link add br0 type bridge
68 ip netn
[all...]

Completed in 249 milliseconds

1234567891011>>