2018-03-27 00:04:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-03-07 01:11:46 +00:00
|
|
|
#ifndef _T210_H_
|
|
|
|
#define _T210_H_
|
|
|
|
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../utils/types.h"
|
2018-03-07 01:11:46 +00:00
|
|
|
|
2018-09-18 21:38:54 +01:00
|
|
|
#define BOOTROM_BASE 0x100000
|
2019-06-30 01:15:46 +01:00
|
|
|
#define IRAM_BASE 0x40000000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define HOST1X_BASE 0x50000000
|
2018-08-21 02:26:14 +01:00
|
|
|
#define BPMP_CACHE_BASE 0x50040000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define DISPLAY_A_BASE 0x54200000
|
|
|
|
#define DSI_BASE 0x54300000
|
|
|
|
#define VIC_BASE 0x54340000
|
2018-03-14 23:26:19 +00:00
|
|
|
#define TSEC_BASE 0x54500000
|
|
|
|
#define SOR1_BASE 0x54580000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define TMR_BASE 0x60005000
|
|
|
|
#define CLOCK_BASE 0x60006000
|
2018-03-14 23:26:19 +00:00
|
|
|
#define FLOW_CTLR_BASE 0x60007000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define SYSREG_BASE 0x6000C000
|
2018-03-14 23:26:19 +00:00
|
|
|
#define SB_BASE (SYSREG_BASE + 0x200)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define GPIO_BASE 0x6000D000
|
|
|
|
#define GPIO_1_BASE (GPIO_BASE)
|
|
|
|
#define GPIO_2_BASE (GPIO_BASE + 0x100)
|
|
|
|
#define GPIO_3_BASE (GPIO_BASE + 0x200)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define GPIO_4_BASE (GPIO_BASE + 0x300)
|
|
|
|
#define GPIO_5_BASE (GPIO_BASE + 0x400)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define GPIO_6_BASE (GPIO_BASE + 0x500)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define GPIO_7_BASE (GPIO_BASE + 0x600)
|
|
|
|
#define GPIO_8_BASE (GPIO_BASE + 0x700)
|
2018-03-14 23:26:19 +00:00
|
|
|
#define EXCP_VEC_BASE 0x6000F000
|
2018-09-09 23:44:04 +01:00
|
|
|
#define IPATCH_BASE 0x6001DC00
|
2018-05-01 06:15:48 +01:00
|
|
|
#define APB_MISC_BASE 0x70000000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define PINMUX_AUX_BASE 0x70003000
|
|
|
|
#define UART_BASE 0x70006000
|
2018-09-18 21:38:54 +01:00
|
|
|
#define PWM_BASE 0x7000A000
|
2018-06-26 17:00:46 +01:00
|
|
|
#define RTC_BASE 0x7000E000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define PMC_BASE 0x7000E400
|
2018-09-18 21:38:54 +01:00
|
|
|
#define SYSCTR0_BASE 0x700F0000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define FUSE_BASE 0x7000F800
|
2018-05-01 06:15:48 +01:00
|
|
|
#define KFUSE_BASE 0x7000FC00
|
|
|
|
#define SE_BASE 0x70012000
|
2018-03-07 01:11:46 +00:00
|
|
|
#define MC_BASE 0x70019000
|
|
|
|
#define EMC_BASE 0x7001B000
|
|
|
|
#define MIPI_CAL_BASE 0x700E3000
|
2018-09-18 21:38:54 +01:00
|
|
|
#define CL_DVFS_BASE 0x70110000
|
2018-11-10 12:11:42 +00:00
|
|
|
#define I2S_BASE 0x702D1000
|
|
|
|
#define TZRAM_BASE 0x7C010000
|
2018-03-07 01:11:46 +00:00
|
|
|
|
|
|
|
#define _REG(base, off) *(vu32 *)((base) + (off))
|
|
|
|
|
|
|
|
#define HOST1X(off) _REG(HOST1X_BASE, off)
|
2018-08-21 02:26:14 +01:00
|
|
|
#define BPMP_CACHE_CTRL(off) _REG(BPMP_CACHE_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define DISPLAY_A(off) _REG(DISPLAY_A_BASE, off)
|
|
|
|
#define DSI(off) _REG(DSI_BASE, off)
|
|
|
|
#define VIC(off) _REG(VIC_BASE, off)
|
2018-03-14 23:26:19 +00:00
|
|
|
#define TSEC(off) _REG(TSEC_BASE, off)
|
|
|
|
#define SOR1(off) _REG(SOR1_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define TMR(off) _REG(TMR_BASE, off)
|
|
|
|
#define CLOCK(off) _REG(CLOCK_BASE, off)
|
2018-03-14 23:26:19 +00:00
|
|
|
#define FLOW_CTLR(off) _REG(FLOW_CTLR_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define SYSREG(off) _REG(SYSREG_BASE, off)
|
2018-03-14 23:26:19 +00:00
|
|
|
#define SB(off) _REG(SB_BASE, off)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define GPIO(off) _REG(GPIO_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define GPIO_1(off) _REG(GPIO_1_BASE, off)
|
|
|
|
#define GPIO_2(off) _REG(GPIO_2_BASE, off)
|
|
|
|
#define GPIO_3(off) _REG(GPIO_3_BASE, off)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define GPIO_4(off) _REG(GPIO_4_BASE, off)
|
|
|
|
#define GPIO_5(off) _REG(GPIO_5_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define GPIO_6(off) _REG(GPIO_6_BASE, off)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define GPIO_7(off) _REG(GPIO_7_BASE, off)
|
|
|
|
#define GPIO_8(off) _REG(GPIO_8_BASE, off)
|
2018-03-14 23:26:19 +00:00
|
|
|
#define EXCP_VEC(off) _REG(EXCP_VEC_BASE, off)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define APB_MISC(off) _REG(APB_MISC_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define PINMUX_AUX(off) _REG(PINMUX_AUX_BASE, off)
|
2018-09-18 22:01:42 +01:00
|
|
|
#define PWM(off) _REG(PWM_BASE, off)
|
2018-06-26 17:00:46 +01:00
|
|
|
#define RTC(off) _REG(RTC_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define PMC(off) _REG(PMC_BASE, off)
|
|
|
|
#define SYSCTR0(off) _REG(SYSCTR0_BASE, off)
|
|
|
|
#define FUSE(off) _REG(FUSE_BASE, off)
|
2018-05-01 06:15:48 +01:00
|
|
|
#define KFUSE(off) _REG(KFUSE_BASE, off)
|
|
|
|
#define SE(off) _REG(SE_BASE, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
#define MC(off) _REG(MC_BASE, off)
|
|
|
|
#define EMC(off) _REG(EMC_BASE, off)
|
|
|
|
#define MIPI_CAL(off) _REG(MIPI_CAL_BASE, off)
|
|
|
|
#define I2S(off) _REG(I2S_BASE, off)
|
2018-09-18 21:38:54 +01:00
|
|
|
#define CL_DVFS(off) _REG(CL_DVFS_BASE, off)
|
|
|
|
#define TEST_REG(off) _REG(0x0, off)
|
2018-03-07 01:11:46 +00:00
|
|
|
|
2018-11-10 12:11:42 +00:00
|
|
|
/*! EVP registers. */
|
|
|
|
#define EVP_CPU_RESET_VECTOR 0x100
|
|
|
|
|
2018-07-22 13:18:30 +01:00
|
|
|
/*! Misc registers. */
|
2018-09-18 22:11:18 +01:00
|
|
|
#define APB_MISC_PP_STRAPPING_OPT_A 0x08
|
2018-07-22 13:18:30 +01:00
|
|
|
#define APB_MISC_PP_PINMUX_GLOBAL 0x40
|
2018-09-18 22:01:42 +01:00
|
|
|
#define APB_MISC_GP_LCD_BL_PWM_CFGPADCTRL 0xA34
|
2019-02-11 22:40:40 +00:00
|
|
|
#define APB_MISC_GP_SDMMC1_PAD_CFGPADCTRL 0xA98
|
|
|
|
#define APB_MISC_GP_EMMC4_PAD_CFGPADCTRL 0xAB4
|
2018-08-05 12:40:32 +01:00
|
|
|
#define APB_MISC_GP_WIFI_EN_CFGPADCTRL 0xB64
|
|
|
|
#define APB_MISC_GP_WIFI_RST_CFGPADCTRL 0xB68
|
2018-07-22 13:18:30 +01:00
|
|
|
|
2018-03-07 01:11:46 +00:00
|
|
|
/*! System registers. */
|
|
|
|
#define AHB_ARBITRATION_XBAR_CTRL 0xE0
|
2018-07-22 13:18:30 +01:00
|
|
|
#define AHB_AHB_SPARE_REG 0x110
|
2018-03-07 01:11:46 +00:00
|
|
|
|
2018-03-14 23:26:19 +00:00
|
|
|
/*! Secure boot registers. */
|
2018-05-01 06:15:48 +01:00
|
|
|
#define SB_CSR 0x0
|
2018-11-10 12:11:42 +00:00
|
|
|
#define SB_AA64_RESET_LOW 0x30
|
2018-03-14 23:26:19 +00:00
|
|
|
#define SB_AA64_RESET_HIGH 0x34
|
|
|
|
|
2018-11-30 21:20:15 +00:00
|
|
|
/*! SOR registers. */
|
|
|
|
#define SOR_NV_PDISP_SOR_DP_HDCP_BKSV_LSB 0x1E8
|
|
|
|
#define SOR_NV_PDISP_SOR_TMDS_HDCP_BKSV_LSB 0x21C
|
|
|
|
#define SOR_NV_PDISP_SOR_TMDS_HDCP_CN_MSB 0x208
|
|
|
|
#define SOR_NV_PDISP_SOR_TMDS_HDCP_CN_LSB 0x20C
|
|
|
|
|
2018-11-10 12:11:42 +00:00
|
|
|
/*! RTC registers. */
|
|
|
|
#define APBDEV_RTC_SECONDS 0x8
|
|
|
|
#define APBDEV_RTC_SHADOW_SECONDS 0xC
|
|
|
|
#define APBDEV_RTC_MILLI_SECONDS 0x10
|
|
|
|
|
2018-11-27 09:45:43 +00:00
|
|
|
/*! SYSCTR0 registers. */
|
|
|
|
#define SYSCTR0_CNTFID0 0x20
|
2018-11-30 21:20:15 +00:00
|
|
|
#define SYSCTR0_CNTCR 0x00
|
|
|
|
#define SYSCTR0_COUNTERID0 0xFE0
|
|
|
|
#define SYSCTR0_COUNTERID1 0xFE4
|
|
|
|
#define SYSCTR0_COUNTERID2 0xFE8
|
|
|
|
#define SYSCTR0_COUNTERID3 0xFEC
|
|
|
|
#define SYSCTR0_COUNTERID4 0xFD0
|
|
|
|
#define SYSCTR0_COUNTERID5 0xFD4
|
|
|
|
#define SYSCTR0_COUNTERID6 0xFD8
|
|
|
|
#define SYSCTR0_COUNTERID7 0xFDC
|
|
|
|
#define SYSCTR0_COUNTERID8 0xFF0
|
|
|
|
#define SYSCTR0_COUNTERID9 0xFF4
|
|
|
|
#define SYSCTR0_COUNTERID10 0xFF8
|
|
|
|
#define SYSCTR0_COUNTERID11 0xFFC
|
2018-11-27 09:45:43 +00:00
|
|
|
|
2018-11-10 12:11:42 +00:00
|
|
|
/*! TMR registers. */
|
|
|
|
#define TIMERUS_CNTR_1US (0x10 + 0x0)
|
|
|
|
#define TIMERUS_USEC_CFG (0x10 + 0x4)
|
|
|
|
#define TIMER_TMR9_TMR_PTV 0x80
|
|
|
|
#define TIMER_EN (1 << 31)
|
|
|
|
#define TIMER_PER_EN (1 << 30)
|
|
|
|
#define TIMER_WDT4_CONFIG (0x100 + 0x80)
|
|
|
|
#define TIMER_SRC(TMR) (TMR & 0xF)
|
|
|
|
#define TIMER_PER(PER) ((PER & 0xFF) << 4)
|
|
|
|
#define TIMER_SYSRESET_EN (1 << 14)
|
|
|
|
#define TIMER_PMCRESET_EN (1 << 15)
|
|
|
|
#define TIMER_WDT4_COMMAND (0x108 + 0x80)
|
|
|
|
#define TIMER_START_CNT (1 << 0)
|
|
|
|
#define TIMER_CNT_DISABLE (1 << 1)
|
|
|
|
#define TIMER_WDT4_UNLOCK_PATTERN (0x10C + 0x80)
|
|
|
|
#define TIMER_MAGIC_PTRN 0xC45A
|
|
|
|
|
|
|
|
/*! I2S registers. */
|
|
|
|
#define I2S1_CG 0x88
|
|
|
|
#define I2S1_CTRL 0xA0
|
|
|
|
#define I2S2_CG 0x188
|
|
|
|
#define I2S2_CTRL 0x1A0
|
|
|
|
#define I2S3_CG 0x288
|
|
|
|
#define I2S3_CTRL 0x2A0
|
|
|
|
#define I2S4_CG 0x388
|
|
|
|
#define I2S4_CTRL 0x3A0
|
|
|
|
#define I2S5_CG 0x488
|
|
|
|
#define I2S5_CTRL 0x4A0
|
|
|
|
#define I2S_CG_SLCG_ENABLE (1 << 0)
|
|
|
|
#define I2S_CTRL_MASTER_EN (1 << 10)
|
2018-03-07 01:11:46 +00:00
|
|
|
|
2019-04-14 00:19:04 +01:00
|
|
|
/*! PWM registers. */
|
|
|
|
#define PWM_CONTROLLER_PWM_CSR_0 0x00
|
|
|
|
#define PWM_CONTROLLER_PWM_CSR_1 0x10
|
|
|
|
|
2019-02-23 22:59:33 +00:00
|
|
|
/*! Special registers. */
|
|
|
|
#define EMC_SCRATCH0 0x324
|
2019-03-07 22:19:04 +00:00
|
|
|
#define EMC_HEKA_UPD (1 << 30)
|
2019-02-23 22:59:33 +00:00
|
|
|
#define EMC_SEPT_RUN (1 << 31)
|
|
|
|
|
2018-03-07 01:11:46 +00:00
|
|
|
#endif
|