--- wikisrc/ports/evbarm/allwinner.mdwn 2014/12/07 14:28:37 1.37 +++ wikisrc/ports/evbarm/allwinner.mdwn 2015/12/10 08:07:54 1.56 @@ -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,64 +38,85 @@ - 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 + - 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/armv7.img.gz* from +NetBSD 7.0 * 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: -[[!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. -* Create or edit uEnv.txt on the MS-DOS partition: + * Download the correct build from the linux-sunxi web site . +* Decompress the image via [[!template id=man name="gunzip" section="1"]]: +[[!template id=programlisting text=""" +# gunzip armv7.img.gz +"""]] +* Write the *u-boot-sunxi-with-spl.bin* loader to the empty space at the start of the base image: [[!template id=programlisting text=""" -bootargs=root=ld0a -uenvcmd=mmc dev 0; mmc rescan; fatload mmc 0:1 82000000 netbsd.ub; bootm 82000000 +# dd if=u-boot-sunxi-with-spl.bin of=armv7.img bs=1k seek=8 conv=notrunc """]] +* Write the image to an SD card (e.g.: if the SD card is recognised as *sd0* - +please check the [[!template id=man name="dmesg" section="8"]] output to be +sure!): +[[!template id=programlisting text=""" +# dd if=armv7.img of=/dev/rsd0d bs=1m +"""]] +* Copy the kernel (*netbsd.ub*) for your board to the root of the MS-DOS +partition on the SD card +* Prepare a *boot.cmd* file for U-Boot boot loader containing the needed +instructions regarding how to boot the kernel (basically the *bootargs* that are +passed to the kernel and how to load the kernel from a device to the RAM and +then boot it from the memory address): +[[!template id=programlisting text=""" +setenv kernel_addr 82000000 +setenv kernel netbsd.ub +setenv bootargs "root=ld0a" + +fatload mmc 0:1 ${kernel_addr} ${kernel} +bootm ${kernel_addr} +"""]] +* The *boot.cmd* text file should be converted in a script image - *boot.scr* +for U-Boot via [[!template id=man name="mkubootimage" section="1"]]: +[[!template id=programlisting text=""" +# mkubootimage -A arm -n armv7 -T script boot.cmd boot.scr +"""]] +* Copy the *boot.scr* to the MS-DOS partition of the SD card ## 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 +163,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 """]]