123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #include <platform_def.h>
- #include <arch_helpers.h>
- #include <common/debug.h>
- #include <drivers/console.h>
- #include <drivers/delay_timer.h>
- #include <lib/mmio.h>
- #include <platform_def.h>
- #include <pmu.h>
- #include <px30_def.h>
- #include <secure.h>
- #include <soc.h>
- #include <rockchip_sip_svc.h>
- /* Aggregate of all devices in the first GB */
- #define PX30_DEV_RNG0_BASE 0xff000000
- #define PX30_DEV_RNG0_SIZE 0x00ff0000
- const mmap_region_t plat_rk_mmap[] = {
- MAP_REGION_FLAT(PX30_DEV_RNG0_BASE, PX30_DEV_RNG0_SIZE,
- MT_DEVICE | MT_RW | MT_SECURE),
- MAP_REGION_FLAT(SHARE_MEM_BASE, SHARE_MEM_SIZE,
- MT_DEVICE | MT_RW | MT_SECURE),
- MAP_REGION_FLAT(DDR_PARAM_BASE, DDR_PARAM_SIZE,
- MT_DEVICE | MT_RW | MT_SECURE),
- { 0 }
- };
- /* The RockChip power domain tree descriptor */
- const unsigned char rockchip_power_domain_tree_desc[] = {
- /* No of root nodes */
- PLATFORM_SYSTEM_COUNT,
- /* No of children for the root node */
- PLATFORM_CLUSTER_COUNT,
- /* No of children for the first cluster node */
- PLATFORM_CLUSTER0_CORE_COUNT,
- };
- void clk_gate_con_save(uint32_t *clkgt_save)
- {
- uint32_t i, j;
- for (i = 0; i < CRU_CLKGATES_CON_CNT; i++)
- clkgt_save[i] =
- mmio_read_32(CRU_BASE + CRU_CLKGATES_CON(i));
- j = i;
- for (i = 0; i < CRU_PMU_CLKGATE_CON_CNT; i++, j++)
- clkgt_save[j] =
- mmio_read_32(PMUCRU_BASE + CRU_PMU_CLKGATES_CON(i));
- }
- void clk_gate_con_restore(uint32_t *clkgt_save)
- {
- uint32_t i, j;
- for (i = 0; i < CRU_CLKGATES_CON_CNT; i++)
- mmio_write_32(CRU_BASE + CRU_CLKGATES_CON(i),
- WITH_16BITS_WMSK(clkgt_save[i]));
- j = i;
- for (i = 0; i < CRU_PMU_CLKGATE_CON_CNT; i++, j++)
- mmio_write_32(PMUCRU_BASE + CRU_PMU_CLKGATES_CON(i),
- WITH_16BITS_WMSK(clkgt_save[j]));
- }
- void clk_gate_con_disable(void)
- {
- uint32_t i;
- for (i = 0; i < CRU_CLKGATES_CON_CNT; i++)
- mmio_write_32(CRU_BASE + CRU_CLKGATES_CON(i),
- 0xffff0000);
- for (i = 0; i < CRU_PMU_CLKGATE_CON_CNT; i++)
- mmio_write_32(PMUCRU_BASE + CRU_PMU_CLKGATES_CON(i),
- 0xffff0000);
- }
- static void soc_reset_config_all(void)
- {
- uint32_t tmp;
- /* tsadc and wdt can trigger a first rst */
- tmp = mmio_read_32(CRU_BASE + CRU_GLB_RST_CON);
- tmp |= CRU_GLB_RST_TSADC_FST | CRU_GLB_RST_WDT_FST;
- mmio_write_32(CRU_BASE + CRU_GLB_RST_CON, tmp);
- return;
- tmp = mmio_read_32(PMUGRF_BASE + PMUGRF_SOC_CON(3));
- tmp &= ~(PMUGRF_FAILSAFE_SHTDN_TSADC | PMUGRF_FAILSAFE_SHTDN_WDT);
- mmio_write_32(PMUGRF_BASE + PMUGRF_SOC_CON(3), tmp);
- /* wdt pin rst eable */
- mmio_write_32(GRF_BASE + GRF_SOC_CON(2),
- BIT_WITH_WMSK(GRF_SOC_CON2_NSWDT_RST_EN));
- }
- void px30_soc_reset_config(void)
- {
- uint32_t tmp;
- /* enable soc ip rst hold time cfg */
- tmp = mmio_read_32(CRU_BASE + CRU_GLB_RST_CON);
- tmp |= BIT(CRU_GLB_RST_TSADC_EXT) | BIT(CRU_GLB_RST_WDT_EXT);
- mmio_write_32(CRU_BASE + CRU_GLB_RST_CON, tmp);
- /* soc ip rst hold time, 24m */
- tmp = mmio_read_32(CRU_BASE + CRU_GLB_CNT_TH);
- tmp &= ~CRU_GLB_CNT_RST_MSK;
- tmp |= (CRU_GLB_CNT_RST_1MS / 2);
- mmio_write_32(CRU_BASE + CRU_GLB_CNT_TH, tmp);
- mmio_write_32(PMUSGRF_BASE + PMUSGRF_SOC_CON(0),
- BIT_WITH_WMSK(PMUSGRF_RSTOUT_FST) |
- BIT_WITH_WMSK(PMUSGRF_RSTOUT_TSADC) |
- BIT_WITH_WMSK(PMUSGRF_RSTOUT_WDT));
- /* rst_out pulse time */
- mmio_write_32(PMUGRF_BASE + PMUGRF_SOC_CON(2),
- PMUGRF_SOC_CON2_MAX_341US | PMUGRF_SOC_CON2_US_WMSK);
- soc_reset_config_all();
- }
- void plat_rockchip_soc_init(void)
- {
- secure_timer_init();
- sgrf_init();
- }
|