From d3aa051e7a29352aacb35d5392f3420d107e0f5a Mon Sep 17 00:00:00 2001 From: Han Pengfei Date: Thu, 12 Mar 2015 11:13:02 +0800 Subject: sun6i: Add support for the Mixtile LOFT-Q board The Mixtile LOFT-Q is an A31 based board with 2G RAM, 8G EMMC, sdio wifi, 1Gbit ethernet, HDMI display, toslink audio plug, 4 USB2.0 port, external USB2SATA connector, sd card plug, 3x60 external fpic expansion connector, NXP JN5168 zigbee gw, remote support. Also see http://focalcrest.com/en/pc.html#pro02 Signed-off-by: Han Pengfei Acked-by: Hans de Goede Signed-off-by: Hans de Goede --- configs/mixtile_loftq_defconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 configs/mixtile_loftq_defconfig (limited to 'configs/mixtile_loftq_defconfig') diff --git a/configs/mixtile_loftq_defconfig b/configs/mixtile_loftq_defconfig new file mode 100644 index 0000000000..47453cd362 --- /dev/null +++ b/configs/mixtile_loftq_defconfig @@ -0,0 +1,21 @@ +# The Mixtile LOFT-Q is an A31 based board with 2G RAM, 8G EMMC, sdio wifi, +# 1Gbit ethernet, HDMI display, toslink audio plug, 4 USB2.0 port, external +# USB2SATA connector, sd card plug, 3x60 external fpic expansion connector, +# NXP JN5168 zigbee gw, remote support. +# +# Also see http://focalcrest.com/en/pc.html#pro02 +CONFIG_SPL=y +CONFIG_SYS_EXTRA_OPTIONS="USB_EHCI,SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPA(21)" +CONFIG_ARM=y +CONFIG_ARCH_SUNXI=y +CONFIG_MACH_SUN6I=y +CONFIG_DRAM_CLK=312 +CONFIG_DRAM_ZQ=251 +CONFIG_MMC_SUNXI_SLOT=0 +CONFIG_MMC_SUNXI_SLOT_EXTRA=2 +# Wifi power +CONFIG_AXP221_ALDO1_VOLT=3300 +# Vbus gpio for usb1 +CONFIG_USB1_VBUS_PIN="PH24" +# No Vbus gpio for usb2 +CONFIG_USB2_VBUS_PIN="" -- cgit From ef48f6dd305e9b8ab8873599acfe26df0e625606 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 5 Apr 2015 16:07:34 -0600 Subject: Kconfig: Move CONFIG_DESIGNWARE_ETH to Kconfig Move this to Kconfig and clean up board config files that use it. Also rename it to CONFIG_ETH_DESIGNWARE to fit with the naming that exists in drivers/net/Kconfig. Signed-off-by: Simon Glass Version 1: Acked-by: Joe Hershberger --- configs/mixtile_loftq_defconfig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configs/mixtile_loftq_defconfig') diff --git a/configs/mixtile_loftq_defconfig b/configs/mixtile_loftq_defconfig index 47453cd362..8275df8462 100644 --- a/configs/mixtile_loftq_defconfig +++ b/configs/mixtile_loftq_defconfig @@ -19,3 +19,6 @@ CONFIG_AXP221_ALDO1_VOLT=3300 CONFIG_USB1_VBUS_PIN="PH24" # No Vbus gpio for usb2 CONFIG_USB2_VBUS_PIN="" +CONFIG_ETH_DESIGNWARE=y +CONFIG_NETDEVICES=y +CONFIG_NET=y -- cgit