| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("MediaTek Software") are
- * protected under relevant copyright laws. The information contained herein
- * is confidential and proprietary to MediaTek Inc. and/or its licensors.
- * Without the prior written permission of MediaTek inc. and/or its licensors,
- * any reproduction, modification, use or disclosure of MediaTek Software,
- * and information contained herein, in whole or in part, shall be strictly prohibited.
- */
- /* MediaTek Inc. (C) 2015. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
- * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
- * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
- * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
- * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- */
- /*This file implements MTK boot mode.*/
- #include <sys/types.h>
- #include <debug.h>
- #include <err.h>
- #include <reg.h>
- #include <platform/mt_typedefs.h>
- #include <platform/boot_mode.h>
- #include <platform/mt_reg_base.h>
- #include <target/cust_key.h>
- #include <meta.h>
- #include <dev/mrdump.h>
- #include <platform/mt_rtc.h>
- #include <platform/mtk_key.h>
- #include <platform/mt_gpt.h>
- #include <platform/mtk_wdt.h>
- #include <platform/mt_leds.h> // for mt65xx_backlight_on()
- // global variable for specifying boot mode (default = NORMAL)
- BOOTMODE g_boot_mode = NORMAL_BOOT;
- #ifdef MTK_KERNEL_POWER_OFF_CHARGING
- extern BOOL kernel_power_off_charging_detection(void);
- #endif
- BOOL meta_mode_check(void)
- {
- if (g_boot_mode == META_BOOT || g_boot_mode == ADVMETA_BOOT || g_boot_mode ==ATE_FACTORY_BOOT || g_boot_mode == FACTORY_BOOT) {
- return TRUE;
- } else {
- return FALSE;
- }
- }
- extern BOOT_ARGUMENT *g_boot_arg;
- #define MODULE_NAME "[FACTORY]"
- // check the boot mode : (1) meta mode or (2) recovery mode ...
- static int mrdump_check(void)
- {
- if (mrdump_detection()) {
- mt65xx_backlight_on();
- mrdump_run2();
- return 1;
- } else {
- return 0;
- }
- }
- void boot_mode_select(void)
- {
- int factory_forbidden = 0;
- // int forbid_mode;
- /*We put conditions here to filer some cases that can not do key detection*/
- extern int kedump_mini(void) __attribute__((weak));
- if (kedump_mini) {
- if (kedump_mini()) {
- mrdump_check();
- return;
- }
- }
- if (meta_detection()) {
- return;
- }
- mrdump_check();
- #if defined (HAVE_LK_TEXT_MENU)
- /*Check RTC to know if system want to reboot to Fastboot*/
- if (Check_RTC_PDN1_bit13()) {
- dprintf(CRITICAL, "[FASTBOOT] reboot to boot loader\n");
- g_boot_mode = FASTBOOT;
- Set_Clr_RTC_PDN1_bit13(false);
- return;
- }
- /*If forbidden mode is factory, cacel the factory key detection*/
- if (g_boot_arg->sec_limit.magic_num == 0x4C4C4C4C) {
- if (g_boot_arg->sec_limit.forbid_mode == F_FACTORY_MODE) {
- //Forbid to enter factory mode
- dprintf(CRITICAL, "%s Forbidden\n",MODULE_NAME);
- factory_forbidden=1;
- }
- }
- // forbid_mode = g_boot_arg->boot_mode &= 0x000000FF;
- /*If boot reason is power key + volumn down, then
- disable factory mode dectection*/
- if (mtk_detect_pmic_just_rst()) {
- factory_forbidden=1;
- }
- /*Check RTC to know if system want to reboot to Recovery*/
- if (Check_RTC_Recovery_Mode()) {
- g_boot_mode = RECOVERY_BOOT;
- return;
- }
- /*If MISC Write has not completed in recovery mode
- before system reboot, go to recovery mode to
- finish remain tasks*/
- if (unshield_recovery_detection()) {
- return;
- }
- ulong begin = get_timer(0);
- /*we put key dectection here to detect key which is pressed*/
- dprintf(INFO, "eng build\n");
- #ifdef MT65XX_FACTORY_KEY
- dprintf(CRITICAL, "MT65XX_FACTORY_KEY 0x%x\n",MT65XX_FACTORY_KEY);
- #endif
- #ifdef MT65XX_BOOT_MENU_KEY
- dprintf(CRITICAL, "MT65XX_BOOT_MENU_KEY 0x%x\n",MT65XX_BOOT_MENU_KEY);
- #endif
- #ifdef MT65XX_RECOVERY_KEY
- dprintf(CRITICAL, "MT65XX_RECOVERY_KEY 0x%x\n",MT65XX_RECOVERY_KEY);
- #endif
- while (get_timer(begin)<50) {
- if (!factory_forbidden) {
- if (mtk_detect_key(MT65XX_FACTORY_KEY)) {
- dprintf(CRITICAL, "%s Detect key\n",MODULE_NAME);
- dprintf(CRITICAL, "%s Enable factory mode\n",MODULE_NAME);
- g_boot_mode = FACTORY_BOOT;
- //video_printf("%s : detect factory mode !\n",MODULE_NAME);
- return;
- }
- }
- if (mtk_detect_key(MT65XX_BOOT_MENU_KEY)) {
- dprintf(CRITICAL, "\n%s Check boot menu\n",MODULE_NAME);
- dprintf(CRITICAL, "%s Wait 50ms for special keys\n",MODULE_NAME);
- mtk_wdt_disable();
- boot_mode_menu_select();
- mtk_wdt_init();
- return;
- }
- #ifdef MT65XX_RECOVERY_KEY
- if (mtk_detect_key(MT65XX_RECOVERY_KEY)) {
- dprintf(CRITICAL, "%s Detect cal key\n",MODULE_NAME);
- dprintf(CRITICAL, "%s Enable recovery mode\n",MODULE_NAME);
- g_boot_mode = RECOVERY_BOOT;
- //video_printf("%s : detect recovery mode !\n",MODULE_NAME);
- return;
- }
- #endif
- }
- #else
- /*We put conditions here to filer some cases that can not do key detection*/
- /*Check RTC to know if system want to reboot to Fastboot*/
- #ifdef MTK_FASTBOOT_SUPPORT
- if (Check_RTC_PDN1_bit13()) {
- dprintf(INFO,"[FASTBOOT] reboot to boot loader\n");
- g_boot_mode = FASTBOOT;
- Set_Clr_RTC_PDN1_bit13(false);
- return TRUE;
- }
- #endif
- /*If forbidden mode is factory, cacel the factory key detection*/
- if (g_boot_arg->sec_limit.magic_num == 0x4C4C4C4C) {
- if (g_boot_arg->sec_limit.forbid_mode == F_FACTORY_MODE) {
- //Forbid to enter factory mode
- dprintf(INFO, "%s Forbidden\n",MODULE_NAME);
- factory_forbidden=1;
- }
- }
- // forbid_mode = g_boot_arg->boot_mode &= 0x000000FF;
- /*If boot reason is power key + volumn down, then
- disable factory mode dectection*/
- if (mtk_detect_pmic_just_rst()) {
- factory_forbidden=1;
- }
- /*Check RTC to know if system want to reboot to Recovery*/
- if (Check_RTC_Recovery_Mode()) {
- g_boot_mode = RECOVERY_BOOT;
- return TRUE;
- }
- /*If MISC Write has not completed in recovery mode
- and interrupted by system reboot, go to recovery mode to
- finish remain tasks*/
- if (unshield_recovery_detection()) {
- return TRUE;
- }
- ulong begin = get_timer(0);
- /*we put key dectection here to detect key which is pressed*/
- while (get_timer(begin)<50) {
- #ifdef MTK_FASTBOOT_SUPPORT
- if (mtk_detect_key(MT_CAMERA_KEY)) {
- dprintf(INFO,"[FASTBOOT]Key Detect\n");
- g_boot_mode = FASTBOOT;
- return TRUE;
- }
- #endif
- if (!factory_forbidden) {
- if (mtk_detect_key(MT65XX_FACTORY_KEY)) {
- dprintf(INFO, "%s Detect key\n",MODULE_NAME);
- dprintf(INFO, "%s Enable factory mode\n",MODULE_NAME);
- g_boot_mode = FACTORY_BOOT;
- //video_printf("%s : detect factory mode !\n",MODULE_NAME);
- return TRUE;
- }
- }
- #ifdef MT65XX_RECOVERY_KEY
- if (mtk_detect_key(MT65XX_RECOVERY_KEY)) {
- dprintf(INFO, "%s Detect cal key\n",MODULE_NAME);
- dprintf(INFO, "%s Enable recovery mode\n",MODULE_NAME);
- g_boot_mode = RECOVERY_BOOT;
- //video_printf("%s : detect recovery mode !\n",MODULE_NAME);
- return TRUE;
- }
- #endif
- }
- #endif
- #ifdef MTK_KERNEL_POWER_OFF_CHARGING
- if (kernel_power_off_charging_detection()) {
- dprintf(CRITICAL, " < Kernel Power Off Charging Detection Ok> \n");
- return;
- } else {
- dprintf(CRITICAL, "< Kernel Enter Normal Boot > \n");
- }
- #endif
- }
- #if 1
- unsigned int get_chip_sw_ver_code(void)
- {
- return DRV_Reg32(APSW_VER);
- }
- CHIP_SW_VER mt_get_chip_sw_ver(void)
- {
- return (CHIP_SW_VER)get_chip_sw_ver_code();
- }
- unsigned int mt_get_chip_hw_code(void)
- {
- return DRV_Reg32(APHW_CODE);
- }
- CHIP_HW_VER mt_get_chip_hw_ver(void)
- {
- return DRV_Reg32(APHW_VER);
- }
- #endif
|