fa8e8d262e
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
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Profile/VENTANA
|
|
NAME:=Gateworks Ventana family
|
|
PACKAGES:= \
|
|
kmod-thermal-imx kmod-sky2 kmod-usb-chipidea kmod-usb-mxs-phy \
|
|
kmod-sound-core kmod-sound-soc-imx kmod-sound-soc-imx-sgtl5000 \
|
|
kmod-can kmod-can-flexcan kmod-can-raw \
|
|
kmod-rtc-ds1672 kmod-gpio-pca953x kmod-hwmon-gsc kmod-eeprom-at24 \
|
|
kmod-leds-gpio kmod-pps-gpio kmod-gw16083 \
|
|
kobs-ng
|
|
endef
|
|
|
|
define Profile/VENTANA/Description
|
|
The Gateworks Ventana family of products is based on the Freescale i.MX6Q SoC
|
|
and offers a large variety of peripherals such as:
|
|
|
|
* DDR3
|
|
* NAND or SPI flash
|
|
* multiple PCIe (with USB for Cellular modems)
|
|
* Optional expansion for additional USB/PCI based periperhals
|
|
* USB EHCI
|
|
* USB OTG
|
|
* HDMI Audio/Video in/out
|
|
* Analog Video in/out
|
|
* Analog Audio in/out
|
|
* Gateworks System Controller
|
|
* Optional GPS with PPS
|
|
* Canbus
|
|
* User GPIO
|
|
* mSATA
|
|
endef
|
|
|
|
VENTANA_DTS:= \
|
|
imx6dl-gw51xx \
|
|
imx6dl-gw52xx \
|
|
imx6dl-gw53xx \
|
|
imx6dl-gw54xx \
|
|
imx6dl-gw552x \
|
|
imx6q-gw51xx \
|
|
imx6q-gw52xx \
|
|
imx6q-gw53xx \
|
|
imx6q-gw54xx \
|
|
imx6q-gw5400-a \
|
|
imx6q-gw552x
|
|
|
|
$(eval $(call Profile,VENTANA))
|