blob: 4d78935e938a6ddc697eae04c20d8b1e0e244ccc [file] [log] [blame]
/*
* Copyright (C) 2015 Amlogic, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __BOARD_CFG_H__
#define __BOARD_CFG_H__
#include <asm/arch/cpu.h>
/*
* platform power init config
*/
#define AML_VDDCORE_INIT_VOLTAGE 800 // VCCK power up voltage
/* If AML_VDDCORE_INIT_VOLTAGE_SEL is 1, the voltage of vddee
* will be controlled by efuse. if 0, it is controlled by
* AML_VDDCORE_INIT_VOLTAGE
*/
#define AML_VDDCORE_INIT_VOLTAGE_SEL 1
#define AML_VDDCORE_INIT_EFUSE_MARGIN 30
#define AML_VDDCORE_INIT_EFUSE_OFFSET 0xc8
#define AML_VDDCORE_INIT_EFUSE_BASE_V0LT 680
/* configs for CEC */
/* SMP Definitinos */
#define CPU_RELEASE_ADDR secondary_boot_func
/* Serial config */
#define CONFIG_CONS_INDEX 2
#define CONFIG_BAUDRATE 115200
/* Enable ir remote wake up for bl30 */
#define AML_IR_REMOTE_POWER_UP_KEY_VAL1 0xef10fe01 //amlogic tv ir --- power
#define AML_IR_REMOTE_POWER_UP_KEY_VAL2 0XBB44FB04 //amlogic tv ir --- ch+
#define AML_IR_REMOTE_POWER_UP_KEY_VAL3 0xF20DFE01 //amlogic tv ir --- ch-
#define AML_IR_REMOTE_POWER_UP_KEY_VAL4 0XBA45BD02 //amlogic small ir--- power
#define AML_IR_REMOTE_POWER_UP_KEY_VAL5 0xe51afb04
#define AML_IR_REMOTE_POWER_UP_KEY_VAL6 0xFFFFFFFF
#define AML_IR_REMOTE_POWER_UP_KEY_VAL7 0xFFFFFFFF
#define AML_IR_REMOTE_POWER_UP_KEY_VAL8 0xFFFFFFFF
#define AML_IR_REMOTE_POWER_UP_KEY_VAL9 0xFFFFFFFF
/*config the default parameters for adc power key*/
#define AML_ADC_POWER_KEY_CHAN 2 /*channel range: 0-7*/
#define AML_ADC_POWER_KEY_VAL 0 /*sample value range: 0-1023*/
#define CONFIG_BOOTLOADER_CONTROL_BLOCK
#ifdef CONFIG_DTB_BIND_KERNEL //load dtb from kernel, such as boot partition
#define CONFIG_DTB_LOAD "imgread dtb boot ${dtb_mem_addr}"
#else
#define CONFIG_DTB_LOAD "imgread dtb _aml_dtb ${dtb_mem_addr}"
#endif// #ifdef CONFIG_DTB_BIND_KERNEL //load dtb from kernel, such as boot partition
/* args/envs */
#define CONFIG_SYS_MAXARGS 64
#define CONFIG_EXTRA_ENV_SETTINGS \
"firstboot=1\0"\
"jtag=disable\0"\
"loadaddr=0x00020000\0"\
"os_ident_addr=0x00500000\0"\
"loadaddr_rtos=0x00001000\0"\
"loadaddr_kernel=0x01080000\0"\
"otg_device=1\0" \
"dtb_mem_addr=0x01000000\0" \
"usb_burning=adnl 1000\0" \
"fdt_high=0x20000000\0"\
"sdcburncfg=aml_sdc_burn.ini\0"\
"EnableSelinux=enforcing\0" \
"recovery_part=recovery\0" \
"factory_part=system\0" \
"recovery_offset=0\0" \
"boot_part=boot\0"\
"get_os_type=if store read ${os_ident_addr} ${boot_part} 0 0x1000; then os_ident ${os_ident_addr}; fi\0"\
"fatload_dev=usb\0"\
"fs_type=""rootfstype=ramfs""\0"\
"initargs="\
"\0"\
"storeargs="\
"setenv bootargs ${initargs} otg_device=${otg_device};"\
"setenv bootargs ${bootargs} "\
"androidboot.reboot_mode=${reboot_mode} "\
"androidboot.hardware="__stringify(BOARD_NAME)";"\
"\0"\
"switch_bootmode="\
"set_usb_mode_to_bootargs;"\
"if test ${reboot_mode} = factory_reset; then "\
"echo upgrade key control load recovery from ${recovery_part}; "\
"else if test ${reboot_mode} = update; then "\
"run update;"\
"else if test ${reboot_mode} = factory_boot; then "\
"if imgread kernel ${factory_part} ${loadaddr}; then bootm ${loadaddr}; fi;" \
"else if test ${reboot_mode} = cold_boot; then "\
"else if test ${reboot_mode} = fastboot; then "\
"fastboot;"\
"fi;fi;fi;fi;fi;"\
"\0" \
"storeboot="\
"run get_os_type;"\
"if test ${os_type} = rtos; then "\
"setenv loadaddr ${loadaddr_rtos};"\
"store read ${loadaddr} ${boot_part} 0 0x400000;"\
"bootm ${loadaddr};"\
"else if test ${os_type} = kernel; then "\
"setenv loadaddr ${loadaddr_kernel};"\
"if imgread kernel ${boot_part} ${loadaddr}; then bootm ${loadaddr}; fi;"\
"else echo wrong OS format ${os_type}; fi;fi;"\
"echo try upgrade as booting failure; run update;"\
"\0" \
"update="\
/*first usb burning, second sdc_burn, third ext-sd autoscr/recovery, last udisk autoscr/recovery*/\
"run usb_burning; "\
"run recovery_from_udisk;"\
"\0"\
"upgrade_key="\
"get_rebootmode; "\
"if gpio input GPIOP_0; then "\
"echo detect upgrade key pressed;"\
"set_host_mode_to_bootargs;"\
"run recovery_from_udisk;"\
"else "\
"echo detect upgrade key not pressed;"\
"if test ${reboot_mode} = factory_reset; then "\
"set_host_mode_to_bootargs;"\
"run recovery_from_flash;"\
"fi;"\
"fi; "\
"\0 "\
"recovery_from_udisk=" \
"usb start 0;fatls usb 0; " \
"if fatload usb 0 ${loadaddr} recovery.img; then " \
"bootm ${loadaddr};" \
"fi;" \
"\0" \
"recovery_from_flash=" \
"if imgread kernel ${recovery_part} ${loadaddr} ${recovery_offset}; then " \
"setenv bootargs ${bootargs} " \
"recovery_part=${recovery_part} " \
"recovery_offset=${recovery_offset};" \
"bootm ${loadaddr};" \
"fi;" \
"\0" \
"bcb_cmd="\
"get_valid_slot;"\
"\0"\
#define CONFIG_PREBOOT \
"run storeargs;"\
"run upgrade_key;"\
"run switch_bootmode;"
/* #define CONFIG_ENV_IS_NOWHERE 1 */
#define CONFIG_ENV_SIZE (8*1024)
#define CONFIG_FIT 1
#define CONFIG_OF_LIBFDT 1
#define CONFIG_ANDROID_BOOT_IMAGE 1
#define CONFIG_SYS_BOOTM_LEN (64<<20) /* Increase max gunzip size*/
/* cpu */
/* #define CONFIG_CPU_CLK 1200 //MHz. Range: 360-2000, should be multiple of 24 */
/* ATTENTION */
/* DDR configs move to board/amlogic/[board]/firmware/timing.c */
/* running in sram */
//#define UBOOT_RUN_IN_SRAM
#ifdef CONFIG_UBOOT_RUN_IN_SRAM
#define CONFIG_SYS_INIT_SP_ADDR (0x00200000)
/* Size of malloc() pool */
#define CONFIG_SYS_MALLOC_LEN (256*1024)
#else
#define CONFIG_SYS_INIT_SP_ADDR (0x00200000)
#define CONFIG_SYS_MALLOC_LEN (32*1024*1024)
#endif
/* ddr functions */
#define DDR_FULL_TEST 0 //0:disable, 1:enable. ddr full test
#define DDR_LOW_POWER 0 //0:disable, 1:enable. ddr clk gate for lp
#define DDR_ZQ_PD 0 //0:disable, 1:enable. ddr zq power down
#define DDR_USE_EXT_VREF 0 //0:disable, 1:enable. ddr use external vref
#define DDR4_TIMING_TEST 0 //0:disable, 1:enable. ddr4 timing test function
#define DDR_PLL_BYPASS 0 //0:disable, 1:enable. ddr pll bypass function
/* storage: emmc/nand/sd */
#define CONFIG_ENV_OVERWRITE
/* #define CONFIG_CMD_SAVEENV */
/* fixme, need fix*/
#if (defined(CONFIG_ENV_IS_IN_AMLNAND) || defined(CONFIG_ENV_IS_IN_MMC)) && defined(CONFIG_STORE_COMPATIBLE)
#error env in amlnand/mmc already be compatible;
#endif
/*
* storage
* |---------|---------|
* | |
* emmc<--Compatible-->nand
* |-------|-------|
* | |
* MTD<-Exclusive->NFTL
*/
/* axg only support slc nand */
/* swither for mtd nand which is for slc only. */
#if defined(CONFIG_AML_NAND) && defined(CONFIG_MESON_NFC)
#error CONFIG_AML_NAND/CONFIG_MESON_NFC can not support at the sametime;
#endif
#if defined(CONFIG_SPI_NAND) && defined(CONFIG_MTD_SPI_NAND) && defined(CONFIG_MESON_NFC)
#error CONFIG_SPI_NAND/CONFIG_MTD_SPI_NAND/CONFIG_MESON_NFC can not support at the sametime;
#endif
/* #define CONFIG_AML_SD_EMMC 1 */
#ifdef CONFIG_AML_SD_EMMC
#define CONFIG_GENERIC_MMC 1
#define CONFIG_CMD_MMC 1
#define CONFIG_CMD_GPT 1
#define CONFIG_SYS_MMC_ENV_DEV 1
#define CONFIG_EMMC_DDR52_EN 0
#define CONFIG_EMMC_DDR52_CLK 35000000
#endif
#define CONFIG_PARTITIONS 1
#if defined CONFIG_MESON_NFC || defined CONFIG_SPI_NAND || defined CONFIG_MTD_SPI_NAND
#define CONFIG_SYS_MAX_NAND_DEVICE 2
#endif
/* vpu */
#define AML_VPU_CLK_LEVEL_DFT 7
/* osd */
#define OSD_SCALE_ENABLE
#define AML_OSD_HIGH_VERSION
/* USB
* Enable CONFIG_MUSB_HCD for Host functionalities MSC, keyboard
* Enable CONFIG_MUSB_UDD for Device functionalities.
*/
/* #define CONFIG_MUSB_UDC 1 */
/* #define CONFIG_CMD_USB 1 */
#define USB_PHY2_PLL_PARAMETER_1 0x09400414
#define USB_PHY2_PLL_PARAMETER_2 0x927e0000
#define USB_PHY2_PLL_PARAMETER_3 0xAC5F49E5
#define USB_G12x_PHY_PLL_SETTING_1 (0xfe18)
#define USB_G12x_PHY_PLL_SETTING_2 (0xfff)
#define USB_G12x_PHY_PLL_SETTING_3 (0x78000)
#define USB_G12x_PHY_PLL_SETTING_4 (0xe0004)
#define USB_G12x_PHY_PLL_SETTING_5 (0xe000c)
#define AML_TXLX_USB 1
#define AML_USB_V2 1
#define USB_GENERAL_BIT 4
#define USB_PHY21_BIT 6
/* UBOOT fastboot config */
/* UBOOT Facotry usb/sdcard burning config */
/* net */
/* #define CONFIG_CMD_NET 1 */
#define CONFIG_ETH_DESIGNWARE
#if defined(CONFIG_CMD_NET)
#define CONFIG_DESIGNWARE_ETH 1
#define CONFIG_PHYLIB 1
#define CONFIG_NET_MULTI 1
#define CONFIG_CMD_PING 1
#define CONFIG_CMD_DHCP 1
#define CONFIG_CMD_RARP 1
#define CONFIG_HOSTNAME "arm_gxbb"
#if 0
#define CONFIG_RANDOM_ETHADDR 1 /* use random eth addr, or default */
#endif
#define CONFIG_ETHADDR 00:15:18:01:81:31 /* Ethernet address */
#define CONFIG_IPADDR 10.18.9.97 /* Our ip address */
#define CONFIG_GATEWAYIP 10.18.9.1 /* Our getway ip address */
#define CONFIG_SERVERIP 10.18.9.113 /* Tftp server ip address */
#define CONFIG_NETMASK 255.255.255.0
#endif /* (CONFIG_CMD_NET) */
#define MAC_ADDR_NEW 1
/* other devices */
#define CONFIG_SHA1 1
#define CONFIG_MD5 1
/*file system*/
#define CONFIG_DOS_PARTITION 1
#define CONFIG_EFI_PARTITION 1
#if 0
#define CONFIG_AML_PARTITION 1
#endif
/* #define CONFIG_MMC 1 */
#define CONFIG_FS_FAT 1
#define CONFIG_FS_EXT4 1
#define CONFIG_LZO 1
/* Cache Definitions */
/* #define CONFIG_SYS_DCACHE_OFF */
/* #define CONFIG_SYS_ICACHE_OFF */
/* other functions */
#define CONFIG_LIBAVB 1
#define CONFIG_CPU_ARMV8
/* #define CONFIG_MULTI_DTB 1 */
/* support secure boot */
#define CONFIG_AML_SECURE_UBOOT 1
#if defined(CONFIG_AML_SECURE_UBOOT)
/* unify build for generate encrypted bootloader "u-boot.bin.encrypt" */
#define CONFIG_AML_CRYPTO_UBOOT 1
#endif /* CONFIG_AML_SECURE_UBOOT */
#define CONFIG_FIP_IMG_SUPPORT 1
#endif