This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/drivers/bl702_driver/startup/system_bl702.c

148 lines
4.6 KiB
C
Raw Normal View History

2021-04-13 19:23:11 +08:00
/**
* @file system_bl702.c
2021-06-20 12:25:46 +08:00
* @brief
*
2021-04-13 19:23:11 +08:00
* Copyright (c) 2021 Bouffalolab team
2021-06-20 12:25:46 +08:00
*
2021-04-13 19:23:11 +08:00
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
2021-06-20 12:25:46 +08:00
*
2021-04-13 19:23:11 +08:00
* http://www.apache.org/licenses/LICENSE-2.0
2021-06-20 12:25:46 +08:00
*
2021-04-13 19:23:11 +08:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
2021-06-20 12:25:46 +08:00
*
2021-04-13 19:23:11 +08:00
*/
#include "bl702.h"
#include "bl702_glb.h"
#include "bl702_hbn.h"
#include "system_bl702.h"
#ifdef BFLB_EFLASH_LOADER
#include "bl702_usb.h"
void USB_DoNothing_IRQHandler(void)
{
2021-06-20 12:25:46 +08:00
/* clear all USB int sts */
USB_Clr_IntStatus(32);
2021-04-13 19:23:11 +08:00
}
#endif
/*----------------------------------------------------------------------------
Define clocks
*----------------------------------------------------------------------------*/
2021-06-20 12:25:46 +08:00
#define SYSTEM_CLOCK (32000000UL)
2021-04-13 19:23:11 +08:00
/*----------------------------------------------------------------------------
Vector Table
*----------------------------------------------------------------------------*/
2021-06-20 12:25:46 +08:00
#define VECT_TAB_OFFSET 0x00 /*!< Vector Table base offset field.
2021-04-13 19:23:11 +08:00
This value must be a multiple of 0x200. */
/*----------------------------------------------------------------------------
System initialization function
*----------------------------------------------------------------------------*/
void system_bor_init(void)
{
HBN_BOR_CFG_Type borCfg = { 0 /* pu_bor */, 0 /* irq_bor_en */, 1 /* bor_vth */, 0 /* bor_sel */ };
2021-04-13 19:23:11 +08:00
HBN_Set_BOR_Cfg(&borCfg);
}
2021-06-20 12:25:46 +08:00
void SystemInit(void)
2021-04-13 19:23:11 +08:00
{
uint32_t *p;
2021-06-20 12:25:46 +08:00
uint32_t i = 0;
uint32_t tmpVal = 0;
uint8_t flashCfg = 0;
uint8_t psramCfg = 0;
uint8_t isInternalFlash = 0;
uint8_t isInternalPsram = 0;
2021-04-13 19:23:11 +08:00
/* global IRQ disable */
__disable_irq();
2021-04-13 19:23:11 +08:00
/* disable hardware_pullup_pull_down (reg_en_hw_pu_pd = 0) */
2021-06-20 12:25:46 +08:00
tmpVal = BL_RD_REG(HBN_BASE, HBN_IRQ_MODE);
tmpVal = BL_CLR_REG_BIT(tmpVal, HBN_REG_EN_HW_PU_PD);
BL_WR_REG(HBN_BASE, HBN_IRQ_MODE, tmpVal);
2021-04-13 19:23:11 +08:00
/* disable aon_pad_ie_smt (reg_aon_pad_ie_smt = 0) */
2021-06-20 12:25:46 +08:00
tmpVal = BL_RD_REG(HBN_BASE, HBN_IRQ_MODE);
tmpVal = BL_CLR_REG_BIT(tmpVal, HBN_REG_AON_PAD_IE_SMT);
BL_WR_REG(HBN_BASE, HBN_IRQ_MODE, tmpVal);
2021-04-13 19:23:11 +08:00
/* GLB_Set_EM_Sel(GLB_EM_0KB); */
2021-06-20 12:25:46 +08:00
tmpVal = BL_RD_REG(GLB_BASE, GLB_SEAM_MISC);
tmpVal = BL_SET_REG_BITS_VAL(tmpVal, GLB_EM_SEL, GLB_EM_0KB);
BL_WR_REG(GLB_BASE, GLB_SEAM_MISC, tmpVal);
2021-04-13 19:23:11 +08:00
/* Restore default setting*/
/* GLB_UART_Sig_Swap_Set(UART_SIG_SWAP_NONE); */
2021-06-20 12:25:46 +08:00
tmpVal = BL_RD_REG(GLB_BASE, GLB_PARM);
tmpVal = BL_SET_REG_BITS_VAL(tmpVal, GLB_UART_SWAP_SET, UART_SIG_SWAP_NONE);
BL_WR_REG(GLB_BASE, GLB_PARM, tmpVal);
// GLB_JTAG_Sig_Swap_Set(JTAG_SIG_SWAP_NONE);
// /* update SystemCoreClock value */
// SystemCoreClockSet(SYSTEM_CLOCK);
2021-04-13 19:23:11 +08:00
/* fix 57.6M */
2021-06-20 12:25:46 +08:00
if (SystemCoreClockGet() == 57 * 6000 * 1000) {
SystemCoreClockSet(57.6 * 1000 * 1000)
2021-04-13 19:23:11 +08:00
}
/* CLear all interrupt */
2021-06-20 12:25:46 +08:00
p = (uint32_t *)(CLIC_HART0_ADDR + CLIC_INTIE);
for (i = 0; i < (IRQn_LAST + 3) / 4; i++) {
p[i] = 0;
2021-04-13 19:23:11 +08:00
}
2021-06-20 12:25:46 +08:00
p = (uint32_t *)(CLIC_HART0_ADDR + CLIC_INTIP);
for (i = 0; i < (IRQn_LAST + 3) / 4; i++) {
p[i] = 0;
2021-04-13 19:23:11 +08:00
}
/* SF io select from efuse value */
tmpVal = BL_RD_WORD(0x40007074);
flashCfg = ((tmpVal >> 26) & 7);
psramCfg = ((tmpVal >> 24) & 3);
if (flashCfg == 1 || flashCfg == 2) {
isInternalFlash = 1;
} else {
isInternalFlash = 0;
}
if (psramCfg == 1) {
isInternalPsram = 1;
} else {
isInternalPsram = 0;
}
tmpVal = BL_RD_REG(GLB_BASE, GLB_GPIO_USE_PSRAM__IO);
if (isInternalFlash == 1 && isInternalPsram == 0) {
tmpVal = BL_SET_REG_BITS_VAL(tmpVal, GLB_CFG_GPIO_USE_PSRAM_IO, 0x3f);
} else {
tmpVal = BL_SET_REG_BITS_VAL(tmpVal, GLB_CFG_GPIO_USE_PSRAM_IO, 0x00);
}
BL_WR_REG(GLB_BASE, GLB_GPIO_USE_PSRAM__IO, tmpVal);
2021-04-13 19:23:11 +08:00
#ifdef BFLB_EFLASH_LOADER
2021-06-20 12:25:46 +08:00
Interrupt_Handler_Register(USB_IRQn, USB_DoNothing_IRQHandler);
2021-04-13 19:23:11 +08:00
#endif
/* init bor for all platform */
system_bor_init();
/* global IRQ enable */
__enable_irq();
2021-04-13 19:23:11 +08:00
}
2021-04-13 19:23:11 +08:00
void System_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority)
{
}