mpc85xx: add support for Sophos RED 15w Rev.1
authorDavid Bauer <mail@david-bauer.net>
Tue, 8 Jan 2019 00:20:56 +0000 (01:20 +0100)
committerChristian Lamparter <chunkeey@gmail.com>
Sun, 13 Jan 2019 10:31:43 +0000 (11:31 +0100)
commit97e4311fca73d064d17065e7844699aa777cb157
treec61c97c86c75c88e2ab9c81b4015bbe5429c4dc7
parent85be0f4c2165051a16c1d1980335d4273473933c
mpc85xx: add support for Sophos RED 15w Rev.1

Hardware
========
CPU:  Freescale P1010 PowerPC
RAM:  128M DDR3
NAND: 128MiB
ETH:  RTL8211F SGMII PHY
      RTL8367B 5-port RGMII switch
      (not connected to SoC - unmanaged)
WiFi: SparkLan WPEA-121N
       - Atheros AR9382 2T2R abgn
USB:  1x USB 2.0
LED:  System, Router, Internet, Tunnel controllable
      LAN1-4, WAN, Power non-controllable
BTN:  None

Installation
============
1. Power on the device while attached to the Console port.

2. Halt the U-Boot by pressing Enter when prompted.

3. Set the correct bootcmd for booting OpenWRT:
 > setenv bootargs_owrt "setenv bootargs console=ttyS0,115200"
 > setenv bootcmd "run bootargs_owrt;
   nand read 0x1000000 0x300000 0x800000;
   bootm 0x1000000;"
 > saveenv

5. Rename OpenWRT initramfs image to 'kernel.bin' and place it in a
   TFTP server root-directory served on 192.168.1.2/24. Connect your
   computer to one of the LAN-ports.

4. Boot OpenWRT initramfs image with
 > run bootargs_owrt; tftpboot 0x1000000 192.168.1.2:kernel.bin;
   bootm 0x1000000;

6. (Optional)
   Make a Backup of 'sophos-os1', 'sophos-os2' and 'sophos-data' in case
   you ever want to go back to the vendor firmware.

7. Create Ubi Volume on mtd4 by executing
 > ubiformat /dev/mtd4 -y

8. Transfer OpenWRT sysupgrade image to the device via SCP and install it
   with
 > sysupgrade -n <openwrt-image-file>

Back to Stock
=============
If you want to go back to the stock firmware, here is the bootcmd of the
vendor firmware:
 > setenv bootargs console=ttyS0,115200 root=/dev/mtdblock5;
   nand read 0xc00000 0x00300000  0x100000;
   nand read 0x1000000 0x00400000 0x00800000;
   bootm 0x1000000 - 0xc00000

Set it via 'setenv' from the U-Boot shell and don't forget to save it
using 'saveenv'!

After this, boot the OpenWRT initramfs image just like you would for
installation. Write back the three vendor partitions using mtd. Reboot
the device afterwards.

Signed-off-by: David Bauer <mail@david-bauer.net>
[refresh and reorder patches]
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
14 files changed:
target/linux/mpc85xx/Makefile
target/linux/mpc85xx/base-files/etc/diag.sh
target/linux/mpc85xx/base-files/etc/hotplug.d/ieee80211/10-fix-wifi-mac [new file with mode: 0644]
target/linux/mpc85xx/base-files/lib/upgrade/platform.sh
target/linux/mpc85xx/config-4.14
target/linux/mpc85xx/config-4.19
target/linux/mpc85xx/files/arch/powerpc/boot/dts/red-15w-rev1.dts [new file with mode: 0644]
target/linux/mpc85xx/files/arch/powerpc/platforms/85xx/red15w_rev1.c [new file with mode: 0644]
target/linux/mpc85xx/generic/config-default
target/linux/mpc85xx/generic/target.mk
target/linux/mpc85xx/image/Makefile
target/linux/mpc85xx/p1020/target.mk
target/linux/mpc85xx/patches-4.14/105-powerpc-85xx-red-15w-rev1.patch [new file with mode: 0644]
target/linux/mpc85xx/patches-4.19/103-powerpc-85xx-red-15w-rev1.patch [new file with mode: 0644]