aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/rockchip/tinker_rk3288
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/rockchip/tinker_rk3288')
-rw-r--r--roms/u-boot/board/rockchip/tinker_rk3288/Kconfig15
-rw-r--r--roms/u-boot/board/rockchip/tinker_rk3288/MAINTAINERS13
-rw-r--r--roms/u-boot/board/rockchip/tinker_rk3288/Makefile7
-rw-r--r--roms/u-boot/board/rockchip/tinker_rk3288/tinker-rk3288.c50
4 files changed, 85 insertions, 0 deletions
diff --git a/roms/u-boot/board/rockchip/tinker_rk3288/Kconfig b/roms/u-boot/board/rockchip/tinker_rk3288/Kconfig
new file mode 100644
index 000000000..bca6c37bc
--- /dev/null
+++ b/roms/u-boot/board/rockchip/tinker_rk3288/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_TINKER_RK3288
+
+config SYS_BOARD
+ default "tinker_rk3288"
+
+config SYS_VENDOR
+ default "rockchip"
+
+config SYS_CONFIG_NAME
+ default "tinker_rk3288"
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+
+endif
diff --git a/roms/u-boot/board/rockchip/tinker_rk3288/MAINTAINERS b/roms/u-boot/board/rockchip/tinker_rk3288/MAINTAINERS
new file mode 100644
index 000000000..ed5de682c
--- /dev/null
+++ b/roms/u-boot/board/rockchip/tinker_rk3288/MAINTAINERS
@@ -0,0 +1,13 @@
+TINKER-RK3288
+M: Lin Huang <hl@rock-chips.com>
+S: Maintained
+F: board/rockchip/tinker_rk3288
+F: include/configs/tinker_rk3288.h
+F: configs/tinker-rk3288_defconfig
+
+TINKER-S-RK3288
+M: Michael Trimarchi <michael@amarulasolutions.com>
+S: Maintained
+F: board/rockchip/tinker_rk3288
+F: include/configs/tinker_rk3288.h
+F: configs/tinker-s-rk3288_defconfig
diff --git a/roms/u-boot/board/rockchip/tinker_rk3288/Makefile b/roms/u-boot/board/rockchip/tinker_rk3288/Makefile
new file mode 100644
index 000000000..432367f4e
--- /dev/null
+++ b/roms/u-boot/board/rockchip/tinker_rk3288/Makefile
@@ -0,0 +1,7 @@
+#
+# (C) Copyright 2016 Rockchip Electronics Co., Ltd
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+obj-y += tinker-rk3288.o
diff --git a/roms/u-boot/board/rockchip/tinker_rk3288/tinker-rk3288.c b/roms/u-boot/board/rockchip/tinker_rk3288/tinker-rk3288.c
new file mode 100644
index 000000000..f85209c64
--- /dev/null
+++ b/roms/u-boot/board/rockchip/tinker_rk3288/tinker-rk3288.c
@@ -0,0 +1,50 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * (C) Copyright 2016 Rockchip Electronics Co., Ltd
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <eeprom.h>
+#include <env.h>
+#include <i2c_eeprom.h>
+#include <init.h>
+#include <net.h>
+#include <netdev.h>
+#include <asm/arch-rockchip/bootrom.h>
+#include <asm/io.h>
+
+static int get_ethaddr_from_eeprom(u8 *addr)
+{
+ int ret;
+ struct udevice *dev;
+
+ ret = uclass_first_device_err(UCLASS_I2C_EEPROM, &dev);
+ if (ret)
+ return ret;
+
+ return i2c_eeprom_read(dev, 0, addr, 6);
+}
+
+int rk3288_board_late_init(void)
+{
+ u8 ethaddr[6];
+
+ if (get_ethaddr_from_eeprom(ethaddr))
+ return 0;
+
+ if (is_valid_ethaddr(ethaddr))
+ eth_env_set_enetaddr("ethaddr", ethaddr);
+
+ return 0;
+}
+
+int mmc_get_env_dev(void)
+{
+ u32 bootdevice_brom_id = readl(BROM_BOOTSOURCE_ID_ADDR);
+
+ if (bootdevice_brom_id == BROM_BOOTSOURCE_EMMC)
+ return 0;
+
+ return 1;
+}