 0b20490207
			
		
	
	0b20490207
	
	
	
		
			
			* 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>
		
	
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| #
 | |
| # Copyright (C) 2011 OpenWrt.org
 | |
| #
 | |
| # This is free software, licensed under the GNU General Public License v2.
 | |
| # See /LICENSE for more information.
 | |
| #
 | |
| 
 | |
| usage() {
 | |
| 	echo "Usage: $0 <OM2P|OM5P|OM5PAC|MR600|MR900|MR1750|A60|A42|A62> <out file path> <kernel path> <rootfs path>"
 | |
| 	rm -f $CFG_OUT
 | |
| 	exit 1
 | |
| }
 | |
| 
 | |
| [ "$#" -lt 4 ] && usage
 | |
| 
 | |
| CE_TYPE=$1
 | |
| CFG_OUT=$2
 | |
| KERNEL_PATH=$3
 | |
| ROOTFS_PATH=$4
 | |
| 
 | |
| case $CE_TYPE in
 | |
| 	OM2P)
 | |
| 		MAX_PART_SIZE=7168
 | |
| 		KERNEL_FLASH_ADDR=0x1c0000
 | |
| 		FLASH_BS=262144
 | |
| 		MD5_SKIP_BLOCKS=1
 | |
| 		SIZE_FACTOR=1
 | |
| 		SIZE_FORMAT="%d"
 | |
| 		;;
 | |
| 	OM5P|OM5PAC|MR600|MR900|MR1750|A60)
 | |
| 		MAX_PART_SIZE=7808
 | |
| 		KERNEL_FLASH_ADDR=0xb0000
 | |
| 		FLASH_BS=65536
 | |
| 		MD5_SKIP_BLOCKS=4
 | |
| 		SIZE_FACTOR=1
 | |
| 		SIZE_FORMAT="%d"
 | |
| 		;;
 | |
| 	A42)
 | |
| 		MAX_PART_SIZE=15616
 | |
| 		KERNEL_FLASH_ADDR=0x180000
 | |
| 		FLASH_BS=65536
 | |
| 		MD5_SKIP_BLOCKS=4
 | |
| 		SIZE_FACTOR=1024
 | |
| 		SIZE_FORMAT="0x%08x"
 | |
| 		;;
 | |
| 	A62)
 | |
| 		MAX_PART_SIZE=15552
 | |
| 		KERNEL_FLASH_ADDR=0x1a0000
 | |
| 		FLASH_BS=65536
 | |
| 		MD5_SKIP_BLOCKS=4
 | |
| 		SIZE_FACTOR=1024
 | |
| 		SIZE_FORMAT="0x%08x"
 | |
| 		;;
 | |
| 	*)
 | |
| 		echo "Error - unsupported ce type: $CE_TYPE"
 | |
| 		exit 1
 | |
| 		;;
 | |
| esac
 | |
| 
 | |
| CHECK_BS=65536
 | |
| 
 | |
| KERNEL_SIZE=$(stat -c%s "$KERNEL_PATH")
 | |
| KERNEL_MD5=$(mkhash md5 $KERNEL_PATH)
 | |
| KERNEL_SHA256=$(mkhash sha256 $KERNEL_PATH)
 | |
| KERNEL_PART_SIZE_KB=$(size=$(($KERNEL_SIZE / $FLASH_BS)); [ $(($size * $FLASH_BS)) -lt $KERNEL_SIZE ] && size=$(($size + 1)); echo $(($size * $FLASH_BS / 1024)))
 | |
| KERNEL_PART_SIZE=$(printf $SIZE_FORMAT $(($KERNEL_PART_SIZE_KB * $SIZE_FACTOR)))
 | |
| 
 | |
| ROOTFS_FLASH_ADDR=$(addr=$(($KERNEL_FLASH_ADDR + ($KERNEL_PART_SIZE_KB * 1024))); printf "0x%x" $addr)
 | |
| ROOTFS_SIZE=$(stat -c%s "$ROOTFS_PATH")
 | |
| ROOTFS_CHECK_BLOCKS=$((($ROOTFS_SIZE / $CHECK_BS) - $MD5_SKIP_BLOCKS))
 | |
| ROOTFS_MD5=$(dd if=$ROOTFS_PATH bs=$CHECK_BS count=$ROOTFS_CHECK_BLOCKS 2>&- | mkhash md5)
 | |
| ROOTFS_MD5_FULL=$(mkhash md5 $ROOTFS_PATH)
 | |
| ROOTFS_SHA256_FULL=$(mkhash sha256 $ROOTFS_PATH)
 | |
| ROOTFS_CHECK_SIZE=$(printf '0x%x' $(($ROOTFS_CHECK_BLOCKS * $CHECK_BS)))
 | |
| ROOTFS_PART_SIZE_KB=$(($MAX_PART_SIZE - $KERNEL_PART_SIZE_KB))
 | |
| ROOTFS_PART_SIZE=$(printf $SIZE_FORMAT $(($ROOTFS_PART_SIZE_KB * $SIZE_FACTOR)))
 | |
| 
 | |
| cat << EOF > $CFG_OUT
 | |
| [vmlinux]
 | |
| filename=kernel
 | |
| md5sum=$KERNEL_MD5
 | |
| filemd5sum=$KERNEL_MD5
 | |
| filesha256sum=$KERNEL_SHA256
 | |
| flashaddr=$KERNEL_FLASH_ADDR
 | |
| checksize=0x0
 | |
| cmd_success=setenv bootseq 1,2; setenv kernel_size_1 $KERNEL_PART_SIZE; saveenv
 | |
| cmd_fail=reset
 | |
| 
 | |
| [rootfs]
 | |
| filename=rootfs
 | |
| md5sum=$ROOTFS_MD5
 | |
| filemd5sum=$ROOTFS_MD5_FULL
 | |
| filesha256sum=$ROOTFS_SHA256_FULL
 | |
| flashaddr=$ROOTFS_FLASH_ADDR
 | |
| checksize=$ROOTFS_CHECK_SIZE
 | |
| cmd_success=setenv bootseq 1,2; setenv kernel_size_1 $KERNEL_PART_SIZE; setenv rootfs_size_1 $ROOTFS_PART_SIZE; saveenv
 | |
| cmd_fail=reset
 | |
| EOF
 |