156f2df879
AP-DK01.1-C1 is QCA dev board with: - ipq4018 quad core ARM @716.8MHz, 2x2 dual (11n+11ac) radio - 256MB RAM - 32MB SPI flash - QCA8075 multiport ethernet phy (WAN port, 4x LAN ports) First installation via u-boot: sf probe sf erase 0x180000 0x1a00000 tftpboot 0x84000000 lede-ipq806x-AP-DK01.1-C1-squashfs-sysupgrade.bin sf write 0x84000000 0x180000 $filesize Further upgrades via sysupgrade. Changes: - add partitions - set memory size to 256MB - add reserved memory mapping - add correct compatible string - add image generation - extract pre-cal data from ART partition Compile and run tested. Wirespeed NAT can be achieved with spreading rx interrupts over different cores. Wifi speed is ~550Mbps @5GHz in open air. Note: AP-DK01.1-C1 is fully compatible with AP-DK01.2-C1, which has ipq4028 instead of ipq4018 on board. Changes since v2: - based on dts(i) rework/cleanup submitted: http://lists.infradead.org/pipermail/lede-dev/2017-October/009596.html - precise reserved memory mapping - more precise description - compatible string Signed-off-by: Roman Yeryomin <roman@advem.lv>
76 lines
1.2 KiB
Bash
76 lines
1.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2014 The Linux Foundation. All rights reserved.
|
|
# Copyright (C) 2011 OpenWrt.org
|
|
#
|
|
|
|
IPQ806X_BOARD_NAME=
|
|
IPQ806X_MODEL=
|
|
|
|
ipq806x_board_detect() {
|
|
local machine
|
|
local name
|
|
|
|
machine=$(cat /proc/device-tree/model)
|
|
|
|
case "$machine" in
|
|
*"AP-DK01.1-C1")
|
|
name="ap-dk01.1-c1"
|
|
;;
|
|
*"AP148")
|
|
name="ap148"
|
|
;;
|
|
*"4040")
|
|
name="fritz4040"
|
|
;;
|
|
*"C2600")
|
|
name="c2600"
|
|
;;
|
|
*"D7800")
|
|
name="d7800"
|
|
;;
|
|
*"DB149")
|
|
name="db149"
|
|
;;
|
|
*"NBG6817")
|
|
name="nbg6817"
|
|
;;
|
|
*"R7500")
|
|
name="r7500"
|
|
;;
|
|
*"R7500v2")
|
|
name="r7500v2"
|
|
;;
|
|
*"Linksys EA8500"*)
|
|
name="ea8500"
|
|
;;
|
|
*"R7800")
|
|
name="r7800"
|
|
;;
|
|
*"VR2600v")
|
|
name="vr2600v"
|
|
;;
|
|
esac
|
|
|
|
[ -z "$name" ] && name="unknown"
|
|
|
|
[ -z "$IPQ806X_BOARD_NAME" ] && IPQ806X_BOARD_NAME="$name"
|
|
[ -z "$IPQ806X_MODEL" ] && IPQ806X_MODEL="$machine"
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
echo "$IPQ806X_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
echo "$IPQ806X_MODEL" > /tmp/sysinfo/model
|
|
}
|
|
|
|
ipq806x_get_dt_led() {
|
|
local label
|
|
local ledpath
|
|
local basepath="/proc/device-tree"
|
|
local nodepath="$basepath/aliases/led-$1"
|
|
|
|
[ -f "$nodepath" ] && ledpath=$(cat "$nodepath")
|
|
[ -n "$ledpath" ] && label=$(cat "$basepath$ledpath/label")
|
|
|
|
echo "$label"
|
|
}
|