Merge Official Source
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
commit
8e5964c222
@ -3,6 +3,7 @@ apply_bootconfig() {
|
|||||||
|
|
||||||
case $(board_name) in
|
case $(board_name) in
|
||||||
zyxel,nwa50ax|\
|
zyxel,nwa50ax|\
|
||||||
|
zyxel,nwa50ax-pro|\
|
||||||
zyxel,nwa55axe)
|
zyxel,nwa55axe)
|
||||||
mtd_idx=$(find_mtd_index "bootconfig")
|
mtd_idx=$(find_mtd_index "bootconfig")
|
||||||
zyxel-bootconfig "/dev/mtd$mtd_idx" set-image-status 0 valid
|
zyxel-bootconfig "/dev/mtd$mtd_idx" set-image-status 0 valid
|
||||||
|
40
scripts/mkits-zyxel-fit-filogic.sh
Executable file
40
scripts/mkits-zyxel-fit-filogic.sh
Executable file
@ -0,0 +1,40 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Licensed under the terms of the GNU GPL License version 2 or later.
|
||||||
|
# Author: David Bauer <mail@david-bauer.net>, based on mkits-zyxel-factory.sh.
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "Usage: `basename $0` output file compat-models"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# We need at least 3 arguments
|
||||||
|
[ "$#" -lt 3 ] && usage
|
||||||
|
|
||||||
|
# Target output file
|
||||||
|
OUTPUT="$1"; shift
|
||||||
|
FILE="$1"; shift
|
||||||
|
MODELS="$1"; shift
|
||||||
|
|
||||||
|
# Create a default, fully populated DTS file
|
||||||
|
echo "\
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
/ {
|
||||||
|
timestamp = <0x684090B4>;
|
||||||
|
description = \"Zyxel FIT (Flattened Image Tree)\";
|
||||||
|
compat-models = [${MODELS}];
|
||||||
|
fw_version = \"9.99(###.1)\";
|
||||||
|
#address-cells = <1>;
|
||||||
|
|
||||||
|
images {
|
||||||
|
ubi {
|
||||||
|
data = /incbin/(\"${FILE}\");
|
||||||
|
type = \"firmware\";
|
||||||
|
compression = \"none\";
|
||||||
|
hash {
|
||||||
|
algo = \"sha256\";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};" > ${OUTPUT}
|
@ -10,8 +10,7 @@ CPU_TYPE:=cortex-a15
|
|||||||
CPU_SUBTYPE:=neon-vfpv4
|
CPU_SUBTYPE:=neon-vfpv4
|
||||||
SUBTARGETS:=generic chromium
|
SUBTARGETS:=generic chromium
|
||||||
|
|
||||||
KERNEL_PATCHVER:=5.15
|
KERNEL_PATCHVER:=6.1
|
||||||
KERNEL_TESTING_PATCHVER:=6.1
|
|
||||||
|
|
||||||
KERNELNAME:=zImage Image dtbs
|
KERNELNAME:=zImage Image dtbs
|
||||||
|
|
||||||
|
@ -6,112 +6,134 @@
|
|||||||
. /lib/functions/uci-defaults.sh
|
. /lib/functions/uci-defaults.sh
|
||||||
. /lib/functions/system.sh
|
. /lib/functions/system.sh
|
||||||
|
|
||||||
board_config_update
|
ipq806x_setup_interfaces()
|
||||||
|
{
|
||||||
|
local board="$1"
|
||||||
|
|
||||||
board=$(board_name)
|
case "$board" in
|
||||||
|
arris,tr4400-v2)
|
||||||
case "$board" in
|
|
||||||
arris,tr4400-v2)
|
|
||||||
ucidef_set_interfaces_lan_wan "eth1" "eth2"
|
ucidef_set_interfaces_lan_wan "eth1" "eth2"
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "0u@eth0"
|
"1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "0u@eth0"
|
||||||
;;
|
;;
|
||||||
askey,rt4230w-rev6 |\
|
askey,rt4230w-rev6 |\
|
||||||
asrock,g10 |\
|
asrock,g10 |\
|
||||||
nec,wg2600hp)
|
nec,wg2600hp)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"2:lan" "3:lan" "4:lan" "5:lan" "6@eth1" "1:wan" "0@eth0"
|
"2:lan" "3:lan" "4:lan" "5:lan" "6@eth1" "1:wan" "0@eth0"
|
||||||
;;
|
;;
|
||||||
buffalo,wxr-2533dhp |\
|
buffalo,wxr-2533dhp |\
|
||||||
compex,wpq864 |\
|
compex,wpq864 |\
|
||||||
netgear,d7800 |\
|
netgear,d7800 |\
|
||||||
netgear,r7500 |\
|
netgear,r7500 |\
|
||||||
netgear,r7500v2 |\
|
netgear,r7500v2 |\
|
||||||
qcom,ipq8064-ap148)
|
qcom,ipq8064-ap148)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
||||||
;;
|
;;
|
||||||
edgecore,ecw5410)
|
edgecore,ecw5410)
|
||||||
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||||||
;;
|
;;
|
||||||
linksys,ea7500-v1)
|
linksys,ea7500-v1)
|
||||||
hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
|
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
|
"2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
|
||||||
ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
|
|
||||||
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
|
||||||
;;
|
;;
|
||||||
linksys,ea8500)
|
linksys,ea8500)
|
||||||
hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
|
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
||||||
ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
|
|
||||||
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
|
||||||
;;
|
;;
|
||||||
meraki,mr42)
|
meraki,mr42)
|
||||||
ucidef_set_interface_lan "eth0"
|
ucidef_set_interface_lan "eth0"
|
||||||
;;
|
;;
|
||||||
meraki,mr52)
|
meraki,mr52)
|
||||||
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
||||||
;;
|
;;
|
||||||
nec,wg2600hp3)
|
nec,wg2600hp3)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"2:lan" "3:lan" "4:lan" "5:lan" "0@eth1" "1:wan" "6@eth0"
|
"2:lan" "3:lan" "4:lan" "5:lan" "0@eth1" "1:wan" "6@eth0"
|
||||||
;;
|
;;
|
||||||
netgear,r7800 |\
|
netgear,r7800 |\
|
||||||
netgear,xr450 |\
|
netgear,xr450 |\
|
||||||
netgear,xr500 |\
|
netgear,xr500 |\
|
||||||
tplink,c2600 |\
|
tplink,c2600 |\
|
||||||
tplink,vr2600v)
|
tplink,vr2600v)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "6@eth1" "5:wan" "0@eth0"
|
"1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "6@eth1" "5:wan" "0@eth0"
|
||||||
;;
|
;;
|
||||||
qcom,ipq8064-ap161)
|
qcom,ipq8064-ap161)
|
||||||
ucidef_set_interface_lan "eth1 eth2"
|
ucidef_set_interface_lan "eth1 eth2"
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"0:lan" "1:lan" "2:lan" "3u@eth1" "6:wan" "4u@eth0"
|
"0:lan" "1:lan" "2:lan" "3u@eth1" "6:wan" "4u@eth0"
|
||||||
;;
|
;;
|
||||||
qcom,ipq8064-db149)
|
qcom,ipq8064-db149)
|
||||||
ucidef_set_interface_lan "eth1 eth2 eth3"
|
ucidef_set_interface_lan "eth1 eth2 eth3"
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "5:wan" "0u@eth0"
|
"1:lan" "2:lan" "3:lan" "4:lan" "6u@eth1" "5:wan" "0u@eth0"
|
||||||
;;
|
;;
|
||||||
ruijie,rg-mtfi-m520)
|
tplink,ad7200)
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
|
||||||
|
;;
|
||||||
|
asus,onhub |\
|
||||||
|
tplink,onhub)
|
||||||
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"1:lan" "6@eth1" "2:wan" "0@eth0"
|
||||||
|
;;
|
||||||
|
nokia,ac400i |\
|
||||||
|
ubnt,unifi-ac-hd)
|
||||||
|
ucidef_set_interface_lan "eth0 eth1"
|
||||||
|
;;
|
||||||
|
xiaomi,mi-router-hd)
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"1:lan:3" "2:lan:2" "3:lan:1" "6@eth1" "5:wan" "0@eth0"
|
||||||
|
;;
|
||||||
|
zyxel,nbg6817)
|
||||||
|
ucidef_add_switch "switch0" \
|
||||||
|
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unsupported hardware. Network interfaces not intialized"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
ipq806x_setup_mac_address()
|
||||||
|
{
|
||||||
|
local board="$1"
|
||||||
|
|
||||||
|
case "$board" in
|
||||||
|
linksys,ea7500-v1)
|
||||||
|
hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
|
||||||
|
ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
|
||||||
|
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
||||||
|
;;
|
||||||
|
linksys,ea8500)
|
||||||
|
hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
|
||||||
|
ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
|
||||||
|
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
||||||
|
;;
|
||||||
|
ruijie,rg-mtfi-m520)
|
||||||
hw_mac_addr=$(mtd_get_mac_ascii PRODUCTINFO ethaddr)
|
hw_mac_addr=$(mtd_get_mac_ascii PRODUCTINFO ethaddr)
|
||||||
ucidef_add_switch "switch0" \
|
ucidef_add_switch "switch0" \
|
||||||
"1:lan" "6@eth1" "5:wan" "0@eth0"
|
"1:lan" "6@eth1" "5:wan" "0@eth0"
|
||||||
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
|
||||||
ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 1)"
|
ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 1)"
|
||||||
;;
|
;;
|
||||||
tplink,ad7200)
|
zyxel,nbg6817)
|
||||||
ucidef_add_switch "switch0" \
|
|
||||||
"2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "6@eth1" "1:wan" "0@eth0"
|
|
||||||
;;
|
|
||||||
asus,onhub |\
|
|
||||||
tplink,onhub)
|
|
||||||
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
||||||
ucidef_add_switch "switch0" \
|
|
||||||
"1:lan" "6@eth1" "2:wan" "0@eth0"
|
|
||||||
;;
|
|
||||||
nokia,ac400i |\
|
|
||||||
ubnt,unifi-ac-hd)
|
|
||||||
ucidef_set_interface_lan "eth0 eth1"
|
|
||||||
;;
|
|
||||||
xiaomi,mi-router-hd)
|
|
||||||
ucidef_add_switch "switch0" \
|
|
||||||
"1:lan:3" "2:lan:2" "3:lan:1" "6@eth1" "5:wan" "0@eth0"
|
|
||||||
;;
|
|
||||||
zyxel,nbg6817)
|
|
||||||
hw_mac_addr=$(mtd_get_mac_ascii 0:appsblenv ethaddr)
|
hw_mac_addr=$(mtd_get_mac_ascii 0:appsblenv ethaddr)
|
||||||
ucidef_add_switch "switch0" \
|
|
||||||
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
|
|
||||||
ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 2)"
|
ucidef_set_interface_macaddr "lan" "$(macaddr_add $hw_mac_addr 2)"
|
||||||
ucidef_set_interface_macaddr "wan" "$(macaddr_add $hw_mac_addr 3)"
|
ucidef_set_interface_macaddr "wan" "$(macaddr_add $hw_mac_addr 3)"
|
||||||
;;
|
;;
|
||||||
*)
|
esac
|
||||||
echo "Unsupported hardware. Network interfaces not intialized"
|
}
|
||||||
;;
|
|
||||||
esac
|
board_config_update
|
||||||
|
|
||||||
|
board=$(board_name)
|
||||||
|
|
||||||
|
ipq806x_setup_mac_address $board
|
||||||
|
ipq806x_setup_interfaces $board
|
||||||
|
|
||||||
board_config_flush
|
board_config_flush
|
||||||
|
|
||||||
|
@ -1,509 +0,0 @@
|
|||||||
CONFIG_ALIGNMENT_TRAP=y
|
|
||||||
# CONFIG_APQ_GCC_8084 is not set
|
|
||||||
# CONFIG_APQ_MMCC_8084 is not set
|
|
||||||
CONFIG_AR8216_PHY=y
|
|
||||||
CONFIG_ARCH_32BIT_OFF_T=y
|
|
||||||
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
|
|
||||||
# CONFIG_ARCH_IPQ40XX is not set
|
|
||||||
CONFIG_ARCH_KEEP_MEMBLOCK=y
|
|
||||||
# CONFIG_ARCH_MDM9615 is not set
|
|
||||||
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
|
|
||||||
CONFIG_ARCH_MSM8960=y
|
|
||||||
CONFIG_ARCH_MSM8974=y
|
|
||||||
CONFIG_ARCH_MSM8X60=y
|
|
||||||
CONFIG_ARCH_MULTIPLATFORM=y
|
|
||||||
CONFIG_ARCH_MULTI_V6_V7=y
|
|
||||||
CONFIG_ARCH_MULTI_V7=y
|
|
||||||
CONFIG_ARCH_NR_GPIO=0
|
|
||||||
CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y
|
|
||||||
CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y
|
|
||||||
CONFIG_ARCH_QCOM=y
|
|
||||||
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
|
|
||||||
CONFIG_ARCH_SPARSEMEM_ENABLE=y
|
|
||||||
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
|
||||||
CONFIG_ARM=y
|
|
||||||
CONFIG_ARM_AMBA=y
|
|
||||||
CONFIG_ARM_APPENDED_DTB=y
|
|
||||||
CONFIG_ARM_ARCH_TIMER=y
|
|
||||||
CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
|
|
||||||
CONFIG_ARM_ATAG_DTB_COMPAT=y
|
|
||||||
# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER is not set
|
|
||||||
CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE=y
|
|
||||||
CONFIG_ARM_CPUIDLE=y
|
|
||||||
CONFIG_ARM_CPU_SUSPEND=y
|
|
||||||
# CONFIG_ARM_CPU_TOPOLOGY is not set
|
|
||||||
CONFIG_ARM_CRYPTO=y
|
|
||||||
CONFIG_ARM_GIC=y
|
|
||||||
CONFIG_ARM_HAS_SG_CHAIN=y
|
|
||||||
CONFIG_ARM_IPQ806X_FAB_DEVFREQ=y
|
|
||||||
CONFIG_ARM_KRAIT_CACHE_DEVFREQ=y
|
|
||||||
CONFIG_ARM_L1_CACHE_SHIFT=6
|
|
||||||
CONFIG_ARM_L1_CACHE_SHIFT_6=y
|
|
||||||
CONFIG_ARM_PATCH_IDIV=y
|
|
||||||
CONFIG_ARM_PATCH_PHYS_VIRT=y
|
|
||||||
# CONFIG_ARM_QCOM_CPUFREQ_HW is not set
|
|
||||||
CONFIG_ARM_QCOM_CPUFREQ_NVMEM=y
|
|
||||||
CONFIG_ARM_QCOM_SPM_CPUIDLE=y
|
|
||||||
# CONFIG_ARM_SMMU is not set
|
|
||||||
CONFIG_ARM_THUMB=y
|
|
||||||
CONFIG_ARM_UNWIND=y
|
|
||||||
CONFIG_ARM_VIRT_EXT=y
|
|
||||||
CONFIG_AT803X_PHY=y
|
|
||||||
CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y
|
|
||||||
CONFIG_BLK_DEV_LOOP=y
|
|
||||||
CONFIG_BLK_MQ_PCI=y
|
|
||||||
CONFIG_BOUNCE=y
|
|
||||||
# CONFIG_CACHE_L2X0 is not set
|
|
||||||
CONFIG_CLKSRC_QCOM=y
|
|
||||||
CONFIG_CLONE_BACKWARDS=y
|
|
||||||
CONFIG_CMDLINE_OVERRIDE=y
|
|
||||||
CONFIG_COMMON_CLK=y
|
|
||||||
CONFIG_COMMON_CLK_QCOM=y
|
|
||||||
CONFIG_COMPAT_32BIT_TIME=y
|
|
||||||
CONFIG_CPUFREQ_DT=y
|
|
||||||
CONFIG_CPUFREQ_DT_PLATDEV=y
|
|
||||||
CONFIG_CPU_32v6K=y
|
|
||||||
CONFIG_CPU_32v7=y
|
|
||||||
CONFIG_CPU_ABRT_EV7=y
|
|
||||||
CONFIG_CPU_CACHE_V7=y
|
|
||||||
CONFIG_CPU_CACHE_VIPT=y
|
|
||||||
CONFIG_CPU_COPY_V6=y
|
|
||||||
CONFIG_CPU_CP15=y
|
|
||||||
CONFIG_CPU_CP15_MMU=y
|
|
||||||
CONFIG_CPU_FREQ=y
|
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
|
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
|
|
||||||
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
|
|
||||||
CONFIG_CPU_FREQ_GOV_COMMON=y
|
|
||||||
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
|
|
||||||
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
|
|
||||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
|
||||||
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
|
||||||
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
|
|
||||||
# CONFIG_CPU_FREQ_GOV_USERSPACE is not set
|
|
||||||
CONFIG_CPU_FREQ_STAT=y
|
|
||||||
CONFIG_CPU_HAS_ASID=y
|
|
||||||
CONFIG_CPU_IDLE=y
|
|
||||||
CONFIG_CPU_IDLE_GOV_LADDER=y
|
|
||||||
CONFIG_CPU_IDLE_GOV_MENU=y
|
|
||||||
CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
|
|
||||||
CONFIG_CPU_PABRT_V7=y
|
|
||||||
CONFIG_CPU_PM=y
|
|
||||||
CONFIG_CPU_RMAP=y
|
|
||||||
CONFIG_CPU_SPECTRE=y
|
|
||||||
CONFIG_CPU_THERMAL=y
|
|
||||||
CONFIG_CPU_THUMB_CAPABLE=y
|
|
||||||
CONFIG_CPU_TLB_V7=y
|
|
||||||
CONFIG_CPU_V7=y
|
|
||||||
CONFIG_CRC16=y
|
|
||||||
# CONFIG_CRC32_SARWATE is not set
|
|
||||||
CONFIG_CRC32_SLICEBY8=y
|
|
||||||
CONFIG_CRC8=y
|
|
||||||
CONFIG_CRYPTO_DEFLATE=y
|
|
||||||
CONFIG_CRYPTO_DEV_QCOM_RNG=y
|
|
||||||
CONFIG_CRYPTO_DRBG=y
|
|
||||||
CONFIG_CRYPTO_DRBG_HMAC=y
|
|
||||||
CONFIG_CRYPTO_DRBG_MENU=y
|
|
||||||
CONFIG_CRYPTO_HASH_INFO=y
|
|
||||||
CONFIG_CRYPTO_HMAC=y
|
|
||||||
CONFIG_CRYPTO_HW=y
|
|
||||||
CONFIG_CRYPTO_JITTERENTROPY=y
|
|
||||||
CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y
|
|
||||||
CONFIG_CRYPTO_LIB_SHA256=y
|
|
||||||
CONFIG_CRYPTO_LZO=y
|
|
||||||
CONFIG_CRYPTO_RNG=y
|
|
||||||
CONFIG_CRYPTO_RNG2=y
|
|
||||||
CONFIG_CRYPTO_SHA256=y
|
|
||||||
CONFIG_CRYPTO_SHA512=y
|
|
||||||
CONFIG_CRYPTO_ZSTD=y
|
|
||||||
CONFIG_DCACHE_WORD_ACCESS=y
|
|
||||||
CONFIG_DEBUG_GPIO=y
|
|
||||||
CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
|
|
||||||
CONFIG_DEVFREQ_GOV_PASSIVE=y
|
|
||||||
# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
|
|
||||||
# CONFIG_DEVFREQ_GOV_POWERSAVE is not set
|
|
||||||
# CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND is not set
|
|
||||||
# CONFIG_DEVFREQ_GOV_USERSPACE is not set
|
|
||||||
# CONFIG_DEVFREQ_THERMAL is not set
|
|
||||||
CONFIG_DMADEVICES=y
|
|
||||||
CONFIG_DMA_ENGINE=y
|
|
||||||
CONFIG_DMA_OF=y
|
|
||||||
CONFIG_DMA_OPS=y
|
|
||||||
CONFIG_DMA_REMAP=y
|
|
||||||
CONFIG_DMA_VIRTUAL_CHANNELS=y
|
|
||||||
CONFIG_DTC=y
|
|
||||||
CONFIG_DT_IDLE_STATES=y
|
|
||||||
# CONFIG_DWMAC_GENERIC is not set
|
|
||||||
CONFIG_DWMAC_IPQ806X=y
|
|
||||||
# CONFIG_DWMAC_QCOM_ETHQOS is not set
|
|
||||||
CONFIG_EDAC_ATOMIC_SCRUB=y
|
|
||||||
CONFIG_EDAC_SUPPORT=y
|
|
||||||
CONFIG_ETHERNET_PACKET_MANGLE=y
|
|
||||||
CONFIG_FIXED_PHY=y
|
|
||||||
CONFIG_FIX_EARLYCON_MEM=y
|
|
||||||
CONFIG_FWNODE_MDIO=y
|
|
||||||
CONFIG_FW_LOADER_PAGED_BUF=y
|
|
||||||
CONFIG_GENERIC_ALLOCATOR=y
|
|
||||||
CONFIG_GENERIC_BUG=y
|
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
|
||||||
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
|
|
||||||
CONFIG_GENERIC_CPU_AUTOPROBE=y
|
|
||||||
CONFIG_GENERIC_CPU_VULNERABILITIES=y
|
|
||||||
CONFIG_GENERIC_EARLY_IOREMAP=y
|
|
||||||
CONFIG_GENERIC_GETTIMEOFDAY=y
|
|
||||||
CONFIG_GENERIC_IDLE_POLL_SETUP=y
|
|
||||||
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
|
|
||||||
CONFIG_GENERIC_IRQ_MIGRATION=y
|
|
||||||
CONFIG_GENERIC_IRQ_MULTI_HANDLER=y
|
|
||||||
CONFIG_GENERIC_IRQ_SHOW=y
|
|
||||||
CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
|
|
||||||
CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y
|
|
||||||
CONFIG_GENERIC_MSI_IRQ=y
|
|
||||||
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
|
||||||
CONFIG_GENERIC_PCI_IOMAP=y
|
|
||||||
CONFIG_GENERIC_PHY=y
|
|
||||||
CONFIG_GENERIC_PINCONF=y
|
|
||||||
CONFIG_GENERIC_PINCTRL_GROUPS=y
|
|
||||||
CONFIG_GENERIC_PINMUX_FUNCTIONS=y
|
|
||||||
CONFIG_GENERIC_SCHED_CLOCK=y
|
|
||||||
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
|
||||||
CONFIG_GENERIC_STRNCPY_FROM_USER=y
|
|
||||||
CONFIG_GENERIC_STRNLEN_USER=y
|
|
||||||
CONFIG_GENERIC_TIME_VSYSCALL=y
|
|
||||||
CONFIG_GENERIC_VDSO_32=y
|
|
||||||
CONFIG_GLOB=y
|
|
||||||
CONFIG_GPIOLIB_IRQCHIP=y
|
|
||||||
CONFIG_GPIO_CDEV=y
|
|
||||||
CONFIG_GRO_CELLS=y
|
|
||||||
CONFIG_GPIO_PCA953X=y
|
|
||||||
CONFIG_GPIO_PCA953X_IRQ=y
|
|
||||||
CONFIG_HANDLE_DOMAIN_IRQ=y
|
|
||||||
CONFIG_HARDEN_BRANCH_PREDICTOR=y
|
|
||||||
CONFIG_HARDIRQS_SW_RESEND=y
|
|
||||||
CONFIG_HAS_DMA=y
|
|
||||||
CONFIG_HAS_IOMEM=y
|
|
||||||
CONFIG_HAS_IOPORT_MAP=y
|
|
||||||
CONFIG_HAVE_SMP=y
|
|
||||||
CONFIG_HIGHMEM=y
|
|
||||||
# CONFIG_HIGHPTE is not set
|
|
||||||
CONFIG_HOTPLUG_CPU=y
|
|
||||||
CONFIG_HWMON=y
|
|
||||||
CONFIG_HWSPINLOCK=y
|
|
||||||
CONFIG_HWSPINLOCK_QCOM=y
|
|
||||||
CONFIG_HW_RANDOM=y
|
|
||||||
CONFIG_HZ_FIXED=0
|
|
||||||
CONFIG_I2C=y
|
|
||||||
CONFIG_I2C_BOARDINFO=y
|
|
||||||
CONFIG_I2C_CHARDEV=y
|
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
|
||||||
# CONFIG_I2C_QCOM_CCI is not set
|
|
||||||
CONFIG_I2C_QUP=y
|
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
|
||||||
# CONFIG_IOMMU_DEBUGFS is not set
|
|
||||||
# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
|
|
||||||
# CONFIG_IOMMU_IO_PGTABLE_LPAE is not set
|
|
||||||
CONFIG_IOMMU_SUPPORT=y
|
|
||||||
# CONFIG_IPQ_APSS_PLL is not set
|
|
||||||
# CONFIG_IPQ_GCC_4019 is not set
|
|
||||||
# CONFIG_IPQ_GCC_6018 is not set
|
|
||||||
CONFIG_IPQ_GCC_806X=y
|
|
||||||
# CONFIG_IPQ_GCC_8074 is not set
|
|
||||||
# CONFIG_IPQ_LCC_806X is not set
|
|
||||||
CONFIG_IRQCHIP=y
|
|
||||||
CONFIG_IRQ_DOMAIN=y
|
|
||||||
CONFIG_IRQ_DOMAIN_HIERARCHY=y
|
|
||||||
CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y
|
|
||||||
CONFIG_IRQ_FORCED_THREADING=y
|
|
||||||
CONFIG_IRQ_WORK=y
|
|
||||||
CONFIG_KMAP_LOCAL=y
|
|
||||||
CONFIG_KMAP_LOCAL_NON_LINEAR_PTE_ARRAY=y
|
|
||||||
CONFIG_KPSS_XCC=y
|
|
||||||
CONFIG_KRAITCC=y
|
|
||||||
CONFIG_KRAIT_CLOCKS=y
|
|
||||||
CONFIG_KRAIT_L2_ACCESSORS=y
|
|
||||||
CONFIG_LIBFDT=y
|
|
||||||
CONFIG_LOCK_DEBUGGING_SUPPORT=y
|
|
||||||
CONFIG_LOCK_SPIN_ON_OWNER=y
|
|
||||||
CONFIG_LZO_COMPRESS=y
|
|
||||||
CONFIG_LZO_DECOMPRESS=y
|
|
||||||
CONFIG_MDIO_BITBANG=y
|
|
||||||
CONFIG_MDIO_BUS=y
|
|
||||||
CONFIG_MDIO_DEVICE=y
|
|
||||||
CONFIG_MDIO_DEVRES=y
|
|
||||||
CONFIG_MDIO_GPIO=y
|
|
||||||
CONFIG_MDIO_IPQ8064=y
|
|
||||||
# CONFIG_MDM_GCC_9615 is not set
|
|
||||||
# CONFIG_MDM_LCC_9615 is not set
|
|
||||||
CONFIG_MEMFD_CREATE=y
|
|
||||||
# CONFIG_MFD_HI6421_SPMI is not set
|
|
||||||
CONFIG_MFD_QCOM_RPM=y
|
|
||||||
# CONFIG_MFD_SPMI_PMIC is not set
|
|
||||||
CONFIG_MFD_SYSCON=y
|
|
||||||
CONFIG_MIGHT_HAVE_CACHE_L2X0=y
|
|
||||||
CONFIG_MIGRATION=y
|
|
||||||
CONFIG_MMC=y
|
|
||||||
CONFIG_MMC_ARMMMCI=y
|
|
||||||
CONFIG_MMC_BLOCK=y
|
|
||||||
CONFIG_MMC_BLOCK_MINORS=16
|
|
||||||
CONFIG_MMC_CQHCI=y
|
|
||||||
CONFIG_MMC_QCOM_DML=y
|
|
||||||
CONFIG_MMC_SDHCI=y
|
|
||||||
CONFIG_MMC_SDHCI_IO_ACCESSORS=y
|
|
||||||
CONFIG_MMC_SDHCI_MSM=y
|
|
||||||
# CONFIG_MMC_SDHCI_PCI is not set
|
|
||||||
CONFIG_MMC_SDHCI_PLTFM=y
|
|
||||||
CONFIG_MODULES_USE_ELF_REL=y
|
|
||||||
CONFIG_MSM_GCC_8660=y
|
|
||||||
# CONFIG_MSM_GCC_8916 is not set
|
|
||||||
# CONFIG_MSM_GCC_8939 is not set
|
|
||||||
# CONFIG_MSM_GCC_8960 is not set
|
|
||||||
# CONFIG_MSM_GCC_8974 is not set
|
|
||||||
# CONFIG_MSM_GCC_8994 is not set
|
|
||||||
# CONFIG_MSM_GCC_8996 is not set
|
|
||||||
# CONFIG_MSM_GCC_8998 is not set
|
|
||||||
# CONFIG_MSM_GPUCC_8998 is not set
|
|
||||||
# CONFIG_MSM_IOMMU is not set
|
|
||||||
# CONFIG_MSM_LCC_8960 is not set
|
|
||||||
# CONFIG_MSM_MMCC_8960 is not set
|
|
||||||
# CONFIG_MSM_MMCC_8974 is not set
|
|
||||||
# CONFIG_MSM_MMCC_8996 is not set
|
|
||||||
# CONFIG_MSM_MMCC_8998 is not set
|
|
||||||
CONFIG_MTD_CMDLINE_PARTS=y
|
|
||||||
CONFIG_MTD_NAND_CORE=y
|
|
||||||
CONFIG_MTD_NAND_ECC=y
|
|
||||||
CONFIG_MTD_NAND_ECC_SW_HAMMING=y
|
|
||||||
CONFIG_MTD_NAND_QCOM=y
|
|
||||||
CONFIG_MTD_QCOMSMEM_PARTS=y
|
|
||||||
CONFIG_MTD_RAW_NAND=y
|
|
||||||
CONFIG_MTD_SPI_NOR=y
|
|
||||||
CONFIG_MTD_SPLIT_FIRMWARE=y
|
|
||||||
CONFIG_MTD_SPLIT_FIT_FW=y
|
|
||||||
CONFIG_MTD_SPLIT_UIMAGE_FW=y
|
|
||||||
CONFIG_MTD_UBI=y
|
|
||||||
CONFIG_MTD_UBI_BEB_LIMIT=20
|
|
||||||
CONFIG_MTD_UBI_BLOCK=y
|
|
||||||
CONFIG_MTD_UBI_WL_THRESHOLD=4096
|
|
||||||
CONFIG_MUTEX_SPIN_ON_OWNER=y
|
|
||||||
CONFIG_NEED_DMA_MAP_STATE=y
|
|
||||||
CONFIG_NEON=y
|
|
||||||
CONFIG_NET_DEVLINK=y
|
|
||||||
CONFIG_NET_DSA=y
|
|
||||||
CONFIG_NET_DSA_QCA8K=y
|
|
||||||
CONFIG_NET_DSA_QCA8K_LEDS_SUPPORT=y
|
|
||||||
CONFIG_NET_DSA_TAG_QCA=y
|
|
||||||
CONFIG_NET_FLOW_LIMIT=y
|
|
||||||
CONFIG_NET_PTP_CLASSIFY=y
|
|
||||||
CONFIG_NET_SELFTESTS=y
|
|
||||||
CONFIG_NET_SWITCHDEV=y
|
|
||||||
CONFIG_NLS=y
|
|
||||||
CONFIG_NO_HZ=y
|
|
||||||
CONFIG_NO_HZ_COMMON=y
|
|
||||||
CONFIG_NO_HZ_IDLE=y
|
|
||||||
CONFIG_NR_CPUS=2
|
|
||||||
CONFIG_NVMEM=y
|
|
||||||
CONFIG_NVMEM_QCOM_QFPROM=y
|
|
||||||
# CONFIG_NVMEM_SPMI_SDAM is not set
|
|
||||||
CONFIG_NVMEM_SYSFS=y
|
|
||||||
CONFIG_OF=y
|
|
||||||
CONFIG_OF_ADDRESS=y
|
|
||||||
CONFIG_OF_EARLY_FLATTREE=y
|
|
||||||
CONFIG_OF_FLATTREE=y
|
|
||||||
CONFIG_OF_GPIO=y
|
|
||||||
CONFIG_OF_IRQ=y
|
|
||||||
CONFIG_OF_KOBJ=y
|
|
||||||
CONFIG_OF_MDIO=y
|
|
||||||
CONFIG_OLD_SIGACTION=y
|
|
||||||
CONFIG_OLD_SIGSUSPEND3=y
|
|
||||||
CONFIG_PADATA=y
|
|
||||||
CONFIG_PAGE_OFFSET=0xC0000000
|
|
||||||
CONFIG_PAGE_POOL=y
|
|
||||||
CONFIG_PCI=y
|
|
||||||
CONFIG_PCIEAER=y
|
|
||||||
CONFIG_PCIEPORTBUS=y
|
|
||||||
CONFIG_PCIE_DW=y
|
|
||||||
CONFIG_PCIE_DW_HOST=y
|
|
||||||
CONFIG_PCIE_QCOM=y
|
|
||||||
CONFIG_PCI_DEBUG=y
|
|
||||||
CONFIG_PCI_DISABLE_COMMON_QUIRKS=y
|
|
||||||
CONFIG_PCI_DOMAINS=y
|
|
||||||
CONFIG_PCI_DOMAINS_GENERIC=y
|
|
||||||
CONFIG_PCI_MSI=y
|
|
||||||
CONFIG_PCI_MSI_IRQ_DOMAIN=y
|
|
||||||
CONFIG_PCS_XPCS=y
|
|
||||||
CONFIG_PERF_USE_VMALLOC=y
|
|
||||||
CONFIG_PGTABLE_LEVELS=2
|
|
||||||
CONFIG_PHYLIB=y
|
|
||||||
CONFIG_PHYLINK=y
|
|
||||||
# CONFIG_PHY_QCOM_APQ8064_SATA is not set
|
|
||||||
# CONFIG_PHY_QCOM_IPQ4019_USB is not set
|
|
||||||
CONFIG_PHY_QCOM_IPQ806X_SATA=y
|
|
||||||
# CONFIG_PHY_QCOM_IPQ806X_USB is not set
|
|
||||||
# CONFIG_PHY_QCOM_PCIE2 is not set
|
|
||||||
# CONFIG_PHY_QCOM_QMP is not set
|
|
||||||
# CONFIG_PHY_QCOM_QUSB2 is not set
|
|
||||||
# CONFIG_PHY_QCOM_USB_HS_28NM is not set
|
|
||||||
# CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2 is not set
|
|
||||||
# CONFIG_PHY_QCOM_USB_SS is not set
|
|
||||||
CONFIG_PINCTRL=y
|
|
||||||
# CONFIG_PINCTRL_APQ8064 is not set
|
|
||||||
# CONFIG_PINCTRL_APQ8084 is not set
|
|
||||||
# CONFIG_PINCTRL_IPQ4019 is not set
|
|
||||||
# CONFIG_PINCTRL_IPQ6018 is not set
|
|
||||||
CONFIG_PINCTRL_IPQ8064=y
|
|
||||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
|
||||||
# CONFIG_PINCTRL_MDM9615 is not set
|
|
||||||
CONFIG_PINCTRL_MSM=y
|
|
||||||
# CONFIG_PINCTRL_MSM8226 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8660 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8916 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8960 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8976 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8994 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8996 is not set
|
|
||||||
# CONFIG_PINCTRL_MSM8998 is not set
|
|
||||||
# CONFIG_PINCTRL_QCOM_SPMI_PMIC is not set
|
|
||||||
# CONFIG_PINCTRL_QCOM_SSBI_PMIC is not set
|
|
||||||
# CONFIG_PINCTRL_QCS404 is not set
|
|
||||||
# CONFIG_PINCTRL_SC7180 is not set
|
|
||||||
# CONFIG_PINCTRL_SDM660 is not set
|
|
||||||
# CONFIG_PINCTRL_SDM845 is not set
|
|
||||||
# CONFIG_PINCTRL_SM8150 is not set
|
|
||||||
# CONFIG_PINCTRL_SM8250 is not set
|
|
||||||
CONFIG_PM_DEVFREQ=y
|
|
||||||
# CONFIG_PM_DEVFREQ_EVENT is not set
|
|
||||||
CONFIG_PM_OPP=y
|
|
||||||
CONFIG_POWER_RESET=y
|
|
||||||
CONFIG_POWER_RESET_MSM=y
|
|
||||||
CONFIG_POWER_SUPPLY=y
|
|
||||||
CONFIG_PPS=y
|
|
||||||
CONFIG_PRINTK_TIME=y
|
|
||||||
CONFIG_PTP_1588_CLOCK=y
|
|
||||||
CONFIG_PTP_1588_CLOCK_OPTIONAL=y
|
|
||||||
# CONFIG_QCOM_A53PLL is not set
|
|
||||||
CONFIG_QCOM_ADM=y
|
|
||||||
CONFIG_QCOM_BAM_DMA=y
|
|
||||||
CONFIG_QCOM_CLK_RPM=y
|
|
||||||
# CONFIG_QCOM_COMMAND_DB is not set
|
|
||||||
# CONFIG_QCOM_CPR is not set
|
|
||||||
# CONFIG_QCOM_EBI2 is not set
|
|
||||||
# CONFIG_QCOM_GENI_SE is not set
|
|
||||||
CONFIG_QCOM_GSBI=y
|
|
||||||
CONFIG_QCOM_HFPLL=y
|
|
||||||
# CONFIG_QCOM_IOMMU is not set
|
|
||||||
# CONFIG_QCOM_LLCC is not set
|
|
||||||
# CONFIG_QCOM_OCMEM is not set
|
|
||||||
# CONFIG_QCOM_PDC is not set
|
|
||||||
# CONFIG_QCOM_RMTFS_MEM is not set
|
|
||||||
CONFIG_QCOM_RPMCC=y
|
|
||||||
# CONFIG_QCOM_RPMH is not set
|
|
||||||
CONFIG_QCOM_SCM=y
|
|
||||||
# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set
|
|
||||||
CONFIG_QCOM_SMEM=y
|
|
||||||
# CONFIG_QCOM_SMSM is not set
|
|
||||||
CONFIG_QCOM_SOCINFO=y
|
|
||||||
CONFIG_QCOM_TCSR=y
|
|
||||||
CONFIG_QCOM_TSENS=y
|
|
||||||
CONFIG_QCOM_WDT=y
|
|
||||||
# CONFIG_QCS_GCC_404 is not set
|
|
||||||
# CONFIG_QCS_Q6SSTOP_404 is not set
|
|
||||||
# CONFIG_QCS_TURING_404 is not set
|
|
||||||
CONFIG_RAS=y
|
|
||||||
CONFIG_RATIONAL=y
|
|
||||||
CONFIG_RCU_CPU_STALL_TIMEOUT=21
|
|
||||||
CONFIG_REGMAP=y
|
|
||||||
CONFIG_REGMAP_MMIO=y
|
|
||||||
CONFIG_REGULATOR=y
|
|
||||||
CONFIG_REGULATOR_FIXED_VOLTAGE=y
|
|
||||||
# CONFIG_REGULATOR_QCOM_LABIBB is not set
|
|
||||||
CONFIG_REGULATOR_QCOM_RPM=y
|
|
||||||
# CONFIG_REGULATOR_QCOM_SPMI is not set
|
|
||||||
# CONFIG_REGULATOR_QCOM_USB_VBUS is not set
|
|
||||||
# CONFIG_REGULATOR_VQMMC_IPQ4019 is not set
|
|
||||||
CONFIG_RESET_CONTROLLER=y
|
|
||||||
# CONFIG_RESET_QCOM_AOSS is not set
|
|
||||||
# CONFIG_RESET_QCOM_PDC is not set
|
|
||||||
CONFIG_RFS_ACCEL=y
|
|
||||||
CONFIG_RPS=y
|
|
||||||
CONFIG_RTC_CLASS=y
|
|
||||||
CONFIG_RTC_I2C_AND_SPI=y
|
|
||||||
CONFIG_RTC_MC146818_LIB=y
|
|
||||||
CONFIG_RWSEM_SPIN_ON_OWNER=y
|
|
||||||
# CONFIG_SC_DISPCC_7180 is not set
|
|
||||||
# CONFIG_SC_GCC_7180 is not set
|
|
||||||
# CONFIG_SC_GPUCC_7180 is not set
|
|
||||||
# CONFIG_SC_LPASS_CORECC_7180 is not set
|
|
||||||
# CONFIG_SC_MSS_7180 is not set
|
|
||||||
# CONFIG_SC_VIDEOCC_7180 is not set
|
|
||||||
# CONFIG_SDM_CAMCC_845 is not set
|
|
||||||
# CONFIG_SDM_DISPCC_845 is not set
|
|
||||||
# CONFIG_SDM_GCC_660 is not set
|
|
||||||
# CONFIG_SDM_GCC_845 is not set
|
|
||||||
# CONFIG_SDM_GPUCC_845 is not set
|
|
||||||
# CONFIG_SDM_LPASSCC_845 is not set
|
|
||||||
# CONFIG_SDM_VIDEOCC_845 is not set
|
|
||||||
CONFIG_SERIAL_8250_FSL=y
|
|
||||||
CONFIG_SERIAL_MCTRL_GPIO=y
|
|
||||||
CONFIG_SERIAL_MSM=y
|
|
||||||
CONFIG_SERIAL_MSM_CONSOLE=y
|
|
||||||
CONFIG_SGL_ALLOC=y
|
|
||||||
CONFIG_SMP=y
|
|
||||||
CONFIG_SMP_ON_UP=y
|
|
||||||
# CONFIG_SM_GCC_8150 is not set
|
|
||||||
# CONFIG_SM_GCC_8250 is not set
|
|
||||||
# CONFIG_SM_GPUCC_8150 is not set
|
|
||||||
# CONFIG_SM_GPUCC_8250 is not set
|
|
||||||
# CONFIG_SM_VIDEOCC_8150 is not set
|
|
||||||
# CONFIG_SM_VIDEOCC_8250 is not set
|
|
||||||
CONFIG_SOCK_RX_QUEUE_MAPPING=y
|
|
||||||
CONFIG_SOC_BUS=y
|
|
||||||
CONFIG_SPARSE_IRQ=y
|
|
||||||
CONFIG_SPI=y
|
|
||||||
CONFIG_SPI_MASTER=y
|
|
||||||
CONFIG_SPI_MEM=y
|
|
||||||
CONFIG_SPI_QUP=y
|
|
||||||
CONFIG_SPMI=y
|
|
||||||
# CONFIG_SPMI_HISI3670 is not set
|
|
||||||
CONFIG_SPMI_MSM_PMIC_ARB=y
|
|
||||||
# CONFIG_SPMI_PMIC_CLKDIV is not set
|
|
||||||
CONFIG_SRCU=y
|
|
||||||
CONFIG_STMMAC_ETH=y
|
|
||||||
CONFIG_STMMAC_PLATFORM=y
|
|
||||||
CONFIG_SWCONFIG=y
|
|
||||||
CONFIG_SWCONFIG_LEDS=y
|
|
||||||
CONFIG_SWPHY=y
|
|
||||||
CONFIG_SWP_EMULATE=y
|
|
||||||
CONFIG_SYS_SUPPORTS_APM_EMULATION=y
|
|
||||||
CONFIG_THERMAL=y
|
|
||||||
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
|
|
||||||
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
|
|
||||||
CONFIG_THERMAL_GOV_STEP_WISE=y
|
|
||||||
CONFIG_THERMAL_HWMON=y
|
|
||||||
CONFIG_THERMAL_OF=y
|
|
||||||
CONFIG_TICK_CPU_ACCOUNTING=y
|
|
||||||
CONFIG_TIMER_OF=y
|
|
||||||
CONFIG_TIMER_PROBE=y
|
|
||||||
CONFIG_TREE_RCU=y
|
|
||||||
CONFIG_TREE_SRCU=y
|
|
||||||
CONFIG_UBIFS_FS=y
|
|
||||||
CONFIG_UBIFS_FS_ADVANCED_COMPR=y
|
|
||||||
# CONFIG_UCLAMP_TASK is not set
|
|
||||||
CONFIG_UEVENT_HELPER_PATH=""
|
|
||||||
CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
|
|
||||||
CONFIG_UNWINDER_ARM=y
|
|
||||||
CONFIG_USB=y
|
|
||||||
CONFIG_USB_COMMON=y
|
|
||||||
CONFIG_USB_SUPPORT=y
|
|
||||||
CONFIG_USE_OF=y
|
|
||||||
CONFIG_VFP=y
|
|
||||||
CONFIG_VFPv3=y
|
|
||||||
CONFIG_WATCHDOG_CORE=y
|
|
||||||
CONFIG_XPS=y
|
|
||||||
CONFIG_XXHASH=y
|
|
||||||
CONFIG_XZ_DEC_ARM=y
|
|
||||||
CONFIG_XZ_DEC_BCJ=y
|
|
||||||
CONFIG_ZBOOT_ROM_BSS=0
|
|
||||||
CONFIG_ZBOOT_ROM_TEXT=0
|
|
||||||
CONFIG_ZLIB_DEFLATE=y
|
|
||||||
CONFIG_ZLIB_INFLATE=y
|
|
||||||
CONFIG_ZSTD_COMPRESS=y
|
|
||||||
CONFIG_ZSTD_DECOMPRESS=y
|
|
@ -1,332 +0,0 @@
|
|||||||
#include "qcom-ipq8065-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "ZyXEL NBG6817";
|
|
||||||
compatible = "zyxel,nbg6817", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
sdcc1 = &sdcc1;
|
|
||||||
|
|
||||||
led-boot = &power;
|
|
||||||
led-failsafe = &power;
|
|
||||||
led-running = &power;
|
|
||||||
led-upgrade = &power;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs,ext4 rootwait noinitrd fstools_ignore_partname=1";
|
|
||||||
append-rootblock = "root=/dev/mmcblk0p";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
internet {
|
|
||||||
label = "white:internet";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi2g {
|
|
||||||
label = "amber:wifi2g";
|
|
||||||
gpios = <&qcom_pinmux 33 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* wifi2g amber from the manual is missing */
|
|
||||||
|
|
||||||
wifi5g {
|
|
||||||
label = "amber:wifi5g";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* wifi5g amber from the manual is missing */
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio53", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio9", "gpio26", "gpio33", "gpio64";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mdio0_pins: mdio0-pins {
|
|
||||||
clk {
|
|
||||||
pins = "gpio1";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rgmii2_pins: rgmii2-pins {
|
|
||||||
tx {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32" ;
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb0_pwr_en_pins: usb0_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio17";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pwr {
|
|
||||||
pins = "gpio17";
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
|
|
||||||
ovc {
|
|
||||||
pins = "gpio16";
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1_pwr_en_pins: usb1_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio14", "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pwr {
|
|
||||||
pins = "gpio14";
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
|
|
||||||
ovc {
|
|
||||||
pins = "gpio15";
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi4: spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
m25p80@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <51200000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb0_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb1_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 3 GPIO_ACTIVE_LOW>;
|
|
||||||
pinctrl-0 = <&pcie0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 48 GPIO_ACTIVE_LOW>;
|
|
||||||
pinctrl-0 = <&pcie1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
0x00970 0x1e864443 /* QM_PORT0_CTRL0 */
|
|
||||||
0x00974 0x000001c6 /* QM_PORT0_CTRL1 */
|
|
||||||
0x00978 0x19008643 /* QM_PORT1_CTRL0 */
|
|
||||||
0x0097c 0x000001c6 /* QM_PORT1_CTRL1 */
|
|
||||||
0x00980 0x19008643 /* QM_PORT2_CTRL0 */
|
|
||||||
0x00984 0x000001c6 /* QM_PORT2_CTRL1 */
|
|
||||||
0x00988 0x19008643 /* QM_PORT3_CTRL0 */
|
|
||||||
0x0098c 0x000001c6 /* QM_PORT3_CTRL1 */
|
|
||||||
0x00990 0x19008643 /* QM_PORT4_CTRL0 */
|
|
||||||
0x00994 0x000001c6 /* QM_PORT4_CTRL1 */
|
|
||||||
0x00998 0x1e864443 /* QM_PORT5_CTRL0 */
|
|
||||||
0x0099c 0x000001c6 /* QM_PORT5_CTRL1 */
|
|
||||||
0x009a0 0x1e864443 /* QM_PORT6_CTRL0 */
|
|
||||||
0x009a4 0x000001c6 /* QM_PORT6_CTRL1 */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
qcom,phy_mdio_addr = <4>;
|
|
||||||
qcom,poll_required = <0>;
|
|
||||||
qcom,rgmii_delay = <1>;
|
|
||||||
qcom,phy_mii_type = <0>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
qcom,irq = <255>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
qcom,phy_mdio_addr = <0>; /* none */
|
|
||||||
qcom,poll_required = <0>; /* no polling */
|
|
||||||
qcom,rgmii_delay = <0>;
|
|
||||||
qcom,phy_mii_type = <1>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
qcom,irq = <258>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&amba {
|
|
||||||
sdcc1: sdcc@12400000 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,510 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8062-smb208.dtsi"
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "NEC Platforms Aterm WG2600HP3";
|
|
||||||
compatible = "nec,wg2600hp3", "qcom,ipq8062", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory {
|
|
||||||
device_type = "memory";
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
label-mac-device = &gmac2;
|
|
||||||
|
|
||||||
led-boot = &led_power_green;
|
|
||||||
led-failsafe = &led_power_red;
|
|
||||||
led-running = &led_power_green;
|
|
||||||
led-upgrade = &led_power_red;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
|
|
||||||
pinctrl-0 = <&buttons_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
mode0 {
|
|
||||||
label = "mode0";
|
|
||||||
gpios = <&qcom_pinmux 40 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_0>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
mode1 {
|
|
||||||
label = "mode1";
|
|
||||||
gpios = <&qcom_pinmux 41 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_1>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
|
|
||||||
pinctrl-0 = <&leds_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_power_green: power_green {
|
|
||||||
label = "green:power";
|
|
||||||
gpios = <&qcom_pinmux 14 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_power_red: power_red {
|
|
||||||
label = "red:power";
|
|
||||||
gpios = <&qcom_pinmux 35 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
active_green {
|
|
||||||
label = "green:active";
|
|
||||||
gpios = <&qcom_pinmux 42 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
active_red {
|
|
||||||
label = "red:active";
|
|
||||||
gpios = <&qcom_pinmux 38 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_green {
|
|
||||||
label = "green:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_HIGH>;
|
|
||||||
linux,default-trigger = "phy1tpt";
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_red {
|
|
||||||
label = "red:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_green {
|
|
||||||
label = "green:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 57 GPIO_ACTIVE_HIGH>;
|
|
||||||
linux,default-trigger = "phy0tpt";
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_red {
|
|
||||||
label = "red:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 58 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
tv_green {
|
|
||||||
label = "green:tv";
|
|
||||||
gpios = <&qcom_pinmux 46 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
tv_red {
|
|
||||||
label = "red:tv";
|
|
||||||
gpios = <&qcom_pinmux 36 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
converter_green {
|
|
||||||
label = "green:converter";
|
|
||||||
gpios = <&qcom_pinmux 43 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
converter_red {
|
|
||||||
label = "red:converter";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/* nand_pins are used for leds_pins, empty the node
|
|
||||||
* from ipq8064.dtsi
|
|
||||||
*/
|
|
||||||
&nand_pins {
|
|
||||||
/delete-property/ disable;
|
|
||||||
/delete-property/ pullups;
|
|
||||||
/delete-property/ hold;
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
pinctrl-0 = <&akro_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
buttons_pins: buttons_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio22", "gpio24", "gpio40",
|
|
||||||
"gpio41";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds_pins: leds_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio14", "gpio15", "gpio35",
|
|
||||||
"gpio36", "gpio38", "gpio42",
|
|
||||||
"gpio43", "gpio46", "gpio55",
|
|
||||||
"gpio56", "gpio57", "gpio58";
|
|
||||||
function = "gpio";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
akro2 {
|
|
||||||
pins = "gpio15", "gpio35", "gpio38",
|
|
||||||
"gpio42", "gpio43", "gpio46",
|
|
||||||
"gpio55", "gpio56", "gpio57",
|
|
||||||
"gpio58";
|
|
||||||
drive-strength = <2>;
|
|
||||||
};
|
|
||||||
|
|
||||||
akro4 {
|
|
||||||
pins = "gpio14", "gpio36";
|
|
||||||
drive-strength = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Stock firmware has the following settings, so let's do the same.
|
|
||||||
* I don't sure why these are required.
|
|
||||||
*/
|
|
||||||
akro_pins: akro_pinmux {
|
|
||||||
akro {
|
|
||||||
pins = "gpio17", "gpio26", "gpio47";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
pins = "gpio45";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-disable;
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
|
|
||||||
gmac0_rgmii {
|
|
||||||
pins = "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <8>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
reg = <0>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
m25p,fast-read;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0000000 0x0020000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@20000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x0020000 0x0020000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x0040000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@80000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x0080000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@100000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x0100000 0x0010000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@110000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0x0110000 0x0010000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@120000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0x0120000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1a0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0x01a0000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@220000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0220000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2a0000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x02a0000 0x0010000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
factory: partition@2b0000 {
|
|
||||||
label = "PRODUCTDATA";
|
|
||||||
reg = <0x02b0000 0x0030000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2e0000 {
|
|
||||||
label = "ART";
|
|
||||||
reg = <0x02e0000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@320000 {
|
|
||||||
label = "TP";
|
|
||||||
reg = <0x0320000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@360000 {
|
|
||||||
label = "TINY";
|
|
||||||
reg = <0x0360000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@860000 {
|
|
||||||
compatible = "denx,uimage";
|
|
||||||
label = "firmware";
|
|
||||||
reg = <0x0860000 0x17a0000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
qcom,ath10k-calibration-variant = "NEC-Platforms-WG2600HP3";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_12>, <&precal_ART_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
force_gen1 = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
ieee80211-freq-limit = <2400000 2483000>;
|
|
||||||
qcom,ath10k-calibration-variant = "NEC-Platforms-WG2600HP3";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_c>, <&precal_ART_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x04 0x80080080 /* PAD0_MODE */
|
|
||||||
0x0c 0x06000000 /* PAD6_MODE */
|
|
||||||
0x10 0x002613a0 /* PWS_REG */
|
|
||||||
0x50 0xcc36cc36 /* LED_CTRL0 */
|
|
||||||
0x54 0xca36ca36 /* LED_CTRL1 */
|
|
||||||
0x58 0xc936c936 /* LED_CTRL2 */
|
|
||||||
0x5c 0x03ffff00 /* LED_CTRL3 */
|
|
||||||
0x7c 0x0000004e /* PORT0_STATUS */
|
|
||||||
0x94 0x0000004e /* PORT6_STATUS */
|
|
||||||
0xe0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0xe4 0x0006a545 /* MAC_PWR_SEL */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
nvmem-cells = <&macaddr_factory_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
nvmem-cells = <&macaddr_factory_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&factory {
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_factory_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_factory_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_c: macaddr@c {
|
|
||||||
reg = <0xc 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_12: macaddr@12 {
|
|
||||||
reg = <0x12 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,402 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
ramoops@42100000 {
|
|
||||||
compatible = "ramoops";
|
|
||||||
reg = <0x42100000 0x40000>;
|
|
||||||
record-size = <0x4000>;
|
|
||||||
console-size = <0x4000>;
|
|
||||||
ftrace-size = <0x4000>;
|
|
||||||
pmsg-size = <0x4000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
label-mac-device = &gmac2;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb0_pwr_en_pin: usb0_pwr_en_pin {
|
|
||||||
mux {
|
|
||||||
pins = "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1_pwr_en_pin: usb1_pwr_en_pin {
|
|
||||||
mux {
|
|
||||||
pins = "gpio23";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@20000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x20000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x40000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@60000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x60000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@90000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x90000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a0000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0xa0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@b0000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0xb0000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@e0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0xe0000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@100000 {
|
|
||||||
label = "fs-uboot";
|
|
||||||
reg = <0x100000 0x70000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@170000 {
|
|
||||||
label = "uboot-env";
|
|
||||||
reg = <0x170000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1b0000 {
|
|
||||||
label = "radio";
|
|
||||||
reg = <0x1b0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
precal_radio_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_radio_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f0000 {
|
|
||||||
label = "os-image";
|
|
||||||
reg = <0x1f0000 0x400000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5f0000 {
|
|
||||||
label = "rootfs";
|
|
||||||
reg = <0x5f0000 0x1900000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
defaultmac: partition@1ef0000 {
|
|
||||||
label = "default-mac";
|
|
||||||
reg = <0x1ef0000 0x00200>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1ef0200 {
|
|
||||||
label = "pin";
|
|
||||||
reg = <0x1ef0200 0x00200>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1ef0400 {
|
|
||||||
label = "product-info";
|
|
||||||
reg = <0x1ef0400 0x0fc00>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f00000 {
|
|
||||||
label = "partition-table";
|
|
||||||
reg = <0x1f00000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f10000 {
|
|
||||||
label = "soft-version";
|
|
||||||
reg = <0x1f10000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f20000 {
|
|
||||||
label = "support-list";
|
|
||||||
reg = <0x1f20000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f30000 {
|
|
||||||
label = "profile";
|
|
||||||
reg = <0x1f30000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f40000 {
|
|
||||||
label = "default-config";
|
|
||||||
reg = <0x1f40000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f50000 {
|
|
||||||
label = "user-config";
|
|
||||||
reg = <0x1f50000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f90000 {
|
|
||||||
label = "qos-db";
|
|
||||||
reg = <0x1f90000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1fd0000 {
|
|
||||||
label = "usb-config";
|
|
||||||
reg = <0x1fd0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1fe0000 {
|
|
||||||
label = "log";
|
|
||||||
reg = <0x1fe0000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb0_pwr_en_pin>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb1_pwr_en_pin>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_8>, <&precal_radio_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(-1)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_8>, <&precal_radio_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_8>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <1>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_8>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&defaultmac {
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_defaultmac_8: macaddr@8 {
|
|
||||||
reg = <0x8 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,135 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-ad7200-c2600.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "TP-Link Talon AD7200";
|
|
||||||
compatible = "tplink,ad7200", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &led_status;
|
|
||||||
led-failsafe = &led_status;
|
|
||||||
led-running = &led_status;
|
|
||||||
led-upgrade = &led_status;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 67 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_enable {
|
|
||||||
label = "led-enable";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_LIGHTS_TOGGLE>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
lan {
|
|
||||||
label = "blue:lan";
|
|
||||||
gpios = <&qcom_pinmux 2 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1 {
|
|
||||||
label = "blue:usb1";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g {
|
|
||||||
label = "blue:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb3 {
|
|
||||||
label = "blue:usb3";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g {
|
|
||||||
label = "blue:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 17 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_orange {
|
|
||||||
label = "orange:wan";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_blue {
|
|
||||||
label = "blue:wan";
|
|
||||||
gpios = <&qcom_pinmux 33 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "blue:wps";
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan60g {
|
|
||||||
label = "blue:wlan60g";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_status: status {
|
|
||||||
label = "blue:status";
|
|
||||||
gpios = <&qcom_pinmux 66 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio53", "gpio54", "gpio67";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio2", "gpio8", "gpio15", "gpio16", "gpio17", "gpio26",
|
|
||||||
"gpio33", "gpio55", "gpio56", "gpio66";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
@ -1,134 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v1.0.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Qualcomm Technologies, Inc. IPQ8064/AP-148";
|
|
||||||
compatible = "qcom,ipq8064-ap148", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
rsvd@41200000 {
|
|
||||||
reg = <0x41200000 0x300000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&flash {
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,172 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v1.0.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Qualcomm IPQ8064/AP161";
|
|
||||||
compatible = "qcom,ipq8064-ap161", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
rsvd@41200000 {
|
|
||||||
reg = <0x41200000 0x300000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
rgmii2_pins: rgmii2-pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29",
|
|
||||||
"gpio30", "gpio31", "gpio32",
|
|
||||||
"gpio51", "gpio52", "gpio59",
|
|
||||||
"gpio60", "gpio61", "gpio62",
|
|
||||||
"gpio2", "gpio66";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&flash {
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x20080 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
qca,phy-rgmii-en;
|
|
||||||
qca,txclk-delay-en;
|
|
||||||
qca,rxclk-delay-en;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy3: ethernet-phy@3 {
|
|
||||||
device_type = "ethernet-phy";
|
|
||||||
reg = <3>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <0>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,92 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
|
||||||
/*
|
|
||||||
* Copyright 2014 The ChromiumOS Authors
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-onhub.dtsi"
|
|
||||||
#include <dt-bindings/gpio/gpio.h>
|
|
||||||
#include <dt-bindings/leds/common.h>
|
|
||||||
#include <dt-bindings/soc/qcom,gsbi.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "ASUS OnHub";
|
|
||||||
compatible = "asus,onhub", "google,arkham", "qcom,ipq8064";
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
ap3223_pins: ap3223_pinmux {
|
|
||||||
pins = "gpio22";
|
|
||||||
function = "gpio";
|
|
||||||
bias-none;
|
|
||||||
};
|
|
||||||
|
|
||||||
i2c7_pins: i2c7_pinmux {
|
|
||||||
mux {
|
|
||||||
pins = "gpio8", "gpio9";
|
|
||||||
function = "gsbi7";
|
|
||||||
};
|
|
||||||
data {
|
|
||||||
pins = "gpio8";
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio9";
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C_UART>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7_i2c {
|
|
||||||
status = "okay";
|
|
||||||
clock-frequency = <100000>;
|
|
||||||
pinctrl-0 = <&i2c7_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ap3223@1c {
|
|
||||||
compatible = "dynaimage,ap3223";
|
|
||||||
reg = <0x1c>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&ap3223_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
int-gpio = <&qcom_pinmux 22 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led-controller@32 {
|
|
||||||
compatible = "national,lp5523";
|
|
||||||
reg = <0x32>;
|
|
||||||
clock-mode = /bits/ 8 <1>;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
led@4 {
|
|
||||||
reg = <4>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0xfa>;
|
|
||||||
max-cur = /bits/ 8 <0xff>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@5 {
|
|
||||||
reg = <5>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status";
|
|
||||||
led-cur = /bits/ 8 <0xfa>;
|
|
||||||
max-cur = /bits/ 8 <0xff>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@8 {
|
|
||||||
reg = <8>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status";
|
|
||||||
led-cur = /bits/ 8 <0xfa>;
|
|
||||||
max-cur = /bits/ 8 <0xff>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,119 +0,0 @@
|
|||||||
#include "qcom-ipq8064-ad7200-c2600.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "TP-Link Archer C2600";
|
|
||||||
compatible = "tplink,c2600", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &power;
|
|
||||||
led-failsafe = &general;
|
|
||||||
led-running = &power;
|
|
||||||
led-upgrade = &general;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 49 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
ledswitch {
|
|
||||||
label = "ledswitch";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_LIGHTS_TOGGLE>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
lan {
|
|
||||||
label = "white:lan";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb4 {
|
|
||||||
label = "white:usb_4";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb_2";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "white:wps";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_amber {
|
|
||||||
label = "amber:wan";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_white {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 33 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
general: general {
|
|
||||||
label = "white:general";
|
|
||||||
gpios = <&qcom_pinmux 66 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio7", "gpio8", "gpio9", "gpio26", "gpio33",
|
|
||||||
"gpio53", "gpio66";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,394 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk X4 D7800";
|
|
||||||
compatible = "netgear,d7800", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
rsvd@5fe00000 {
|
|
||||||
reg = <0x5fe00000 0x200000>;
|
|
||||||
reusable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &power_white;
|
|
||||||
led-failsafe = &power_amber;
|
|
||||||
led-running = &power_white;
|
|
||||||
led-upgrade = &power_amber;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs noinitrd";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
usb1 {
|
|
||||||
label = "white:usb1";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb2";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_amber: power_amber {
|
|
||||||
label = "amber:power";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_white {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_amber {
|
|
||||||
label = "amber:wan";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "white:wps";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
esata {
|
|
||||||
label = "white:esata";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_white: power_white {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "white:wifi";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio22", "gpio23",
|
|
||||||
"gpio24","gpio26", "gpio53", "gpio64";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb0_pwr_en_pins: usb0_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1_pwr_en_pins: usb1_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata_phy {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb0_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb1_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 3 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(1)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 48 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(2)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 63 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
qcadata@0 {
|
|
||||||
label = "qcadata";
|
|
||||||
reg = <0x0000000 0x0c80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL@c80000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBLENV@1180000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
art@1200000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_art_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_art_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
artbak: art@1340000 {
|
|
||||||
label = "artbak";
|
|
||||||
reg = <0x1340000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
kernel@1480000 {
|
|
||||||
label = "kernel";
|
|
||||||
reg = <0x1480000 0x0400000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ubi@1880000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1880000 0x6080000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
reserve@7900000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0x7900000 0x0700000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,179 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v1.0.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Qualcomm IPQ8064/DB149";
|
|
||||||
compatible = "qcom,ipq8064-db149", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
serial0 = &gsbi2_serial;
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
rsvd@41200000 {
|
|
||||||
reg = <0x41200000 0x300000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
rgmii0_pins: rgmii0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio2", "gpio66";
|
|
||||||
drive-strength = <8>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi2 {
|
|
||||||
qcom,mode = <GSBI_PROT_I2C_UART>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
gsbi2_serial: serial@12490000 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4 {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4_serial {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&flash {
|
|
||||||
m25p,fast-read;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "lowlevel_init";
|
|
||||||
reg = <0x0 0x1b0000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1 {
|
|
||||||
label = "u-boot";
|
|
||||||
reg = <0x1b0000 0x80000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2 {
|
|
||||||
label = "u-boot-env";
|
|
||||||
reg = <0x230000 0x40000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@3 {
|
|
||||||
label = "caldata";
|
|
||||||
reg = <0x270000 0x40000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@4 {
|
|
||||||
label = "firmware";
|
|
||||||
reg = <0x2b0000 0x1d50000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy6: ethernet-phy@6 {
|
|
||||||
reg = <6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy7: ethernet-phy@7 {
|
|
||||||
reg = <7>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <0>;
|
|
||||||
phy-handle = <&phy4>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
phy-handle = <&phy6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac3 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <3>;
|
|
||||||
phy-handle = <&phy7>;
|
|
||||||
};
|
|
@ -1,91 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-eax500.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Linksys EA7500 V1 WiFi Router";
|
|
||||||
compatible = "linksys,ea7500-v1", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0xe000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &led_power;
|
|
||||||
led-failsafe = &led_power;
|
|
||||||
led-running = &led_power;
|
|
||||||
led-upgrade = &led_power;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
/* look for root deviceblock nbr in this bootarg */
|
|
||||||
find-rootblock = "ubi.mtd=";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio65", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&partitions {
|
|
||||||
partition@5f80000 {
|
|
||||||
label = "sysdiag";
|
|
||||||
reg = <0x5f80000 0x100000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@6080000 {
|
|
||||||
label = "syscfg";
|
|
||||||
reg = <0x6080000 0x1f80000>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,128 +0,0 @@
|
|||||||
#include "qcom-ipq8064-eax500.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Linksys EA8500 WiFi Router";
|
|
||||||
compatible = "linksys,ea8500", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &led_power;
|
|
||||||
led-failsafe = &led_power;
|
|
||||||
led-running = &led_power;
|
|
||||||
led-upgrade = &led_power;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 67 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "green:wps";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "green:wifi";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio65", "gpio67", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio53", "gpio54";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata_phy {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&partitions {
|
|
||||||
partition@5f80000 {
|
|
||||||
label = "syscfg";
|
|
||||||
reg = <0x5f80000 0x2080000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
qcom,phy_mdio_addr = <4>;
|
|
||||||
qcom,poll_required = <1>;
|
|
||||||
qcom,rgmii_delay = <0>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* LAN */
|
|
||||||
&gmac2 {
|
|
||||||
qcom,phy_mdio_addr = <0>; /* none */
|
|
||||||
qcom,poll_required = <0>; /* no polling */
|
|
||||||
qcom,rgmii_delay = <0>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
};
|
|
@ -1,232 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
chosen {
|
|
||||||
bootargs = "console=ttyMSM0,115200n8";
|
|
||||||
/* append to bootargs adding the root deviceblock nbr from bootloader */
|
|
||||||
append-rootblock = "ubi.mtd=";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
/* eax500 routers reuse the pcie2 reset pin for switch reset pin */
|
|
||||||
switch_reset: switch_reset_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio63";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x0c80000>;
|
|
||||||
|
|
||||||
partitions: partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0000000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x0040000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@180000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x0180000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2c0000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x02c0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@540000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x0540000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@660000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0x0660000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@780000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0x0780000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a00000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0x0a00000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
art: partition@c80000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x0c80000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@dc0000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0dc0000 0x0100000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@ec0000 {
|
|
||||||
label = "u_env";
|
|
||||||
reg = <0x0ec0000 0x0040000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@f00000 {
|
|
||||||
label = "s_env";
|
|
||||||
reg = <0x0f00000 0x0040000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@f40000 {
|
|
||||||
label = "devinfo";
|
|
||||||
reg = <0x0f40000 0x0040000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@f80000 {
|
|
||||||
label = "kernel1";
|
|
||||||
reg = <0x0f80000 0x2800000>; /* 4 MB, spill to rootfs */
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1380000 {
|
|
||||||
label = "rootfs1";
|
|
||||||
reg = <0x1380000 0x2400000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@3780000 {
|
|
||||||
label = "kernel2";
|
|
||||||
reg = <0x3780000 0x2800000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@3b80000 {
|
|
||||||
label = "rootfs2";
|
|
||||||
reg = <0x3b80000 0x2400000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
/* Switch from documentation require at least 10ms for reset */
|
|
||||||
reset-gpios = <&qcom_pinmux 63 GPIO_ACTIVE_HIGH>;
|
|
||||||
reset-post-delay-us = <12000>;
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x00010 0x2613a0 /* PWS_REG */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,292 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
#include <dt-bindings/soc/qcom,tcsr.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
compatible = "asrock,g10", "qcom,ipq8064";
|
|
||||||
model = "ASRock G10";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
ethernet0 = &gmac1;
|
|
||||||
ethernet1 = &gmac0;
|
|
||||||
|
|
||||||
led-boot = &led_status_blue;
|
|
||||||
led-failsafe = &led_status_amber;
|
|
||||||
led-running = &led_status_blue;
|
|
||||||
led-upgrade = &led_status_amber;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs-override = "console=ttyMSM0,115200n8";
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
/*
|
|
||||||
* this is a bit misleading. Because there are about seven
|
|
||||||
* multicolor LEDs connected all wired together in parallel.
|
|
||||||
*/
|
|
||||||
|
|
||||||
status_yellow {
|
|
||||||
label = "yellow:status";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_status_amber: status_amber {
|
|
||||||
label = "amber:status";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_status_blue: status_blue {
|
|
||||||
label = "blue:status";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* LED is declared in vendors boardfile but it's not
|
|
||||||
* working and the manual doesn't mention anything
|
|
||||||
* about the LED being white.
|
|
||||||
|
|
||||||
status_white {
|
|
||||||
label = "white:status";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
};
|
|
||||||
|
|
||||||
i2c-gpio {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
compatible = "i2c-gpio";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>, /* sda */
|
|
||||||
<&qcom_pinmux 54 GPIO_ACTIVE_HIGH>; /* scl */
|
|
||||||
i2c-gpio,delay-us = <5>;
|
|
||||||
i2c-gpio,scl-output-only;
|
|
||||||
|
|
||||||
mcu@50 {
|
|
||||||
reg = <0x50>;
|
|
||||||
compatible = "sonix,sn8f25e21";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ir-remote {
|
|
||||||
label = "ir-remote";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_0>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps5g {
|
|
||||||
label = "wps5g";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps2g {
|
|
||||||
label = "wps2g";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4_serial {
|
|
||||||
pinctrl-0 = <&uart0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1200000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi5g: wifi@1,0 {
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
qcom,ath10k-calibration-variant = "ASRock-G10";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi2g: wifi@1,0 {
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
qcom,ath10k-calibration-variant = "ASRock-G10";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio26";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio15", "gpio16", "gpio64", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
uart0_pins: uart0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio10", "gpio11";
|
|
||||||
function = "gsbi4";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&rpm {
|
|
||||||
pinctrl-0 = <&i2c4_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcsr {
|
|
||||||
qcom,usb-ctrl-select = <TCSR_USB_SELECT_USB3_DUAL>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/delete-node/ &pcie2_pins;
|
|
||||||
/delete-node/ &pcie2;
|
|
@ -1,491 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
|
||||||
/*
|
|
||||||
* Copyright 2014 The ChromiumOS Authors
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-smb208.dtsi"
|
|
||||||
#include <dt-bindings/gpio/gpio.h>
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
#include <dt-bindings/soc/qcom,tcsr.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
aliases {
|
|
||||||
ethernet0 = &gmac0;
|
|
||||||
ethernet1 = &gmac2;
|
|
||||||
mdio-gpio0 = &mdio;
|
|
||||||
serial0 = &gsbi4_serial;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
stdout-path = "serial0:115200n8";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
rsvd@41200000 {
|
|
||||||
reg = <0x41200000 0x300000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
dev {
|
|
||||||
label = "dev";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_CONFIG>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mdio: mdio {
|
|
||||||
compatible = "virtual,mdio-gpio";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
gpios = <&qcom_pinmux 1 GPIO_ACTIVE_HIGH>,
|
|
||||||
<&qcom_pinmux 0 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&mdio_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy1: ethernet-phy@1 {
|
|
||||||
reg = <1>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
soc {
|
|
||||||
rng@1a500000 {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
sound {
|
|
||||||
compatible = "google,storm-audio";
|
|
||||||
qcom,model = "ipq806x-storm";
|
|
||||||
cpu = <&lpass>;
|
|
||||||
codec = <&max98357a>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lpass: lpass@28100000 {
|
|
||||||
status = "okay";
|
|
||||||
pinctrl-names = "default", "idle";
|
|
||||||
pinctrl-0 = <&mi2s_default>;
|
|
||||||
pinctrl-1 = <&mi2s_idle>;
|
|
||||||
};
|
|
||||||
|
|
||||||
max98357a: max98357a {
|
|
||||||
compatible = "maxim,max98357a";
|
|
||||||
#sound-dai-cells = <1>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&sdmode_pins>;
|
|
||||||
sdmode-gpios = <&qcom_pinmux 25 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
rgmii0_pins: rgmii0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio2", "gpio66";
|
|
||||||
drive-strength = <8>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
mi2s_pins {
|
|
||||||
mi2s_default: mi2s_default {
|
|
||||||
dout {
|
|
||||||
pins = "gpio32";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <16>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
sync {
|
|
||||||
pins = "gpio27";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <16>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio28";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <16>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
mi2s_idle: mi2s_idle {
|
|
||||||
dout {
|
|
||||||
pins = "gpio32";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
sync {
|
|
||||||
pins = "gpio27";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio28";
|
|
||||||
function = "mi2s";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mdio_pins: mdio_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio0", "gpio1";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <8>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
rst {
|
|
||||||
pins = "gpio26";
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
sdmode_pins: sdmode_pinmux {
|
|
||||||
pins = "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <16>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
|
|
||||||
sdcc1_pins: sdcc1_pinmux {
|
|
||||||
mux {
|
|
||||||
pins = "gpio38", "gpio39", "gpio40",
|
|
||||||
"gpio41", "gpio42", "gpio43",
|
|
||||||
"gpio44", "gpio45", "gpio46",
|
|
||||||
"gpio47";
|
|
||||||
function = "sdc1";
|
|
||||||
};
|
|
||||||
cmd {
|
|
||||||
pins = "gpio45";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
data {
|
|
||||||
pins = "gpio38", "gpio39", "gpio40",
|
|
||||||
"gpio41", "gpio43", "gpio44",
|
|
||||||
"gpio46", "gpio47";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio42";
|
|
||||||
drive-strength = <16>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
i2c1_pins: i2c1_pinmux {
|
|
||||||
pins = "gpio53", "gpio54";
|
|
||||||
function = "gsbi1";
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
|
|
||||||
rpm_i2c_pinmux: rpm_i2c_pinmux {
|
|
||||||
mux {
|
|
||||||
pins = "gpio12", "gpio13";
|
|
||||||
function = "gsbi4";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
/delete-property/ bias-none;
|
|
||||||
/delete-property/ drive-strength;
|
|
||||||
};
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fw_pinmux {
|
|
||||||
wp {
|
|
||||||
pins = "gpio17";
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
recovery {
|
|
||||||
pins = "gpio16";
|
|
||||||
function = "gpio";
|
|
||||||
bias-none;
|
|
||||||
};
|
|
||||||
developer {
|
|
||||||
pins = "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
bias-none;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi6_pins: spi6_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio55", "gpio56", "gpio58";
|
|
||||||
function = "gsbi6";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
data {
|
|
||||||
pins = "gpio55", "gpio56";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
cs {
|
|
||||||
pins = "gpio57";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio58";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <0>;
|
|
||||||
phy-handle = <&phy1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
phy-handle = <&phy0>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi1 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C_UART>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi1_i2c {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
clock-frequency = <100000>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&i2c1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
tpm@20 {
|
|
||||||
compatible = "infineon,slb9645tt";
|
|
||||||
reg = <0x20>;
|
|
||||||
powered-while-suspended;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C_UART>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4_serial {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
|
|
||||||
spi4: spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 0>;
|
|
||||||
|
|
||||||
flash: flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi6 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi6_spi {
|
|
||||||
status = "okay";
|
|
||||||
spi-max-frequency = <25000000>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi6_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 57 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
dmas = <&adm_dma 8 0xb>,
|
|
||||||
<&adm_dma 7 0x14>;
|
|
||||||
dma-names = "rx", "tx";
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This "spidev" was included in the manufacturer device tree. I suspect
|
|
||||||
* it's the (unused) Zigbee radio -- SiliconLabs EM3581 Zigbee? There's
|
|
||||||
* no driver or binding for this at the moment.
|
|
||||||
*/
|
|
||||||
spidev@0 {
|
|
||||||
compatible = "spidev";
|
|
||||||
reg = <0>;
|
|
||||||
spi-max-frequency = <25000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pcie@0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
#interrupt-cells = <1>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
device_type = "pci";
|
|
||||||
|
|
||||||
ath10k@0,0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
device_type = "pci";
|
|
||||||
qcom,ath10k-sa-gpio = <2 3 4 0>;
|
|
||||||
qcom,ath10k-sa-gpio-func = <5 5 5 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pcie@0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
#interrupt-cells = <1>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
device_type = "pci";
|
|
||||||
|
|
||||||
ath10k@0,0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
device_type = "pci";
|
|
||||||
qcom,ath10k-sa-gpio = <2 3 4 0>;
|
|
||||||
qcom,ath10k-sa-gpio-func = <5 5 5 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pcie@0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
#interrupt-cells = <1>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
device_type = "pci";
|
|
||||||
|
|
||||||
ath10k@0,0 {
|
|
||||||
reg = <0 0 0 0 0>;
|
|
||||||
device_type = "pci";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&rpm {
|
|
||||||
pinctrl-0 = <&rpm_i2c_pinmux>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdcc1 {
|
|
||||||
status = "okay";
|
|
||||||
pinctrl-0 = <&sdcc1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
/delete-property/ mmc-ddr-1_8v;
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcsr {
|
|
||||||
compatible = "qcom,tcsr-ipq8064", "qcom,tcsr", "syscon";
|
|
||||||
qcom,usb-ctrl-select = <TCSR_USB_SELECT_USB3_DUAL>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,327 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v1.0.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
#include <dt-bindings/soc/qcom,tcsr.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk X4 R7500";
|
|
||||||
compatible = "netgear,r7500", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0xe000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
ranges;
|
|
||||||
rsvd@41200000 {
|
|
||||||
reg = <0x41200000 0x300000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &power_white;
|
|
||||||
led-failsafe = &power_amber;
|
|
||||||
led-running = &power_white;
|
|
||||||
led-upgrade = &power_amber;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs noinitrd";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
usb1 {
|
|
||||||
label = "white:usb1";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb2";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_amber: power_amber {
|
|
||||||
label = "amber:power";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_white {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_amber {
|
|
||||||
label = "amber:wan";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "white:wps";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
esata {
|
|
||||||
label = "white:esata";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_white: power_white {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "white:wifi";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio22", "gpio23",
|
|
||||||
"gpio24","gpio26", "gpio53", "gpio64";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "disabled";
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
qcadata@0 {
|
|
||||||
label = "qcadata";
|
|
||||||
reg = <0x0000000 0x0c80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL@c80000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBLENV@1180000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
art: art@1200000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
kernel@1340000 {
|
|
||||||
label = "kernel";
|
|
||||||
reg = <0x1340000 0x0400000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ubi@1740000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1740000 0x1600000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
netgear@2d40000 {
|
|
||||||
label = "netgear";
|
|
||||||
reg = <0x2d40000 0x0c00000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
reserve@3940000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0x3940000 0x46c0000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcsr {
|
|
||||||
qcom,usb-ctrl-select = <TCSR_USB_SELECT_USB3_DUAL>;
|
|
||||||
compatible = "qcom,tcsr";
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&art {
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_art_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_art_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,387 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk X4 R7500v2";
|
|
||||||
compatible = "netgear,r7500v2", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
rsvd@5fe00000 {
|
|
||||||
reg = <0x5fe00000 0x200000>;
|
|
||||||
reusable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &power;
|
|
||||||
led-failsafe = &power;
|
|
||||||
led-running = &power;
|
|
||||||
led-upgrade = &power;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs noinitrd";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
usb1 {
|
|
||||||
label = "amber:usb1";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb3 {
|
|
||||||
label = "amber:usb3";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
status {
|
|
||||||
label = "amber:status";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
internet {
|
|
||||||
label = "white:internet";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "white:wps";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
esata {
|
|
||||||
label = "white:esata";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "white:wifi";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio22", "gpio23",
|
|
||||||
"gpio24","gpio26", "gpio53", "gpio64";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb0_pwr_en_pins: usb0_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1_pwr_en_pins: usb1_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata_phy {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb0_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb1_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 3 GPIO_ACTIVE_LOW>;
|
|
||||||
pinctrl-0 = <&pcie0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(1)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 48 GPIO_ACTIVE_LOW>;
|
|
||||||
pinctrl-0 = <&pcie1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(2)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
qcadata@0 {
|
|
||||||
label = "qcadata";
|
|
||||||
reg = <0x0000000 0x0c80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL@c80000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBLENV@1180000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
art@1200000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_art_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_art_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
artbak: art@1340000 {
|
|
||||||
label = "artbak";
|
|
||||||
reg = <0x1340000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
kernel@1480000 {
|
|
||||||
label = "kernel";
|
|
||||||
reg = <0x1480000 0x0400000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ubi@1880000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1880000 0x6080000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
reserve@7900000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0x7900000 0x0700000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,209 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
|
||||||
/*
|
|
||||||
* Copyright 2014 The ChromiumOS Authors
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-onhub.dtsi"
|
|
||||||
#include <dt-bindings/gpio/gpio.h>
|
|
||||||
#include <dt-bindings/leds/common.h>
|
|
||||||
#include <dt-bindings/soc/qcom,gsbi.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "TP-Link OnHub";
|
|
||||||
compatible = "tplink,onhub", "google,whirlwind-sp5", "qcom,ipq8064";
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
i2c7_pins: i2c7_pinmux {
|
|
||||||
mux {
|
|
||||||
pins = "gpio8", "gpio9";
|
|
||||||
function = "gsbi7";
|
|
||||||
};
|
|
||||||
data {
|
|
||||||
pins = "gpio8";
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
clk {
|
|
||||||
pins = "gpio9";
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C_UART>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7_i2c {
|
|
||||||
status = "okay";
|
|
||||||
clock-frequency = <100000>;
|
|
||||||
pinctrl-0 = <&i2c7_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led-controller@32 {
|
|
||||||
compatible = "national,lp5523";
|
|
||||||
reg = <0x32>;
|
|
||||||
clock-mode = /bits/ 8 <1>;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
led@0 {
|
|
||||||
reg = <0>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-0";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@1 {
|
|
||||||
reg = <1>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-0";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@2 {
|
|
||||||
reg = <2>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-0";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@3 {
|
|
||||||
reg = <3>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-1";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@4 {
|
|
||||||
reg = <4>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-1";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@5 {
|
|
||||||
reg = <5>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-1";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@6 {
|
|
||||||
reg = <6>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-2";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@7 {
|
|
||||||
reg = <7>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-2";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@8 {
|
|
||||||
reg = <8>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-2";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led-controller@33 {
|
|
||||||
compatible = "national,lp5523";
|
|
||||||
reg = <0x33>;
|
|
||||||
clock-mode = /bits/ 8 <1>;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
led@0 {
|
|
||||||
reg = <0>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-3";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@1 {
|
|
||||||
reg = <1>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-3";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@2 {
|
|
||||||
reg = <2>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-3";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@3 {
|
|
||||||
reg = <3>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-4";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@4 {
|
|
||||||
reg = <4>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-4";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@5 {
|
|
||||||
reg = <5>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-4";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@6 {
|
|
||||||
reg = <6>;
|
|
||||||
color = <LED_COLOR_ID_RED>;
|
|
||||||
chan-name = "red:status-5";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@7 {
|
|
||||||
reg = <7>;
|
|
||||||
color = <LED_COLOR_ID_GREEN>;
|
|
||||||
chan-name = "green:status-5";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led@8 {
|
|
||||||
reg = <8>;
|
|
||||||
color = <LED_COLOR_ID_BLUE>;
|
|
||||||
chan-name = "blue:status-5";
|
|
||||||
linux,default-trigger = "default-on";
|
|
||||||
led-cur = /bits/ 8 <0x64>;
|
|
||||||
max-cur = /bits/ 8 <0x78>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,315 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/gpio/gpio.h>
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Ubiquiti UniFi AC HD";
|
|
||||||
compatible = "ubnt,unifi-ac-hd", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
label-mac-device = &gmac2;
|
|
||||||
led-boot = &led_dome_white;
|
|
||||||
led-failsafe = &led_dome_white;
|
|
||||||
led-running = &led_dome_blue;
|
|
||||||
led-upgrade = &led_dome_blue;
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
ethernet0 = &gmac2;
|
|
||||||
ethernet1 = &gmac1;
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_dome_blue: dome_blue {
|
|
||||||
label = "blue:dome";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_dome_white: dome_white {
|
|
||||||
label = "white:dome";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio9", "gpio53";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-none;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&CPU_SPC {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
cs-gpios = <&qcom_pinmux 20 0>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "mx25u25635f", "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
m25p,fast-read;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@20000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x20000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@30000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x30000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@50000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x50000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@80000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x80000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@90000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0x90000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a0000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0xa0000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@d0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0xd0000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@f0000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0xf0000 0xc0000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1b0000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x1b0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
eeprom: partition@1c0000 {
|
|
||||||
label = "EEPROM";
|
|
||||||
reg = <0x1c0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1d0000 {
|
|
||||||
label = "bootselect";
|
|
||||||
reg = <0x1d0000 0x10000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1e0000 {
|
|
||||||
compatible = "denx,fit";
|
|
||||||
label = "firmware";
|
|
||||||
reg = <0x1e0000 0xe70000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1050000 {
|
|
||||||
label = "kernel1";
|
|
||||||
reg = <0x1050000 0xe70000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1ec0000 {
|
|
||||||
label = "debug";
|
|
||||||
reg = <0x1ec0000 0x100000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1fc0000 {
|
|
||||||
label = "cfg";
|
|
||||||
reg = <0x1fc0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy5: ethernet-phy@5 {
|
|
||||||
reg = <5>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
phy-handle = <&phy5>;
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_eeprom_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
phy-handle = <&phy4>;
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_eeprom_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcsr {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&eeprom {
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_eeprom_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_eeprom_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,424 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "TP-Link Archer VR2600v";
|
|
||||||
compatible = "tplink,vr2600v", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &power;
|
|
||||||
led-failsafe = &general;
|
|
||||||
led-running = &power;
|
|
||||||
led-upgrade = &general;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
dect {
|
|
||||||
label = "dect";
|
|
||||||
gpios = <&qcom_pinmux 67 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_PHONE>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
ledswitch {
|
|
||||||
label = "ledswitch";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_LIGHTS_TOGGLE>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
dsl {
|
|
||||||
label = "white:dsl";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb {
|
|
||||||
label = "white:usb";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lan {
|
|
||||||
label = "white:lan";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g {
|
|
||||||
label = "white:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g {
|
|
||||||
label = "white:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 17 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
phone {
|
|
||||||
label = "white:phone";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
general: general {
|
|
||||||
label = "white:general";
|
|
||||||
gpios = <&qcom_pinmux 66 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio16", "gpio17",
|
|
||||||
"gpio26", "gpio53", "gpio56", "gpio66";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio54", "gpio64", "gpio65", "gpio67", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi4: spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@20000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x20000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x40000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@80000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x80000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@100000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x100000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@110000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0x110000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@120000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0x120000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1a0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0x1a0000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@220000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x220000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2a0000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x2a0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2e0000 {
|
|
||||||
label = "OLDART";
|
|
||||||
reg = <0x2e0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@320000 {
|
|
||||||
label = "firmware";
|
|
||||||
reg = <0x320000 0xc60000>;
|
|
||||||
compatible = "openwrt,uimage";
|
|
||||||
openwrt,offset = <512>; /* account for pad-extra 512 */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* hole 0xf80000 - 0xfaf100 */
|
|
||||||
|
|
||||||
partition@faf100 {
|
|
||||||
label = "default-mac";
|
|
||||||
reg = <0xfaf100 0x00200>;
|
|
||||||
read-only;
|
|
||||||
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_defaultmac_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@fc0000 {
|
|
||||||
label = "ART";
|
|
||||||
reg = <0xfc0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_0>, <&precal_ART_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(-1)>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_0>, <&precal_ART_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <1>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_defaultmac_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,463 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "NEC Aterm WG2600HP";
|
|
||||||
compatible = "nec,wg2600hp", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
|
|
||||||
led-boot = &power_green;
|
|
||||||
led-failsafe = &power_red;
|
|
||||||
led-running = &power_green;
|
|
||||||
led-upgrade = &power_green;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
bridge {
|
|
||||||
label = "bridge";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_0>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
converter {
|
|
||||||
label = "converter";
|
|
||||||
gpios = <&qcom_pinmux 25 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_0>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
converter_green {
|
|
||||||
label = "green:converter";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_red: power_red {
|
|
||||||
label = "red:power";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
active_green {
|
|
||||||
label = "green:active";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
active_red {
|
|
||||||
label = "red:active";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power_green: power_green {
|
|
||||||
label = "green:power";
|
|
||||||
gpios = <&qcom_pinmux 14 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
converter_red {
|
|
||||||
label = "red:converter";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_green {
|
|
||||||
label = "green:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_red {
|
|
||||||
label = "red:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_green {
|
|
||||||
label = "green:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 57 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_red {
|
|
||||||
label = "red:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 58 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
tv_green {
|
|
||||||
label = "green:tv";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
tv_red {
|
|
||||||
label = "red:tv";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&CPU_SPC {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x06000000 /* PAD0_MODE */
|
|
||||||
0x0000c 0x00080080 /* PAD6_MODE */
|
|
||||||
0x000e4 0x0006a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x0000004e /* PORT0_STATUS */
|
|
||||||
0x00094 0x0000004e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
SBL1@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
MIBIB@20000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x20000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SBL2@40000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x40000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SBL3@80000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x80000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
DDRCONFIG@100000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x100000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SSD@110000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0x110000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
TZ@120000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0x120000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
RPM@1a0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0x1a0000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL@220000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x220000 0x80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBLENV@2a0000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x2a0000 0x10000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
PRODUCTDATA: PRODUCTDATA@2b0000 {
|
|
||||||
label = "PRODUCTDATA";
|
|
||||||
reg = <0x2b0000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
ART@2e0000 {
|
|
||||||
label = "ART";
|
|
||||||
reg = <0x2e0000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
TP@320000 {
|
|
||||||
label = "TP";
|
|
||||||
reg = <0x320000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
TINY@360000 {
|
|
||||||
label = "TINY";
|
|
||||||
reg = <0x360000 0x500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
firmware@860000 {
|
|
||||||
compatible = "denx,uimage";
|
|
||||||
label = "firmware";
|
|
||||||
reg = <0x860000 0x17a0000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_12>, <&precal_ART_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_PRODUCTDATA_c>, <&precal_ART_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio54", "gpio24", "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio7", "gpio8", "gpio9", "gpio14",
|
|
||||||
"gpio15", "gpio55", "gpio56", "gpio57", "gpio58",
|
|
||||||
"gpio64", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb_pwr_en_pins: usb_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio22";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&PRODUCTDATA {
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_c: macaddr@c {
|
|
||||||
reg = <0xc 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_PRODUCTDATA_12: macaddr@12 {
|
|
||||||
reg = <0x12 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,473 +0,0 @@
|
|||||||
// SPDX-License-Identifier: BSD-3-Clause
|
|
||||||
/*
|
|
||||||
* Copyright (C) 2017 Christian Mehlis <christian@m3hlis.de>
|
|
||||||
* Copyright (C) 2018 Mathias Kresin <dev@kresin.me>
|
|
||||||
* All rights reserved.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-v1.0.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
#include <dt-bindings/soc/qcom,tcsr.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
compatible = "compex,wpq864", "qcom,ipq8064";
|
|
||||||
model = "Compex WPQ864";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
ethernet0 = &gmac1;
|
|
||||||
ethernet1 = &gmac0;
|
|
||||||
|
|
||||||
led-boot = &led_pass;
|
|
||||||
led-failsafe = &led_fail;
|
|
||||||
led-running = &led_pass;
|
|
||||||
led-upgrade = &led_pass;
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
rss4 {
|
|
||||||
label = "green:rss4";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rss3 {
|
|
||||||
label = "green:rss3";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
rss2 {
|
|
||||||
label = "orange:rss2";
|
|
||||||
gpios = <&qcom_pinmux 25 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rss1 {
|
|
||||||
label = "red:rss1";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pass: pass {
|
|
||||||
label = "green:pass";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_fail: fail {
|
|
||||||
label = "green:fail";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb {
|
|
||||||
label = "green:usb";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb-pcie {
|
|
||||||
label = "green:usb-pcie";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
beeper {
|
|
||||||
compatible = "gpio-beeper";
|
|
||||||
|
|
||||||
pinctrl-0 = <&beeper_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&rpm {
|
|
||||||
pinctrl-0 = <&rpm_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&nand_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
mt29f2g08abbeah4@0 {
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000 0x5340000 0x10c0000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "0:SBL1";
|
|
||||||
reg = <0x0000000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "0:MIBIB";
|
|
||||||
reg = <0x0040000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@180000 {
|
|
||||||
label = "0:SBL2";
|
|
||||||
reg = <0x0180000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2c0000 {
|
|
||||||
label = "0:SBL3";
|
|
||||||
reg = <0x02c0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@540000 {
|
|
||||||
label = "0:DDRCONFIG";
|
|
||||||
reg = <0x0540000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@660000 {
|
|
||||||
label = "0:SSD";
|
|
||||||
reg = <0x0660000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@780000 {
|
|
||||||
label = "0:TZ";
|
|
||||||
reg = <0x0780000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a00000 {
|
|
||||||
label = "0:RPM";
|
|
||||||
reg = <0x0a00000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@c80000 {
|
|
||||||
label = "0:APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1180000 {
|
|
||||||
label = "0:APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1200000 {
|
|
||||||
label = "0:ART";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1340000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1340000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5340000 {
|
|
||||||
label = "0:BOOTCONFIG";
|
|
||||||
reg = <0x5340000 0x0060000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@53a0000 {
|
|
||||||
label = "0:SBL2_1";
|
|
||||||
reg = <0x53a0000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@54e0000 {
|
|
||||||
label = "0:SBL3_1";
|
|
||||||
reg = <0x54e0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5760000 {
|
|
||||||
label = "0:DDRCONFIG_1";
|
|
||||||
reg = <0x5760000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5880000 {
|
|
||||||
label = "0:SSD_1";
|
|
||||||
reg = <0x5880000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@59a0000 {
|
|
||||||
label = "0:TZ_1";
|
|
||||||
reg = <0x59a0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5c20000 {
|
|
||||||
label = "0:RPM_1";
|
|
||||||
reg = <0x5c20000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5ea0000 {
|
|
||||||
label = "0:BOOTCONFIG1";
|
|
||||||
reg = <0x5ea0000 0x0060000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@5f00000 {
|
|
||||||
label = "0:APPSBL_1";
|
|
||||||
reg = <0x5f00000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@6400000 {
|
|
||||||
label = "ubi_1";
|
|
||||||
reg = <0x6400000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a400000 {
|
|
||||||
label = "unused";
|
|
||||||
reg = <0xa400000 0x5c00000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4_serial {
|
|
||||||
pinctrl-0 = <&uart0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&flash {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata_phy {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
rx_eq = <2>;
|
|
||||||
tx_deamp_3_5db = <32>;
|
|
||||||
mpll = <160>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
rx_eq = <2>;
|
|
||||||
tx_deamp_3_5db = <32>;
|
|
||||||
mpll = <160>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&state_default>;
|
|
||||||
|
|
||||||
state_default: pinctrl0 {
|
|
||||||
pcie0_pcie2_perst {
|
|
||||||
pins = "gpio3";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-disable;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio22",
|
|
||||||
"gpio23", "gpio24", "gpio25", "gpio53";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio54";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
beeper_pins: beeper_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio55";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rpm_pins: rpm_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio12", "gpio13";
|
|
||||||
function = "gsbi4";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
uart0_pins: uart0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio10", "gpio11";
|
|
||||||
function = "gsbi4";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcsr {
|
|
||||||
qcom,usb-ctrl-select = <TCSR_USB_SELECT_USB3_DUAL>;
|
|
||||||
};
|
|
@ -1,539 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Buffalo WXR-2533DHP";
|
|
||||||
compatible = "buffalo,wxr-2533dhp", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@42000000 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &power;
|
|
||||||
led-failsafe = &diag;
|
|
||||||
led-running = &power;
|
|
||||||
led-upgrade = &power;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
/* use "ubi_rootfs" volume in "ubi" partition as rootfs */
|
|
||||||
bootargs = "ubi.block=0,1 root=/dev/ubiblock0_1 rootfstype=squashfs";
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
usb {
|
|
||||||
label = "green:usb";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
linux,default-trigger = "usbport";
|
|
||||||
trigger-sources = <&hub_port0 &hub_port1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
guestport {
|
|
||||||
label = "green:guestport";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
diag: diag {
|
|
||||||
label = "orange:diag";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
internet_orange {
|
|
||||||
label = "orange:internet";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
internet_white {
|
|
||||||
label = "white:internet";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wireless_orange {
|
|
||||||
label = "orange:wireless";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wireless_white {
|
|
||||||
label = "white:wireless";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
router_orange {
|
|
||||||
label = "orange:router";
|
|
||||||
gpios = <&qcom_pinmux 25 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
router_white {
|
|
||||||
label = "white:router";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
power: power {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
power {
|
|
||||||
label = "power";
|
|
||||||
gpios = <&qcom_pinmux 58 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_POWER>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
eject {
|
|
||||||
label = "eject";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_EJECTCD>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
guest {
|
|
||||||
label = "guest";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_0>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
ap {
|
|
||||||
label = "ap";
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_1>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
router {
|
|
||||||
label = "router";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_1>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
auto {
|
|
||||||
label = "auto";
|
|
||||||
gpios = <&qcom_pinmux 57 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <BTN_1>;
|
|
||||||
linux,input-type = <EV_SW>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
cs@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
ubi@0 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x0000000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rootfs_1@4000000 {
|
|
||||||
label = "rootfs_1";
|
|
||||||
reg = <0x4000000 0x4000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x07600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x01000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x00000080 /* PAD6_MODE */
|
|
||||||
0x00050 0xcc35cc35 /* LED_CTRL0 */
|
|
||||||
0x00054 0xca35ca35 /* LED_CTRL1 */
|
|
||||||
0x00058 0xc935c935 /* LED_CTRL2 */
|
|
||||||
0x0005c 0x03ffff00 /* LED_CTRL3 */
|
|
||||||
0x000e4 0x0006a545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x0000007e /* PORT0_STATUS */
|
|
||||||
0x00094 0x0000007e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi4_serial {
|
|
||||||
pinctrl-0 = <&uart0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
SBL1@0 {
|
|
||||||
label = "SBL1";
|
|
||||||
reg = <0x0 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
MIBIB@10000 {
|
|
||||||
label = "MIBIB";
|
|
||||||
reg = <0x10000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SBL2@30000 {
|
|
||||||
label = "SBL2";
|
|
||||||
reg = <0x30000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SBL3@60000 {
|
|
||||||
label = "SBL3";
|
|
||||||
reg = <0x60000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
DDRCONFIG@90000 {
|
|
||||||
label = "DDRCONFIG";
|
|
||||||
reg = <0x90000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
SSD@a0000 {
|
|
||||||
label = "SSD";
|
|
||||||
reg = <0xa0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
TZ@b0000 {
|
|
||||||
label = "TZ";
|
|
||||||
reg = <0xb0000 0x30000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
RPM@e0000 {
|
|
||||||
label = "RPM";
|
|
||||||
reg = <0xe0000 0x20000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL@100000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x100000 0x70000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBLENV@170000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x170000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
ART@180000 {
|
|
||||||
label = "ART";
|
|
||||||
reg = <0x180000 0x40000>;
|
|
||||||
read-only;
|
|
||||||
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_ART_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_ART_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_ART_18: macaddr@18 {
|
|
||||||
reg = <0x18 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_ART_1e: macaddr@1e {
|
|
||||||
reg = <0x1e 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
BOOTCONFIG@1c0000 {
|
|
||||||
label = "BOOTCONFIG";
|
|
||||||
reg = <0x1c0000 0x10000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
APPSBL_1@1d0000 {
|
|
||||||
label = "APPSBL_1";
|
|
||||||
reg = <0x1d0000 0x70000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&dwc3_0 {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
hub_port0: port@1 {
|
|
||||||
reg = <1>;
|
|
||||||
#trigger-source-cells = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&dwc3_1 {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
hub_port1: port@1 {
|
|
||||||
reg = <1>;
|
|
||||||
#trigger-source-cells = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_1e>, <&precal_ART_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_18>, <&precal_ART_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54", "gpio55", "gpio56", "gpio57",
|
|
||||||
"gpio58", "gpio64", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9", "gpio16", "gpio22",
|
|
||||||
"gpio23", "gpio24", "gpio25", "gpio26", "gpio53";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
uart0_pins: uart0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio10", "gpio11";
|
|
||||||
function = "gsbi4";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs{
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb_pwr_en_pins: usb_pwr_en_pins {
|
|
||||||
mux{
|
|
||||||
pins = "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,318 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8065-smb208.dtsi"
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Nokia AC400i";
|
|
||||||
compatible = "nokia,ac400i", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
ethernet0 = &gmac0;
|
|
||||||
ethernet1 = &gmac1;
|
|
||||||
|
|
||||||
led-boot = &pwr_red;
|
|
||||||
led-failsafe = &pwr_red;
|
|
||||||
led-running = &pwr_green;
|
|
||||||
led-upgrade = &pwr_green;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs-override = " console=ttyMSM0,115200n8 ubi.mtd=ubi root=/dev/ubiblock0_2";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 15 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
5g_red {
|
|
||||||
label = "red:5g";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
5g_green {
|
|
||||||
label = "green:5g";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
2g_red {
|
|
||||||
label = "red:2g";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
2g_green {
|
|
||||||
label = "green:2g";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
eth1_red {
|
|
||||||
label = "red:eth1";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
eth1_green {
|
|
||||||
label = "green:eth1";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
eth2_red {
|
|
||||||
label = "red:eth2";
|
|
||||||
gpios = <&qcom_pinmux 67 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
eth2_green {
|
|
||||||
label = "green:eth2";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ctrl_red {
|
|
||||||
label = "red:ctrl";
|
|
||||||
gpios = <&qcom_pinmux 55 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ctrl_green {
|
|
||||||
label = "green:ctrl";
|
|
||||||
gpios = <&qcom_pinmux 56 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pwr_red: pwr_red {
|
|
||||||
label = "red:pwr";
|
|
||||||
gpios = <&qcom_pinmux 2 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pwr_green: pwr_green {
|
|
||||||
label = "green:pwr";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio65", "gpio64",
|
|
||||||
"gpio53", "gpio54",
|
|
||||||
"gpio68", "gpio22",
|
|
||||||
"gpio67", "gpio23",
|
|
||||||
"gpio55", "gpio56",
|
|
||||||
"gpio2", "gpio26";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi4: spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
m25p80@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
qcom,ath10k-calibration-variant = "Nokia-AC400i";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
qcom,ath10k-calibration-variant = "Nokia-AC400i";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy1: ethernet-phy@1 {
|
|
||||||
reg = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
//POE
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,id = <0>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
phy-handle = <&phy0>;
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
//LAN1
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
phy-handle = <&phy1>;
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
pinctrl-0 = <&nand_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
rootfs@0 {
|
|
||||||
label = "rootfs";
|
|
||||||
reg = <0x0000000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rootfs_1@4000000 {
|
|
||||||
label = "rootfs_1";
|
|
||||||
reg = <0x4000000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cfg@8000000 {
|
|
||||||
label = "cfg";
|
|
||||||
reg = <0x8000000 0x8000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,466 +0,0 @@
|
|||||||
#include "qcom-ipq8065-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
rsvd@5fe00000 {
|
|
||||||
reg = <0x5fe00000 0x200000>;
|
|
||||||
reusable;
|
|
||||||
};
|
|
||||||
|
|
||||||
ramoops@42100000 {
|
|
||||||
compatible = "ramoops";
|
|
||||||
reg = <0x42100000 0x40000>;
|
|
||||||
record-size = <0x4000>;
|
|
||||||
console-size = <0x4000>;
|
|
||||||
ftrace-size = <0x4000>;
|
|
||||||
pmsg-size = <0x4000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
label-mac-device = &gmac2;
|
|
||||||
|
|
||||||
led-boot = &power_white;
|
|
||||||
led-failsafe = &power_amber;
|
|
||||||
led-running = &power_white;
|
|
||||||
led-upgrade = &power_amber;
|
|
||||||
|
|
||||||
mdio-gpio0 = &mdio0;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "wifi";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RFKILL>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 65 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds: leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
power_white: power_white {
|
|
||||||
label = "white:power";
|
|
||||||
gpios = <&qcom_pinmux 53 GPIO_ACTIVE_HIGH>;
|
|
||||||
default-state = "keep";
|
|
||||||
};
|
|
||||||
|
|
||||||
power_amber: power_amber {
|
|
||||||
label = "amber:power";
|
|
||||||
gpios = <&qcom_pinmux 9 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_white {
|
|
||||||
label = "white:wan";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wan_amber {
|
|
||||||
label = "amber:wan";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi {
|
|
||||||
label = "white:wifi";
|
|
||||||
gpios = <&qcom_pinmux 64 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "white:wps";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54", "gpio65";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8", "gpio9",
|
|
||||||
"gpio22", "gpio23", "gpio24",
|
|
||||||
"gpio26", "gpio53", "gpio64";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mdio0_pins: mdio0-pins {
|
|
||||||
clk {
|
|
||||||
pins = "gpio1";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rgmii2_pins: rgmii2-pins {
|
|
||||||
tx {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29",
|
|
||||||
"gpio30", "gpio31", "gpio32";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
data {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
drive-strength = <10>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi6_pins: spi6_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio55", "gpio56", "gpio58";
|
|
||||||
function = "gsbi6";
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
mosi {
|
|
||||||
pins = "gpio55";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
|
|
||||||
miso {
|
|
||||||
pins = "gpio56";
|
|
||||||
drive-strength = <14>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio57";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio58";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
|
|
||||||
reset {
|
|
||||||
pins = "gpio33";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb0_pwr_en_pins: usb0_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio15";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb1_pwr_en_pins: usb1_pwr_en_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000>;
|
|
||||||
|
|
||||||
partitions: partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "qcadata";
|
|
||||||
reg = <0x0000000 0x0c80000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@c80000 {
|
|
||||||
label = "APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1180000 {
|
|
||||||
label = "APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
art: partition@1200000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_art_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_art_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_art_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1340000 {
|
|
||||||
label = "artbak";
|
|
||||||
reg = <0x1340000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1480000 {
|
|
||||||
label = "kernel";
|
|
||||||
reg = <0x1480000 0x0400000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
0x00970 0x1e864443 /* QM_PORT0_CTRL0 */
|
|
||||||
0x00974 0x000001c6 /* QM_PORT0_CTRL1 */
|
|
||||||
0x00978 0x19008643 /* QM_PORT1_CTRL0 */
|
|
||||||
0x0097c 0x000001c6 /* QM_PORT1_CTRL1 */
|
|
||||||
0x00980 0x19008643 /* QM_PORT2_CTRL0 */
|
|
||||||
0x00984 0x000001c6 /* QM_PORT2_CTRL1 */
|
|
||||||
0x00988 0x19008643 /* QM_PORT3_CTRL0 */
|
|
||||||
0x0098c 0x000001c6 /* QM_PORT3_CTRL1 */
|
|
||||||
0x00990 0x19008643 /* QM_PORT4_CTRL0 */
|
|
||||||
0x00994 0x000001c6 /* QM_PORT4_CTRL1 */
|
|
||||||
0x00998 0x1e864443 /* QM_PORT5_CTRL0 */
|
|
||||||
0x0099c 0x000001c6 /* QM_PORT5_CTRL1 */
|
|
||||||
0x009a0 0x1e864443 /* QM_PORT6_CTRL0 */
|
|
||||||
0x009a4 0x000001c6 /* QM_PORT6_CTRL1 */
|
|
||||||
>;
|
|
||||||
qca,ar8327-vlans = <
|
|
||||||
0x1 0x5e /* VLAN1 Ports 1/2/3/4/6 */
|
|
||||||
0x2 0x21 /* VLAN2 Ports 0/5 */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy@4 {
|
|
||||||
reg = <4>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x000e4 0x6a545 /* MAC_POWER_SEL */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
qcom,phy_mdio_addr = <4>;
|
|
||||||
qcom,poll_required = <0>;
|
|
||||||
qcom,rgmii_delay = <1>;
|
|
||||||
qcom,phy_mii_type = <0>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
qcom,irq = <255>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <2>;
|
|
||||||
qcom,phy_mdio_addr = <0>; /* none */
|
|
||||||
qcom,poll_required = <0>; /* no polling */
|
|
||||||
qcom,rgmii_delay = <0>;
|
|
||||||
qcom,phy_mii_type = <1>;
|
|
||||||
qcom,emulation = <0>;
|
|
||||||
qcom,irq = <258>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_art_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata_phy {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sata {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb0_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&usb1_pwr_en_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi0: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0046";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi1: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0046";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,48 +0,0 @@
|
|||||||
#include "qcom-ipq8065-nighthawk.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk X4S R7800";
|
|
||||||
compatible = "netgear,r7800", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
};
|
|
||||||
|
|
||||||
&leds {
|
|
||||||
usb1 {
|
|
||||||
label = "white:usb1";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb2";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
esata {
|
|
||||||
label = "white:esata";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&partitions {
|
|
||||||
partition@1880000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1880000 0x6080000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@7900000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0x7900000 0x0700000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi0 {
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(1)>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi1 {
|
|
||||||
nvmem-cells = <&macaddr_art_6>, <&precal_art_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
mac-address-increment = <(2)>;
|
|
||||||
};
|
|
@ -1,418 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
|
|
||||||
#include "qcom-ipq8065-smb208.dtsi"
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Askey RT4230W REV6";
|
|
||||||
compatible = "askey,rt4230w-rev6", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x3e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &ledctrl3;
|
|
||||||
led-failsafe = &ledctrl1;
|
|
||||||
led-running = &ledctrl2;
|
|
||||||
led-upgrade = &ledctrl3;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs noinitrd";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 68 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ledctrl1: ledctrl1 {
|
|
||||||
label = "ledctrl1";
|
|
||||||
gpios = <&qcom_pinmux 22 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ledctrl2: ledctrl2 {
|
|
||||||
label = "ledctrl2";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
ledctrl3: ledctrl3 {
|
|
||||||
label = "ledctrl3";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio54", "gpio68";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio22", "gpio23", "gpio24";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rgmii2_pins: rgmii2-pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29", "gpio30", "gpio31",
|
|
||||||
"gpio51", "gpio52", "gpio59", "gpio60", "gpio61", "gpio62";
|
|
||||||
function = "rgmii2";
|
|
||||||
drive-strength = <8>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
|
|
||||||
tx {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "everspin,mr25h256";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <40000000>;
|
|
||||||
reg = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000 0x1340000 0x10c0000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "0:SBL1";
|
|
||||||
reg = <0x0000000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "0:MIBIB";
|
|
||||||
reg = <0x0040000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@180000 {
|
|
||||||
label = "0:SBL2";
|
|
||||||
reg = <0x0180000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2c0000 {
|
|
||||||
label = "0:SBL3";
|
|
||||||
reg = <0x02c0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@540000 {
|
|
||||||
label = "0:DDRCONFIG";
|
|
||||||
reg = <0x0540000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@660000 {
|
|
||||||
label = "0:SSD";
|
|
||||||
reg = <0x0660000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@780000 {
|
|
||||||
label = "0:TZ";
|
|
||||||
reg = <0x0780000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a00000 {
|
|
||||||
label = "0:RPM";
|
|
||||||
reg = <0x0a00000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@c80000 {
|
|
||||||
label = "0:APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1180000 {
|
|
||||||
label = "0:APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1200000 {
|
|
||||||
label = "0:ART";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_ART_0: macaddr@0 {
|
|
||||||
reg = <0x0 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
macaddr_ART_6: macaddr@6 {
|
|
||||||
reg = <0x6 0x6>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1340000 {
|
|
||||||
label = "0:BOOTCONFIG";
|
|
||||||
reg = <0x1340000 0x0060000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@13a0000 {
|
|
||||||
label = "0:SBL2_1";
|
|
||||||
reg = <0x13a0000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@14e0000 {
|
|
||||||
label = "0:SBL3_1";
|
|
||||||
reg = <0x14e0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1760000 {
|
|
||||||
label = "0:DDRCONFIG_1";
|
|
||||||
reg = <0x1760000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1880000 {
|
|
||||||
label = "0:SSD_1";
|
|
||||||
reg = <0x1880000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@19a0000 {
|
|
||||||
label = "0:TZ_1";
|
|
||||||
reg = <0x19a0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1c20000 {
|
|
||||||
label = "0:RPM_1";
|
|
||||||
reg = <0x1c20000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1ea0000 {
|
|
||||||
label = "0:BOOTCONFIG1";
|
|
||||||
reg = <0x1ea0000 0x0060000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1f00000 {
|
|
||||||
label = "0:APPSBL_1";
|
|
||||||
reg = <0x1f00000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2400000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x2400000 0x1a000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0x0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
0x00050 0xcf02cf02 /* LED_CTRL_0 */
|
|
||||||
0x00054 0xc832c832 /* LED_CTRL_1 */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_ART_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 3 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi0: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0046";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&precal_ART_1000>;
|
|
||||||
nvmem-cell-names = "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 48 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi1: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0046";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&precal_ART_5000>;
|
|
||||||
nvmem-cell-names = "pre-calibration";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,432 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
|
|
||||||
#include "qcom-ipq8065-smb208.dtsi"
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Arris TR4400 v2";
|
|
||||||
compatible = "arris,tr4400-v2", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
memory@0 {
|
|
||||||
reg = <0x42000000 0x1e000000>;
|
|
||||||
device_type = "memory";
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
led-boot = &led_status_blue;
|
|
||||||
led-failsafe = &led_status_red;
|
|
||||||
led-running = &led_status_blue;
|
|
||||||
led-upgrade = &led_status_red;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs = "rootfstype=squashfs noinitrd";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
|
|
||||||
wps {
|
|
||||||
label = "wps";
|
|
||||||
gpios = <&qcom_pinmux 54 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_WPS_BUTTON>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_status_red: status_red {
|
|
||||||
label = "red:status";
|
|
||||||
gpios = <&qcom_pinmux 7 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_status_blue: status_blue {
|
|
||||||
label = "blue:status";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio6", "gpio54";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio7", "gpio8";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rgmii2_pins: rgmii2-pins {
|
|
||||||
tx {
|
|
||||||
pins = "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
drive-strength = <12>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
flash@0 {
|
|
||||||
compatible = "everspin,mr25h256";
|
|
||||||
spi-max-frequency = <40000000>;
|
|
||||||
reg = <0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
reg = <0>;
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
qcom,boot-partitions = <0x0 0x1180000 0x5340000 0x10c0000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "0:SBL1";
|
|
||||||
reg = <0x0000000 0x0040000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@40000 {
|
|
||||||
label = "0:MIBIB";
|
|
||||||
reg = <0x0040000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@180000 {
|
|
||||||
label = "0:SBL2";
|
|
||||||
reg = <0x0180000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@2c0000 {
|
|
||||||
label = "0:SBL3";
|
|
||||||
reg = <0x02c0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@540000 {
|
|
||||||
label = "0:DDRCONFIG";
|
|
||||||
reg = <0x0540000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@660000 {
|
|
||||||
label = "0:SSD";
|
|
||||||
reg = <0x0660000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@780000 {
|
|
||||||
label = "0:TZ";
|
|
||||||
reg = <0x0780000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@a00000 {
|
|
||||||
label = "0:RPM";
|
|
||||||
reg = <0x0a00000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@c80000 {
|
|
||||||
label = "0:APPSBL";
|
|
||||||
reg = <0x0c80000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@1180000 {
|
|
||||||
label = "0:APPSBLENV";
|
|
||||||
reg = <0x1180000 0x0080000>;
|
|
||||||
};
|
|
||||||
partition@1200000 {
|
|
||||||
label = "0:ART";
|
|
||||||
reg = <0x1200000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
precal_ART_1000: precal@1000 {
|
|
||||||
reg = <0x1000 0x2f20>;
|
|
||||||
};
|
|
||||||
precal_ART_5000: precal@5000 {
|
|
||||||
reg = <0x5000 0x2f20>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
stock_partition@1340000 {
|
|
||||||
label = "stock_rootfs";
|
|
||||||
reg = <0x1340000 0x4000000>;
|
|
||||||
};
|
|
||||||
partition@5340000 {
|
|
||||||
label = "0:BOOTCONFIG";
|
|
||||||
reg = <0x5340000 0x0060000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@53a0000 {
|
|
||||||
label = "0:SBL2_1";
|
|
||||||
reg = <0x53a0000 0x0140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@54e0000 {
|
|
||||||
label = "0:SBL3_1";
|
|
||||||
reg = <0x54e0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@5760000 {
|
|
||||||
label = "0:DDRCONFIG_1";
|
|
||||||
reg = <0x5760000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@5880000 {
|
|
||||||
label = "0:SSD_1";
|
|
||||||
reg = <0x5880000 0x0120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@59a0000 {
|
|
||||||
label = "0:TZ_1";
|
|
||||||
reg = <0x59a0000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@5c20000 {
|
|
||||||
label = "0:RPM_1";
|
|
||||||
reg = <0x5c20000 0x0280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@5ea0000 {
|
|
||||||
label = "0:BOOTCONFIG1";
|
|
||||||
reg = <0x5ea0000 0x0060000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
partition@5f00000 {
|
|
||||||
label = "0:APPSBL_1";
|
|
||||||
reg = <0x5f00000 0x0500000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
stock_partition@6400000 {
|
|
||||||
label = "stock_rootfs_1";
|
|
||||||
reg = <0x6400000 0x4000000>;
|
|
||||||
};
|
|
||||||
stock_partition@a400000 {
|
|
||||||
label = "stock_fw_env";
|
|
||||||
reg = <0xa400000 0x0100000>;
|
|
||||||
};
|
|
||||||
stock_partition@a500000 {
|
|
||||||
label = "stock_config";
|
|
||||||
reg = <0xa500000 0x0800000>;
|
|
||||||
};
|
|
||||||
stock_partition@ad00000 {
|
|
||||||
label = "stock_PKI";
|
|
||||||
reg = <0xad00000 0x0200000>;
|
|
||||||
};
|
|
||||||
stock_partition@af00000 {
|
|
||||||
label = "stock_scfgmgr";
|
|
||||||
reg = <0xaf00000 0x0100000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@6400000 {
|
|
||||||
label = "fw_env";
|
|
||||||
reg = <0x6400000 0x0100000>;
|
|
||||||
|
|
||||||
compatible = "nvmem-cells";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
macaddr_fw_env_0: macaddr@0 {
|
|
||||||
reg = <0x00 0x6>;
|
|
||||||
};
|
|
||||||
macaddr_fw_env_6: macaddr@6 {
|
|
||||||
reg = <0x06 0x6>;
|
|
||||||
};
|
|
||||||
macaddr_fw_env_c: macaddr@c {
|
|
||||||
reg = <0x0c 0x6>;
|
|
||||||
};
|
|
||||||
macaddr_fw_env_12: macaddr@12 {
|
|
||||||
reg = <0x12 0x6>;
|
|
||||||
};
|
|
||||||
macaddr_fw_env_18: macaddr@18 {
|
|
||||||
reg = <0x18 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
partition@6500000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x6500000 0x9b00000>;
|
|
||||||
};
|
|
||||||
partition@1340000 {
|
|
||||||
label = "extra";
|
|
||||||
reg = <0x1340000 0x4000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ethernet-phy@0 {
|
|
||||||
reg = <0x0>;
|
|
||||||
qca,ar8327-initvals = <
|
|
||||||
0x00004 0x7600000 /* PAD0_MODE */
|
|
||||||
0x00008 0x1000000 /* PAD5_MODE */
|
|
||||||
0x0000c 0x80 /* PAD6_MODE */
|
|
||||||
0x000e4 0xaa545 /* MAC_POWER_SEL */
|
|
||||||
0x000e0 0xc74164de /* SGMII_CTRL */
|
|
||||||
0x0007c 0x4e /* PORT0_STATUS */
|
|
||||||
0x00094 0x4e /* PORT6_STATUS */
|
|
||||||
>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy7: ethernet-phy@7 {
|
|
||||||
reg = <7>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac0 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
qcom,id = <0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_fw_env_18>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
pinctrl-0 = <&rgmii2_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac1 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <1>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_fw_env_0>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
|
|
||||||
fixed-link {
|
|
||||||
speed = <1000>;
|
|
||||||
full-duplex;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac3 {
|
|
||||||
status = "okay";
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
qcom,id = <3>;
|
|
||||||
phy-handle = <&phy7>;
|
|
||||||
|
|
||||||
nvmem-cells = <&macaddr_fw_env_6>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 3 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi0: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0046";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&precal_ART_1000>, <&macaddr_fw_env_12>;
|
|
||||||
nvmem-cell-names = "pre-calibration", "mac-address";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
reset-gpio = <&qcom_pinmux 48 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-0 = <&pcie1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
max-link-speed = <1>;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi1: wifi@1,0 {
|
|
||||||
compatible = "pci168c,0040";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&precal_ART_5000>, <&macaddr_fw_env_c>;
|
|
||||||
nvmem-cell-names = "pre-calibration", "mac-address";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,50 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8065-nighthawk.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk XR450";
|
|
||||||
compatible = "netgear,xr450", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
&leds {
|
|
||||||
usb1 {
|
|
||||||
label = "white:usb1";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb2";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&partitions {
|
|
||||||
partition@1880000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1880000 0xce00000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@e680000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0xe680000 0x0780000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi0 {
|
|
||||||
nvmem-cells = <&macaddr_art_c>, <&precal_art_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi1 {
|
|
||||||
nvmem-cells = <&macaddr_art_0>, <&precal_art_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
|
|
||||||
&art {
|
|
||||||
macaddr_art_c: macaddr@c {
|
|
||||||
reg = <0xc 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,50 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8065-nighthawk.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Netgear Nighthawk XR500";
|
|
||||||
compatible = "netgear,xr500", "qcom,ipq8065", "qcom,ipq8064";
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
&leds {
|
|
||||||
usb1 {
|
|
||||||
label = "white:usb1";
|
|
||||||
gpios = <&qcom_pinmux 8 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
label = "white:usb2";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&partitions {
|
|
||||||
partition@1880000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x1880000 0xce00000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@e680000 {
|
|
||||||
label = "reserve";
|
|
||||||
reg = <0xe680000 0x0780000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi0 {
|
|
||||||
nvmem-cells = <&macaddr_art_c>, <&precal_art_1000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi1 {
|
|
||||||
nvmem-cells = <&macaddr_art_0>, <&precal_art_5000>;
|
|
||||||
nvmem-cell-names = "mac-address", "pre-calibration";
|
|
||||||
};
|
|
||||||
|
|
||||||
&art {
|
|
||||||
macaddr_art_c: macaddr@c {
|
|
||||||
reg = <0xc 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,236 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
/ {
|
|
||||||
memory {
|
|
||||||
device_type = "memory";
|
|
||||||
linux,usable-memory = <0x41500000 0x1ea00000>;
|
|
||||||
reg = <0x40000000 0x20000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cpus {
|
|
||||||
idle-states {
|
|
||||||
CPU_SPC: spc {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs-append = " console=ttyMSM0,115200n8 ubi.mtd=ubi ubi.mtd=art";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
mdio0_pins_active: mdio0_pins_active {
|
|
||||||
mux {
|
|
||||||
pins = "gpio0", "gpio1";
|
|
||||||
function = "mdio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio1";
|
|
||||||
input-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
phy_active: phy_active {
|
|
||||||
phy {
|
|
||||||
pins = "gpio6", "gpio7";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-high;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
uart1_pins: uart1_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio51", "gpio52";
|
|
||||||
function = "gsbi1";
|
|
||||||
drive-strength = <4>;
|
|
||||||
bias-disable;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi1 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_UART_W_FC>;
|
|
||||||
|
|
||||||
serial@12450000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&uart1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x0 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi0: wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x10000 0 0 0 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x0 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi1: wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x10000 0 0 0 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x0 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi2: wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x10000 0 0 0 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
nand-is-boot-medium;
|
|
||||||
qcom,boot-partitions = <0x0 0x2140000>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
partition@0 {
|
|
||||||
label = "sbl1";
|
|
||||||
reg = <0x0 0x40000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@40000 {
|
|
||||||
label = "mibib";
|
|
||||||
reg = <0x40000 0x140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@180000 {
|
|
||||||
label = "sbl2";
|
|
||||||
reg = <0x180000 0x140000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2c0000 {
|
|
||||||
label = "sbl3";
|
|
||||||
reg = <0x2c0000 0x280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@540000 {
|
|
||||||
label = "ddrconfig";
|
|
||||||
reg = <0x540000 0x120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@660000 {
|
|
||||||
label = "ssd";
|
|
||||||
reg = <0x660000 0x120000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@780000 {
|
|
||||||
label = "tz";
|
|
||||||
reg = <0x780000 0x280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@a00000 {
|
|
||||||
label = "rpm";
|
|
||||||
reg = <0xa00000 0x280000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@1fc0000 {
|
|
||||||
label = "u-boot";
|
|
||||||
reg = <0x1fc0000 0x180000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@21c0000 {
|
|
||||||
label = "bootkernel1";
|
|
||||||
reg = <0x21c0000 0xa80000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@2c40000 {
|
|
||||||
label = "bootkernel2";
|
|
||||||
reg = <0x2c40000 0xa80000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@36c0000 {
|
|
||||||
label = "ubi";
|
|
||||||
reg = <0x36c0000 0x46c0000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@7d80000 {
|
|
||||||
label = "art";
|
|
||||||
reg = <0x7d80000 0x200000>;
|
|
||||||
read-only;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
@ -1,329 +0,0 @@
|
|||||||
#include "qcom-ipq8064-v2.0-smb208.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
#include <dt-bindings/soc/qcom,tcsr.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Edgecore ECW5410";
|
|
||||||
compatible = "edgecore,ecw5410", "qcom,ipq8064";
|
|
||||||
|
|
||||||
reserved-memory {
|
|
||||||
nss@40000000 {
|
|
||||||
reg = <0x40000000 0x1000000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
|
|
||||||
smem: smem@41000000 {
|
|
||||||
reg = <0x41000000 0x200000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
|
|
||||||
wifi_dump@44000000 {
|
|
||||||
reg = <0x44000000 0x600000>;
|
|
||||||
no-map;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
cpus {
|
|
||||||
idle-states {
|
|
||||||
CPU_SPC: spc {
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
serial1 = &gsbi1_serial;
|
|
||||||
ethernet0 = &gmac2;
|
|
||||||
ethernet1 = &gmac3;
|
|
||||||
|
|
||||||
led-boot = &led_power_green;
|
|
||||||
led-failsafe = &led_power_red;
|
|
||||||
led-running = &led_power_green;
|
|
||||||
led-upgrade = &led_power_green;
|
|
||||||
};
|
|
||||||
|
|
||||||
chosen {
|
|
||||||
bootargs-append = " console=ttyMSM0,115200n8 root=/dev/ubiblock0_1";
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 25 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_power_green: power_green {
|
|
||||||
label = "green:power";
|
|
||||||
gpios = <&qcom_pinmux 16 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_green {
|
|
||||||
label = "green:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan2g_yellow {
|
|
||||||
label = "yellow:wlan2g";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_green {
|
|
||||||
label = "green:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_power_red: power_red {
|
|
||||||
label = "red:power";
|
|
||||||
gpios = <&qcom_pinmux 28 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
wlan5g_yellow {
|
|
||||||
label = "yellow:wlan5g";
|
|
||||||
gpios = <&qcom_pinmux 59 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
clk {
|
|
||||||
pins = "gpio21";
|
|
||||||
function = "gsbi5";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
};
|
|
||||||
|
|
||||||
cs {
|
|
||||||
pins = "gpio20";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio16", "gpio23", "gpio24", "gpio26",
|
|
||||||
"gpio28", "gpio59";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
uart1_pins: uart1_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio51", "gpio52", "gpio53", "gpio54";
|
|
||||||
function = "gsbi1";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-none;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi1 {
|
|
||||||
qcom,mode = <GSBI_PROT_UART_W_FC>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
serial@12450000 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&uart1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi5 {
|
|
||||||
qcom,mode = <GSBI_PROT_SPI>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi4: spi@1a280000 {
|
|
||||||
status = "okay";
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
|
|
||||||
pinctrl-0 = <&spi_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
cs-gpios = <&qcom_pinmux 20 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
m25p80@0 {
|
|
||||||
compatible = "jedec,spi-nor";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
spi-max-frequency = <50000000>;
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "qcom,smem-part";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
qcom,ath10k-calibration-variant = "Edgecore-ECW5410-L";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pcie2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
/delete-property/ pinctrl-0;
|
|
||||||
/delete-property/ pinctrl-names;
|
|
||||||
/delete-property/ perst-gpios;
|
|
||||||
|
|
||||||
bridge@0,0 {
|
|
||||||
reg = <0x00000000 0 0 0 0>;
|
|
||||||
#address-cells = <3>;
|
|
||||||
#size-cells = <2>;
|
|
||||||
ranges;
|
|
||||||
|
|
||||||
wifi@1,0 {
|
|
||||||
compatible = "qcom,ath10k";
|
|
||||||
status = "okay";
|
|
||||||
reg = <0x00010000 0 0 0 0>;
|
|
||||||
qcom,ath10k-calibration-variant = "Edgecore-ECW5410-L";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&nand {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
nand@0 {
|
|
||||||
compatible = "qcom,nandcs";
|
|
||||||
|
|
||||||
reg = <0>;
|
|
||||||
|
|
||||||
nand-ecc-strength = <4>;
|
|
||||||
nand-bus-width = <8>;
|
|
||||||
nand-ecc-step-size = <512>;
|
|
||||||
|
|
||||||
partitions {
|
|
||||||
compatible = "fixed-partitions";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
rootfs1@0 {
|
|
||||||
label = "rootfs1";
|
|
||||||
reg = <0x0000000 0x4000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rootfs2@4000000 {
|
|
||||||
label = "rootfs2";
|
|
||||||
reg = <0x4000000 0x4000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy0: ethernet-phy@0 {
|
|
||||||
reg = <0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy1: ethernet-phy@1 {
|
|
||||||
reg = <1>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,id = <2>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
phy-handle = <&phy1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac3 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,id = <3>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
phy-handle = <&phy0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&adm_dma {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,228 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8068-cryptid-common.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Meraki MR42";
|
|
||||||
compatible = "meraki,mr42", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
serial1 = &gsbi1_serial;
|
|
||||||
ethernet0 = &gmac3;
|
|
||||||
|
|
||||||
led-boot = &led_active;
|
|
||||||
led-failsafe = &led_power;
|
|
||||||
led-running = &led_active;
|
|
||||||
led-upgrade = &led_active;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_power: power {
|
|
||||||
label = "orange:power";
|
|
||||||
gpios = <&qcom_pinmux 31 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_active: active {
|
|
||||||
label = "white:active";
|
|
||||||
gpios = <&qcom_pinmux 32 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac3 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,id = <3>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
phy-handle = <&phy2>;
|
|
||||||
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi2 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi2_i2c {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&i2c0_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ina2xx@40 {
|
|
||||||
compatible = "ina219";
|
|
||||||
shunt-resistor = <40000>;
|
|
||||||
reg = <0x40>;
|
|
||||||
};
|
|
||||||
|
|
||||||
eeprom@56 {
|
|
||||||
compatible = "atmel,24c64";
|
|
||||||
pagesize = <32>;
|
|
||||||
reg = <0x56>;
|
|
||||||
read-only;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
mac_address: mac-address@66 {
|
|
||||||
reg = <0x66 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi6 {
|
|
||||||
qcom,mode = <GSBI_PROT_I2C>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi6_i2c {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&i2c1_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
tlc591xx@40 {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
compatible = "ti,tlc59108";
|
|
||||||
reg = <0x40>;
|
|
||||||
|
|
||||||
red@0 {
|
|
||||||
label = "red:user";
|
|
||||||
reg = <0x0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
green@1 {
|
|
||||||
label = "green:user";
|
|
||||||
reg = <0x1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
blue@2 {
|
|
||||||
label = "blue:user";
|
|
||||||
reg = <0x2>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&mdio0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins_active>, <&phy_active>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
phy2: ethernet-phy2 {
|
|
||||||
reg = <2>;
|
|
||||||
|
|
||||||
reset-gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
reset-assert-us = <24000>;
|
|
||||||
|
|
||||||
eee-broken-100tx;
|
|
||||||
eee-broken-1000t;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
i2c0_pins: i2c0_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio24", "gpio25";
|
|
||||||
function = "gsbi2";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
input;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio26";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
i2c1_pins: i2c1_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio29", "gpio30";
|
|
||||||
function = "gsbi6";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
input;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio31", "gpio32";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi0 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi1 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <2>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi2 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <3>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,254 +0,0 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0 OR MIT
|
|
||||||
|
|
||||||
#include "qcom-ipq8068-cryptid-common.dtsi"
|
|
||||||
|
|
||||||
#include <dt-bindings/input/input.h>
|
|
||||||
|
|
||||||
/ {
|
|
||||||
model = "Meraki MR52";
|
|
||||||
compatible = "meraki,mr52", "qcom,ipq8064";
|
|
||||||
|
|
||||||
aliases {
|
|
||||||
serial1 = &gsbi1_serial;
|
|
||||||
mdio-gpio0 = &mdio_gpio0;
|
|
||||||
ethernet0 = &gmac2;
|
|
||||||
ethernet1 = &gmac3;
|
|
||||||
|
|
||||||
led-boot = &led_active;
|
|
||||||
led-failsafe = &led_power;
|
|
||||||
led-running = &led_active;
|
|
||||||
led-upgrade = &led_active;
|
|
||||||
};
|
|
||||||
|
|
||||||
keys {
|
|
||||||
compatible = "gpio-keys";
|
|
||||||
pinctrl-0 = <&button_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
reset {
|
|
||||||
label = "reset";
|
|
||||||
gpios = <&qcom_pinmux 25 GPIO_ACTIVE_LOW>;
|
|
||||||
linux,code = <KEY_RESTART>;
|
|
||||||
debounce-interval = <60>;
|
|
||||||
wakeup-source;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
|
||||||
compatible = "gpio-leds";
|
|
||||||
pinctrl-0 = <&led_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
led_power: power {
|
|
||||||
label = "orange:power";
|
|
||||||
gpios = <&qcom_pinmux 19 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lan2_green {
|
|
||||||
label = "green:lan2";
|
|
||||||
gpios = <&qcom_pinmux 23 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lan1_green {
|
|
||||||
label = "green:lan1";
|
|
||||||
gpios = <&qcom_pinmux 24 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
led_active: active {
|
|
||||||
label = "white:active";
|
|
||||||
gpios = <&qcom_pinmux 26 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lan2_orange {
|
|
||||||
label = "orange:lan2";
|
|
||||||
gpios = <&qcom_pinmux 60 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
|
|
||||||
lan1_orange {
|
|
||||||
label = "orange:lan1";
|
|
||||||
gpios = <&qcom_pinmux 62 GPIO_ACTIVE_HIGH>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac2 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,id = <2>;
|
|
||||||
mdiobus = <&mdio0>;
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
phy-handle = <&phy0>;
|
|
||||||
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac3 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
qcom,id = <3>;
|
|
||||||
mdiobus = <&mdio_gpio0>;
|
|
||||||
|
|
||||||
phy-mode = "sgmii";
|
|
||||||
phy-handle = <&phy4>;
|
|
||||||
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7 {
|
|
||||||
status = "okay";
|
|
||||||
qcom,mode = <GSBI_PROT_I2C>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&gsbi7_i2c {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&i2c_pins>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
ina2xx@45 {
|
|
||||||
compatible = "ina219";
|
|
||||||
shunt-resistor = <80000>;
|
|
||||||
reg = <0x45>;
|
|
||||||
};
|
|
||||||
|
|
||||||
tlc591xx@49 {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
compatible = "ti,tlc59108";
|
|
||||||
reg = <0x49>;
|
|
||||||
|
|
||||||
red@0 {
|
|
||||||
label = "red:user";
|
|
||||||
reg = <0x0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
green@1 {
|
|
||||||
label = "green:user";
|
|
||||||
reg = <0x1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
blue@2 {
|
|
||||||
label = "blue:user";
|
|
||||||
reg = <0x2>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
eeprom@52 {
|
|
||||||
compatible = "atmel,24c64";
|
|
||||||
pagesize = <32>;
|
|
||||||
reg = <0x52>;
|
|
||||||
read-only;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
|
|
||||||
mac_address: mac-address@66 {
|
|
||||||
reg = <0x66 0x6>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&qcom_pinmux {
|
|
||||||
i2c_pins: i2c_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio8", "gpio9";
|
|
||||||
function = "gsbi7";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
input;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
led_pins: led_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio19", "gpio26";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <12>;
|
|
||||||
bias-pull-down;
|
|
||||||
output-low;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
button_pins: button_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio25";
|
|
||||||
function = "gpio";
|
|
||||||
drive-strength = <2>;
|
|
||||||
bias-pull-up;
|
|
||||||
input;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&soc {
|
|
||||||
mdio_gpio0: mdio {
|
|
||||||
compatible = "virtual,mdio-gpio";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
pinctrl-0 = <&mdio0_pins_active>, <&phy_active>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
|
|
||||||
gpios = <&qcom_pinmux 1 GPIO_ACTIVE_HIGH
|
|
||||||
&qcom_pinmux 0 GPIO_ACTIVE_HIGH>;
|
|
||||||
|
|
||||||
phy0: ethernet-phy0 {
|
|
||||||
reg = <0>;
|
|
||||||
reset-gpios = <&qcom_pinmux 7 GPIO_ACTIVE_LOW>;
|
|
||||||
reset-assert-us = <24000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
phy4: ethernet-phy4 {
|
|
||||||
reg = <4>;
|
|
||||||
reset-gpios = <&qcom_pinmux 6 GPIO_ACTIVE_LOW>;
|
|
||||||
reset-assert-us = <24000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi0 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <4>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi1 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <3>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&wifi2 {
|
|
||||||
nvmem-cells = <&mac_address>;
|
|
||||||
nvmem-cell-names = "mac-address";
|
|
||||||
mac-address-increment = <2>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hs_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&ss_phy_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
@ -1,62 +0,0 @@
|
|||||||
From fa71139b55e114aa8c3c4823ff8ee7d49ee810d4 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Mathieu Olivari <mathieu@codeaurora.org>
|
|
||||||
Date: Wed, 29 Apr 2015 15:21:46 -0700
|
|
||||||
Subject: [PATCH 60/69] HACK: arch: arm: force ZRELADDR on arch-qcom
|
|
||||||
|
|
||||||
ARCH_QCOM is using the ARCH_MULTIPLATFORM option, as now recommended
|
|
||||||
on most ARM architectures. This automatically calculate ZRELADDR by
|
|
||||||
masking PHYS_OFFSET with 0xf8000000.
|
|
||||||
|
|
||||||
However, on IPQ806x, the first ~20MB of RAM is reserved for the hardware
|
|
||||||
network accelerators, and the bootloader removes this section from the
|
|
||||||
layout passed from the ATAGS (when used).
|
|
||||||
|
|
||||||
For newer bootloader, when DT is used, this is not a problem, we just
|
|
||||||
reserve this memory in the device tree. But if the bootloader doesn't
|
|
||||||
have DT support, then ATAGS have to be used. In this case, the ARM
|
|
||||||
decompressor will position the kernel in this low mem, which will not be
|
|
||||||
in the RAM section mapped by the bootloader, which means the kernel will
|
|
||||||
freeze in the middle of the boot process trying to map the memory.
|
|
||||||
|
|
||||||
As a work around, this patch allows disabling AUTO_ZRELADDR when
|
|
||||||
ARCH_QCOM is selected. It makes the zImage usage possible on bootloaders
|
|
||||||
which don't support device-tree, which is the case on certain early
|
|
||||||
IPQ806x based designs.
|
|
||||||
|
|
||||||
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
|
|
||||||
---
|
|
||||||
arch/arm/Kconfig | 2 +-
|
|
||||||
arch/arm/Makefile | 2 ++
|
|
||||||
arch/arm/mach-qcom/Makefile.boot | 1 +
|
|
||||||
3 files changed, 4 insertions(+), 1 deletion(-)
|
|
||||||
create mode 100644 arch/arm/mach-qcom/Makefile.boot
|
|
||||||
|
|
||||||
--- a/arch/arm/Kconfig
|
|
||||||
+++ b/arch/arm/Kconfig
|
|
||||||
@@ -317,7 +317,7 @@ config ARCH_MULTIPLATFORM
|
|
||||||
select ARCH_SELECT_MEMORY_MODEL
|
|
||||||
select ARM_HAS_SG_CHAIN
|
|
||||||
select ARM_PATCH_PHYS_VIRT
|
|
||||||
- select AUTO_ZRELADDR
|
|
||||||
+ select AUTO_ZRELADDR if !ARCH_QCOM
|
|
||||||
select TIMER_OF
|
|
||||||
select COMMON_CLK
|
|
||||||
select GENERIC_IRQ_MULTI_HANDLER
|
|
||||||
--- a/arch/arm/Makefile
|
|
||||||
+++ b/arch/arm/Makefile
|
|
||||||
@@ -237,9 +237,11 @@ MACHINE := arch/arm/mach-$(word 1,$(mac
|
|
||||||
else
|
|
||||||
MACHINE :=
|
|
||||||
endif
|
|
||||||
+ifeq ($(CONFIG_ARCH_QCOM),)
|
|
||||||
ifeq ($(CONFIG_ARCH_MULTIPLATFORM),y)
|
|
||||||
MACHINE :=
|
|
||||||
endif
|
|
||||||
+endif
|
|
||||||
|
|
||||||
machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
|
|
||||||
platdirs := $(patsubst %,arch/arm/plat-%/,$(sort $(plat-y)))
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/arch/arm/mach-qcom/Makefile.boot
|
|
||||||
@@ -0,0 +1 @@
|
|
||||||
+zreladdr-y+= 0x42208000
|
|
@ -1,280 +0,0 @@
|
|||||||
From 71270226b14733a4b1f2cde58ea9265caa50b38d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Adrian Panella <ianchi74@outlook.com>
|
|
||||||
Date: Thu, 9 Mar 2017 09:37:17 +0100
|
|
||||||
Subject: [PATCH 67/69] generic: Mangle bootloader's kernel arguments
|
|
||||||
|
|
||||||
The command-line arguments provided by the boot loader will be
|
|
||||||
appended to a new device tree property: bootloader-args.
|
|
||||||
If there is a property "append-rootblock" in DT under /chosen
|
|
||||||
and a root= option in bootloaders command line it will be parsed
|
|
||||||
and added to DT bootargs with the form: <append-rootblock>XX.
|
|
||||||
Only command line ATAG will be processed, the rest of the ATAGs
|
|
||||||
sent by bootloader will be ignored.
|
|
||||||
This is usefull in dual boot systems, to get the current root partition
|
|
||||||
without afecting the rest of the system.
|
|
||||||
|
|
||||||
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
|
|
||||||
---
|
|
||||||
arch/arm/Kconfig | 11 +++++
|
|
||||||
arch/arm/boot/compressed/atags_to_fdt.c | 72 ++++++++++++++++++++++++++++++++-
|
|
||||||
init/main.c | 16 ++++++++
|
|
||||||
3 files changed, 98 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/Kconfig
|
|
||||||
+++ b/arch/arm/Kconfig
|
|
||||||
@@ -1727,6 +1727,17 @@ config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEN
|
|
||||||
The command-line arguments provided by the boot loader will be
|
|
||||||
appended to the the device tree bootargs property.
|
|
||||||
|
|
||||||
+config ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
+ bool "Append rootblock parsing bootloader's kernel arguments"
|
|
||||||
+ help
|
|
||||||
+ The command-line arguments provided by the boot loader will be
|
|
||||||
+ appended to a new device tree property: bootloader-args.
|
|
||||||
+ If there is a property "append-rootblock" in DT under /chosen
|
|
||||||
+ and a root= option in bootloaders command line it will be parsed
|
|
||||||
+ and added to DT bootargs with the form: <append-rootblock>XX.
|
|
||||||
+ Only command line ATAG will be processed, the rest of the ATAGs
|
|
||||||
+ sent by bootloader will be ignored.
|
|
||||||
+
|
|
||||||
endchoice
|
|
||||||
|
|
||||||
config CMDLINE
|
|
||||||
--- a/arch/arm/boot/compressed/atags_to_fdt.c
|
|
||||||
+++ b/arch/arm/boot/compressed/atags_to_fdt.c
|
|
||||||
@@ -5,6 +5,8 @@
|
|
||||||
|
|
||||||
#if defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND)
|
|
||||||
#define do_extend_cmdline 1
|
|
||||||
+#elif defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE)
|
|
||||||
+#define do_extend_cmdline 1
|
|
||||||
#else
|
|
||||||
#define do_extend_cmdline 0
|
|
||||||
#endif
|
|
||||||
@@ -20,6 +22,7 @@ static int node_offset(void *fdt, const
|
|
||||||
return offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
static int setprop(void *fdt, const char *node_path, const char *property,
|
|
||||||
void *val_array, int size)
|
|
||||||
{
|
|
||||||
@@ -28,6 +31,7 @@ static int setprop(void *fdt, const char
|
|
||||||
return offset;
|
|
||||||
return fdt_setprop(fdt, offset, property, val_array, size);
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
static int setprop_string(void *fdt, const char *node_path,
|
|
||||||
const char *property, const char *string)
|
|
||||||
@@ -38,6 +42,7 @@ static int setprop_string(void *fdt, con
|
|
||||||
return fdt_setprop_string(fdt, offset, property, string);
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
static int setprop_cell(void *fdt, const char *node_path,
|
|
||||||
const char *property, uint32_t val)
|
|
||||||
{
|
|
||||||
@@ -46,6 +51,7 @@ static int setprop_cell(void *fdt, const
|
|
||||||
return offset;
|
|
||||||
return fdt_setprop_cell(fdt, offset, property, val);
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
static const void *getprop(const void *fdt, const char *node_path,
|
|
||||||
const char *property, int *len)
|
|
||||||
@@ -58,6 +64,7 @@ static const void *getprop(const void *f
|
|
||||||
return fdt_getprop(fdt, offset, property, len);
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
static uint32_t get_cell_size(const void *fdt)
|
|
||||||
{
|
|
||||||
int len;
|
|
||||||
@@ -68,6 +75,81 @@ static uint32_t get_cell_size(const void
|
|
||||||
cell_size = fdt32_to_cpu(*size_len);
|
|
||||||
return cell_size;
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
+#if defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE)
|
|
||||||
+/**
|
|
||||||
+ * taken from arch/x86/boot/string.c
|
|
||||||
+ * local_strstr - Find the first substring in a %NUL terminated string
|
|
||||||
+ * @s1: The string to be searched
|
|
||||||
+ * @s2: The string to search for
|
|
||||||
+ */
|
|
||||||
+static char *local_strstr(const char *s1, const char *s2)
|
|
||||||
+{
|
|
||||||
+ size_t l1, l2;
|
|
||||||
+
|
|
||||||
+ l2 = strlen(s2);
|
|
||||||
+ if (!l2)
|
|
||||||
+ return (char *)s1;
|
|
||||||
+ l1 = strlen(s1);
|
|
||||||
+ while (l1 >= l2) {
|
|
||||||
+ l1--;
|
|
||||||
+ if (!memcmp(s1, s2, l2))
|
|
||||||
+ return (char *)s1;
|
|
||||||
+ s1++;
|
|
||||||
+ }
|
|
||||||
+ return NULL;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static char *append_rootblock(char *dest, const char *str, int len, void *fdt)
|
|
||||||
+{
|
|
||||||
+ char *ptr, *end, *tmp;
|
|
||||||
+ const char *root="root=";
|
|
||||||
+ const char *find_rootblock;
|
|
||||||
+ int i, l;
|
|
||||||
+ const char *rootblock;
|
|
||||||
+
|
|
||||||
+ find_rootblock = getprop(fdt, "/chosen", "find-rootblock", &l);
|
|
||||||
+ if (!find_rootblock)
|
|
||||||
+ find_rootblock = root;
|
|
||||||
+
|
|
||||||
+ //ARM doesn't have __HAVE_ARCH_STRSTR, so it was copied from x86
|
|
||||||
+ ptr = local_strstr(str, find_rootblock);
|
|
||||||
+
|
|
||||||
+ if(!ptr)
|
|
||||||
+ return dest;
|
|
||||||
+
|
|
||||||
+ end = strchr(ptr, ' ');
|
|
||||||
+ end = end ? (end - 1) : (strchr(ptr, 0) - 1);
|
|
||||||
+
|
|
||||||
+ // Some boards ubi.mtd=XX,ZZZZ, so let's check for '," too.
|
|
||||||
+ tmp = strchr(ptr, ',');
|
|
||||||
+
|
|
||||||
+ if(tmp)
|
|
||||||
+ end = end < tmp ? end : tmp - 1;
|
|
||||||
+
|
|
||||||
+ //find partition number (assumes format root=/dev/mtdXX | /dev/mtdblockXX | yy:XX | ubi.mtd=XX,ZZZZ )
|
|
||||||
+ for( i = 0; end >= ptr && *end >= '0' && *end <= '9'; end--, i++);
|
|
||||||
+ ptr = end + 1;
|
|
||||||
+
|
|
||||||
+ /* if append-rootblock property is set use it to append to command line */
|
|
||||||
+ rootblock = getprop(fdt, "/chosen", "append-rootblock", &l);
|
|
||||||
+ if(rootblock != NULL) {
|
|
||||||
+ if(*dest != ' ') {
|
|
||||||
+ *dest = ' ';
|
|
||||||
+ dest++;
|
|
||||||
+ len++;
|
|
||||||
+ }
|
|
||||||
+ if (len + l + i <= COMMAND_LINE_SIZE) {
|
|
||||||
+ memcpy(dest, rootblock, l);
|
|
||||||
+ dest += l - 1;
|
|
||||||
+ memcpy(dest, ptr, i);
|
|
||||||
+ dest += i;
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
+ return dest;
|
|
||||||
+}
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
static void merge_fdt_bootargs(void *fdt, const char *fdt_cmdline)
|
|
||||||
{
|
|
||||||
@@ -88,18 +170,28 @@ static void merge_fdt_bootargs(void *fdt
|
|
||||||
|
|
||||||
/* and append the ATAG_CMDLINE */
|
|
||||||
if (fdt_cmdline) {
|
|
||||||
+
|
|
||||||
+#if defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE)
|
|
||||||
+ //save original bootloader args
|
|
||||||
+ //and append ubi.mtd with root partition number to current cmdline
|
|
||||||
+ setprop_string(fdt, "/chosen", "bootloader-args", fdt_cmdline);
|
|
||||||
+ ptr = append_rootblock(ptr, fdt_cmdline, len, fdt);
|
|
||||||
+
|
|
||||||
+#else
|
|
||||||
len = strlen(fdt_cmdline);
|
|
||||||
if (ptr - cmdline + len + 2 < COMMAND_LINE_SIZE) {
|
|
||||||
*ptr++ = ' ';
|
|
||||||
memcpy(ptr, fdt_cmdline, len);
|
|
||||||
ptr += len;
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
}
|
|
||||||
*ptr = '\0';
|
|
||||||
|
|
||||||
setprop_string(fdt, "/chosen", "bootargs", cmdline);
|
|
||||||
}
|
|
||||||
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
static void hex_str(char *out, uint32_t value)
|
|
||||||
{
|
|
||||||
uint32_t digit;
|
|
||||||
@@ -117,6 +209,7 @@ static void hex_str(char *out, uint32_t
|
|
||||||
}
|
|
||||||
*out = '\0';
|
|
||||||
}
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Convert and fold provided ATAGs into the provided FDT.
|
|
||||||
@@ -131,9 +224,11 @@ int atags_to_fdt(void *atag_list, void *
|
|
||||||
struct tag *atag = atag_list;
|
|
||||||
/* In the case of 64 bits memory size, need to reserve 2 cells for
|
|
||||||
* address and size for each bank */
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
__be32 mem_reg_property[2 * 2 * NR_BANKS];
|
|
||||||
- int memcount = 0;
|
|
||||||
- int ret, memsize;
|
|
||||||
+ int memsize, memcount = 0;
|
|
||||||
+#endif
|
|
||||||
+ int ret;
|
|
||||||
|
|
||||||
/* make sure we've got an aligned pointer */
|
|
||||||
if ((u32)atag_list & 0x3)
|
|
||||||
@@ -168,7 +263,9 @@ int atags_to_fdt(void *atag_list, void *
|
|
||||||
else
|
|
||||||
setprop_string(fdt, "/chosen", "bootargs",
|
|
||||||
atag->u.cmdline.cmdline);
|
|
||||||
- } else if (atag->hdr.tag == ATAG_MEM) {
|
|
||||||
+ }
|
|
||||||
+#ifndef CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE
|
|
||||||
+ else if (atag->hdr.tag == ATAG_MEM) {
|
|
||||||
if (memcount >= sizeof(mem_reg_property)/4)
|
|
||||||
continue;
|
|
||||||
if (!atag->u.mem.size)
|
|
||||||
@@ -212,6 +309,10 @@ int atags_to_fdt(void *atag_list, void *
|
|
||||||
setprop(fdt, "/memory", "reg", mem_reg_property,
|
|
||||||
4 * memcount * memsize);
|
|
||||||
}
|
|
||||||
+#else
|
|
||||||
+
|
|
||||||
+ }
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
return fdt_pack(fdt);
|
|
||||||
}
|
|
||||||
--- a/init/main.c
|
|
||||||
+++ b/init/main.c
|
|
||||||
@@ -114,6 +114,10 @@
|
|
||||||
|
|
||||||
#include <kunit/test.h>
|
|
||||||
|
|
||||||
+#if defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE)
|
|
||||||
+#include <linux/of.h>
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
static int kernel_init(void *);
|
|
||||||
|
|
||||||
extern void init_IRQ(void);
|
|
||||||
@@ -993,6 +997,18 @@ asmlinkage __visible void __init __no_sa
|
|
||||||
pr_notice("Kernel command line: %s\n", saved_command_line);
|
|
||||||
/* parameters may set static keys */
|
|
||||||
jump_label_init();
|
|
||||||
+
|
|
||||||
+#if defined(CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_MANGLE)
|
|
||||||
+ //Show bootloader's original command line for reference
|
|
||||||
+ if(of_chosen) {
|
|
||||||
+ const char *prop = of_get_property(of_chosen, "bootloader-args", NULL);
|
|
||||||
+ if(prop)
|
|
||||||
+ pr_notice("Bootloader command line (ignored): %s\n", prop);
|
|
||||||
+ else
|
|
||||||
+ pr_notice("Bootloader command line not present\n");
|
|
||||||
+ }
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
parse_early_param();
|
|
||||||
after_dashes = parse_args("Booting kernel",
|
|
||||||
static_command_line, __start___param,
|
|
@ -1,109 +0,0 @@
|
|||||||
From e95e825333eda345d812b461301dad50021d5487 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:24 +0100
|
|
||||||
Subject: [PATCH 04/14] clk: qcom: gcc-ipq806x: fix wrong naming for
|
|
||||||
gcc_pxo_pll8_pll0
|
|
||||||
|
|
||||||
Parent gcc_pxo_pll8_pll0 had the parent definition and parent map
|
|
||||||
swapped. Fix this naming error.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-5-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 20 ++++++++++----------
|
|
||||||
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -291,13 +291,13 @@ static const char * const gcc_pxo_pll3[]
|
|
||||||
"pll3",
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const struct parent_map gcc_pxo_pll8_pll0[] = {
|
|
||||||
+static const struct parent_map gcc_pxo_pll8_pll0_map[] = {
|
|
||||||
{ P_PXO, 0 },
|
|
||||||
{ P_PLL8, 3 },
|
|
||||||
{ P_PLL0, 2 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll8_pll0_map[] = {
|
|
||||||
+static const char * const gcc_pxo_pll8_pll0[] = {
|
|
||||||
"pxo",
|
|
||||||
"pll8_vote",
|
|
||||||
"pll0_vote",
|
|
||||||
@@ -1993,7 +1993,7 @@ static struct clk_rcg usb30_master_clk_s
|
|
||||||
},
|
|
||||||
.s = {
|
|
||||||
.src_sel_shift = 0,
|
|
||||||
- .parent_map = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_map,
|
|
||||||
},
|
|
||||||
.freq_tbl = clk_tbl_usb30_master,
|
|
||||||
.clkr = {
|
|
||||||
@@ -2001,7 +2001,7 @@ static struct clk_rcg usb30_master_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_master_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0_map,
|
|
||||||
+ .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2063,7 +2063,7 @@ static struct clk_rcg usb30_utmi_clk = {
|
|
||||||
},
|
|
||||||
.s = {
|
|
||||||
.src_sel_shift = 0,
|
|
||||||
- .parent_map = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_map,
|
|
||||||
},
|
|
||||||
.freq_tbl = clk_tbl_usb30_utmi,
|
|
||||||
.clkr = {
|
|
||||||
@@ -2071,7 +2071,7 @@ static struct clk_rcg usb30_utmi_clk = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_utmi_clk",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0_map,
|
|
||||||
+ .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2133,7 +2133,7 @@ static struct clk_rcg usb_hs1_xcvr_clk_s
|
|
||||||
},
|
|
||||||
.s = {
|
|
||||||
.src_sel_shift = 0,
|
|
||||||
- .parent_map = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_map,
|
|
||||||
},
|
|
||||||
.freq_tbl = clk_tbl_usb,
|
|
||||||
.clkr = {
|
|
||||||
@@ -2141,7 +2141,7 @@ static struct clk_rcg usb_hs1_xcvr_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_hs1_xcvr_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0_map,
|
|
||||||
+ .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2197,7 +2197,7 @@ static struct clk_rcg usb_fs1_xcvr_clk_s
|
|
||||||
},
|
|
||||||
.s = {
|
|
||||||
.src_sel_shift = 0,
|
|
||||||
- .parent_map = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_map,
|
|
||||||
},
|
|
||||||
.freq_tbl = clk_tbl_usb,
|
|
||||||
.clkr = {
|
|
||||||
@@ -2205,7 +2205,7 @@ static struct clk_rcg usb_fs1_xcvr_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_fs1_xcvr_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0_map,
|
|
||||||
+ .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
@ -1,921 +0,0 @@
|
|||||||
From cb02866f9a740fb9fb8ff19698a69290da4057e5 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:25 +0100
|
|
||||||
Subject: [PATCH 05/14] clk: qcom: gcc-ipq806x: convert parent_names to
|
|
||||||
parent_data
|
|
||||||
|
|
||||||
Convert parent_names to parent_data to modernize the driver.
|
|
||||||
Where possible use parent_hws directly.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-6-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 286 ++++++++++++++++++++-------------
|
|
||||||
1 file changed, 173 insertions(+), 113 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -25,6 +25,10 @@
|
|
||||||
#include "clk-hfpll.h"
|
|
||||||
#include "reset.h"
|
|
||||||
|
|
||||||
+static const struct clk_parent_data gcc_pxo[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
static struct clk_pll pll0 = {
|
|
||||||
.l_reg = 0x30c4,
|
|
||||||
.m_reg = 0x30c8,
|
|
||||||
@@ -35,7 +39,7 @@ static struct clk_pll pll0 = {
|
|
||||||
.status_bit = 16,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll0",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_ops,
|
|
||||||
},
|
|
||||||
@@ -46,7 +50,9 @@ static struct clk_regmap pll0_vote = {
|
|
||||||
.enable_mask = BIT(0),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll0_vote",
|
|
||||||
- .parent_names = (const char *[]){ "pll0" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pll0.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_vote_ops,
|
|
||||||
},
|
|
||||||
@@ -62,7 +68,7 @@ static struct clk_pll pll3 = {
|
|
||||||
.status_bit = 16,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll3",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_ops,
|
|
||||||
},
|
|
||||||
@@ -89,7 +95,7 @@ static struct clk_pll pll8 = {
|
|
||||||
.status_bit = 16,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll8",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_ops,
|
|
||||||
},
|
|
||||||
@@ -100,7 +106,9 @@ static struct clk_regmap pll8_vote = {
|
|
||||||
.enable_mask = BIT(8),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll8_vote",
|
|
||||||
- .parent_names = (const char *[]){ "pll8" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pll8.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_vote_ops,
|
|
||||||
},
|
|
||||||
@@ -123,7 +131,7 @@ static struct hfpll_data hfpll0_data = {
|
|
||||||
static struct clk_hfpll hfpll0 = {
|
|
||||||
.d = &hfpll0_data,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.name = "hfpll0",
|
|
||||||
.ops = &clk_ops_hfpll,
|
|
||||||
@@ -149,7 +157,7 @@ static struct hfpll_data hfpll1_data = {
|
|
||||||
static struct clk_hfpll hfpll1 = {
|
|
||||||
.d = &hfpll1_data,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.name = "hfpll1",
|
|
||||||
.ops = &clk_ops_hfpll,
|
|
||||||
@@ -175,7 +183,7 @@ static struct hfpll_data hfpll_l2_data =
|
|
||||||
static struct clk_hfpll hfpll_l2 = {
|
|
||||||
.d = &hfpll_l2_data,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.name = "hfpll_l2",
|
|
||||||
.ops = &clk_ops_hfpll,
|
|
||||||
@@ -194,7 +202,7 @@ static struct clk_pll pll14 = {
|
|
||||||
.status_bit = 16,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll14",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_ops,
|
|
||||||
},
|
|
||||||
@@ -205,7 +213,9 @@ static struct clk_regmap pll14_vote = {
|
|
||||||
.enable_mask = BIT(14),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll14_vote",
|
|
||||||
- .parent_names = (const char *[]){ "pll14" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pll14.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_vote_ops,
|
|
||||||
},
|
|
||||||
@@ -238,7 +248,7 @@ static struct clk_pll pll18 = {
|
|
||||||
.freq_tbl = pll18_freq_tbl,
|
|
||||||
.clkr.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pll18",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_pll_ops,
|
|
||||||
},
|
|
||||||
@@ -259,9 +269,9 @@ static const struct parent_map gcc_pxo_p
|
|
||||||
{ P_PLL8, 3 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll8[] = {
|
|
||||||
- "pxo",
|
|
||||||
- "pll8_vote",
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll8[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+ { .hw = &pll8_vote.hw },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct parent_map gcc_pxo_pll8_cxo_map[] = {
|
|
||||||
@@ -270,10 +280,10 @@ static const struct parent_map gcc_pxo_p
|
|
||||||
{ P_CXO, 5 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll8_cxo[] = {
|
|
||||||
- "pxo",
|
|
||||||
- "pll8_vote",
|
|
||||||
- "cxo",
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll8_cxo[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+ { .hw = &pll8_vote.hw },
|
|
||||||
+ { .fw_name = "cxo", .name = "cxo" },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct parent_map gcc_pxo_pll3_map[] = {
|
|
||||||
@@ -286,9 +296,9 @@ static const struct parent_map gcc_pxo_p
|
|
||||||
{ P_PLL3, 6 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll3[] = {
|
|
||||||
- "pxo",
|
|
||||||
- "pll3",
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll3[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+ { .hw = &pll3.clkr.hw },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct parent_map gcc_pxo_pll8_pll0_map[] = {
|
|
||||||
@@ -297,10 +307,10 @@ static const struct parent_map gcc_pxo_p
|
|
||||||
{ P_PLL0, 2 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll8_pll0[] = {
|
|
||||||
- "pxo",
|
|
||||||
- "pll8_vote",
|
|
||||||
- "pll0_vote",
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll8_pll0[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+ { .hw = &pll8_vote.hw },
|
|
||||||
+ { .hw = &pll0_vote.hw },
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct parent_map gcc_pxo_pll8_pll14_pll18_pll0_map[] = {
|
|
||||||
@@ -311,12 +321,12 @@ static const struct parent_map gcc_pxo_p
|
|
||||||
{ P_PLL18, 1 }
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * const gcc_pxo_pll8_pll14_pll18_pll0[] = {
|
|
||||||
- "pxo",
|
|
||||||
- "pll8_vote",
|
|
||||||
- "pll0_vote",
|
|
||||||
- "pll14",
|
|
||||||
- "pll18",
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll8_pll14_pll18_pll0[] = {
|
|
||||||
+ { .fw_name = "pxo", .name = "pxo" },
|
|
||||||
+ { .hw = &pll8_vote.hw },
|
|
||||||
+ { .hw = &pll0_vote.hw },
|
|
||||||
+ { .hw = &pll14.clkr.hw },
|
|
||||||
+ { .hw = &pll18.clkr.hw },
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct freq_tbl clk_tbl_gsbi_uart[] = {
|
|
||||||
@@ -362,7 +372,7 @@ static struct clk_rcg gsbi1_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -378,8 +388,8 @@ static struct clk_branch gsbi1_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi1_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi1_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -413,7 +423,7 @@ static struct clk_rcg gsbi2_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -429,8 +439,8 @@ static struct clk_branch gsbi2_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi2_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi2_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -464,7 +474,7 @@ static struct clk_rcg gsbi4_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -480,8 +490,8 @@ static struct clk_branch gsbi4_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi4_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi4_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -515,7 +525,7 @@ static struct clk_rcg gsbi5_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -531,8 +541,8 @@ static struct clk_branch gsbi5_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi5_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi5_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -566,7 +576,7 @@ static struct clk_rcg gsbi6_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -582,8 +592,8 @@ static struct clk_branch gsbi6_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi6_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi6_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -617,7 +627,7 @@ static struct clk_rcg gsbi7_uart_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_uart_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -633,8 +643,8 @@ static struct clk_branch gsbi7_uart_clk
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_uart_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gsbi7_uart_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi7_uart_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -681,7 +691,7 @@ static struct clk_rcg gsbi1_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -697,7 +707,9 @@ static struct clk_branch gsbi1_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi1_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi1_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -730,7 +742,7 @@ static struct clk_rcg gsbi2_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -746,7 +758,9 @@ static struct clk_branch gsbi2_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi2_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi2_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -779,7 +793,7 @@ static struct clk_rcg gsbi4_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -795,7 +809,9 @@ static struct clk_branch gsbi4_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi4_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi4_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -828,7 +844,7 @@ static struct clk_rcg gsbi5_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -844,7 +860,9 @@ static struct clk_branch gsbi5_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi5_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi5_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -877,7 +895,7 @@ static struct clk_rcg gsbi6_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -893,7 +911,9 @@ static struct clk_branch gsbi6_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi6_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi6_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -926,7 +946,7 @@ static struct clk_rcg gsbi7_qup_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_qup_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -942,7 +962,9 @@ static struct clk_branch gsbi7_qup_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_qup_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gsbi7_qup_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gsbi7_qup_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1076,7 +1098,7 @@ static struct clk_rcg gp0_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp0_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_cxo,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
@@ -1092,7 +1114,9 @@ static struct clk_branch gp0_clk = {
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp0_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gp0_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gp0_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1125,7 +1149,7 @@ static struct clk_rcg gp1_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp1_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_cxo,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1141,7 +1165,9 @@ static struct clk_branch gp1_clk = {
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp1_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gp1_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gp1_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1174,7 +1200,7 @@ static struct clk_rcg gp2_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp2_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_cxo,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1190,7 +1216,9 @@ static struct clk_branch gp2_clk = {
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp2_clk",
|
|
||||||
- .parent_names = (const char *[]){ "gp2_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gp2_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1228,7 +1256,7 @@ static struct clk_rcg prng_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "prng_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -1244,7 +1272,9 @@ static struct clk_branch prng_clk = {
|
|
||||||
.enable_mask = BIT(10),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "prng_clk",
|
|
||||||
- .parent_names = (const char *[]){ "prng_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &prng_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
},
|
|
||||||
@@ -1290,7 +1320,7 @@ static struct clk_rcg sdc1_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc1_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -1305,7 +1335,9 @@ static struct clk_branch sdc1_clk = {
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc1_clk",
|
|
||||||
- .parent_names = (const char *[]){ "sdc1_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &sdc1_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1338,7 +1370,7 @@ static struct clk_rcg sdc3_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc3_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -1353,7 +1385,9 @@ static struct clk_branch sdc3_clk = {
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc3_clk",
|
|
||||||
- .parent_names = (const char *[]){ "sdc3_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &sdc3_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1421,7 +1455,7 @@ static struct clk_rcg tsif_ref_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "tsif_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8,
|
|
||||||
+ .parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -1436,7 +1470,9 @@ static struct clk_branch tsif_ref_clk =
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "tsif_ref_clk",
|
|
||||||
- .parent_names = (const char *[]){ "tsif_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &tsif_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1583,7 +1619,7 @@ static struct clk_rcg pcie_ref_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll3,
|
|
||||||
+ .parent_data = gcc_pxo_pll3,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1599,7 +1635,9 @@ static struct clk_branch pcie_ref_src_cl
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie_ref_src_clk",
|
|
||||||
- .parent_names = (const char *[]){ "pcie_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pcie_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1675,7 +1713,7 @@ static struct clk_rcg pcie1_ref_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie1_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll3,
|
|
||||||
+ .parent_data = gcc_pxo_pll3,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1691,7 +1729,9 @@ static struct clk_branch pcie1_ref_src_c
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie1_ref_src_clk",
|
|
||||||
- .parent_names = (const char *[]){ "pcie1_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pcie1_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1767,7 +1807,7 @@ static struct clk_rcg pcie2_ref_src = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie2_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll3,
|
|
||||||
+ .parent_data = gcc_pxo_pll3,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1783,7 +1823,9 @@ static struct clk_branch pcie2_ref_src_c
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie2_ref_src_clk",
|
|
||||||
- .parent_names = (const char *[]){ "pcie2_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &pcie2_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1864,7 +1906,7 @@ static struct clk_rcg sata_ref_src = {
|
|
||||||
.enable_mask = BIT(7),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sata_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll3,
|
|
||||||
+ .parent_data = gcc_pxo_pll3,
|
|
||||||
.num_parents = 2,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -1880,7 +1922,9 @@ static struct clk_branch sata_rxoob_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sata_rxoob_clk",
|
|
||||||
- .parent_names = (const char *[]){ "sata_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &sata_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1896,7 +1940,9 @@ static struct clk_branch sata_pmalive_cl
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sata_pmalive_clk",
|
|
||||||
- .parent_names = (const char *[]){ "sata_ref_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &sata_ref_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -1912,7 +1958,7 @@ static struct clk_branch sata_phy_ref_cl
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sata_phy_ref_clk",
|
|
||||||
- .parent_names = (const char *[]){ "pxo" },
|
|
||||||
+ .parent_data = gcc_pxo,
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
},
|
|
||||||
@@ -2001,7 +2047,7 @@ static struct clk_rcg usb30_master_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_master_ref_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2017,7 +2063,9 @@ static struct clk_branch usb30_0_branch_
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_0_branch_clk",
|
|
||||||
- .parent_names = (const char *[]){ "usb30_master_ref_src", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb30_master_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2033,7 +2081,9 @@ static struct clk_branch usb30_1_branch_
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_1_branch_clk",
|
|
||||||
- .parent_names = (const char *[]){ "usb30_master_ref_src", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb30_master_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2071,7 +2121,7 @@ static struct clk_rcg usb30_utmi_clk = {
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_utmi_clk",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2087,7 +2137,9 @@ static struct clk_branch usb30_0_utmi_cl
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_0_utmi_clk_ctl",
|
|
||||||
- .parent_names = (const char *[]){ "usb30_utmi_clk", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb30_utmi_clk.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2103,7 +2155,9 @@ static struct clk_branch usb30_1_utmi_cl
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_1_utmi_clk_ctl",
|
|
||||||
- .parent_names = (const char *[]){ "usb30_utmi_clk", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb30_utmi_clk.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2141,7 +2195,7 @@ static struct clk_rcg usb_hs1_xcvr_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_hs1_xcvr_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2157,7 +2211,9 @@ static struct clk_branch usb_hs1_xcvr_cl
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_hs1_xcvr_clk",
|
|
||||||
- .parent_names = (const char *[]){ "usb_hs1_xcvr_src" },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb_hs1_xcvr_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2205,7 +2261,7 @@ static struct clk_rcg usb_fs1_xcvr_clk_s
|
|
||||||
.enable_mask = BIT(11),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_fs1_xcvr_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
.num_parents = 3,
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
@@ -2221,7 +2277,9 @@ static struct clk_branch usb_fs1_xcvr_cl
|
|
||||||
.enable_mask = BIT(9),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_fs1_xcvr_clk",
|
|
||||||
- .parent_names = (const char *[]){ "usb_fs1_xcvr_src", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb_fs1_xcvr_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2237,7 +2295,9 @@ static struct clk_branch usb_fs1_sys_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_fs1_sys_clk",
|
|
||||||
- .parent_names = (const char *[]){ "usb_fs1_xcvr_src", },
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &usb_fs1_xcvr_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT,
|
|
||||||
@@ -2337,7 +2397,7 @@ static struct clk_dyn_rcg gmac_core1_src
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core1_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -2354,8 +2414,8 @@ static struct clk_branch gmac_core1_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core1_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gmac_core1_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gmac_core1_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -2409,7 +2469,7 @@ static struct clk_dyn_rcg gmac_core2_src
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core2_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -2426,8 +2486,8 @@ static struct clk_branch gmac_core2_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core2_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gmac_core2_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gmac_core2_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -2481,7 +2541,7 @@ static struct clk_dyn_rcg gmac_core3_src
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core3_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -2498,8 +2558,8 @@ static struct clk_branch gmac_core3_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core3_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gmac_core3_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gmac_core3_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -2553,7 +2613,7 @@ static struct clk_dyn_rcg gmac_core4_src
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core4_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -2570,8 +2630,8 @@ static struct clk_branch gmac_core4_clk
|
|
||||||
.enable_mask = BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core4_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "gmac_core4_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &gmac_core4_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -2613,7 +2673,7 @@ static struct clk_dyn_rcg nss_tcm_src =
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "nss_tcm_src",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
@@ -2628,8 +2688,8 @@ static struct clk_branch nss_tcm_clk = {
|
|
||||||
.enable_mask = BIT(6) | BIT(4),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "nss_tcm_clk",
|
|
||||||
- .parent_names = (const char *[]){
|
|
||||||
- "nss_tcm_src",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &nss_tcm_src.clkr.hw,
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
@@ -2691,7 +2751,7 @@ static struct clk_dyn_rcg ubi32_core1_sr
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "ubi32_core1_src_clk",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE,
|
|
||||||
@@ -2744,7 +2804,7 @@ static struct clk_dyn_rcg ubi32_core2_sr
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "ubi32_core2_src_clk",
|
|
||||||
- .parent_names = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
.num_parents = 5,
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE,
|
|
@ -1,325 +0,0 @@
|
|||||||
From a6aedd6532131bc81d47bbf63385dfcf2a0e9faa Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:26 +0100
|
|
||||||
Subject: [PATCH 06/14] clk: qcom: gcc-ipq806x: use ARRAY_SIZE for num_parents
|
|
||||||
|
|
||||||
Use ARRAY_SIZE for num_parents instead of hardcoding the value.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-7-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 68 +++++++++++++++++-----------------
|
|
||||||
1 file changed, 34 insertions(+), 34 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -373,7 +373,7 @@ static struct clk_rcg gsbi1_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -424,7 +424,7 @@ static struct clk_rcg gsbi2_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -475,7 +475,7 @@ static struct clk_rcg gsbi4_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -526,7 +526,7 @@ static struct clk_rcg gsbi5_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -577,7 +577,7 @@ static struct clk_rcg gsbi6_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -628,7 +628,7 @@ static struct clk_rcg gsbi7_uart_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_uart_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -692,7 +692,7 @@ static struct clk_rcg gsbi1_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi1_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -743,7 +743,7 @@ static struct clk_rcg gsbi2_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi2_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -794,7 +794,7 @@ static struct clk_rcg gsbi4_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -845,7 +845,7 @@ static struct clk_rcg gsbi5_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi5_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -896,7 +896,7 @@ static struct clk_rcg gsbi6_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi6_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -947,7 +947,7 @@ static struct clk_rcg gsbi7_qup_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi7_qup_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -1099,7 +1099,7 @@ static struct clk_rcg gp0_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp0_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_cxo),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_PARENT_GATE,
|
|
||||||
},
|
|
||||||
@@ -1150,7 +1150,7 @@ static struct clk_rcg gp1_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp1_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_cxo),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -1201,7 +1201,7 @@ static struct clk_rcg gp2_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gp2_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_cxo,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_cxo),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -1257,7 +1257,7 @@ static struct clk_rcg prng_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "prng_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -1321,7 +1321,7 @@ static struct clk_rcg sdc1_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc1_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1371,7 +1371,7 @@ static struct clk_rcg sdc3_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sdc3_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1456,7 +1456,7 @@ static struct clk_rcg tsif_ref_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "tsif_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@@ -1620,7 +1620,7 @@ static struct clk_rcg pcie_ref_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll3,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll3),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -1714,7 +1714,7 @@ static struct clk_rcg pcie1_ref_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie1_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll3,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll3),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -1808,7 +1808,7 @@ static struct clk_rcg pcie2_ref_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "pcie2_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll3,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll3),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -1907,7 +1907,7 @@ static struct clk_rcg sata_ref_src = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "sata_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll3,
|
|
||||||
- .num_parents = 2,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll3),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -2048,7 +2048,7 @@ static struct clk_rcg usb30_master_clk_s
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_master_ref_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -2122,7 +2122,7 @@ static struct clk_rcg usb30_utmi_clk = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb30_utmi_clk",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -2196,7 +2196,7 @@ static struct clk_rcg usb_hs1_xcvr_clk_s
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_hs1_xcvr_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -2262,7 +2262,7 @@ static struct clk_rcg usb_fs1_xcvr_clk_s
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "usb_fs1_xcvr_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll0,
|
|
||||||
- .num_parents = 3,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_GATE,
|
|
||||||
},
|
|
||||||
@@ -2398,7 +2398,7 @@ static struct clk_dyn_rcg gmac_core1_src
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core1_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -2470,7 +2470,7 @@ static struct clk_dyn_rcg gmac_core2_src
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core2_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -2542,7 +2542,7 @@ static struct clk_dyn_rcg gmac_core3_src
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core3_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -2614,7 +2614,7 @@ static struct clk_dyn_rcg gmac_core4_src
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gmac_core4_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -2674,7 +2674,7 @@ static struct clk_dyn_rcg nss_tcm_src =
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "nss_tcm_src",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
@@ -2752,7 +2752,7 @@ static struct clk_dyn_rcg ubi32_core1_sr
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "ubi32_core1_src_clk",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE,
|
|
||||||
},
|
|
||||||
@@ -2805,7 +2805,7 @@ static struct clk_dyn_rcg ubi32_core2_sr
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "ubi32_core2_src_clk",
|
|
||||||
.parent_data = gcc_pxo_pll8_pll14_pll18_pll0,
|
|
||||||
- .num_parents = 5,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll14_pll18_pll0),
|
|
||||||
.ops = &clk_dyn_rcg_ops,
|
|
||||||
.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE,
|
|
||||||
},
|
|
@ -1,88 +0,0 @@
|
|||||||
From 512ea2edfe15ffa2cd839b3a31d768145f2edc20 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:27 +0100
|
|
||||||
Subject: [PATCH 07/14] clk: qcom: gcc-ipq806x: add additional freq nss cores
|
|
||||||
|
|
||||||
Ipq8065 SoC (an evolution of ipq8064 SoC) contains nss cores that can be
|
|
||||||
clocked to 800MHz. Add these missing freq to the gcc driver.
|
|
||||||
Set the freq_tbl for the ubi32_cores to the correct values based on the
|
|
||||||
machine compatible.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-8-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 24 +++++++++++++++++++++---
|
|
||||||
1 file changed, 21 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -232,7 +232,9 @@ static struct clk_regmap pll14_vote = {
|
|
||||||
|
|
||||||
static struct pll_freq_tbl pll18_freq_tbl[] = {
|
|
||||||
NSS_PLL_RATE(550000000, 44, 0, 1, 0x01495625),
|
|
||||||
+ NSS_PLL_RATE(600000000, 48, 0, 1, 0x01495625),
|
|
||||||
NSS_PLL_RATE(733000000, 58, 16, 25, 0x014b5625),
|
|
||||||
+ NSS_PLL_RATE(800000000, 64, 0, 1, 0x01495625),
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct clk_pll pll18 = {
|
|
||||||
@@ -2698,7 +2700,7 @@ static struct clk_branch nss_tcm_clk = {
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const struct freq_tbl clk_tbl_nss[] = {
|
|
||||||
+static const struct freq_tbl clk_tbl_nss_ipq8064[] = {
|
|
||||||
{ 110000000, P_PLL18, 1, 1, 5 },
|
|
||||||
{ 275000000, P_PLL18, 2, 0, 0 },
|
|
||||||
{ 550000000, P_PLL18, 1, 0, 0 },
|
|
||||||
@@ -2706,6 +2708,14 @@ static const struct freq_tbl clk_tbl_nss
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
+static const struct freq_tbl clk_tbl_nss_ipq8065[] = {
|
|
||||||
+ { 110000000, P_PLL18, 1, 1, 5 },
|
|
||||||
+ { 275000000, P_PLL18, 2, 0, 0 },
|
|
||||||
+ { 600000000, P_PLL18, 1, 0, 0 },
|
|
||||||
+ { 800000000, P_PLL18, 1, 0, 0 },
|
|
||||||
+ { }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
static struct clk_dyn_rcg ubi32_core1_src_clk = {
|
|
||||||
.ns_reg[0] = 0x3d2c,
|
|
||||||
.ns_reg[1] = 0x3d30,
|
|
||||||
@@ -2745,7 +2755,7 @@ static struct clk_dyn_rcg ubi32_core1_sr
|
|
||||||
.pre_div_width = 2,
|
|
||||||
},
|
|
||||||
.mux_sel_bit = 0,
|
|
||||||
- .freq_tbl = clk_tbl_nss,
|
|
||||||
+ /* nss freq table is selected based on the SoC compatible */
|
|
||||||
.clkr = {
|
|
||||||
.enable_reg = 0x3d20,
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
@@ -2798,7 +2808,7 @@ static struct clk_dyn_rcg ubi32_core2_sr
|
|
||||||
.pre_div_width = 2,
|
|
||||||
},
|
|
||||||
.mux_sel_bit = 0,
|
|
||||||
- .freq_tbl = clk_tbl_nss,
|
|
||||||
+ /* nss freq table is selected based on the SoC compatible */
|
|
||||||
.clkr = {
|
|
||||||
.enable_reg = 0x3d40,
|
|
||||||
.enable_mask = BIT(1),
|
|
||||||
@@ -3131,6 +3141,14 @@ static int gcc_ipq806x_probe(struct plat
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
+ if (of_machine_is_compatible("qcom,ipq8065")) {
|
|
||||||
+ ubi32_core1_src_clk.freq_tbl = clk_tbl_nss_ipq8065;
|
|
||||||
+ ubi32_core2_src_clk.freq_tbl = clk_tbl_nss_ipq8065;
|
|
||||||
+ } else {
|
|
||||||
+ ubi32_core1_src_clk.freq_tbl = clk_tbl_nss_ipq8064;
|
|
||||||
+ ubi32_core2_src_clk.freq_tbl = clk_tbl_nss_ipq8064;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
ret = qcom_cc_probe(pdev, &gcc_ipq806x_desc);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
@ -1,65 +0,0 @@
|
|||||||
From 28aa450d38e521de45be951df052d2c49a17fae2 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:28 +0100
|
|
||||||
Subject: [PATCH 08/14] clk: qcom: gcc-ipq806x: add unusued flag for critical
|
|
||||||
clock
|
|
||||||
|
|
||||||
Some clocks are used by other devices present on the SoC. For example
|
|
||||||
the gsbi4_h_clk is used by RPM and is if disabled cause the RPM to
|
|
||||||
reject any regulator change command. These clock should never be
|
|
||||||
disabled.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-9-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 9 +++++----
|
|
||||||
1 file changed, 5 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -798,7 +798,7 @@ static struct clk_rcg gsbi4_qup_src = {
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
- .flags = CLK_SET_PARENT_GATE,
|
|
||||||
+ .flags = CLK_SET_PARENT_GATE | CLK_IGNORE_UNUSED,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -816,7 +816,7 @@ static struct clk_branch gsbi4_qup_clk =
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
- .flags = CLK_SET_RATE_PARENT,
|
|
||||||
+ .flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -900,7 +900,7 @@ static struct clk_rcg gsbi6_qup_src = {
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
.ops = &clk_rcg_ops,
|
|
||||||
- .flags = CLK_SET_PARENT_GATE,
|
|
||||||
+ .flags = CLK_SET_PARENT_GATE | CLK_IGNORE_UNUSED,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -969,7 +969,7 @@ static struct clk_branch gsbi7_qup_clk =
|
|
||||||
},
|
|
||||||
.num_parents = 1,
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
- .flags = CLK_SET_RATE_PARENT,
|
|
||||||
+ .flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -1015,6 +1015,7 @@ static struct clk_branch gsbi4_h_clk = {
|
|
||||||
.hw.init = &(struct clk_init_data){
|
|
||||||
.name = "gsbi4_h_clk",
|
|
||||||
.ops = &clk_branch_ops,
|
|
||||||
+ .flags = CLK_IGNORE_UNUSED,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,69 +0,0 @@
|
|||||||
From 33958ad3fc02aeb06a4634e59689a9559d968e1f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:29 +0100
|
|
||||||
Subject: [PATCH 09/14] clk: qcom: clk-rcg: add clk_rcg_floor_ops ops
|
|
||||||
|
|
||||||
Add clk_rcg_floor_ops for clock that can't provide a stable freq and
|
|
||||||
require to use a floor freq to provide the requested frequency.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-10-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/clk-rcg.c | 24 ++++++++++++++++++++++++
|
|
||||||
drivers/clk/qcom/clk-rcg.h | 1 +
|
|
||||||
2 files changed, 25 insertions(+)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/clk-rcg.c
|
|
||||||
+++ b/drivers/clk/qcom/clk-rcg.c
|
|
||||||
@@ -526,6 +526,19 @@ static int clk_rcg_set_rate(struct clk_h
|
|
||||||
return __clk_rcg_set_rate(rcg, f);
|
|
||||||
}
|
|
||||||
|
|
||||||
+static int clk_rcg_set_floor_rate(struct clk_hw *hw, unsigned long rate,
|
|
||||||
+ unsigned long parent_rate)
|
|
||||||
+{
|
|
||||||
+ struct clk_rcg *rcg = to_clk_rcg(hw);
|
|
||||||
+ const struct freq_tbl *f;
|
|
||||||
+
|
|
||||||
+ f = qcom_find_freq_floor(rcg->freq_tbl, rate);
|
|
||||||
+ if (!f)
|
|
||||||
+ return -EINVAL;
|
|
||||||
+
|
|
||||||
+ return __clk_rcg_set_rate(rcg, f);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static int clk_rcg_bypass_set_rate(struct clk_hw *hw, unsigned long rate,
|
|
||||||
unsigned long parent_rate)
|
|
||||||
{
|
|
||||||
@@ -816,6 +829,17 @@ const struct clk_ops clk_rcg_ops = {
|
|
||||||
};
|
|
||||||
EXPORT_SYMBOL_GPL(clk_rcg_ops);
|
|
||||||
|
|
||||||
+const struct clk_ops clk_rcg_floor_ops = {
|
|
||||||
+ .enable = clk_enable_regmap,
|
|
||||||
+ .disable = clk_disable_regmap,
|
|
||||||
+ .get_parent = clk_rcg_get_parent,
|
|
||||||
+ .set_parent = clk_rcg_set_parent,
|
|
||||||
+ .recalc_rate = clk_rcg_recalc_rate,
|
|
||||||
+ .determine_rate = clk_rcg_determine_rate,
|
|
||||||
+ .set_rate = clk_rcg_set_floor_rate,
|
|
||||||
+};
|
|
||||||
+EXPORT_SYMBOL_GPL(clk_rcg_floor_ops);
|
|
||||||
+
|
|
||||||
const struct clk_ops clk_rcg_bypass_ops = {
|
|
||||||
.enable = clk_enable_regmap,
|
|
||||||
.disable = clk_disable_regmap,
|
|
||||||
--- a/drivers/clk/qcom/clk-rcg.h
|
|
||||||
+++ b/drivers/clk/qcom/clk-rcg.h
|
|
||||||
@@ -86,6 +86,7 @@ struct clk_rcg {
|
|
||||||
};
|
|
||||||
|
|
||||||
extern const struct clk_ops clk_rcg_ops;
|
|
||||||
+extern const struct clk_ops clk_rcg_floor_ops;
|
|
||||||
extern const struct clk_ops clk_rcg_bypass_ops;
|
|
||||||
extern const struct clk_ops clk_rcg_bypass2_ops;
|
|
||||||
extern const struct clk_ops clk_rcg_pixel_ops;
|
|
@ -1,38 +0,0 @@
|
|||||||
From 7e726f34c782b2ca28a29ca9870e34e4319d65bc Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:30 +0100
|
|
||||||
Subject: [PATCH 10/14] clk: qcom: gcc-ipq806x: add additional freq for sdc
|
|
||||||
table
|
|
||||||
|
|
||||||
Add additional freq supported for the sdc table. The ops are changed to
|
|
||||||
the floor_ops to handle a freq request of 52kHz where we need to provide
|
|
||||||
a freq of 51.2kHz instead for stability reason.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-11-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -1292,6 +1292,7 @@ static const struct freq_tbl clk_tbl_sdc
|
|
||||||
{ 20210000, P_PLL8, 1, 1, 19 },
|
|
||||||
{ 24000000, P_PLL8, 4, 1, 4 },
|
|
||||||
{ 48000000, P_PLL8, 4, 1, 2 },
|
|
||||||
+ { 51200000, P_PLL8, 1, 2, 15 },
|
|
||||||
{ 64000000, P_PLL8, 3, 1, 2 },
|
|
||||||
{ 96000000, P_PLL8, 4, 0, 0 },
|
|
||||||
{ 192000000, P_PLL8, 2, 0, 0 },
|
|
||||||
@@ -1325,7 +1326,7 @@ static struct clk_rcg sdc1_src = {
|
|
||||||
.name = "sdc1_src",
|
|
||||||
.parent_data = gcc_pxo_pll8,
|
|
||||||
.num_parents = ARRAY_SIZE(gcc_pxo_pll8),
|
|
||||||
- .ops = &clk_rcg_ops,
|
|
||||||
+ .ops = &clk_rcg_floor_ops,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,39 +0,0 @@
|
|||||||
From b565d66403e3df303a058c0d8d00d0fc6aeb2ddc Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:31 +0100
|
|
||||||
Subject: [PATCH 11/14] dt-bindings: clock: add ipq8064 ce5 clk define
|
|
||||||
|
|
||||||
Add ipq8064 ce5 clk define needed for CryptoEngine in gcc driver.
|
|
||||||
Define CE5_SRC is not used so it's OK to change and we align it to
|
|
||||||
the QSDK naming.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Acked-by: Rob Herring <robh@kernel.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-12-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
include/dt-bindings/clock/qcom,gcc-ipq806x.h | 5 ++++-
|
|
||||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/include/dt-bindings/clock/qcom,gcc-ipq806x.h
|
|
||||||
+++ b/include/dt-bindings/clock/qcom,gcc-ipq806x.h
|
|
||||||
@@ -240,7 +240,7 @@
|
|
||||||
#define PLL14 232
|
|
||||||
#define PLL14_VOTE 233
|
|
||||||
#define PLL18 234
|
|
||||||
-#define CE5_SRC 235
|
|
||||||
+#define CE5_A_CLK 235
|
|
||||||
#define CE5_H_CLK 236
|
|
||||||
#define CE5_CORE_CLK 237
|
|
||||||
#define CE3_SLEEP_CLK 238
|
|
||||||
@@ -283,5 +283,8 @@
|
|
||||||
#define EBI2_AON_CLK 281
|
|
||||||
#define NSSTCM_CLK_SRC 282
|
|
||||||
#define NSSTCM_CLK 283
|
|
||||||
+#define CE5_A_CLK_SRC 285
|
|
||||||
+#define CE5_H_CLK_SRC 286
|
|
||||||
+#define CE5_CORE_CLK_SRC 287
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,304 +0,0 @@
|
|||||||
From b293510f3961b90dcab59965f57779be93ceda7c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:32 +0100
|
|
||||||
Subject: [PATCH 12/14] clk: qcom: gcc-ipq806x: add CryptoEngine clocks
|
|
||||||
|
|
||||||
Add missing CryptoEngine clocks and pll11 required clock.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-13-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 244 +++++++++++++++++++++++++++++++++
|
|
||||||
1 file changed, 244 insertions(+)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -256,6 +256,24 @@ static struct clk_pll pll18 = {
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
+static struct clk_pll pll11 = {
|
|
||||||
+ .l_reg = 0x3184,
|
|
||||||
+ .m_reg = 0x3188,
|
|
||||||
+ .n_reg = 0x318c,
|
|
||||||
+ .config_reg = 0x3194,
|
|
||||||
+ .mode_reg = 0x3180,
|
|
||||||
+ .status_reg = 0x3198,
|
|
||||||
+ .status_bit = 16,
|
|
||||||
+ .clkr.hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "pll11",
|
|
||||||
+ .parent_data = &(const struct clk_parent_data){
|
|
||||||
+ .fw_name = "pxo",
|
|
||||||
+ },
|
|
||||||
+ .num_parents = 1,
|
|
||||||
+ .ops = &clk_pll_ops,
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
enum {
|
|
||||||
P_PXO,
|
|
||||||
P_PLL8,
|
|
||||||
@@ -264,6 +282,7 @@ enum {
|
|
||||||
P_CXO,
|
|
||||||
P_PLL14,
|
|
||||||
P_PLL18,
|
|
||||||
+ P_PLL11,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct parent_map gcc_pxo_pll8_map[] = {
|
|
||||||
@@ -331,6 +350,44 @@ static const struct clk_parent_data gcc_
|
|
||||||
{ .hw = &pll18.clkr.hw },
|
|
||||||
};
|
|
||||||
|
|
||||||
+static const struct parent_map gcc_pxo_pll8_pll0_pll14_pll18_pll11_map[] = {
|
|
||||||
+ { P_PXO, 0 },
|
|
||||||
+ { P_PLL8, 4 },
|
|
||||||
+ { P_PLL0, 2 },
|
|
||||||
+ { P_PLL14, 5 },
|
|
||||||
+ { P_PLL18, 1 },
|
|
||||||
+ { P_PLL11, 3 },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll8_pll0_pll14_pll18_pll11[] = {
|
|
||||||
+ { .fw_name = "pxo" },
|
|
||||||
+ { .hw = &pll8_vote.hw },
|
|
||||||
+ { .hw = &pll0_vote.hw },
|
|
||||||
+ { .hw = &pll14.clkr.hw },
|
|
||||||
+ { .hw = &pll18.clkr.hw },
|
|
||||||
+ { .hw = &pll11.clkr.hw },
|
|
||||||
+
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static const struct parent_map gcc_pxo_pll3_pll0_pll14_pll18_pll11_map[] = {
|
|
||||||
+ { P_PXO, 0 },
|
|
||||||
+ { P_PLL3, 6 },
|
|
||||||
+ { P_PLL0, 2 },
|
|
||||||
+ { P_PLL14, 5 },
|
|
||||||
+ { P_PLL18, 1 },
|
|
||||||
+ { P_PLL11, 3 },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static const struct clk_parent_data gcc_pxo_pll3_pll0_pll14_pll18_pll11[] = {
|
|
||||||
+ { .fw_name = "pxo" },
|
|
||||||
+ { .hw = &pll3.clkr.hw },
|
|
||||||
+ { .hw = &pll0_vote.hw },
|
|
||||||
+ { .hw = &pll14.clkr.hw },
|
|
||||||
+ { .hw = &pll18.clkr.hw },
|
|
||||||
+ { .hw = &pll11.clkr.hw },
|
|
||||||
+
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
static struct freq_tbl clk_tbl_gsbi_uart[] = {
|
|
||||||
{ 1843200, P_PLL8, 2, 6, 625 },
|
|
||||||
{ 3686400, P_PLL8, 2, 12, 625 },
|
|
||||||
@@ -2824,6 +2881,186 @@ static struct clk_dyn_rcg ubi32_core2_sr
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
+static const struct freq_tbl clk_tbl_ce5_core[] = {
|
|
||||||
+ { 150000000, P_PLL3, 8, 1, 1 },
|
|
||||||
+ { 213200000, P_PLL11, 5, 1, 1 },
|
|
||||||
+ { }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_dyn_rcg ce5_core_src = {
|
|
||||||
+ .ns_reg[0] = 0x36C4,
|
|
||||||
+ .ns_reg[1] = 0x36C8,
|
|
||||||
+ .bank_reg = 0x36C0,
|
|
||||||
+ .s[0] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll3_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .s[1] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll3_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .p[0] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .p[1] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .mux_sel_bit = 0,
|
|
||||||
+ .freq_tbl = clk_tbl_ce5_core,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x36C0,
|
|
||||||
+ .enable_mask = BIT(1),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_core_src",
|
|
||||||
+ .parent_data = gcc_pxo_pll3_pll0_pll14_pll18_pll11,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll3_pll0_pll14_pll18_pll11),
|
|
||||||
+ .ops = &clk_dyn_rcg_ops,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_branch ce5_core_clk = {
|
|
||||||
+ .halt_reg = 0x2FDC,
|
|
||||||
+ .halt_bit = 5,
|
|
||||||
+ .hwcg_reg = 0x36CC,
|
|
||||||
+ .hwcg_bit = 6,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x36CC,
|
|
||||||
+ .enable_mask = BIT(4),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_core_clk",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &ce5_core_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
+ .num_parents = 1,
|
|
||||||
+ .ops = &clk_branch_ops,
|
|
||||||
+ .flags = CLK_SET_RATE_PARENT,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static const struct freq_tbl clk_tbl_ce5_a_clk[] = {
|
|
||||||
+ { 160000000, P_PLL0, 5, 1, 1 },
|
|
||||||
+ { 213200000, P_PLL11, 5, 1, 1 },
|
|
||||||
+ { }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_dyn_rcg ce5_a_clk_src = {
|
|
||||||
+ .ns_reg[0] = 0x3d84,
|
|
||||||
+ .ns_reg[1] = 0x3d88,
|
|
||||||
+ .bank_reg = 0x3d80,
|
|
||||||
+ .s[0] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .s[1] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .p[0] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .p[1] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .mux_sel_bit = 0,
|
|
||||||
+ .freq_tbl = clk_tbl_ce5_a_clk,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x3d80,
|
|
||||||
+ .enable_mask = BIT(1),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_a_clk_src",
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0_pll14_pll18_pll11,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0_pll14_pll18_pll11),
|
|
||||||
+ .ops = &clk_dyn_rcg_ops,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_branch ce5_a_clk = {
|
|
||||||
+ .halt_reg = 0x3c20,
|
|
||||||
+ .halt_bit = 12,
|
|
||||||
+ .hwcg_reg = 0x3d8c,
|
|
||||||
+ .hwcg_bit = 6,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x3d8c,
|
|
||||||
+ .enable_mask = BIT(4),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_a_clk",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &ce5_a_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
+ .num_parents = 1,
|
|
||||||
+ .ops = &clk_branch_ops,
|
|
||||||
+ .flags = CLK_SET_RATE_PARENT,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static const struct freq_tbl clk_tbl_ce5_h_clk[] = {
|
|
||||||
+ { 160000000, P_PLL0, 5, 1, 1 },
|
|
||||||
+ { 213200000, P_PLL11, 5, 1, 1 },
|
|
||||||
+ { }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_dyn_rcg ce5_h_clk_src = {
|
|
||||||
+ .ns_reg[0] = 0x3c64,
|
|
||||||
+ .ns_reg[1] = 0x3c68,
|
|
||||||
+ .bank_reg = 0x3c60,
|
|
||||||
+ .s[0] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .s[1] = {
|
|
||||||
+ .src_sel_shift = 0,
|
|
||||||
+ .parent_map = gcc_pxo_pll8_pll0_pll14_pll18_pll11_map,
|
|
||||||
+ },
|
|
||||||
+ .p[0] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .p[1] = {
|
|
||||||
+ .pre_div_shift = 3,
|
|
||||||
+ .pre_div_width = 4,
|
|
||||||
+ },
|
|
||||||
+ .mux_sel_bit = 0,
|
|
||||||
+ .freq_tbl = clk_tbl_ce5_h_clk,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x3c60,
|
|
||||||
+ .enable_mask = BIT(1),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_h_clk_src",
|
|
||||||
+ .parent_data = gcc_pxo_pll8_pll0_pll14_pll18_pll11,
|
|
||||||
+ .num_parents = ARRAY_SIZE(gcc_pxo_pll8_pll0_pll14_pll18_pll11),
|
|
||||||
+ .ops = &clk_dyn_rcg_ops,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static struct clk_branch ce5_h_clk = {
|
|
||||||
+ .halt_reg = 0x3c20,
|
|
||||||
+ .halt_bit = 11,
|
|
||||||
+ .hwcg_reg = 0x3c6c,
|
|
||||||
+ .hwcg_bit = 6,
|
|
||||||
+ .clkr = {
|
|
||||||
+ .enable_reg = 0x3c6c,
|
|
||||||
+ .enable_mask = BIT(4),
|
|
||||||
+ .hw.init = &(struct clk_init_data){
|
|
||||||
+ .name = "ce5_h_clk",
|
|
||||||
+ .parent_hws = (const struct clk_hw*[]){
|
|
||||||
+ &ce5_h_clk_src.clkr.hw,
|
|
||||||
+ },
|
|
||||||
+ .num_parents = 1,
|
|
||||||
+ .ops = &clk_branch_ops,
|
|
||||||
+ .flags = CLK_SET_RATE_PARENT,
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
static struct clk_regmap *gcc_ipq806x_clks[] = {
|
|
||||||
[PLL0] = &pll0.clkr,
|
|
||||||
[PLL0_VOTE] = &pll0_vote,
|
|
||||||
@@ -2831,6 +3068,7 @@ static struct clk_regmap *gcc_ipq806x_cl
|
|
||||||
[PLL4_VOTE] = &pll4_vote,
|
|
||||||
[PLL8] = &pll8.clkr,
|
|
||||||
[PLL8_VOTE] = &pll8_vote,
|
|
||||||
+ [PLL11] = &pll11.clkr,
|
|
||||||
[PLL14] = &pll14.clkr,
|
|
||||||
[PLL14_VOTE] = &pll14_vote,
|
|
||||||
[PLL18] = &pll18.clkr,
|
|
||||||
@@ -2945,6 +3183,12 @@ static struct clk_regmap *gcc_ipq806x_cl
|
|
||||||
[PLL9] = &hfpll0.clkr,
|
|
||||||
[PLL10] = &hfpll1.clkr,
|
|
||||||
[PLL12] = &hfpll_l2.clkr,
|
|
||||||
+ [CE5_A_CLK_SRC] = &ce5_a_clk_src.clkr,
|
|
||||||
+ [CE5_A_CLK] = &ce5_a_clk.clkr,
|
|
||||||
+ [CE5_H_CLK_SRC] = &ce5_h_clk_src.clkr,
|
|
||||||
+ [CE5_H_CLK] = &ce5_h_clk.clkr,
|
|
||||||
+ [CE5_CORE_CLK_SRC] = &ce5_core_src.clkr,
|
|
||||||
+ [CE5_CORE_CLK] = &ce5_core_clk.clkr,
|
|
||||||
};
|
|
||||||
|
|
||||||
static const struct qcom_reset_map gcc_ipq806x_resets[] = {
|
|
@ -1,29 +0,0 @@
|
|||||||
From f4a7e56f4956f0450b9f671ed93d45ffcc15aa62 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Tue, 18 Jan 2022 01:22:05 +0100
|
|
||||||
Subject: [PATCH v6 13/15] dt-bindings: reset: add ipq8064 ce5 resets
|
|
||||||
|
|
||||||
Add ipq8064 ce5 resets needed for CryptoEngine gcc driver.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
|
|
||||||
Acked-by: Rob Herring <robh@kernel.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
---
|
|
||||||
include/dt-bindings/reset/qcom,gcc-ipq806x.h | 5 +++++
|
|
||||||
1 file changed, 5 insertions(+)
|
|
||||||
|
|
||||||
--- a/include/dt-bindings/reset/qcom,gcc-ipq806x.h
|
|
||||||
+++ b/include/dt-bindings/reset/qcom,gcc-ipq806x.h
|
|
||||||
@@ -163,5 +163,10 @@
|
|
||||||
#define NSS_CAL_PRBS_RST_N_RESET 154
|
|
||||||
#define NSS_LCKDT_RST_N_RESET 155
|
|
||||||
#define NSS_SRDS_N_RESET 156
|
|
||||||
+#define CRYPTO_ENG1_RESET 157
|
|
||||||
+#define CRYPTO_ENG2_RESET 158
|
|
||||||
+#define CRYPTO_ENG3_RESET 159
|
|
||||||
+#define CRYPTO_ENG4_RESET 160
|
|
||||||
+#define CRYPTO_AHB_RESET 161
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,30 +0,0 @@
|
|||||||
From 4f865bdcb44fb18951de94be5c2ec37a891a8d03 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:34 +0100
|
|
||||||
Subject: [PATCH 14/14] clk: qcom: gcc-ipq806x: add CryptoEngine resets
|
|
||||||
|
|
||||||
Add missing CryptoEngine resets.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-15-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
drivers/clk/qcom/gcc-ipq806x.c | 5 +++++
|
|
||||||
1 file changed, 5 insertions(+)
|
|
||||||
|
|
||||||
--- a/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
+++ b/drivers/clk/qcom/gcc-ipq806x.c
|
|
||||||
@@ -3320,6 +3320,11 @@ static const struct qcom_reset_map gcc_i
|
|
||||||
[GMAC_CORE3_RESET] = { 0x3cfc, 0 },
|
|
||||||
[GMAC_CORE4_RESET] = { 0x3d1c, 0 },
|
|
||||||
[GMAC_AHB_RESET] = { 0x3e24, 0 },
|
|
||||||
+ [CRYPTO_ENG1_RESET] = { 0x3e00, 0},
|
|
||||||
+ [CRYPTO_ENG2_RESET] = { 0x3e04, 0},
|
|
||||||
+ [CRYPTO_ENG3_RESET] = { 0x3e08, 0},
|
|
||||||
+ [CRYPTO_ENG4_RESET] = { 0x3e0c, 0},
|
|
||||||
+ [CRYPTO_AHB_RESET] = { 0x3e10, 0},
|
|
||||||
[NSS_CH0_RST_RX_CLK_N_RESET] = { 0x3b60, 0 },
|
|
||||||
[NSS_CH0_RST_TX_CLK_N_RESET] = { 0x3b60, 1 },
|
|
||||||
[NSS_CH0_RST_RX_125M_N_RESET] = { 0x3b60, 2 },
|
|
@ -1,151 +0,0 @@
|
|||||||
From 9ec092d2feb69045dd289845024301fb91c064ee Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian 'Ansuel' Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Tue, 14 Jun 2022 13:22:27 +0200
|
|
||||||
Subject: [PATCH 1/2] net: ethernet: stmmac: add missing sgmii configure for
|
|
||||||
ipq806x
|
|
||||||
|
|
||||||
The different gmacid require different configuration based on the soc
|
|
||||||
and on the gmac id. Add these missing configuration taken from the
|
|
||||||
original driver.
|
|
||||||
|
|
||||||
Signed-off-by: Christian 'Ansuel' Marangi <ansuelsmth@gmail.com>
|
|
||||||
Link: https://lore.kernel.org/r/20220614112228.1998-1-ansuelsmth@gmail.com
|
|
||||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/net/ethernet/stmicro/stmmac/Kconfig | 1 +
|
|
||||||
.../ethernet/stmicro/stmmac/dwmac-ipq806x.c | 93 +++++++++++++++----
|
|
||||||
2 files changed, 78 insertions(+), 16 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/net/ethernet/stmicro/stmmac/Kconfig
|
|
||||||
+++ b/drivers/net/ethernet/stmicro/stmmac/Kconfig
|
|
||||||
@@ -83,6 +83,7 @@ config DWMAC_IPQ806X
|
|
||||||
default ARCH_QCOM
|
|
||||||
depends on OF && (ARCH_QCOM || COMPILE_TEST)
|
|
||||||
select MFD_SYSCON
|
|
||||||
+ select QCOM_SOCINFO
|
|
||||||
help
|
|
||||||
Support for QCA IPQ806X DWMAC Ethernet.
|
|
||||||
|
|
||||||
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
|
|
||||||
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
|
|
||||||
@@ -27,6 +27,8 @@
|
|
||||||
#include <linux/stmmac.h>
|
|
||||||
#include <linux/of_mdio.h>
|
|
||||||
#include <linux/module.h>
|
|
||||||
+#include <linux/sys_soc.h>
|
|
||||||
+#include <linux/bitfield.h>
|
|
||||||
|
|
||||||
#include "stmmac_platform.h"
|
|
||||||
|
|
||||||
@@ -75,11 +77,20 @@
|
|
||||||
#define QSGMII_PHY_RX_SIGNAL_DETECT_EN BIT(2)
|
|
||||||
#define QSGMII_PHY_TX_DRIVER_EN BIT(3)
|
|
||||||
#define QSGMII_PHY_QSGMII_EN BIT(7)
|
|
||||||
-#define QSGMII_PHY_PHASE_LOOP_GAIN_OFFSET 12
|
|
||||||
-#define QSGMII_PHY_RX_DC_BIAS_OFFSET 18
|
|
||||||
-#define QSGMII_PHY_RX_INPUT_EQU_OFFSET 20
|
|
||||||
-#define QSGMII_PHY_CDR_PI_SLEW_OFFSET 22
|
|
||||||
-#define QSGMII_PHY_TX_DRV_AMP_OFFSET 28
|
|
||||||
+#define QSGMII_PHY_DEEMPHASIS_LVL_MASK GENMASK(11, 10)
|
|
||||||
+#define QSGMII_PHY_DEEMPHASIS_LVL(x) FIELD_PREP(QSGMII_PHY_DEEMPHASIS_LVL_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_PHASE_LOOP_GAIN_MASK GENMASK(14, 12)
|
|
||||||
+#define QSGMII_PHY_PHASE_LOOP_GAIN(x) FIELD_PREP(QSGMII_PHY_PHASE_LOOP_GAIN_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_RX_DC_BIAS_MASK GENMASK(19, 18)
|
|
||||||
+#define QSGMII_PHY_RX_DC_BIAS(x) FIELD_PREP(QSGMII_PHY_RX_DC_BIAS_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_RX_INPUT_EQU_MASK GENMASK(21, 20)
|
|
||||||
+#define QSGMII_PHY_RX_INPUT_EQU(x) FIELD_PREP(QSGMII_PHY_RX_INPUT_EQU_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_CDR_PI_SLEW_MASK GENMASK(23, 22)
|
|
||||||
+#define QSGMII_PHY_CDR_PI_SLEW(x) FIELD_PREP(QSGMII_PHY_CDR_PI_SLEW_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_TX_SLEW_MASK GENMASK(27, 26)
|
|
||||||
+#define QSGMII_PHY_TX_SLEW(x) FIELD_PREP(QSGMII_PHY_TX_SLEW_MASK, (x))
|
|
||||||
+#define QSGMII_PHY_TX_DRV_AMP_MASK GENMASK(31, 28)
|
|
||||||
+#define QSGMII_PHY_TX_DRV_AMP(x) FIELD_PREP(QSGMII_PHY_TX_DRV_AMP_MASK, (x))
|
|
||||||
|
|
||||||
struct ipq806x_gmac {
|
|
||||||
struct platform_device *pdev;
|
|
||||||
@@ -242,6 +253,64 @@ static void ipq806x_gmac_fix_mac_speed(v
|
|
||||||
ipq806x_gmac_set_speed(gmac, speed);
|
|
||||||
}
|
|
||||||
|
|
||||||
+static const struct soc_device_attribute ipq806x_gmac_soc_v1[] = {
|
|
||||||
+ {
|
|
||||||
+ .revision = "1.*",
|
|
||||||
+ },
|
|
||||||
+ {
|
|
||||||
+ /* sentinel */
|
|
||||||
+ }
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
+static int
|
|
||||||
+ipq806x_gmac_configure_qsgmii_params(struct ipq806x_gmac *gmac)
|
|
||||||
+{
|
|
||||||
+ struct platform_device *pdev = gmac->pdev;
|
|
||||||
+ const struct soc_device_attribute *soc;
|
|
||||||
+ struct device *dev = &pdev->dev;
|
|
||||||
+ u32 qsgmii_param;
|
|
||||||
+
|
|
||||||
+ switch (gmac->id) {
|
|
||||||
+ case 1:
|
|
||||||
+ soc = soc_device_match(ipq806x_gmac_soc_v1);
|
|
||||||
+
|
|
||||||
+ if (soc)
|
|
||||||
+ qsgmii_param = QSGMII_PHY_TX_DRV_AMP(0xc) |
|
|
||||||
+ QSGMII_PHY_TX_SLEW(0x2) |
|
|
||||||
+ QSGMII_PHY_DEEMPHASIS_LVL(0x2);
|
|
||||||
+ else
|
|
||||||
+ qsgmii_param = QSGMII_PHY_TX_DRV_AMP(0xd) |
|
|
||||||
+ QSGMII_PHY_TX_SLEW(0x0) |
|
|
||||||
+ QSGMII_PHY_DEEMPHASIS_LVL(0x0);
|
|
||||||
+
|
|
||||||
+ qsgmii_param |= QSGMII_PHY_RX_DC_BIAS(0x2);
|
|
||||||
+ break;
|
|
||||||
+ case 2:
|
|
||||||
+ case 3:
|
|
||||||
+ qsgmii_param = QSGMII_PHY_RX_DC_BIAS(0x3) |
|
|
||||||
+ QSGMII_PHY_TX_DRV_AMP(0xc);
|
|
||||||
+ break;
|
|
||||||
+ default: /* gmac 0 can't be set in SGMII mode */
|
|
||||||
+ dev_err(dev, "gmac id %d can't be in SGMII mode", gmac->id);
|
|
||||||
+ return -EINVAL;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ /* Common params across all gmac id */
|
|
||||||
+ qsgmii_param |= QSGMII_PHY_CDR_EN |
|
|
||||||
+ QSGMII_PHY_RX_FRONT_EN |
|
|
||||||
+ QSGMII_PHY_RX_SIGNAL_DETECT_EN |
|
|
||||||
+ QSGMII_PHY_TX_DRIVER_EN |
|
|
||||||
+ QSGMII_PHY_QSGMII_EN |
|
|
||||||
+ QSGMII_PHY_PHASE_LOOP_GAIN(0x4) |
|
|
||||||
+ QSGMII_PHY_RX_INPUT_EQU(0x1) |
|
|
||||||
+ QSGMII_PHY_CDR_PI_SLEW(0x2);
|
|
||||||
+
|
|
||||||
+ regmap_write(gmac->qsgmii_csr, QSGMII_PHY_SGMII_CTL(gmac->id),
|
|
||||||
+ qsgmii_param);
|
|
||||||
+
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static int ipq806x_gmac_probe(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
struct plat_stmmacenet_data *plat_dat;
|
|
||||||
@@ -328,17 +397,9 @@ static int ipq806x_gmac_probe(struct pla
|
|
||||||
regmap_write(gmac->nss_common, NSS_COMMON_CLK_GATE, val);
|
|
||||||
|
|
||||||
if (gmac->phy_mode == PHY_INTERFACE_MODE_SGMII) {
|
|
||||||
- regmap_write(gmac->qsgmii_csr, QSGMII_PHY_SGMII_CTL(gmac->id),
|
|
||||||
- QSGMII_PHY_CDR_EN |
|
|
||||||
- QSGMII_PHY_RX_FRONT_EN |
|
|
||||||
- QSGMII_PHY_RX_SIGNAL_DETECT_EN |
|
|
||||||
- QSGMII_PHY_TX_DRIVER_EN |
|
|
||||||
- QSGMII_PHY_QSGMII_EN |
|
|
||||||
- 0x4ul << QSGMII_PHY_PHASE_LOOP_GAIN_OFFSET |
|
|
||||||
- 0x3ul << QSGMII_PHY_RX_DC_BIAS_OFFSET |
|
|
||||||
- 0x1ul << QSGMII_PHY_RX_INPUT_EQU_OFFSET |
|
|
||||||
- 0x2ul << QSGMII_PHY_CDR_PI_SLEW_OFFSET |
|
|
||||||
- 0xCul << QSGMII_PHY_TX_DRV_AMP_OFFSET);
|
|
||||||
+ err = ipq806x_gmac_configure_qsgmii_params(gmac);
|
|
||||||
+ if (err)
|
|
||||||
+ goto err_remove_config_dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
plat_dat->has_gmac = true;
|
|
@ -1,110 +0,0 @@
|
|||||||
From 8bca458990dd8c6d001b2fb52063aa18e8ca7444 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian 'Ansuel' Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Tue, 14 Jun 2022 13:22:28 +0200
|
|
||||||
Subject: [PATCH 2/2] net: ethernet: stmmac: reset force speed bit for ipq806x
|
|
||||||
|
|
||||||
Some bootloader may set the force speed regs even if the actual
|
|
||||||
interface should use autonegotiation between PCS and PHY.
|
|
||||||
This cause the complete malfuction of the interface.
|
|
||||||
|
|
||||||
To fix this correctly reset the force speed regs if a fixed-link is not
|
|
||||||
defined in the DTS. With a fixed-link node correctly configure the
|
|
||||||
forced speed regs to handle any misconfiguration by the bootloader.
|
|
||||||
|
|
||||||
Reported-by: Mark Mentovai <mark@moxienet.com>
|
|
||||||
Co-developed-by: Mark Mentovai <mark@moxienet.com>
|
|
||||||
Signed-off-by: Mark Mentovai <mark@moxienet.com>
|
|
||||||
Signed-off-by: Christian 'Ansuel' Marangi <ansuelsmth@gmail.com>
|
|
||||||
Link: https://lore.kernel.org/r/20220614112228.1998-2-ansuelsmth@gmail.com
|
|
||||||
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
|
||||||
---
|
|
||||||
.../ethernet/stmicro/stmmac/dwmac-ipq806x.c | 64 +++++++++++++++++++
|
|
||||||
1 file changed, 64 insertions(+)
|
|
||||||
|
|
||||||
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
|
|
||||||
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
|
|
||||||
@@ -66,6 +66,17 @@
|
|
||||||
#define NSS_COMMON_CLK_DIV_SGMII_100 4
|
|
||||||
#define NSS_COMMON_CLK_DIV_SGMII_10 49
|
|
||||||
|
|
||||||
+#define QSGMII_PCS_ALL_CH_CTL 0x80
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_FORCE BIT(1)
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_10 0x0
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_100 BIT(2)
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_1000 BIT(3)
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_MASK (QSGMII_PCS_CH_SPEED_FORCE | \
|
|
||||||
+ QSGMII_PCS_CH_SPEED_10 | \
|
|
||||||
+ QSGMII_PCS_CH_SPEED_100 | \
|
|
||||||
+ QSGMII_PCS_CH_SPEED_1000)
|
|
||||||
+#define QSGMII_PCS_CH_SPEED_SHIFT(x) ((x) * 4)
|
|
||||||
+
|
|
||||||
#define QSGMII_PCS_CAL_LCKDT_CTL 0x120
|
|
||||||
#define QSGMII_PCS_CAL_LCKDT_CTL_RST BIT(19)
|
|
||||||
|
|
||||||
@@ -253,6 +264,55 @@ static void ipq806x_gmac_fix_mac_speed(v
|
|
||||||
ipq806x_gmac_set_speed(gmac, speed);
|
|
||||||
}
|
|
||||||
|
|
||||||
+static int
|
|
||||||
+ipq806x_gmac_configure_qsgmii_pcs_speed(struct ipq806x_gmac *gmac)
|
|
||||||
+{
|
|
||||||
+ struct platform_device *pdev = gmac->pdev;
|
|
||||||
+ struct device *dev = &pdev->dev;
|
|
||||||
+ struct device_node *dn;
|
|
||||||
+ int link_speed;
|
|
||||||
+ int val = 0;
|
|
||||||
+ int ret;
|
|
||||||
+
|
|
||||||
+ /* Some bootloader may apply wrong configuration and cause
|
|
||||||
+ * not functioning port. If fixed link is not set,
|
|
||||||
+ * reset the force speed bit.
|
|
||||||
+ */
|
|
||||||
+ if (!of_phy_is_fixed_link(pdev->dev.of_node))
|
|
||||||
+ goto write;
|
|
||||||
+
|
|
||||||
+ dn = of_get_child_by_name(pdev->dev.of_node, "fixed-link");
|
|
||||||
+ ret = of_property_read_u32(dn, "speed", &link_speed);
|
|
||||||
+ of_node_put(dn);
|
|
||||||
+ if (ret) {
|
|
||||||
+ dev_err(dev, "found fixed-link node with no speed");
|
|
||||||
+ return ret;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ val = QSGMII_PCS_CH_SPEED_FORCE;
|
|
||||||
+
|
|
||||||
+ switch (link_speed) {
|
|
||||||
+ case SPEED_1000:
|
|
||||||
+ val |= QSGMII_PCS_CH_SPEED_1000;
|
|
||||||
+ break;
|
|
||||||
+ case SPEED_100:
|
|
||||||
+ val |= QSGMII_PCS_CH_SPEED_100;
|
|
||||||
+ break;
|
|
||||||
+ case SPEED_10:
|
|
||||||
+ val |= QSGMII_PCS_CH_SPEED_10;
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+write:
|
|
||||||
+ regmap_update_bits(gmac->qsgmii_csr, QSGMII_PCS_ALL_CH_CTL,
|
|
||||||
+ QSGMII_PCS_CH_SPEED_MASK <<
|
|
||||||
+ QSGMII_PCS_CH_SPEED_SHIFT(gmac->id),
|
|
||||||
+ val <<
|
|
||||||
+ QSGMII_PCS_CH_SPEED_SHIFT(gmac->id));
|
|
||||||
+
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static const struct soc_device_attribute ipq806x_gmac_soc_v1[] = {
|
|
||||||
{
|
|
||||||
.revision = "1.*",
|
|
||||||
@@ -400,6 +460,10 @@ static int ipq806x_gmac_probe(struct pla
|
|
||||||
err = ipq806x_gmac_configure_qsgmii_params(gmac);
|
|
||||||
if (err)
|
|
||||||
goto err_remove_config_dt;
|
|
||||||
+
|
|
||||||
+ err = ipq806x_gmac_configure_qsgmii_pcs_speed(gmac);
|
|
||||||
+ if (err)
|
|
||||||
+ goto err_remove_config_dt;
|
|
||||||
}
|
|
||||||
|
|
||||||
plat_dat->has_gmac = true;
|
|
@ -1,25 +0,0 @@
|
|||||||
From 5001f2e1a325b68dbf225bd17f69a4d3d975cca5 Mon Sep 17 00:00:00 2001
|
|
||||||
From: John Crispin <john@phrozen.org>
|
|
||||||
Date: Thu, 9 Mar 2017 09:31:44 +0100
|
|
||||||
Subject: [PATCH 61/69] mtd: "rootfs" conflicts with OpenWrt auto mounting
|
|
||||||
|
|
||||||
Signed-off-by: John Crispin <john@phrozen.org>
|
|
||||||
---
|
|
||||||
drivers/mtd/mtdpart.c | 4 ++++
|
|
||||||
1 file changed, 4 insertions(+)
|
|
||||||
|
|
||||||
--- a/drivers/mtd/mtdpart.c
|
|
||||||
+++ b/drivers/mtd/mtdpart.c
|
|
||||||
@@ -51,7 +51,11 @@ static struct mtd_info *allocate_partiti
|
|
||||||
|
|
||||||
/* allocate the partition structure */
|
|
||||||
child = kzalloc(sizeof(*child), GFP_KERNEL);
|
|
||||||
- name = kstrdup(part->name, GFP_KERNEL);
|
|
||||||
+ /* "rootfs" conflicts with OpenWrt auto mounting */
|
|
||||||
+ if (mtd_type_is_nand(parent) && !strcmp(part->name, "rootfs"))
|
|
||||||
+ name = "ubi";
|
|
||||||
+ else
|
|
||||||
+ name = kstrdup(part->name, GFP_KERNEL);
|
|
||||||
if (!name || !child) {
|
|
||||||
printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n",
|
|
||||||
parent->name);
|
|
@ -1,48 +0,0 @@
|
|||||||
From a5ba119455c77a07e05f2fe0af446c8bf43d1a00 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 26 Feb 2022 14:52:35 +0100
|
|
||||||
Subject: [PATCH] ARM: dts: qcom: add syscon and cxo/pxo clock to gcc node for
|
|
||||||
ipq8064
|
|
||||||
|
|
||||||
Add syscon compatible required for tsens driver to correctly probe driver
|
|
||||||
and access the reg. Also add cxo and pxo tag and declare them as gcc clock
|
|
||||||
now requires them for the ipq8064 gcc driver that has now been modernized.
|
|
||||||
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Reviewed-by: Stephen Boyd <sboyd@kernel.org>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220226135235.10051-16-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 8 +++++---
|
|
||||||
1 file changed, 5 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -298,13 +298,13 @@
|
|
||||||
};
|
|
||||||
|
|
||||||
clocks {
|
|
||||||
- cxo_board {
|
|
||||||
+ cxo_board: cxo_board {
|
|
||||||
compatible = "fixed-clock";
|
|
||||||
#clock-cells = <0>;
|
|
||||||
clock-frequency = <25000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
- pxo_board {
|
|
||||||
+ pxo_board: pxo_board {
|
|
||||||
compatible = "fixed-clock";
|
|
||||||
#clock-cells = <0>;
|
|
||||||
clock-frequency = <25000000>;
|
|
||||||
@@ -736,7 +736,9 @@
|
|
||||||
};
|
|
||||||
|
|
||||||
gcc: clock-controller@900000 {
|
|
||||||
- compatible = "qcom,gcc-ipq8064";
|
|
||||||
+ compatible = "qcom,gcc-ipq8064", "syscon";
|
|
||||||
+ clocks = <&pxo_board>, <&cxo_board>;
|
|
||||||
+ clock-names = "pxo", "cxo";
|
|
||||||
reg = <0x00900000 0x4000>;
|
|
||||||
#clock-cells = <1>;
|
|
||||||
#reset-cells = <1>;
|
|
@ -1,29 +0,0 @@
|
|||||||
From eb9e93937756a05787977875830c0dc482cb57e0 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Date: Sat, 30 Apr 2022 07:51:17 +0200
|
|
||||||
Subject: [PATCH] ARM: dts: qcom: replace gcc PXO with pxo_board fixed clock
|
|
||||||
|
|
||||||
Replace gcc PXO phandle to pxo_board fixed clock declared in the dts.
|
|
||||||
gcc driver doesn't provide PXO_SRC as it's a fixed-clock. This cause a
|
|
||||||
kernel panic if any driver actually try to use it.
|
|
||||||
|
|
||||||
Fixes: 40cf5c884a96 ("ARM: dts: qcom: add L2CC and RPM for IPQ8064")
|
|
||||||
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
|
|
||||||
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220430055118.1947-2-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -784,7 +784,7 @@
|
|
||||||
l2cc: clock-controller@2011000 {
|
|
||||||
compatible = "qcom,kpss-gcc", "syscon";
|
|
||||||
reg = <0x2011000 0x1000>;
|
|
||||||
- clocks = <&gcc PLL8_VOTE>, <&gcc PXO_SRC>;
|
|
||||||
+ clocks = <&gcc PLL8_VOTE>, <&pxo_board>;
|
|
||||||
clock-names = "pll8_vote", "pxo";
|
|
||||||
clock-output-names = "acpu_l2_aux";
|
|
||||||
};
|
|
@ -1,101 +0,0 @@
|
|||||||
From 4af1defb305798d1a064a5ea0d0c9b30e5eee185 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:35 +0200
|
|
||||||
Subject: [PATCH 1/8] ARM: dts: qcom: ipq8064: add multiple missing pin
|
|
||||||
definition
|
|
||||||
|
|
||||||
Add missing definition for mdio0 pins used for gpio-bitbang driver,i2c4
|
|
||||||
pins and rgmii2 pins for ipq8064.
|
|
||||||
|
|
||||||
Drop i2c4_pins node from ipq8064-ap148 dts as it's now moved to ipq8064
|
|
||||||
dtsi.
|
|
||||||
|
|
||||||
Drop mdio0_pins node from ipq8064-rb3011 dts as it's now moved to
|
|
||||||
ipq8064 dtsi.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-2-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064-ap148.dts | 6 -----
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064-rb3011.dts | 9 -------
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 32 +++++++++++++++++++++++
|
|
||||||
3 files changed, 32 insertions(+), 15 deletions(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
|
|
||||||
@@ -305,15 +305,6 @@
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
- mdio0_pins: mdio0_pins {
|
|
||||||
- mux {
|
|
||||||
- pins = "gpio0", "gpio1";
|
|
||||||
- function = "gpio";
|
|
||||||
- drive-strength = <8>;
|
|
||||||
- bias-disable;
|
|
||||||
- };
|
|
||||||
- };
|
|
||||||
-
|
|
||||||
mdio1_pins: mdio1_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio10", "gpio11";
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -382,6 +382,13 @@
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
+ i2c4_pins: i2c4-default {
|
|
||||||
+ pins = "gpio12", "gpio13";
|
|
||||||
+ function = "gsbi4";
|
|
||||||
+ drive-strength = <12>;
|
|
||||||
+ bias-disable;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
spi_pins: spi_pins {
|
|
||||||
mux {
|
|
||||||
pins = "gpio18", "gpio19", "gpio21";
|
|
||||||
@@ -424,6 +431,8 @@
|
|
||||||
|
|
||||||
pullups {
|
|
||||||
pins = "gpio39";
|
|
||||||
+ function = "nand";
|
|
||||||
+ drive-strength = <10>;
|
|
||||||
bias-pull-up;
|
|
||||||
};
|
|
||||||
|
|
||||||
@@ -431,9 +440,32 @@
|
|
||||||
pins = "gpio40", "gpio41", "gpio42",
|
|
||||||
"gpio43", "gpio44", "gpio45",
|
|
||||||
"gpio46", "gpio47";
|
|
||||||
+ function = "nand";
|
|
||||||
+ drive-strength = <10>;
|
|
||||||
bias-bus-hold;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
+
|
|
||||||
+ mdio0_pins: mdio0-pins {
|
|
||||||
+ mux {
|
|
||||||
+ pins = "gpio0", "gpio1";
|
|
||||||
+ function = "mdio";
|
|
||||||
+ drive-strength = <8>;
|
|
||||||
+ bias-disable;
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ rgmii2_pins: rgmii2-pins {
|
|
||||||
+ mux {
|
|
||||||
+ pins = "gpio27", "gpio28", "gpio29",
|
|
||||||
+ "gpio30", "gpio31", "gpio32",
|
|
||||||
+ "gpio51", "gpio52", "gpio59",
|
|
||||||
+ "gpio60", "gpio61", "gpio62";
|
|
||||||
+ function = "rgmii2";
|
|
||||||
+ drive-strength = <8>;
|
|
||||||
+ bias-disable;
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
};
|
|
||||||
|
|
||||||
intc: interrupt-controller@2000000 {
|
|
@ -1,67 +0,0 @@
|
|||||||
From d883a12a547b6d42e795ff3b5ac87cfd013b5423 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:36 +0200
|
|
||||||
Subject: [PATCH 2/8] ARM: dts: qcom: ipq8064: add gsbi6 missing definition
|
|
||||||
|
|
||||||
Add gsbi6 missing definition for ipq8064.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-3-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 43 +++++++++++++++++++++++++++++
|
|
||||||
1 file changed, 43 insertions(+)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -663,6 +663,49 @@
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
+ gsbi6: gsbi@16500000 {
|
|
||||||
+ compatible = "qcom,gsbi-v1.0.0";
|
|
||||||
+ reg = <0x16500000 0x100>;
|
|
||||||
+ cell-index = <6>;
|
|
||||||
+ clocks = <&gcc GSBI6_H_CLK>;
|
|
||||||
+ clock-names = "iface";
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <1>;
|
|
||||||
+ ranges;
|
|
||||||
+
|
|
||||||
+ syscon-tcsr = <&tcsr>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+
|
|
||||||
+ gsbi6_i2c: i2c@16580000 {
|
|
||||||
+ compatible = "qcom,i2c-qup-v1.1.1";
|
|
||||||
+ reg = <0x16580000 0x1000>;
|
|
||||||
+ interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
+
|
|
||||||
+ clocks = <&gcc GSBI6_QUP_CLK>, <&gcc GSBI6_H_CLK>;
|
|
||||||
+ clock-names = "core", "iface";
|
|
||||||
+
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ gsbi6_spi: spi@16580000 {
|
|
||||||
+ compatible = "qcom,spi-qup-v1.1.1";
|
|
||||||
+ reg = <0x16580000 0x1000>;
|
|
||||||
+ interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
+
|
|
||||||
+ clocks = <&gcc GSBI6_QUP_CLK>, <&gcc GSBI6_H_CLK>;
|
|
||||||
+ clock-names = "core", "iface";
|
|
||||||
+
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
gsbi7: gsbi@16600000 {
|
|
||||||
status = "disabled";
|
|
||||||
compatible = "qcom,gsbi-v1.0.0";
|
|
@ -1,66 +0,0 @@
|
|||||||
From 5c47a46d5e942ea6b041c8b7727b201817c1ff76 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:37 +0200
|
|
||||||
Subject: [PATCH 3/8] ARM: dts: qcom: ipq8064: add specific dtsi with smb208
|
|
||||||
rpm regulators
|
|
||||||
|
|
||||||
Add specific ipq8064 dtsi with smb208 rpm regulators.
|
|
||||||
|
|
||||||
Qcom advise to use this configuration but it's not mandatory and OEM
|
|
||||||
can decide to implement their own regulators.
|
|
||||||
smb208 regulators are used to scale CPU voltage, L2 cache voltage and
|
|
||||||
Ubi32 cores.
|
|
||||||
|
|
||||||
There regulators are controlled by rpm and to correctly works gsbi4-i2c
|
|
||||||
require to be NEVER disabled or rpm will reject any regulator change
|
|
||||||
request.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-4-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064-smb208.dtsi | 37 ++++++++++++++++++++++
|
|
||||||
1 file changed, 37 insertions(+)
|
|
||||||
create mode 100644 arch/arm/boot/dts/qcom-ipq8064-smb208.dtsi
|
|
||||||
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064-smb208.dtsi
|
|
||||||
@@ -0,0 +1,37 @@
|
|
||||||
+// SPDX-License-Identifier: GPL-2.0
|
|
||||||
+
|
|
||||||
+#include "qcom-ipq8064.dtsi"
|
|
||||||
+
|
|
||||||
+&rpm {
|
|
||||||
+ smb208_regulators: regulators {
|
|
||||||
+ compatible = "qcom,rpm-smb208-regulators";
|
|
||||||
+
|
|
||||||
+ smb208_s1a: s1a {
|
|
||||||
+ regulator-min-microvolt = <1050000>;
|
|
||||||
+ regulator-max-microvolt = <1150000>;
|
|
||||||
+
|
|
||||||
+ qcom,switch-mode-frequency = <1200000>;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ smb208_s1b: s1b {
|
|
||||||
+ regulator-min-microvolt = <1050000>;
|
|
||||||
+ regulator-max-microvolt = <1150000>;
|
|
||||||
+
|
|
||||||
+ qcom,switch-mode-frequency = <1200000>;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ smb208_s2a: s2a {
|
|
||||||
+ regulator-min-microvolt = < 800000>;
|
|
||||||
+ regulator-max-microvolt = <1250000>;
|
|
||||||
+
|
|
||||||
+ qcom,switch-mode-frequency = <1200000>;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ smb208_s2b: s2b {
|
|
||||||
+ regulator-min-microvolt = < 800000>;
|
|
||||||
+ regulator-max-microvolt = <1250000>;
|
|
||||||
+
|
|
||||||
+ qcom,switch-mode-frequency = <1200000>;
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
+};
|
|
@ -1,56 +0,0 @@
|
|||||||
From 0ce34e0c13e99c239cce6099f64b0e95697f36b1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:38 +0200
|
|
||||||
Subject: [PATCH 4/8] ARM: dts: qcom: ipq8064: add missing snps,dwmac
|
|
||||||
compatible for gmac
|
|
||||||
|
|
||||||
Add missing snps,dwmac compatible for gmac ipq8064 dtsi.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
|
||||||
Reviewed-by: Konrad Dybcio <konrad.dybcio@somainline.org>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-5-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 8 ++++----
|
|
||||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -1042,7 +1042,7 @@
|
|
||||||
|
|
||||||
gmac0: ethernet@37000000 {
|
|
||||||
device_type = "network";
|
|
||||||
- compatible = "qcom,ipq806x-gmac";
|
|
||||||
+ compatible = "qcom,ipq806x-gmac", "snps,dwmac";
|
|
||||||
reg = <0x37000000 0x200000>;
|
|
||||||
interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
interrupt-names = "macirq";
|
|
||||||
@@ -1066,7 +1066,7 @@
|
|
||||||
|
|
||||||
gmac1: ethernet@37200000 {
|
|
||||||
device_type = "network";
|
|
||||||
- compatible = "qcom,ipq806x-gmac";
|
|
||||||
+ compatible = "qcom,ipq806x-gmac", "snps,dwmac";
|
|
||||||
reg = <0x37200000 0x200000>;
|
|
||||||
interrupts = <GIC_SPI 223 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
interrupt-names = "macirq";
|
|
||||||
@@ -1090,7 +1090,7 @@
|
|
||||||
|
|
||||||
gmac2: ethernet@37400000 {
|
|
||||||
device_type = "network";
|
|
||||||
- compatible = "qcom,ipq806x-gmac";
|
|
||||||
+ compatible = "qcom,ipq806x-gmac", "snps,dwmac";
|
|
||||||
reg = <0x37400000 0x200000>;
|
|
||||||
interrupts = <GIC_SPI 226 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
interrupt-names = "macirq";
|
|
||||||
@@ -1114,7 +1114,7 @@
|
|
||||||
|
|
||||||
gmac3: ethernet@37600000 {
|
|
||||||
device_type = "network";
|
|
||||||
- compatible = "qcom,ipq806x-gmac";
|
|
||||||
+ compatible = "qcom,ipq806x-gmac", "snps,dwmac";
|
|
||||||
reg = <0x37600000 0x200000>;
|
|
||||||
interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
interrupt-names = "macirq";
|
|
@ -1,37 +0,0 @@
|
|||||||
From d63d3124c0a5cdbe8b91d81b922fe56b2462e1b9 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:39 +0200
|
|
||||||
Subject: [PATCH 5/8] ARM: dts: qcom: ipq8064: disable usb phy by default
|
|
||||||
|
|
||||||
Disable usb phy by default. When the usb phy were pushed, half of them
|
|
||||||
were flagged as disabled by mistake.
|
|
||||||
Correctly disable all usb phy and enable them only if a device actually
|
|
||||||
use them.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-6-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 4 ++++
|
|
||||||
1 file changed, 4 insertions(+)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -1188,6 +1188,8 @@
|
|
||||||
clocks = <&gcc USB30_1_UTMI_CLK>;
|
|
||||||
clock-names = "ref";
|
|
||||||
#phy-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
ss_phy_1: phy@110f8830 {
|
|
||||||
@@ -1196,6 +1198,8 @@
|
|
||||||
clocks = <&gcc USB30_1_MASTER_CLK>;
|
|
||||||
clock-names = "ref";
|
|
||||||
#phy-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
usb3_1: usb3@110f8800 {
|
|
@ -1,94 +0,0 @@
|
|||||||
From 6c421a9c08286389bb331fe783e2625c9efcc187 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:41 +0200
|
|
||||||
Subject: [PATCH 7/8] ARM: dts: qcom: ipq8064: fix and add some missing gsbi
|
|
||||||
node
|
|
||||||
|
|
||||||
Add some tag for gsbi to make them usable for ipq8064 SoC. Add missing
|
|
||||||
gsbi7 i2c node and gsbi1 node.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-8-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 54 ++++++++++++++++++++++++++++-
|
|
||||||
1 file changed, 53 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -539,6 +539,44 @@
|
|
||||||
regulator;
|
|
||||||
};
|
|
||||||
|
|
||||||
+ gsbi1: gsbi@12440000 {
|
|
||||||
+ compatible = "qcom,gsbi-v1.0.0";
|
|
||||||
+ reg = <0x12440000 0x100>;
|
|
||||||
+ cell-index = <1>;
|
|
||||||
+ clocks = <&gcc GSBI1_H_CLK>;
|
|
||||||
+ clock-names = "iface";
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <1>;
|
|
||||||
+ ranges;
|
|
||||||
+
|
|
||||||
+ syscon-tcsr = <&tcsr>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+
|
|
||||||
+ gsbi1_serial: serial@12450000 {
|
|
||||||
+ compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
|
|
||||||
+ reg = <0x12450000 0x100>,
|
|
||||||
+ <0x12400000 0x03>;
|
|
||||||
+ interrupts = <GIC_SPI 193 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
+ clocks = <&gcc GSBI1_UART_CLK>, <&gcc GSBI1_H_CLK>;
|
|
||||||
+ clock-names = "core", "iface";
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ gsbi1_i2c: i2c@12460000 {
|
|
||||||
+ compatible = "qcom,i2c-qup-v1.1.1";
|
|
||||||
+ reg = <0x12460000 0x1000>;
|
|
||||||
+ interrupts = <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
+ clocks = <&gcc GSBI1_QUP_CLK>, <&gcc GSBI1_H_CLK>;
|
|
||||||
+ clock-names = "core", "iface";
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+ };
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
gsbi2: gsbi@12480000 {
|
|
||||||
compatible = "qcom,gsbi-v1.0.0";
|
|
||||||
cell-index = <2>;
|
|
||||||
@@ -562,7 +600,7 @@
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
- i2c@124a0000 {
|
|
||||||
+ gsbi2_i2c: i2c@124a0000 {
|
|
||||||
compatible = "qcom,i2c-qup-v1.1.1";
|
|
||||||
reg = <0x124a0000 0x1000>;
|
|
||||||
interrupts = <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
@@ -727,6 +765,20 @@
|
|
||||||
clock-names = "core", "iface";
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
+
|
|
||||||
+ gsbi7_i2c: i2c@16680000 {
|
|
||||||
+ compatible = "qcom,i2c-qup-v1.1.1";
|
|
||||||
+ reg = <0x16680000 0x1000>;
|
|
||||||
+ interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
+
|
|
||||||
+ clocks = <&gcc GSBI7_QUP_CLK>, <&gcc GSBI7_H_CLK>;
|
|
||||||
+ clock-names = "core", "iface";
|
|
||||||
+
|
|
||||||
+ #address-cells = <1>;
|
|
||||||
+ #size-cells = <0>;
|
|
||||||
+
|
|
||||||
+ status = "disabled";
|
|
||||||
+ };
|
|
||||||
};
|
|
||||||
|
|
||||||
rng@1a500000 {
|
|
@ -1,28 +0,0 @@
|
|||||||
From 7f5aecdd4ffcc018f73171bc0e028cd4e3361acd Mon Sep 17 00:00:00 2001
|
|
||||||
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Date: Thu, 7 Jul 2022 03:09:43 +0200
|
|
||||||
Subject: [PATCH 8/8] ARM: dts: qcom: ipq8064: add speedbin efuse nvmem node
|
|
||||||
|
|
||||||
Add speedbin efuse nvmem cell needed for the opp table for the CPU
|
|
||||||
freqs.
|
|
||||||
|
|
||||||
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
||||||
Tested-by: Jonathan McDowell <noodles@earth.li>
|
|
||||||
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
||||||
Link: https://lore.kernel.org/r/20220707010943.20857-10-ansuelsmth@gmail.com
|
|
||||||
---
|
|
||||||
arch/arm/boot/dts/qcom-ipq8064.dtsi | 3 +++
|
|
||||||
1 file changed, 3 insertions(+)
|
|
||||||
|
|
||||||
--- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
+++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
|
|
||||||
@@ -854,6 +854,9 @@
|
|
||||||
reg = <0x00700000 0x1000>;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <1>;
|
|
||||||
+ speedbin_efuse: speedbin@c0 {
|
|
||||||
+ reg = <0xc0 0x4>;
|
|
||||||
+ };
|
|
||||||
tsens_calib: calib@400 {
|
|
||||||
reg = <0x400 0xb>;
|
|
||||||
};
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user