Home
last modified time | relevance | path

Searched full:h3 (Results 1 – 25 of 470) sorted by relevance

12345678910>>...19

/openbmc/linux/arch/arm/boot/dts/allwinner/
H A DMakefile184 DTC_FLAGS_sun8i-h3-orangepi-lite := -@
185 DTC_FLAGS_sun8i-h3-bananapi-m2-plus := -@
186 DTC_FLAGS_sun8i-h3-nanopi-m1-plus := -@
187 DTC_FLAGS_sun8i-h3-nanopi-m1 := -@
188 DTC_FLAGS_sun8i-h3-nanopi-duo2 := -@
189 DTC_FLAGS_sun8i-h3-orangepi-plus2e := -@
190 DTC_FLAGS_sun8i-h3-orangepi-one := -@
191 DTC_FLAGS_sun8i-h3-orangepi-plus := -@
192 DTC_FLAGS_sun8i-h3-orangepi-2 := -@
193 DTC_FLAGS_sun8i-h3-orangepi-zero-plus2 := -@
[all …]
H A Dsun8i-h3-libretech-all-h3-cc.dts8 #include "sun8i-h3.dtsi"
9 #include "sunxi-libretech-all-h3-cc.dtsi"
12 model = "Libre Computer Board ALL-H3-CC H3";
13 compatible = "libretech,all-h3-cc-h3", "allwinner,sun8i-h3";
/openbmc/qemu/hw/arm/
H A Dorangepi.c27 #include "hw/arm/allwinner-h3.h"
34 AwH3State *h3; in orangepi_init() local
52 h3 = AW_H3(object_new(TYPE_AW_H3)); in orangepi_init()
53 object_property_add_child(OBJECT(machine), "soc", OBJECT(h3)); in orangepi_init()
54 object_unref(OBJECT(h3)); in orangepi_init()
57 object_property_set_int(OBJECT(h3), "clk0-freq", 32768, &error_abort); in orangepi_init()
58 object_property_set_int(OBJECT(h3), "clk1-freq", 24 * 1000 * 1000, in orangepi_init()
62 if (qemu_uuid_is_null(&h3->sid.identifier)) { in orangepi_init()
63 qdev_prop_set_string(DEVICE(h3), "identifier", in orangepi_init()
65 } else if (ldl_be_p(&h3->sid.identifier.data[0]) != 0x02c00081) { in orangepi_init()
[all …]
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dmirror_gre.sh24 tunnel_create h3-gt6-key ip6gretap 2001:db8:3::2 2001:db8:3::1 \
26 ip link set h3-gt6-key vrf v$h3
27 matchall_sink_create h3-gt6-key
30 ip address add dev $h3 2001:db8:3::2/64
35 ip address del dev $h3 2001:db8:3::2/64
38 tunnel_destroy h3-gt6-key
50 tunnel_create h3-gt6-soft ip6gretap 2001:db8:4::2 2001:db8:4::1
51 ip link set h3-gt6-soft vrf v$h3
52 matchall_sink_create h3-gt6-soft
58 ip link set dev v2 vrf v$h3
[all …]
H A Dqos_ets_strict.sh8 # them. In H3, we expect to see (almost) exclusively the high-priority traffic.
39 # | + $h3 H3 |
42 # | $h3.111 + + $h3.222 |
94 simple_if_init $h3
95 mtu_set $h3 10000
97 vlan_create $h3 111 v$h3 192.0.2.34/28
98 vlan_create $h3 222 v$h3 192.0.2.66/28
103 vlan_destroy $h3 222
104 vlan_destroy $h3 111
106 mtu_restore $h3
[all …]
H A Dqos_mc_aware.sh13 # throughput, because many packets (that reach $h3) don't get to the kernel at
17 # So instead we send traffic with mausezahn and use RX ethtool counters at $h3.
53 # | + $h3 H3 |
56 # | + $h3.111 |
104 simple_if_init $h3 192.0.2.66/28
105 mtu_set $h3 10000
107 vlan_create $h3 111 v$h3 192.0.2.130/28
112 vlan_destroy $h3 111
114 mtu_restore $h3
115 simple_if_fini $h3 192.0.2.66/28
[all …]
/openbmc/qemu/include/hw/arm/
H A Dallwinner-h3.h2 * Allwinner H3 System on Chip emulation
21 * The Allwinner H3 is a System on Chip containing four ARM Cortex-A7
32 * https://linux-sunxi.org/H3
41 #include "hw/misc/allwinner-h3-ccu.h"
43 #include "hw/misc/allwinner-h3-dramc.h"
44 #include "hw/misc/allwinner-h3-sysctrl.h"
55 * Allwinner H3 device list
58 * Allwinner H3 SoC. For example, the physical memory base address for
103 /** Total number of CPU cores in the H3 SoC */
107 * Allwinner H3 object model
[all …]
/openbmc/linux/lib/crypto/
H A Dpoly1305-donna32.c38 u32 h0, h1, h2, h3, h4; in poly1305_core_blocks() local
61 h3 = state->h[3]; in poly1305_core_blocks()
69 h3 += (get_unaligned_le32(&input[9]) >> 6) & 0x3ffffff; in poly1305_core_blocks()
74 ((u64)h2 * s3) + ((u64)h3 * s2) + in poly1305_core_blocks()
77 ((u64)h2 * s4) + ((u64)h3 * s3) + in poly1305_core_blocks()
80 ((u64)h2 * r0) + ((u64)h3 * s4) + in poly1305_core_blocks()
83 ((u64)h2 * r1) + ((u64)h3 * r0) + in poly1305_core_blocks()
86 ((u64)h2 * r2) + ((u64)h3 * r1) + in poly1305_core_blocks()
100 h3 = (u32)d3 & 0x3ffffff; in poly1305_core_blocks()
115 state->h[3] = h3; in poly1305_core_blocks()
[all …]
/openbmc/linux/tools/testing/selftests/net/forwarding/
H A Dmirror_gre_vlan_bridge_1q.sh35 # | H3 + $h3 + h3-gt6 (ip6gretap) + h3-gt4 (gretap) |
37 # | + $h3.555 rem=2001:db8:2::1 rem=192.0.2.129 |
84 h3=${NETIFS[p6]}
86 # gt4's remote address is at $h3.555, not $h3. Thus the packets arriving
87 # directly to $h3 for test_gretap_untagged_egress() are rejected by
90 sysctl_set net.ipv4.conf.$h3.rp_filter 0
100 vlan_create $h3 555 v$h3
101 h3_addr_add_del add $h3.555
115 h3_addr_add_del del $h3.555
116 vlan_destroy $h3 555
[all …]
H A Drouter_multicast.sh24 # | H2 (v$h2) | | | H3 (v$h3) | |
25 # | $h2 + | | $h3 + |
94 simple_if_init $h3 198.51.100.34/28 2001:db8:3::2/64
96 ip route add 198.51.100.0/28 vrf v$h3 nexthop via 198.51.100.33
97 ip route add 198.51.100.16/28 vrf v$h3 nexthop via 198.51.100.33
99 ip route add 2001:db8:1::/64 vrf v$h3 nexthop via 2001:db8:3::1
100 ip route add 2001:db8:2::/64 vrf v$h3 nexthop via 2001:db8:3::1
102 tc qdisc add dev $h3 ingress
107 tc qdisc del dev $h3 ingress
109 ip route del 2001:db8:2::/64 vrf v$h3
[all …]
H A Dmirror_gre_topo_lib.sh5 # $swp3 and $h3 need to have addresses set up.
28 # | H3 + $h3 + h3-gt6 (ip6gretap) + h3-gt4 (gretap) |
42 tunnel_create h3-gt4 gretap 192.0.2.130 192.0.2.129
43 ip link set h3-gt4 vrf v$h3
44 matchall_sink_create h3-gt4
46 tunnel_create h3-gt6 ip6gretap 2001:db8:2::2 2001:db8:2::1
47 ip link set h3-gt6 vrf v$h3
48 matchall_sink_create h3-gt6
53 tunnel_destroy h3-gt6
54 tunnel_destroy h3-gt4
H A Drouter_broadcast.sh60 vrf_create "vrf-h3"
61 ip link set dev $h3 master vrf-h3
63 ip link set dev vrf-h3 up
64 ip link set dev $h3 up
66 ip address add 198.51.200.2/24 dev $h3
68 ip route add 192.0.2.0/24 vrf vrf-h3 nexthop via 198.51.200.1
69 ip route add 198.51.100.0/24 vrf vrf-h3 nexthop via 198.51.200.1
74 ip route del 198.51.100.0/24 vrf vrf-h3
75 ip route del 192.0.2.0/24 vrf vrf-h3
77 ip address del 198.51.200.2/24 dev $h3
[all …]
H A Dmirror_gre_lag_lacp.sh36 # | + $h3 + $h4 H3 |
106 team_create lag2 lacp $h3 $h4
107 __simple_if_init lag2 vrf-h3 192.0.2.130/32
108 ip -4 route add vrf vrf-h3 192.0.2.129/32 dev lag2
113 ip -4 route del vrf vrf-h3 192.0.2.129/32 dev lag2
117 ip link set dev $h3 down
123 vrf_create vrf-h3
124 ip link set dev vrf-h3 up
125 tc qdisc add dev $h3 clsact
134 tc qdisc del dev $h3 clsact
[all …]
H A Dmirror_vlan.sh28 h3=${NETIFS[p6]}
35 vlan_create $h3 555 v$h3
36 matchall_sink_create $h3.555
51 vlan_destroy $h3 555
67 test_span_dir "$h3.555" "$direction" "$forward_type" "$backward_type"
88 do_test_span_vlan_dir_ips 10 "$h3.555" 111 "$direction" ip \
90 do_test_span_vlan_dir_ips 0 "$h3.555" 555 "$direction" ip \
107 trap_install $h3 ingress
111 trap_uninstall $h3 ingress
H A Dmirror_gre_vlan.sh29 h3=${NETIFS[p6]}
42 ip link add name $h3.555 link $h3 type vlan id 555
43 ip link set dev $h3.555 master v$h3
44 ip address add dev $h3.555 192.0.2.130/28
45 ip address add dev $h3.555 2001:db8:2::2/64
46 ip link set dev $h3.555 up
53 ip link del dev $h3.555
H A Dmirror_gre_nh.sh30 h3=${NETIFS[p6]}
33 sysctl_set net.ipv4.conf.$h3.rp_filter 0
38 sysctl_set net.ipv4.conf.v$h3.rp_filter 0
41 ip address add dev $h3 192.0.2.162/28
43 ip address add dev h3-gt4 192.0.2.130/32
50 ip address add dev $h3 2001:db8:4::2/64
52 ip address add dev h3-gt6 2001:db8:2::2
60 ip address del dev $h3 2001:db8:4::2/64
63 ip address del dev $h3 192.0.2.162/28
66 sysctl_restore net.ipv4.conf.v$h3.rp_filter 0
[all …]
H A Dmirror_gre_lib.sh9 do_test_span_dir_ips 10 h3-$tundev "$@"
16 do_test_span_dir_ips 0 h3-$tundev "$@"
23 test_span_dir_ips h3-$tundev "$@"
39 test_span_dir_ips "h3-$tundev" "$direction" "$forward_type" \
61 test_span_dir_ips "h3-$tundev" "$direction" "$forward_type" \
64 tc filter add dev $h3 ingress pref 77 prot 802.1q \
67 mirror_test v$h1 $ip1 $ip2 $h3 77 10
68 tc filter del dev $h3 ingress pref 77
107 local h3mac=$(mac_get $h3)
H A Dmirror_gre_bound.sh33 # | H3 + $h3 + h3-gt6 (ip6gretap) + h3-gt4 (gretap) |
77 simple_if_init $h3 192.0.2.130/28 2001:db8:2::2/64
79 tunnel_create h3-gt4 gretap 192.0.2.130 192.0.2.129
80 ip link set h3-gt4 vrf v$h3
81 matchall_sink_create h3-gt4
83 tunnel_create h3-gt6 ip6gretap 2001:db8:2::2 2001:db8:2::1
84 ip link set h3-gt6 vrf v$h3
85 matchall_sink_create h3-gt6
90 tunnel_destroy h3-gt6
91 tunnel_destroy h3-gt4
[all …]
H A Dmirror_gre.sh36 h3=${NETIFS[p6]}
42 ip address add dev $h3 192.0.2.130/28
45 ip address add dev $h3 2001:db8:2::2/64
52 ip address del dev $h3 2001:db8:2::2/64
55 ip address del dev $h3 192.0.2.130/28
78 icmp_capture_install h3-${tundev} "src_mac $src_mac dst_mac $dst_mac"
80 mirror_test v$h1 192.0.2.1 192.0.2.2 h3-${tundev} 100 10
82 icmp_capture_uninstall h3-${tundev}
H A Dmirror_gre_bridge_1q.sh33 # | H3 + $h3 + h3-gt6(ip6gretap) + h3-gt4 (gretap) |
35 # | + $h3.555 rem=2001:db8:2::1 rem=192.0.2.129 |
60 h3=${NETIFS[p6]}
76 vlan_create $h3 555 v$h3 192.0.2.130/28 2001:db8:2::2/64
85 vlan_destroy $h3 555
93 ip neigh replace 192.0.2.130 lladdr $(mac_get $h3) \
101 ip neigh replace 2001:db8:2::2 lladdr $(mac_get $h3) \
/openbmc/linux/arch/arm/crypto/
H A Dpoly1305-armv4.pl178 my ($h0,$h1,$h2,$h3,$h4,$r0,$r1,$r2,$r3)=map("r$_",(4..12));
209 adcs $r2,$r2,$h3,lsl#14
210 mov $r3,$h3,lsr#18
221 movne $h3,$r3
297 adcs $h3,$h3,r3
304 umlal r0,r1,$h3,$s1
308 umlal r2,r3,$h3,$s2
321 umlal r0,r1,$h3,$s3
323 umlal r2,r3,$h3,$r0
337 adds $h3,r2,r1 @ d3+=d2>>32
[all …]
/openbmc/linux/arch/x86/crypto/
H A Dpoly1305-x86_64-cryptogams.pl419 my ($H0,$H1,$H2,$H3,$H4, $T0,$T1,$T2,$T3,$T4, $D0,$D1,$D2,$D3,$D4, $MASK) =
715 vmovd $h1#d,$H3
817 vmovd $h1#d,$H3
847 vmovd 4*3($ctx),$H3
970 # d4 = h4*r0 + h3*r1 + h2*r2 + h1*r3 + h0*r4
971 # d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*5*r4
972 # d2 = h2*r0 + h1*r1 + h0*r2 + h4*5*r3 + h3*5*r4
973 # d1 = h1*r0 + h0*r1 + h4*5*r2 + h3*5*r3 + h2*5*r4
974 # d0 = h0*r0 + h4*5*r1 + h3*5*r2 + h2*5*r3 + h1*5*r4
984 vpmuludq $T3,$D4,$D3 # d3 = h3*r0
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dsun8i-h3-libretech-all-h3-cc.dts8 #include "sun8i-h3.dtsi"
9 #include "sunxi-libretech-all-h3-cc.dtsi"
12 model = "Libre Computer Board ALL-H3-CC H3";
13 compatible = "libretech,all-h3-cc-h3", "allwinner,sun8i-h3";
/openbmc/linux/Documentation/devicetree/bindings/media/
H A Dallwinner,sun8i-h3-deinterlace.yaml4 $id: http://devicetree.org/schemas/media/allwinner,sun8i-h3-deinterlace.yaml#
7 title: Allwinner H3 Deinterlace
15 The Allwinner H3 and later has a deinterlace core used for
21 - const: allwinner,sun8i-h3-deinterlace
24 - const: allwinner,sun8i-h3-deinterlace
27 - const: allwinner,sun8i-h3-deinterlace
67 #include <dt-bindings/clock/sun8i-h3-ccu.h>
68 #include <dt-bindings/reset/sun8i-h3-ccu.h>
71 compatible = "allwinner,sun8i-h3-deinterlace";
/openbmc/linux/Documentation/devicetree/bindings/arm/
H A Dsunxi.yaml97 - const: allwinner,sun8i-h3
107 - const: allwinner,sun8i-h3
152 - const: allwinner,sun8i-h3
241 - const: allwinner,sun8i-h3
246 - const: allwinner,sun8i-h3
251 - const: allwinner,sun8i-h3
256 - const: allwinner,sun8i-h3
266 - const: allwinner,sun8i-h3
276 - const: allwinner,sun8i-h3
286 - const: allwinner,sun8i-h3
[all …]

12345678910>>...19