configs: sei510: rework header and fix userdata size
authorGuillaume La Roque <glaroque@baylibre.com>
Fri, 11 Oct 2019 15:33:57 +0000 (17:33 +0200)
committerNeil Armstrong <narmstrong@baylibre.com>
Fri, 18 Oct 2019 12:51:14 +0000 (14:51 +0200)
Move android generic config and boot sequence in meson64_android header
and fix size of userdata to use all eMMC on SEI510.

Signed-off-by: Guillaume La Roque <glaroque@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
MAINTAINERS
include/configs/meson64_android.h [new file with mode: 0644]
include/configs/sei510.h

index bdc998a55e113855962e9a28106a64437ee27c32..a7c355c76f6f4d1976c3967701059a0122883d01 100644 (file)
@@ -137,6 +137,7 @@ F:  drivers/pinctrl/meson/
 F:     drivers/power/domain/meson-gx-pwrc-vpu.c
 F:     drivers/video/meson/
 F:     include/configs/meson64.h
+F:     include/configs/meson64_android.h
 N:     meson
 
 ARM BROADCOM BCM283X
diff --git a/include/configs/meson64_android.h b/include/configs/meson64_android.h
new file mode 100644 (file)
index 0000000..055fb44
--- /dev/null
@@ -0,0 +1,136 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Configuration for Android Amlogic Meson 64bits SoCs
+ *
+ * Copyright (C) 2019 Baylibre, SAS
+ * Author: Jerome Brunet <jbrunet@baylibre.com>
+ */
+
+#ifndef __MESON64_ANDROID_CONFIG_H
+#define __MESON64_ANDROID_CONFIG_H
+
+#define CONFIG_SYS_MMC_ENV_DEV 2
+#define CONFIG_SYS_MMC_ENV_PART        1
+#define CONFIG_ENV_SIZE                0x10000
+#define CONFIG_ENV_OFFSET      (-0x10000)
+
+
+#define BOOTENV_DEV_FASTBOOT(devtypeu, devtypel, instance) \
+       "bootcmd_fastboot=" \
+               "sm reboot_reason reason;" \
+               "setenv run_fastboot 0;" \
+               "if test \"${boot_source}\" = \"usb\"; then " \
+                       "echo Fastboot forced by usb rom boot;" \
+                       "setenv run_fastboot 1;" \
+               "fi;" \
+               "if gpt verify mmc ${mmcdev} ${partitions}; then; " \
+               "else " \
+                       "echo Broken MMC partition scheme;" \
+                       "setenv run_fastboot 1;" \
+               "fi;" \
+               "if test \"${reason}\" = \"bootloader\" -o " \
+                       "\"${reason}\" = \"fastboot\"; then " \
+                       "echo Fastboot asked by reboot reason;" \
+                       "setenv run_fastboot 1;" \
+               "fi;" \
+               "if test \"${skip_fastboot}\" -eq 1; then " \
+                       "echo Fastboot skipped by environment;" \
+                       "setenv run_fastboot 0;" \
+               "fi;" \
+               "if test \"${force_fastboot}\" -eq 1; then " \
+                       "echo Fastboot forced by environment;" \
+                       "setenv run_fastboot 1;" \
+               "fi;" \
+               "if test \"${run_fastboot}\" -eq 1; then " \
+                       "echo Running Fastboot...;" \
+                       "fastboot 0;" \
+               "fi\0"
+
+#define BOOTENV_DEV_NAME_FASTBOOT(devtypeu, devtypel, instance)        \
+               "fastboot "
+
+/* TOFIX: Run actual recovery instead of fastboot */
+#define BOOTENV_DEV_RECOVERY(devtypeu, devtypel, instance) \
+       "bootcmd_recovery=" \
+               "pinmux dev pinctrl@14;" \
+               "pinmux dev pinctrl@40;" \
+               "sm reboot_reason reason;" \
+               "setenv run_recovery 0;" \
+               "if run check_button; then " \
+                       "echo Recovery button is pressed;" \
+                       "setenv run_recovery 1;" \
+               "elif test \"${reason}\" = \"recovery\" -o " \
+                         "\"${reason}\" = \"update\"; then " \
+                       "echo Recovery asked by reboot reason;" \
+                       "setenv run_recovery 1;" \
+               "fi;" \
+               "if test \"${skip_recovery}\" -eq 1; then " \
+                       "echo Recovery skipped by environment;" \
+                       "setenv run_recovery 0;" \
+               "fi;" \
+               "if test \"${force_recovery}\" -eq 1; then " \
+                       "echo Recovery forced by environment;" \
+                       "setenv run_recovery 1;" \
+               "fi;" \
+               "if test \"${run_recovery}\" -eq 1; then " \
+                       "echo Running Recovery...;" \
+                       "fastboot 0;" \
+               "fi\0"
+
+#define BOOTENV_DEV_NAME_RECOVERY(devtypeu, devtypel, instance)        \
+               "recovery "
+
+#define BOOTENV_DEV_SYSTEM(devtypeu, devtypel, instance) \
+       "bootcmd_system=" \
+               "echo Loading Android boot partition...;" \
+               "mmc dev ${mmcdev};" \
+               "setenv bootargs ${bootargs} console=${console} androidboot.serialno=${serial#};" \
+               "part start mmc ${mmcdev} ${bootpart} boot_start;" \
+               "part size mmc ${mmcdev} ${bootpart} boot_size;" \
+               "if mmc read ${loadaddr} ${boot_start} ${boot_size}; then " \
+                       "echo Running Android...;" \
+                       "bootm ${loadaddr};" \
+               "fi;" \
+               "echo Failed to boot Android...;" \
+               "reset\0"
+
+#define BOOTENV_DEV_NAME_SYSTEM(devtypeu, devtypel, instance)  \
+               "system "
+
+#define BOOT_TARGET_DEVICES(func) \
+       func(FASTBOOT, fastboot, na) \
+       func(RECOVERY, recovery, na) \
+       func(SYSTEM, system, na) \
+
+#define PREBOOT_LOAD_LOGO \
+       "mmc dev ${mmcdev};" \
+       "part start mmc ${mmcdev} ${logopart} boot_start;" \
+       "part size mmc ${mmcdev} ${logopart} boot_size;" \
+       "if mmc read ${loadaddr} ${boot_start} ${boot_size}; then " \
+                       "bmp display ${loadaddr} m m;" \
+       "fi;"
+
+#define CONFIG_EXTRA_ENV_SETTINGS                                     \
+       "partitions=" PARTS_DEFAULT "\0"                              \
+       "mmcdev=2\0"                                                  \
+       "bootpart=1\0"                                                \
+       "logopart=2\0"                                                \
+       "gpio_recovery=88\0"                                          \
+       "check_button=gpio input ${gpio_recovery};test $? -eq 0;\0"   \
+       "load_logo=" PREBOOT_LOAD_LOGO "\0"                           \
+       "console=/dev/ttyAML0\0"                                      \
+       "bootargs=no_console_suspend\0"                               \
+       "stdin=" STDIN_CFG "\0"                                       \
+       "stdout=" STDOUT_CFG "\0"                                     \
+       "stderr=" STDOUT_CFG "\0"                                     \
+       "loadaddr=0x01000000\0"                                       \
+       "fdt_addr_r=0x01000000\0"                                     \
+       "scriptaddr=0x08000000\0"                                     \
+       "kernel_addr_r=0x01080000\0"                                  \
+       "pxefile_addr_r=0x01080000\0"                                 \
+       "ramdisk_addr_r=0x13000000\0"                                 \
+       "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" BOOTENV
+
+#include <configs/meson64.h>
+
+#endif /* __MESON64_ANDROID_CONFIG_H */
index 5bf982cada884e084a4b30cf6f165b5721c4acca..d37b4c64053efeb782f63ae48269822f1ace4cb2 100644 (file)
@@ -9,11 +9,6 @@
 #ifndef __CONFIG_H
 #define __CONFIG_H
 
-#define CONFIG_SYS_MMC_ENV_DEV 2
-#define CONFIG_SYS_MMC_ENV_PART        1
-#define CONFIG_ENV_SIZE                0x10000
-#define CONFIG_ENV_OFFSET      (-0x10000)
-
 #define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
 #define CACHE_UUID "99207ae6-5207-11e9-999e-6f77a3612069;"
 #define SYSTEM_UUID "99f9b7ac-5207-11e9-8507-c3c037e393f3;"
        "name=cache,size=256M,uuid=" CACHE_UUID             \
        "name=system,size=1536M,uuid=" SYSTEM_UUID           \
        "name=vendor,size=256M,uuid=" VENDOR_UUID            \
-       "name=userdata,size=4746M,uuid=" USERDATA_UUID  \
+       "name=userdata,size=5341M,uuid=" USERDATA_UUID  \
        "name=rootfs,size=-,uuid=" ROOT_UUID
 
-#define BOOTENV_DEV_FASTBOOT(devtypeu, devtypel, instance) \
-       "bootcmd_fastboot=" \
-               "sm reboot_reason reason;" \
-               "setenv run_fastboot 0;" \
-               "if gpt verify mmc ${mmcdev} ${partitions}; then; " \
-               "else " \
-                       "echo Broken MMC partition scheme;" \
-                       "setenv run_fastboot 1;" \
-               "fi;" \
-               "if test \"${reason}\" = \"bootloader\" -o " \
-                       "\"${reason}\" = \"fastboot\"; then " \
-                       "echo Fastboot asked by reboot reason;" \
-                       "setenv run_fastboot 1;" \
-               "fi;" \
-               "if test \"${skip_fastboot}\" -eq 1; then " \
-                       "echo Fastboot skipped by environment;" \
-                       "setenv run_fastboot 0;" \
-               "fi;" \
-               "if test \"${force_fastboot}\" -eq 1; then " \
-                       "echo Fastboot forced by environment;" \
-                       "setenv run_fastboot 1;" \
-               "fi;" \
-               "if test \"${run_fastboot}\" -eq 1; then " \
-                       "echo Running Fastboot...;" \
-                       "fastboot 0;" \
-               "fi\0"
-
-#define BOOTENV_DEV_NAME_FASTBOOT(devtypeu, devtypel, instance)        \
-               "fastboot "
-
-/* TOFIX: Run actual recovery instead of fastboot */
-#define BOOTENV_DEV_RECOVERY(devtypeu, devtypel, instance) \
-       "bootcmd_recovery=" \
-               "pinmux dev pinctrl@14;" \
-               "pinmux dev pinctrl@40;" \
-               "sm reboot_reason reason;" \
-               "setenv run_recovery 0;" \
-               "if run check_button; then " \
-                       "echo Recovery button is pressed;" \
-                       "setenv run_recovery 1;" \
-               "elif test \"${reason}\" = \"recovery\" -o " \
-                         "\"${reason}\" = \"update\"; then " \
-                       "echo Recovery asked by reboot reason;" \
-                       "setenv run_recovery 1;" \
-               "fi;" \
-               "if test \"${skip_recovery}\" -eq 1; then " \
-                       "echo Recovery skipped by environment;" \
-                       "setenv run_recovery 0;" \
-               "fi;" \
-               "if test \"${force_recovery}\" -eq 1; then " \
-                       "echo Recovery forced by environment;" \
-                       "setenv run_recovery 1;" \
-               "fi;" \
-               "if test \"${run_recovery}\" -eq 1; then " \
-                       "echo Running Recovery...;" \
-                       "fastboot 0;" \
-               "fi\0"
-
-#define BOOTENV_DEV_NAME_RECOVERY(devtypeu, devtypel, instance)        \
-               "recovery "
-
-#define BOOTENV_DEV_SYSTEM(devtypeu, devtypel, instance) \
-       "bootcmd_system=" \
-               "echo Loading Android boot partition...;" \
-               "mmc dev ${mmcdev};" \
-               "setenv bootargs ${bootargs} console=${console} androidboot.serialno=${serial#};" \
-               "part start mmc ${mmcdev} ${bootpart} boot_start;" \
-               "part size mmc ${mmcdev} ${bootpart} boot_size;" \
-               "if mmc read ${loadaddr} ${boot_start} ${boot_size}; then " \
-                       "echo Running Android...;" \
-                       "bootm ${loadaddr};" \
-               "fi;" \
-               "echo Failed to boot Android...;" \
-               "reset\0"
-
-#define BOOTENV_DEV_NAME_SYSTEM(devtypeu, devtypel, instance)  \
-               "system "
-
-#define BOOT_TARGET_DEVICES(func) \
-       func(ROMUSB, romusb, na)  \
-       func(FASTBOOT, fastboot, na) \
-       func(RECOVERY, recovery, na) \
-       func(SYSTEM, system, na) \
-
-#define PREBOOT_LOAD_LOGO \
-       "mmc dev ${mmcdev};" \
-       "part start mmc ${mmcdev} ${logopart} boot_start;" \
-       "part size mmc ${mmcdev} ${logopart} boot_size;" \
-       "if mmc read ${loadaddr} ${boot_start} ${boot_size}; then " \
-                       "bmp display ${loadaddr} m m;" \
-       "fi;"
-
-#define CONFIG_EXTRA_ENV_SETTINGS                                     \
-       "partitions=" PARTS_DEFAULT "\0"                              \
-       "mmcdev=2\0"                                                  \
-       "bootpart=1\0"                                                \
-       "logopart=2\0"                                                \
-       "gpio_recovery=88\0"                                          \
-       "check_button=gpio input ${gpio_recovery};test $? -eq 0;\0"   \
-       "load_logo=" PREBOOT_LOAD_LOGO "\0"                           \
-       "console=/dev/ttyAML0\0"                                      \
-       "bootargs=no_console_suspend\0"                               \
-       "stdin=" STDIN_CFG "\0"                                       \
-       "stdout=" STDOUT_CFG "\0"                                     \
-       "stderr=" STDOUT_CFG "\0"                                     \
-       "loadaddr=0x01000000\0"                                       \
-       "fdt_addr_r=0x01000000\0"                                     \
-       "scriptaddr=0x08000000\0"                                     \
-       "kernel_addr_r=0x01080000\0"                                  \
-       "pxefile_addr_r=0x01080000\0"                                 \
-       "ramdisk_addr_r=0x13000000\0"                                 \
-       "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" BOOTENV
 
-#include <configs/meson64.h>
+#include <configs/meson64_android.h>
 
 #endif /* __CONFIG_H */