public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] sun6i: Add support for the Mele I7 board
@ 2015-02-28 14:00 codekipper at gmail.com
  2015-03-03 21:45 ` [U-Boot] [PATCH] sunxi: Add support for the Forfun Q88DB tablet Jens Lucius
  0 siblings, 1 reply; 3+ messages in thread
From: codekipper at gmail.com @ 2015-02-28 14:00 UTC (permalink / raw)
  To: u-boot

From: Marcus Cooper <codekipper@gmail.com>

The Mele I7 is a Allwinner based Android TV box.

It features a A31 SOC, 1G RAM, 8GB NAND, HDMI out, A/V out,
SPDIF, IrDA, 3 USB A, 1 USB micro OTG and Wireless LAN.

Signed-off-by: Marcus Cooper <codekipper@gmail.com>
---
 board/sunxi/MAINTAINERS   |  5 +++++
 configs/Mele_I7_defconfig | 20 ++++++++++++++++++++
 2 files changed, 25 insertions(+)
 create mode 100644 configs/Mele_I7_defconfig

diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index ead09c9..4c167f7 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -100,6 +100,11 @@ M:	Aleksei Mamlin <mamlinav@gmail.com>
 S:	Maintained
 F:	configs/Marsboard_A10_defconfig
 
+MELE I7 BOARD
+M:	Marcus Cooper <codekipper@gmail.com>
+S:	Maintained
+F:	configs/Mele_I7_defconfig
+
 MELE M5 BOARD
 M:	Ian Campbell <ijc@hellion.org.uk>
 S:	Maintained
diff --git a/configs/Mele_I7_defconfig b/configs/Mele_I7_defconfig
new file mode 100644
index 0000000..1046694
--- /dev/null
+++ b/configs/Mele_I7_defconfig
@@ -0,0 +1,20 @@
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="USB_EHCI,SUNXI_GMAC"
+CONFIG_FDTFILE="sun6i-a31-i7.dtb"
++S:CONFIG_ARM=y
++S:CONFIG_ARCH_SUNXI=y
++S:CONFIG_MACH_SUN6I=y
++S:CONFIG_DRAM_CLK=312
++S:CONFIG_DRAM_ZQ=120
+# The Mele I7 uses 3.3V for general IO
++S:CONFIG_AXP221_DCDC1_VOLT=3300
+# Ethernet phy power
++S:CONFIG_AXP221_DLDO1_VOLT=3300
+# USB hub power
++S:CONFIG_AXP221_DLDO4_VOLT=3300
+# Wifi power
++S:CONFIG_AXP221_ALDO1_VOLT=3300
+# Vbus gpio for usb1
++S:CONFIG_USB1_VBUS_PIN="PC27"
+# No Vbus gpio for usb2
++S:CONFIG_USB2_VBUS_PIN=""
-- 
2.3.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] sunxi: Add support for the Forfun Q88DB tablet
  2015-02-28 14:00 [U-Boot] [PATCH] sun6i: Add support for the Mele I7 board codekipper at gmail.com
@ 2015-03-03 21:45 ` Jens Lucius
  2015-03-08  9:05   ` Ian Campbell
  0 siblings, 1 reply; 3+ messages in thread
From: Jens Lucius @ 2015-03-03 21:45 UTC (permalink / raw)
  To: u-boot

The Forfun Q88DB is an A13 tablet in the common Q8 format.

Features are 512MB RAM, 4GB NAND, 7" Display, RTL8188 Wifi, 2 cameras.

For more details see: http://linux-sunxi.org/Forfun_Q88DB

Signed-off-by: Jens Lucius <info@jenslucius.com>
---
:100644 100644 9a287d3... cfc2764... M  board/sunxi/MAINTAINERS
:000000 100644 0000000... e1b11a2... A configs/forfun_q88db_defconfig
  board/sunxi/MAINTAINERS        |  5 +++++
  configs/forfun_q88db_defconfig | 17 +++++++++++++++++
  2 files changed, 22 insertions(+)

diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index 9a287d3..cfc2764 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -64,6 +64,11 @@ F:   include/configs/sun7i.h
  F:     configs/Cubieboard2_defconfig
  F:     configs/Cubietruck_defconfig

+FORFUN-Q88DB TABLET
+M:     Jens Lucius <info@jenslucius.com>
+S:     Maintained
+F:     configs/forfun_q88db_defconfig
+
  GEMEI-G9 TABLET
  M:     Priit Laes <plaes@plaes.org>
  S:     Maintained
diff --git a/configs/forfun_q88db_defconfig b/configs/forfun_q88db_defconfig
new file mode 100644
index 0000000..e1b11a2
--- /dev/null
+++ b/configs/forfun_q88db_defconfig
@@ -0,0 +1,17 @@
+CONFIG_SPL=y
+CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
+CONFIG_FDTFILE="sun5i-a13-forfun-q88db.dtb"
+CONFIG_USB_MUSB_SUNXI=y
+CONFIG_USB0_VBUS_PIN="PG12"
+CONFIG_USB0_VBUS_DET="PG1"
+CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:87,ri:40,up:31,lo:13,hs:1,vs:1,sync:3,vmode:0"
+CONFIG_VIDEO_LCD_POWER="AXP0-0"
+CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
+CONFIG_VIDEO_LCD_BL_PWM="PB2"
++S:CONFIG_ARM=y
++S:CONFIG_ARCH_SUNXI=y
++S:CONFIG_MACH_SUN5I=y
++S:CONFIG_DRAM_CLK=384
++S:CONFIG_DRAM_ZQ=123
++S:CONFIG_DRAM_EMR1=4
+
--
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] sunxi: Add support for the Forfun Q88DB tablet
  2015-03-03 21:45 ` [U-Boot] [PATCH] sunxi: Add support for the Forfun Q88DB tablet Jens Lucius
@ 2015-03-08  9:05   ` Ian Campbell
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2015-03-08  9:05 UTC (permalink / raw)
  To: u-boot

On Tue, 2015-03-03 at 22:45 +0100, Jens Lucius wrote:
> The Forfun Q88DB is an A13 tablet in the common Q8 format.
> 
> Features are 512MB RAM, 4GB NAND, 7" Display, RTL8188 Wifi, 2 cameras.
> 
> For more details see: http://linux-sunxi.org/Forfun_Q88DB
> 
> Signed-off-by: Jens Lucius <info@jenslucius.com>

Applied to u-boot-sunxi#next, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-03-08  9:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-28 14:00 [U-Boot] [PATCH] sun6i: Add support for the Mele I7 board codekipper at gmail.com
2015-03-03 21:45 ` [U-Boot] [PATCH] sunxi: Add support for the Forfun Q88DB tablet Jens Lucius
2015-03-08  9:05   ` Ian Campbell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox