We’ve already covered LicheePi One board powered by Allwinner A13 processor, but it was not for sale out of China, and the developers are now back with LicheePi Zero board/module, slightly bigger than an SD card, featuring Allwinner V3s processor, and offered for as low as $6, or $8 with WiFi via an Indiegogo campaign. LicheePi Zero specifications: SoC – Allwinner V3s ARM Cortex A7 processor @ up to 1.2 GHz with an ARM Mali-400 GPU, 512Mbit (64MB) DDR2 on-chip Storage – micro SD card slot, SPI flash (not 100% clear if it will be populated when shipped to backers) Display – FPC40 RGB Connector with support for 800×480 RGB LCD Audio – Audio codec USB – micro USB OTG port Expansion 2x 15 headers with 2.54mm pitch, breadboard friendly with GPIOs, 2x UART, 1x SPI, 2x I2C,ADC, 1x PWM 2x 30 half-holes with 1.27mm pitch with OTG USB,MIPI CSI,EPHY,RGB […]
F&S Elektronik Introduces efus A53LS NXP QorIQ LS1012A System-on-Module for Communication & Networking Applications
NXP QorIQ LS1012A is a single core Cortex A53 communication processor that offers a 64-bit update to LS1021A dual core Cortex A7 processors found in gateways such as NXP LS1021A-IOTA IoT gateway reference design, and F&S Elektronik System has just launched efus A53LS system-on-module powered by the processor with up to 1GB RAM, up to 64SQPI NOR, access to the communication interfaces and peripherals from the processor via an efus compliant edge connector, and long term availability until 2030. efus A53LS COM specifications: Processor – NXP QorIQ Layerscape LS1012A single core ARM Cortex-A53 @ up to 800MHz System Memory – 512MB DDR3 by default, supports up to 1GB DDR3 RAM Storage – Up to 64MB QSPI NOR flash on-module, I/Os for SATA and SD card on edge connector Connectivity – 2x Realtek RTL8211F(N) Gigabit Ethernet transceiver chips, optional wireless module with dual WiFi IEEE802.11b/g/n/ac and Bluetooth 4.0 LE efus edge […]
Amlogic Releases Linux 3.14 Source Code for S905X, S905D, and S912 Processors, Has Started Working on Linux 4.4 / Android 7.0
Amlogic has just released buildroot with Linux 3.14 with support for Amlogic S905X (p212 board), S905D (p230 board), and S912 (Q200 board) processors, and the company appears to have started working on Linux 4.4 likely for future support for Android 7.0. You can check the source code as follows:
1 2 3 |
wget -c http://openlinux.amlogic.com:8000/download/ARM/filesystem/arm-buildroot-2016-08-18-5aaca1b35f.tar.gz tar xf arm-buildroot-2016-08-18-5aaca1b35f.tar.gz cd buildroot |
If you have the wrong toolchain the code won’t build (See comments section). So I installed several toolchains provided by Amlogic (all may not be needed) in /opt:
1 2 3 4 5 6 7 8 9 10 |
wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux.tar wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-arm-linux-gnueabihf.tar.gz wget -c http://openlinux.amlogic.com:8000/deploy/arc-4.8-amlogic-20130904-r2.tar.gz wget -c http://openlinux.amlogic.com:8000/deploy/CodeSourcery.tar.gz sudo tar xvf gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux.tar -C /opt sudo tar xvf gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar.bz2 -C /opt sudo tar xvf arc-4.8-amlogic-20130904-r2.tar.gz -C /opt sudo tar xvf gcc-linaro-arm-linux-gnueabihf.tar.gz -C /opt sudo tar xvf CodeSourcery.tar.gz -C /opt |
I also downloaded a shell script to add the toolchains to my path:
1 2 |
wget http://openlinux.amlogic.com:8000/deploy/TOOLSENV.sh source TOOLSENV.sh |
Once toolchains are setup, you can select one of three boards config (Q200 / S912 as example) and start building the code:
1 2 3 |
sudo apt install build-essential make mesongxm_q200_release_defconfig make |
If you are interested in S905X or S905D instead, use respectively mesongxl_p212_release_defconfig or mesongxl_p230_release_defconfig. I built both S912:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
ls -l output/images/ total 1338448 -rw-r--r-- 1 jaufranc jaufranc 20407939 Aug 30 13:44 boot.img lrwxrwxrwx 1 jaufranc jaufranc 54 Aug 30 13:44 dtb.img -> /home/jaufranc/buildroot/output/images/gxm_q200_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 40521 Aug 30 11:34 gxm_q200_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 16973552 Aug 30 11:34 Image -rw-r--r-- 1 jaufranc jaufranc 7002624 Aug 30 13:44 rootfs.cpio -rw-r--r-- 1 jaufranc jaufranc 3391430 Aug 30 13:44 rootfs.cpio.gz -rw-r--r-- 1 jaufranc jaufranc 3391494 Aug 30 13:44 rootfs.cpio.uboot -rw-r--r-- 1 jaufranc jaufranc 1073741824 Aug 30 13:44 rootfs.ext2 lrwxrwxrwx 1 jaufranc jaufranc 11 Aug 30 13:44 rootfs.ext4 -> rootfs.ext2 -rw-r--r-- 1 jaufranc jaufranc 176076800 Aug 30 13:44 rootfs.tar -rw-r--r-- 1 jaufranc jaufranc 67588619 Aug 30 13:45 rootfs.tar.gz -rw-r--r-- 1 jaufranc jaufranc 917504 Aug 30 13:42 u-boot.bin -rw-r--r-- 1 jaufranc jaufranc 918016 Aug 30 13:42 u-boot.bin.sd.bin |
and S905X images successfully:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
ls -l output/images/ total 593932 -rw-r--r-- 1 jaufranc jaufranc 20408642 Aug 30 13:41 boot.img lrwxrwxrwx 1 jaufranc jaufranc 72 Aug 30 13:41 dtb.img -> /home/jaufranc/edev/amlogic/905x/buildroot/output/images/gxl_p212_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 37278 Aug 30 12:08 gxl_p212_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 16973552 Aug 30 12:08 Image -rw-r--r-- 1 jaufranc jaufranc 7002624 Aug 30 13:40 rootfs.cpio -rw-r--r-- 1 jaufranc jaufranc 3391580 Aug 30 13:41 rootfs.cpio.gz -rw-r--r-- 1 jaufranc jaufranc 3391644 Aug 30 13:41 rootfs.cpio.uboot -rw-r--r-- 1 jaufranc jaufranc 1073741824 Aug 30 13:41 rootfs.ext2 lrwxrwxrwx 1 jaufranc jaufranc 11 Aug 30 13:41 rootfs.ext4 -> rootfs.ext2 -rw-r--r-- 1 jaufranc jaufranc 230502400 Aug 30 13:41 rootfs.tar -rw-r--r-- 1 jaufranc jaufranc 90573453 Aug 30 13:41 rootfs.tar.gz -rw-r--r-- 1 jaufranc jaufranc 917504 Aug 30 13:39 u-boot.bin -rw-r--r-- 1 jaufranc jaufranc 918016 Aug 30 13:39 u-boot.bin.sd.bin |
Separately, you can also find buildroot for Linux 4.4, but […]
Boundary Devices Nitrogen7 Single Board Computer is Powered by NXP i.MX7 Processor
While several system-on-modules based on Freescale/NXP i.MX7 processor have been announced such as Compulab CL-SOM-iMX7, or TechNexion PICO-IMX7-EMMC, I had not seen many single board computers or development boards based on the new processor, apart from Freescale i.MX7 96Boards by Arrow Electronics which was scheduled for Q4 2015, but has yet to launch. Boundary Devices Nitrogen7 board is another option that’s available now (in limited quantities) with NXP i.MX7 Cortex A7+Cortex M4 processor, 1GB RAM, 4 to 64GB eMMC, wired and wireless connectivity, and expansion headers. Nitrogen7 board specifications: SoC – Freescale i.MX7 single or dual ARM Cortex-A7 processor @ up to 1GHz + ARM Cortex-M4 MCU + 2D graphics engine System Memory – 1GB DDR3L Storage – 4GB eMMC flash (expandable to 64GB), 2MB Serial NOR Flash, SD card slot Connectivity – 1x 10/100/1Gb Ethernet, WiFi 802.11 a/b/g/n, Bluetooth 4.1 (TiWi-BLE combo module) Display – 24-bit RGB (via expansion […]
MYiR Tech Introduces Atmel SAMA5D4 CPU Module and Development Board
MYiR Tech has launched a new development board – MYD-JA5D4X – featuring their Atmel SAMA5D4 Cortex A5 system-on-module called MYC-JAD5D4X with 512MB DDR2, 512MB Flash, and various ports such as Fast Ethernet, RS485, LCD panel interface, USB connectors and so on. Target applications include control panel/HMI, fitness equipment, smart grid infrastructure, communications gateways, and imaging terminals among others. Let’s start wit the MYC-JAD5D4X CPU module specifications: SoC – Atmel SAMA5D42 or SAMA5D44 ARM Cortex-A5 processor @ up to 600MHz (945DMIPS) with NEON and FPU, 720p hardware video decoder (SAMA5D44 only) System Memory– 512MB (2x 256MB) DDR2 SDRAM Storage – 512MB NAND Flash, 4MB Data Flash, 64KB EEPROM Connectivity – On-board Ethernet PHY I/Os via 200-pin SO-DIMM edge connector 2 x Ethernet 3 x USB2.0 Host 8 x Serial ports 4 x TWI, 3 x SPI 5 x 12-bit ADC 1 x SMD 4 x 4-bit SDIO 1 x LCD 1 x ISI 7 […]
MYIR Tech Introduces TI Sitara Cortex A9 MYC-C437X SoM and MYD-C437X Development Board
MYIR Tech previously launched Ricoboard, a low cost single board computer powered by Texas Instruments AM4379 ARM Cortex A9 processor. The company has now introduced a system-on-module based on Sitara AM437x processors, as well as a corresponding carrier board for industrial applications. MYIR Tech MYC-C437x Sitara AM437x System-on-Module MYC-C437x SoM specifications: SoC – Texas Instruments AM437x single core ARM Cortex A9 processor @ up to 1GHz (AM4376, AM4377, AM4378, AM4379) with PowerVR SGX530 GPU (for AM4378/AM4379) System Memory – 512MB DDR3 (256MB optional) Storage – 4GB eMMC Flash (reserved 256/512MB Nand Flash design), 16MB QSPI Flash (unpopulated by default), 32KB EEPROM Connectivity – Gigabit Ethernet PHY Peripherals and signals via 2x 100-pin board to board connectors (0.8mm pitch): 2x Gigabit Ethernet 2x USB 6x Serial ports, 2 x CAN 2x I2C, 2 x SPI 14x ADC (8 channels from ADC1 and 6 channels from ADC0) 3x SDIO 2x Camera interfaces JTAG […]
Calao Systems SMC-NTEK1 is a SMARC System-on-Module Powered by Nvidia Tegra K1
Calao Systems has introduced a new system-on-module compliant with SGET SMARC specifications, and powered by Nvidia Tegra K1 quad core Cortex A15 processor, that targets embedded systems for vision, video, data analytic and high computing applications. Calao SMC-NTEK1-IXX module specifications: SoC – Nvidia Tegra K1 quad core Cortex A15 processor with a Kepler GPU System Memory – 2GB DDR3L Storage – 8 GB e-MMC, 8 MB SPI Flash, 1x EEPROM with unique S/N and MAC address Security – 1x Trusted Platform Module (TPM), 1x Crypto Authentication I/Os via MXM3 edge connector: Storage – SATA 3Gb/s, 1x SDIO Video Output – 1x LVDS, 1x HDMI Video Input / Camera – 2x CSI Audio I/F – 1x I2S, 1x S/PDIF Out Debugging – 1x JTAG Network connectivity – 1x Gigabit Ethernet USB – 2x USB 2.0 Host, 1x USB 2.0 OTG 1x PCIe x1 4x UART, 1x SPI, 3x I2C, 12x GPIO […]
Next Thing Has Released Software and Hardware Files for the $9 CHIP Computer
Next Thing CHIP computer powered by Allwinner R8 module, also referred as “the $9 computer“, had a very successful crowdfunding campaign having raised over $2,000,000 from nearly 40,000 backers. When launching an electronics products on a crowdfunding campaign, many companies claim their device will be open source, only to disappoint once the perks actually ship, and Next Thing made the same promise, except they appear to have delivered as shown in their latest update “Holy C.H.I.P! It’s C.H.I.P!!!” showing the first production samples, and providing links to hardware design files for the Alpha version, as well as buildroot, U-boot and Linux source code. All resources can be found on docs.nexthing.co, but let’s check what they’ve released so far. Hardware design files on Github include: A Bill of Materials (BoM) Schematics in PDF and DSN formats PCB Layout in BRD and PNG format Pinouts for U12 and U14 connectors Mechanical files […]