--- wikisrc/ports/evbarm/allwinner.mdwn 2014/12/07 14:28:37 1.37
+++ wikisrc/ports/evbarm/allwinner.mdwn 2015/07/29 23:05:26 1.52
@@ -1,11 +1,13 @@
[[!meta title="NetBSD/evbarm on Allwinner Technology SoCs"]]
+NetBSD 7.0 has support for A20 and A31 SoCs. NetBSD -current adds support for A80 SoCs.
+
[[!toc levels=2]]
# Supported boards
- [Banana Pi](http://www.bananapi.org/p/product.html) (BPI)
- Cubieboard 2 (CUBIEBOARD)
- - Cubieboard 4 (ALLWINNER_A80) *NetBSD-current*
+ - [Cubieboard 4](http://cubieboard.org/model/cb4/) (ALLWINNER_A80) *NetBSD-current*
- Cubietruck (CUBIETRUCK)
- [Merrii Hummingbird A31](http://www.merrii.com/en/pla_d.asp?id=172) (HUMMINGBIRD_A31)
@@ -36,40 +38,48 @@
- OTG (A20)
- SATA (A10/A20)
- Gigabit Ethernet (GMAC)
- - HDMI (A20/A31)
- - DDC / EDID mode detection
- - Audio support
- - Framebuffer (A20/A31)
- - IR receiver (A20/A31)
+ - HDMI
+ - DDC / EDID mode detection (A20/A31)
+ - Audio support (A20/A31)
+ - Framebuffer (A20/A31/A80)
+ - IR receiver (A20/A31/A80)
# TODO
- - SoCs
- - Cortex-A8: A10
- - Cortex-A7/A15: A80 SMP
- - OTG (A31)
- - USB device mode
- - Bluetooth / WiFi (Cubietruck, Hummingbird A31)
- - 3G (Hummingbird A31)
- - SD/MMC UHS-I support (needs sdmmc(4) changes)
- - TV input (Hummingbird A31)
- - NAND
- - Fast Ethernet (EMAC)
- - IR transmitter (A20)
+ - A10
+ - Interrupt controller
+ - EMAC
+ - A31
+ - OTG
+ - IR transmitter
+ - 3G module
+ - TV input
+ - A80
+ - MP
+ - big.LITTLE support
+ - USB3 (OTG and XHCI)
+ - IR transmitter
+ - HDMI (DDC and mode setting; currently relies on U-Boot for setup)
+ - Audio codec
+ - All
+ - USB device mode
+ - SD/MMC UHS-I support (needs sdmmc(4) changes)
+ - SDIO (Bluetooth / WiFi)
+ - NAND
+ - VGA (Cubietruck, Hummingbird A31, Cubieboard4)
# Installation
-## A10 / A20 / A31 based boards
+## A20 / A31 based boards
-* Start with an ARMv7 image from *evbarm-earmv7hf/binary/gzimg/* such as *beagleboard.img*
+* Start with an ARMv7 image from *evbarm-earmv7hf/binary/gzimg/* such as *beagleboard.img* from netbsd-7, or *armv7.img* from HEAD
* Download a U-Boot build for your board
- * A10/A20: Download from the linux-sunxi web site
- * A31: The standard u-boot-sunxi tree doesn't support A31 yet. Until sun6i support is merged, a build is available at
-* Write the *u-boot-sunxi-with-spl.bin* loader to the base image:
+ * Download the correct build from the linux-sunxi web site .
+* Write the *u-boot-sunxi-with-spl.bin* loader to the empty space at the start of the base image:
[[!template id=programlisting text="""
# dd if=u-boot-sunxi-with-spl.bin of=beagleboard.img bs=1k seek=8 conv=notrunc
"""]]
* Write the image to an SD card.
-* Copy the kernel (netbsd.ub) for your board to the root of the MS-DOS partition.
+* Copy the kernel (netbsd.ub) for your board to the root of the MS-DOS partition on the SD card.
* Create or edit uEnv.txt on the MS-DOS partition:
[[!template id=programlisting text="""
bootargs=root=ld0a
@@ -78,22 +88,12 @@ uenvcmd=mmc dev 0; mmc rescan; fatload m
## A80 based boards
-* Cubieboard 4 SDK (lubuntu) U-Boot env:
+* Cubieboard 4 U-Boot for SD card:
[[!template id=programlisting text="""
-baudrate=115200
-boot_normal=fatload mmc 0:1 20007800 uimage;bootm 20007800
-bootcmd=run setargs_cubie boot_normal
-bootdelay=3
-console=ttyS0,115200
-console1=tty1
-init=/init
-loglevel=8
-mmc_root=/dev/mmcblk0p2
-setargs_cubie=setenv bootargs console=${console1} console=${console} root=${mmc_root} loglevel=${loglevel}
-stderr=serial
-stdin=serial
-stdout=serial
+# dd if=u-boot-spl.bin of=/dev/sdd bs=1k seek=8
+# dd if=u-boot-sun9iw1p1.bin of=/dev/sdd bs=1k seek=19096
"""]]
+* First partition needs to be at +20MB offset. Format it as MSDOS, copy 'netbsd.ub' to it as 'uImage'.
# Big (endian) fun
@@ -140,13 +140,9 @@ a31# audiocfg list
1: [*] audio1 @ awinhdmiaudio0: Allwinner HDMI 1.4, 2 playback channels
"""]]
-# Board specific notes
-
-## Merrii Hummingbird A31
-
-There doesn't appear to be a meaningful way to generate a MAC address on these boards. U-Boot from the A31 SDK and from the u-boot-sunxi tree both lack GMAC support, and the Security ID registers (at 0x01c23800) appear to be empty.
+# MAC address
-To overcome this, you can specify your own MAC address in *uEnv.txt*:
+On boards where the ethernet MAC address cannot be determmined, a random MAC address will be generated every boot. You can override this behaviour by specifying a MAC address in *uEnv.txt*:
[[!template id=programlisting text="""
bootargs=root=ld0a awge0.mac-address=02:a0:3d:88:1a:1e
"""]]