09fc420fec80e25a5979ef46b6af358eb2f51e86
[openwrt/staging/wigyori.git] / target / linux / rockchip / armv8 / base-files / etc / hotplug.d / net / 40-net-smp-affinity
1 #!/bin/sh
2
3 [ "$ACTION" = add ] || exit
4
5 get_device_irq() {
6 local device="$1"
7 local line
8 local seconds="0"
9
10 # wait up to 10 seconds for the irq/device to appear
11 while [ "${seconds}" -le 10 ]; do
12 line=$(grep -E -m 1 "${device}\$" /proc/interrupts) && break
13 seconds="$(( seconds + 2 ))"
14 sleep 2
15 done
16 echo ${line} | sed 's/:.*//'
17 }
18
19 set_interface_core() {
20 local core_mask="$1"
21 local interface="$2"
22 local device="$3"
23
24 [ -z "${device}" ] && device="$interface"
25
26 local irq=$(get_device_irq "$device")
27
28 echo "${core_mask}" > /proc/irq/${irq}/smp_affinity
29 }
30
31 case "$(board_name)" in
32 friendlyarm,nanopi-r2c|\
33 friendlyarm,nanopi-r2s|\
34 xunlong,orangepi-r1-plus|\
35 xunlong,orangepi-r1-plus-lts)
36 set_interface_core 2 "eth0"
37 set_interface_core 4 "eth1" "xhci-hcd:usb[0-9]+"
38 ;;
39 friendlyarm,nanopi-r4s)
40 set_interface_core 10 "eth0"
41 set_interface_core 20 "eth1"
42 ;;
43 friendlyarm,nanopi-r5c)
44 set_interface_core 2 "eth0"
45 set_interface_core 4 "eth1"
46 ;;
47 friendlyarm,nanopi-r5s)
48 set_interface_core 2 "eth0"
49 set_interface_core 4 "eth1"
50 set_interface_core 8 "eth2"
51 ;;
52 esac
53