configs: meson64: Remove the duplicated defined ENV_SETTING
[platform/kernel/u-boot.git] / include / configs / meson64.h
index 196e58e..fee23d5 100644 (file)
@@ -7,17 +7,30 @@
 #ifndef __MESON64_CONFIG_H
 #define __MESON64_CONFIG_H
 
+/* Tizen Specific configuration for Amlogic */
+#include <samsung/tizen_amlogic.h>
+
 /* Generic Interrupt Controller Definitions */
 #if (defined(CONFIG_MESON_AXG) || defined(CONFIG_MESON_G12A))
 #define GICD_BASE                      0xffc01000
 #define GICC_BASE                      0xffc02000
+#elif defined(CONFIG_MESON_A1)
+#define GICD_BASE                      0xff901000
+#define GICC_BASE                      0xff902000
 #else /* MESON GXL and GXBB */
 #define GICD_BASE                      0xc4301000
 #define GICC_BASE                      0xc4302000
 #endif
 
+/* Serial drivers */
+/* The following table includes the supported baudrates */
+#define CFG_SYS_BAUDRATE_TABLE  \
+       {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, \
+               230400, 250000, 460800, 500000, 1000000, 2000000, 4000000, \
+               8000000 }
+
 /* For splashscreen */
-#ifdef CONFIG_DM_VIDEO
+#ifdef CONFIG_VIDEO
 #define STDOUT_CFG "vidconsole,serial"
 #else
 #define STDOUT_CFG "serial"
 #define STDIN_CFG "serial"
 #endif
 
-#define CONFIG_SYS_MAXARGS             32
-#define CONFIG_SYS_CBSIZE              1024
-
-#define CONFIG_SYS_SDRAM_BASE          0
-#define CONFIG_SYS_INIT_SP_ADDR                0x20000000
-#define CONFIG_SYS_BOOTM_LEN           (64 << 20) /* 64 MiB */
+#define CFG_SYS_SDRAM_BASE             0
 
 /* ROM USB boot support, auto-execute boot.scr at scriptaddr */
 #define BOOTENV_DEV_ROMUSB(devtypeu, devtypel, instance) \
@@ -81,8 +89,8 @@
 
 #include <config_distro_bootcmd.h>
 
-#ifndef CONFIG_EXTRA_ENV_SETTINGS
-#define CONFIG_EXTRA_ENV_SETTINGS \
+#ifndef CFG_EXTRA_ENV_SETTINGS
+#define CFG_EXTRA_ENV_SETTINGS \
        "stdin=" STDIN_CFG "\0" \
        "stdout=" STDOUT_CFG "\0" \
        "stderr=" STDOUT_CFG "\0" \
        "pxefile_addr_r=0x01080000\0" \
        "fdtoverlay_addr_r=0x01000000\0" \
        "ramdisk_addr_r=0x13000000\0" \
-       "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
-       BOOTENV
+       BOOTENV         \
+       TIZEN_ENV_SETTING
 #endif
 
-
 #endif /* __MESON64_CONFIG_H */