The GW5520 is a small form-factor single-board computer with the following features: * 70x100mm form-factor * IMX6DL 800MHz SoC (IMX6Q optional) * 512MB 32bit DDR3 SDRAM (up to 2GB optional) * 256MB NAND FLASH (up to 2GB optional) * Gateworks System Controller * 2x front-panel Intel i210 GbE adapters with passive PoE support * 2x MiniPCIe sockets with USB support * 2x front-panel USB * 1x rear-panel full-size HDMI connector * 1x front-panel bi-color user LED * 1x front-panel user pushbutton * 1x rear-panel barrel jack for power * 1x Application connector with: * 2x TTL level UARTs * 10x TTL level Digital IO Signed-off-by: Tim Harvey <tharvey@gateworks.com> SVN-Revision: 42148
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| #
 | |
| # Copyright (C) 2010-2013 OpenWrt.org
 | |
| #
 | |
| 
 | |
| IMX6_BOARD_NAME=
 | |
| IMX6_MODEL=
 | |
| 
 | |
| imx6_board_detect() {
 | |
| 	local machine
 | |
| 	local name
 | |
| 
 | |
| 	machine=$(cat /proc/device-tree/model)
 | |
| 
 | |
| 	case "$machine" in
 | |
| 	"Gateworks Ventana i.MX6 DualLite/Solo GW51XX" |\
 | |
| 	"Gateworks Ventana i.MX6 Dual/Quad GW51XX")
 | |
| 		name="gw51xx"
 | |
| 		;;
 | |
| 
 | |
| 	"Gateworks Ventana i.MX6 DualLite/Solo GW52XX" |\
 | |
| 	"Gateworks Ventana i.MX6 Dual/Quad GW52XX")
 | |
| 		name="gw52xx"
 | |
| 		;;
 | |
| 
 | |
| 	"Gateworks Ventana i.MX6 DualLite/Solo GW53XX" |\
 | |
| 	"Gateworks Ventana i.MX6 Dual/Quad GW53XX")
 | |
| 		name="gw53xx"
 | |
| 		;;
 | |
| 
 | |
| 	"Gateworks Ventana i.MX6 DualLite/Solo GW54XX" |\
 | |
| 	"Gateworks Ventana i.MX6 Dual/Quad GW54XX" |\
 | |
| 	"Gateworks Ventana GW5400-A")
 | |
| 		name="gw54xx"
 | |
| 		;;
 | |
| 
 | |
| 	"Gateworks Ventana i.MX6 DualLite/Solo GW552X" |\
 | |
| 	"Gateworks Ventana i.MX6 Dual/Quad GW552X")
 | |
| 		name="gw552x"
 | |
| 		;;
 | |
| 
 | |
| 	"Wandboard i.MX6 Dual Lite Board")
 | |
| 		name="wandboard"
 | |
| 		;;
 | |
| 
 | |
| 	*)
 | |
| 		name="generic"
 | |
| 		;;
 | |
| 	esac
 | |
| 
 | |
| 	[ -z "$IMX6_BOARD_NAME" ] && IMX6_BOARD_NAME="$name"
 | |
| 	[ -z "$IMX6_MODEL" ] && IMX6_MODEL="$machine"
 | |
| 
 | |
| 	[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
 | |
| 
 | |
| 	echo "$IMX6_BOARD_NAME" > /tmp/sysinfo/board_name
 | |
| 	echo "$IMX6_MODEL" > /tmp/sysinfo/model
 | |
| }
 | |
| 
 | |
| imx6_board_name() {
 | |
| 	local name
 | |
| 
 | |
| 	[ -f /tmp/sysinfo/board_name ] || imx6_board_detect
 | |
| 	[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
 | |
| 	[ -z "$name" ] && name="unknown"
 | |
| 
 | |
| 	echo "$name"
 | |
| }
 |