diff options
author | Sven Eckelmann <sven.eckelmann@openmesh.com> | 2017-08-09 13:52:07 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-04-23 22:07:22 +0200 |
commit | 0b204902075157dbb002ea04f41a5b1a4fbe848c (patch) | |
tree | aab0a3eabea2d909bb41909c6a6d0b5583967495 /target/linux/ipq40xx/base-files/etc | |
parent | c6aac196b80039ae1716b9af635c06992e62171f (diff) | |
download | upstream-0b204902075157dbb002ea04f41a5b1a4fbe848c.tar.gz upstream-0b204902075157dbb002ea04f41a5b1a4fbe848c.tar.bz2 upstream-0b204902075157dbb002ea04f41a5b1a4fbe848c.zip |
ipq40xx: add support for OpenMesh A62
* QCA IPQ4019
* 256 MB of RAM
* 32 MB of SPI NOR flash (s25fl256s1)
- 2x 15 MB available; but one of the 15 MB regions is the recovery image
* 2T2R 2.4 GHz
- QCA4019 hw1.0 (SoC)
- requires special BDF in QCA4019/hw1.0/board-2.bin with
bus=ahb,bmi-chip-id=0,bmi-board-id=20,variant=OM-A62
* 2T2R 5 GHz (channel 36-64)
- QCA9888 hw2.0 (PCI)
- requires special BDF in QCA9888/hw2.0/board-2.bin
bus=pci,bmi-chip-id=0,bmi-board-id=16,variant=OM-A62
* 2T2R 5 GHz (channel 100-165)
- QCA4019 hw1.0 (SoC)
- requires special BDF in QCA4019/hw1.0/board-2.bin with
bus=ahb,bmi-chip-id=0,bmi-board-id=21,variant=OM-A62
* multi-color LED (controlled via red/green/blue GPIOs)
* 1x button (reset; kmod-input-gpio-keys compatible)
* external watchdog
- triggered GPIO
* 1x USB (xHCI)
* TTL pins are on board (arrow points to VCC, then follows: GND, TX, RX)
* 2x gigabit ethernet
- phy@mdio3:
+ Label: Ethernet 1
+ gmac0 (ethaddr) in original firmware
+ 802.3at POE+
- phy@mdio4:
+ Label: Ethernet 2
+ gmac1 (eth1addr) in original firmware
+ 18-24V passive POE (mode B)
* powered only via POE
The tool ap51-flash (https://github.com/ap51-flash/ap51-flash) should be
used to transfer the factory image to the u-boot when the device boots up.
The initramfs image can be started using
setenv bootargs 'loglevel=8 earlycon=msm_serial_dm,0x78af000 console=ttyMSM0,115200 mtdparts=spi0.0:256k(0:SBL1),128k(0:MIBIB),384k(0:QSEE),64k(0:CDT),64k(0:DDRPARAMS),64k(0:APPSBLENV),512k(0:APPSBL),64k(0:ART),64k(0:custom),64k(0:KEYS),15552k(inactive),15552k(inactive2)'
tftpboot 0x84000000 openwrt-ipq40xx-openmesh_a62-initramfs-fit-uImage.itb
set fdt_high 0x85000000
bootm 0x84000000
Signed-off-by: Sven Eckelmann <sven.eckelmann@openmesh.com>
Diffstat (limited to 'target/linux/ipq40xx/base-files/etc')
-rwxr-xr-x | target/linux/ipq40xx/base-files/etc/board.d/02_network | 3 | ||||
-rw-r--r-- | target/linux/ipq40xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata | 13 |
2 files changed, 13 insertions, 3 deletions
diff --git a/target/linux/ipq40xx/base-files/etc/board.d/02_network b/target/linux/ipq40xx/base-files/etc/board.d/02_network index ade1b05458..cbccbf92ef 100755 --- a/target/linux/ipq40xx/base-files/etc/board.d/02_network +++ b/target/linux/ipq40xx/base-files/etc/board.d/02_network @@ -38,7 +38,8 @@ glinet,gl-b1300) ucidef_add_switch "switch0" \ "0u@eth0" "3:lan" "4:lan" ;; -openmesh,a42) +openmesh,a42 |\ +openmesh,a62) ucidef_set_interfaces_lan_wan "eth1" "eth0" ;; meraki,mr33 |\ diff --git a/target/linux/ipq40xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata b/target/linux/ipq40xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata index 0a5780cbf0..1eb93ba41d 100644 --- a/target/linux/ipq40xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata +++ b/target/linux/ipq40xx/base-files/etc/hotplug.d/firmware/11-ath10k-caldata @@ -110,6 +110,13 @@ case "$FIRMWARE" in ;; esac ;; +"ath10k/pre-cal-pci-0000:01:00.0.bin") + case "$board" in + openmesh,a62) + ath10kcal_extract "0:ART" 36864 12064 + ;; + esac + ;; "ath10k/pre-cal-ahb-a000000.wifi.bin") case "$board" in 8dev,jalapeno |\ @@ -135,7 +142,8 @@ case "$FIRMWARE" in ath10kcal_patch_mac_crc $(mtd_get_mac_binary dnidata 0) ;; compex,wpj428 |\ - openmesh,a42) + openmesh,a42 |\ + openmesh,a62) ath10kcal_extract "0:ART" 4096 12064 ;; esac @@ -165,7 +173,8 @@ case "$FIRMWARE" in ath10kcal_patch_mac_crc $(mtd_get_mac_binary dnidata 12) ;; compex,wpj428 |\ - openmesh,a42) + openmesh,a42 |\ + openmesh,a62) ath10kcal_extract "0:ART" 20480 12064 ;; esac |