1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-only */ 2*4882a593Smuzhiyun /* 3*4882a593Smuzhiyun * Copyright (C) ST-Ericsson SA 2010 4*4882a593Smuzhiyun */ 5*4882a593Smuzhiyun 6*4882a593Smuzhiyun #ifndef __MACH_DB8500_REGS_H 7*4882a593Smuzhiyun #define __MACH_DB8500_REGS_H 8*4882a593Smuzhiyun 9*4882a593Smuzhiyun /* Base address and bank offsets for ESRAM */ 10*4882a593Smuzhiyun #define U8500_ESRAM_BASE 0x40000000 11*4882a593Smuzhiyun #define U8500_ESRAM_BANK_SIZE 0x00020000 12*4882a593Smuzhiyun #define U8500_ESRAM_BANK0 U8500_ESRAM_BASE 13*4882a593Smuzhiyun #define U8500_ESRAM_BANK1 (U8500_ESRAM_BASE + U8500_ESRAM_BANK_SIZE) 14*4882a593Smuzhiyun #define U8500_ESRAM_BANK2 (U8500_ESRAM_BANK1 + U8500_ESRAM_BANK_SIZE) 15*4882a593Smuzhiyun #define U8500_ESRAM_BANK3 (U8500_ESRAM_BANK2 + U8500_ESRAM_BANK_SIZE) 16*4882a593Smuzhiyun #define U8500_ESRAM_BANK4 (U8500_ESRAM_BANK3 + U8500_ESRAM_BANK_SIZE) 17*4882a593Smuzhiyun /* 18*4882a593Smuzhiyun * on V1 DMA uses 4KB for logical parameters position is right after the 64KB 19*4882a593Smuzhiyun * reserved for security 20*4882a593Smuzhiyun */ 21*4882a593Smuzhiyun #define U8500_ESRAM_DMA_LCPA_OFFSET 0x10000 22*4882a593Smuzhiyun 23*4882a593Smuzhiyun #define U8500_DMA_LCPA_BASE (U8500_ESRAM_BANK0 + U8500_ESRAM_DMA_LCPA_OFFSET) 24*4882a593Smuzhiyun 25*4882a593Smuzhiyun /* This address fulfills the 256k alignment requirement of the lcla base */ 26*4882a593Smuzhiyun #define U8500_DMA_LCLA_BASE U8500_ESRAM_BANK4 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #define U8500_PER3_BASE 0x80000000 29*4882a593Smuzhiyun #define U8500_STM_BASE 0x80100000 30*4882a593Smuzhiyun #define U8500_STM_REG_BASE (U8500_STM_BASE + 0xF000) 31*4882a593Smuzhiyun #define U8500_PER2_BASE 0x80110000 32*4882a593Smuzhiyun #define U8500_PER1_BASE 0x80120000 33*4882a593Smuzhiyun #define U8500_B2R2_BASE 0x80130000 34*4882a593Smuzhiyun #define U8500_HSEM_BASE 0x80140000 35*4882a593Smuzhiyun #define U8500_PER4_BASE 0x80150000 36*4882a593Smuzhiyun #define U8500_TPIU_BASE 0x80190000 37*4882a593Smuzhiyun #define U8500_ICN_BASE 0x81000000 38*4882a593Smuzhiyun 39*4882a593Smuzhiyun #define U8500_BOOT_ROM_BASE 0x90000000 40*4882a593Smuzhiyun /* ASIC ID is at 0xbf4 offset within this region */ 41*4882a593Smuzhiyun #define U8500_ASIC_ID_BASE 0x9001D000 42*4882a593Smuzhiyun 43*4882a593Smuzhiyun #define U8500_PER6_BASE 0xa03c0000 44*4882a593Smuzhiyun #define U8500_PER7_BASE 0xa03d0000 45*4882a593Smuzhiyun #define U8500_PER5_BASE 0xa03e0000 46*4882a593Smuzhiyun 47*4882a593Smuzhiyun #define U8500_SVA_BASE 0xa0100000 48*4882a593Smuzhiyun #define U8500_SIA_BASE 0xa0200000 49*4882a593Smuzhiyun 50*4882a593Smuzhiyun #define U8500_SGA_BASE 0xa0300000 51*4882a593Smuzhiyun #define U8500_MCDE_BASE 0xa0350000 52*4882a593Smuzhiyun #define U8500_DMA_BASE 0x801C0000 /* v1 */ 53*4882a593Smuzhiyun 54*4882a593Smuzhiyun #define U8500_SBAG_BASE 0xa0390000 55*4882a593Smuzhiyun 56*4882a593Smuzhiyun #define U8500_SCU_BASE 0xa0410000 57*4882a593Smuzhiyun #define U8500_GIC_CPU_BASE 0xa0410100 58*4882a593Smuzhiyun #define U8500_TWD_BASE 0xa0410600 59*4882a593Smuzhiyun #define U8500_GIC_DIST_BASE 0xa0411000 60*4882a593Smuzhiyun #define U8500_L2CC_BASE 0xa0412000 61*4882a593Smuzhiyun 62*4882a593Smuzhiyun #define U8500_MODEM_I2C 0xb7e02000 63*4882a593Smuzhiyun 64*4882a593Smuzhiyun #define U8500_GPIO0_BASE (U8500_PER1_BASE + 0xE000) 65*4882a593Smuzhiyun #define U8500_GPIO1_BASE (U8500_PER3_BASE + 0xE000) 66*4882a593Smuzhiyun #define U8500_GPIO2_BASE (U8500_PER2_BASE + 0xE000) 67*4882a593Smuzhiyun #define U8500_GPIO3_BASE (U8500_PER5_BASE + 0x1E000) 68*4882a593Smuzhiyun 69*4882a593Smuzhiyun #define U8500_UART0_BASE (U8500_PER1_BASE + 0x0000) 70*4882a593Smuzhiyun #define U8500_UART1_BASE (U8500_PER1_BASE + 0x1000) 71*4882a593Smuzhiyun 72*4882a593Smuzhiyun /* per6 base addresses */ 73*4882a593Smuzhiyun #define U8500_RNG_BASE (U8500_PER6_BASE + 0x0000) 74*4882a593Smuzhiyun #define U8500_HASH0_BASE (U8500_PER6_BASE + 0x1000) 75*4882a593Smuzhiyun #define U8500_HASH1_BASE (U8500_PER6_BASE + 0x2000) 76*4882a593Smuzhiyun #define U8500_PKA_BASE (U8500_PER6_BASE + 0x4000) 77*4882a593Smuzhiyun #define U8500_PKAM_BASE (U8500_PER6_BASE + 0x5100) 78*4882a593Smuzhiyun #define U8500_MTU0_BASE (U8500_PER6_BASE + 0x6000) /* v1 */ 79*4882a593Smuzhiyun #define U8500_MTU1_BASE (U8500_PER6_BASE + 0x7000) /* v1 */ 80*4882a593Smuzhiyun #define U8500_CR_BASE (U8500_PER6_BASE + 0x8000) /* v1 */ 81*4882a593Smuzhiyun #define U8500_CRYP0_BASE (U8500_PER6_BASE + 0xa000) 82*4882a593Smuzhiyun #define U8500_CRYP1_BASE (U8500_PER6_BASE + 0xb000) 83*4882a593Smuzhiyun #define U8500_CLKRST6_BASE (U8500_PER6_BASE + 0xf000) 84*4882a593Smuzhiyun 85*4882a593Smuzhiyun /* per5 base addresses */ 86*4882a593Smuzhiyun #define U8500_USBOTG_BASE (U8500_PER5_BASE + 0x00000) 87*4882a593Smuzhiyun #define U8500_CLKRST5_BASE (U8500_PER5_BASE + 0x1f000) 88*4882a593Smuzhiyun 89*4882a593Smuzhiyun /* per4 base addresses */ 90*4882a593Smuzhiyun #define U8500_BACKUPRAM0_BASE (U8500_PER4_BASE + 0x00000) 91*4882a593Smuzhiyun #define U8500_BACKUPRAM1_BASE (U8500_PER4_BASE + 0x01000) 92*4882a593Smuzhiyun #define U8500_RTT0_BASE (U8500_PER4_BASE + 0x02000) 93*4882a593Smuzhiyun #define U8500_RTT1_BASE (U8500_PER4_BASE + 0x03000) 94*4882a593Smuzhiyun #define U8500_RTC_BASE (U8500_PER4_BASE + 0x04000) 95*4882a593Smuzhiyun #define U8500_SCR_BASE (U8500_PER4_BASE + 0x05000) 96*4882a593Smuzhiyun #define U8500_DMC_BASE (U8500_PER4_BASE + 0x06000) 97*4882a593Smuzhiyun #define U8500_PRCMU_BASE (U8500_PER4_BASE + 0x07000) 98*4882a593Smuzhiyun #define U9540_DMC1_BASE (U8500_PER4_BASE + 0x0A000) 99*4882a593Smuzhiyun #define U8500_PRCMU_TCDM_BASE (U8500_PER4_BASE + 0x68000) 100*4882a593Smuzhiyun #define U8500_PRCMU_TCPM_BASE (U8500_PER4_BASE + 0x60000) 101*4882a593Smuzhiyun #define U8500_PRCMU_TIMER_3_BASE (U8500_PER4_BASE + 0x07338) 102*4882a593Smuzhiyun #define U8500_PRCMU_TIMER_4_BASE (U8500_PER4_BASE + 0x07450) 103*4882a593Smuzhiyun 104*4882a593Smuzhiyun /* per3 base addresses */ 105*4882a593Smuzhiyun #define U8500_FSMC_BASE (U8500_PER3_BASE + 0x0000) 106*4882a593Smuzhiyun #define U8500_SSP0_BASE (U8500_PER3_BASE + 0x2000) 107*4882a593Smuzhiyun #define U8500_SSP1_BASE (U8500_PER3_BASE + 0x3000) 108*4882a593Smuzhiyun #define U8500_I2C0_BASE (U8500_PER3_BASE + 0x4000) 109*4882a593Smuzhiyun #define U8500_SDI2_BASE (U8500_PER3_BASE + 0x5000) 110*4882a593Smuzhiyun #define U8500_SKE_BASE (U8500_PER3_BASE + 0x6000) 111*4882a593Smuzhiyun #define U8500_UART2_BASE (U8500_PER3_BASE + 0x7000) 112*4882a593Smuzhiyun #define U8500_SDI5_BASE (U8500_PER3_BASE + 0x8000) 113*4882a593Smuzhiyun #define U8500_CLKRST3_BASE (U8500_PER3_BASE + 0xf000) 114*4882a593Smuzhiyun 115*4882a593Smuzhiyun /* per2 base addresses */ 116*4882a593Smuzhiyun #define U8500_I2C3_BASE (U8500_PER2_BASE + 0x0000) 117*4882a593Smuzhiyun #define U8500_SPI2_BASE (U8500_PER2_BASE + 0x1000) 118*4882a593Smuzhiyun #define U8500_SPI1_BASE (U8500_PER2_BASE + 0x2000) 119*4882a593Smuzhiyun #define U8500_PWL_BASE (U8500_PER2_BASE + 0x3000) 120*4882a593Smuzhiyun #define U8500_SDI4_BASE (U8500_PER2_BASE + 0x4000) 121*4882a593Smuzhiyun #define U8500_MSP2_BASE (U8500_PER2_BASE + 0x7000) 122*4882a593Smuzhiyun #define U8500_SDI1_BASE (U8500_PER2_BASE + 0x8000) 123*4882a593Smuzhiyun #define U8500_SDI3_BASE (U8500_PER2_BASE + 0x9000) 124*4882a593Smuzhiyun #define U8500_SPI0_BASE (U8500_PER2_BASE + 0xa000) 125*4882a593Smuzhiyun #define U8500_HSIR_BASE (U8500_PER2_BASE + 0xb000) 126*4882a593Smuzhiyun #define U8500_HSIT_BASE (U8500_PER2_BASE + 0xc000) 127*4882a593Smuzhiyun #define U8500_CLKRST2_BASE (U8500_PER2_BASE + 0xf000) 128*4882a593Smuzhiyun 129*4882a593Smuzhiyun /* per1 base addresses */ 130*4882a593Smuzhiyun #define U8500_I2C1_BASE (U8500_PER1_BASE + 0x2000) 131*4882a593Smuzhiyun #define U8500_MSP0_BASE (U8500_PER1_BASE + 0x3000) 132*4882a593Smuzhiyun #define U8500_MSP1_BASE (U8500_PER1_BASE + 0x4000) 133*4882a593Smuzhiyun #define U8500_MSP3_BASE (U8500_PER1_BASE + 0x5000) 134*4882a593Smuzhiyun #define U8500_SDI0_BASE (U8500_PER1_BASE + 0x6000) 135*4882a593Smuzhiyun #define U8500_I2C2_BASE (U8500_PER1_BASE + 0x8000) 136*4882a593Smuzhiyun #define U8500_SPI3_BASE (U8500_PER1_BASE + 0x9000) 137*4882a593Smuzhiyun #define U8500_I2C4_BASE (U8500_PER1_BASE + 0xa000) 138*4882a593Smuzhiyun #define U8500_SLIM0_BASE (U8500_PER1_BASE + 0xb000) 139*4882a593Smuzhiyun #define U8500_CLKRST1_BASE (U8500_PER1_BASE + 0xf000) 140*4882a593Smuzhiyun 141*4882a593Smuzhiyun #define U8500_SHRM_GOP_INTERRUPT_BASE 0xB7C00040 142*4882a593Smuzhiyun 143*4882a593Smuzhiyun #define U8500_GPIOBANK0_BASE U8500_GPIO0_BASE 144*4882a593Smuzhiyun #define U8500_GPIOBANK1_BASE (U8500_GPIO0_BASE + 0x80) 145*4882a593Smuzhiyun #define U8500_GPIOBANK2_BASE U8500_GPIO1_BASE 146*4882a593Smuzhiyun #define U8500_GPIOBANK3_BASE (U8500_GPIO1_BASE + 0x80) 147*4882a593Smuzhiyun #define U8500_GPIOBANK4_BASE (U8500_GPIO1_BASE + 0x100) 148*4882a593Smuzhiyun #define U8500_GPIOBANK5_BASE (U8500_GPIO1_BASE + 0x180) 149*4882a593Smuzhiyun #define U8500_GPIOBANK6_BASE U8500_GPIO2_BASE 150*4882a593Smuzhiyun #define U8500_GPIOBANK7_BASE (U8500_GPIO2_BASE + 0x80) 151*4882a593Smuzhiyun #define U8500_GPIOBANK8_BASE U8500_GPIO3_BASE 152*4882a593Smuzhiyun 153*4882a593Smuzhiyun #define U8500_MCDE_SIZE 0x1000 154*4882a593Smuzhiyun #define U8500_DSI_LINK_SIZE 0x1000 155*4882a593Smuzhiyun #define U8500_DSI_LINK1_BASE (U8500_MCDE_BASE + U8500_MCDE_SIZE) 156*4882a593Smuzhiyun #define U8500_DSI_LINK2_BASE (U8500_DSI_LINK1_BASE + U8500_DSI_LINK_SIZE) 157*4882a593Smuzhiyun #define U8500_DSI_LINK3_BASE (U8500_DSI_LINK2_BASE + U8500_DSI_LINK_SIZE) 158*4882a593Smuzhiyun #define U8500_DSI_LINK_COUNT 0x3 159*4882a593Smuzhiyun 160*4882a593Smuzhiyun /* Modem and APE physical addresses */ 161*4882a593Smuzhiyun #define U8500_MODEM_BASE 0xe000000 162*4882a593Smuzhiyun #define U8500_APE_BASE 0x6000000 163*4882a593Smuzhiyun 164*4882a593Smuzhiyun /* SoC identification number information */ 165*4882a593Smuzhiyun #define U8500_BB_UID_BASE (U8500_BACKUPRAM1_BASE + 0xFC0) 166*4882a593Smuzhiyun 167*4882a593Smuzhiyun /* Offsets to specific addresses in some IP blocks for DMA */ 168*4882a593Smuzhiyun #define MSP_TX_RX_REG_OFFSET 0 169*4882a593Smuzhiyun #define CRYP1_RX_REG_OFFSET 0x10 170*4882a593Smuzhiyun #define CRYP1_TX_REG_OFFSET 0x8 171*4882a593Smuzhiyun #define HASH1_TX_REG_OFFSET 0x4 172*4882a593Smuzhiyun 173*4882a593Smuzhiyun /* 174*4882a593Smuzhiyun * Macros to get at IO space when running virtually 175*4882a593Smuzhiyun * We dont map all the peripherals, let ioremap do 176*4882a593Smuzhiyun * this for us. We map only very basic peripherals here. 177*4882a593Smuzhiyun */ 178*4882a593Smuzhiyun #define U8500_IO_VIRTUAL 0xf0000000 179*4882a593Smuzhiyun #define U8500_IO_PHYSICAL 0xa0000000 180*4882a593Smuzhiyun /* This is where we map in the ROM to check ASIC IDs */ 181*4882a593Smuzhiyun #define UX500_VIRT_ROM IOMEM(0xf0000000) 182*4882a593Smuzhiyun 183*4882a593Smuzhiyun /* This macro is used in assembly, so no cast */ 184*4882a593Smuzhiyun #define IO_ADDRESS(x) \ 185*4882a593Smuzhiyun (((x) & 0x0fffffff) + (((x) >> 4) & 0x0f000000) + U8500_IO_VIRTUAL) 186*4882a593Smuzhiyun 187*4882a593Smuzhiyun /* typesafe io address */ 188*4882a593Smuzhiyun #define __io_address(n) IOMEM(IO_ADDRESS(n)) 189*4882a593Smuzhiyun 190*4882a593Smuzhiyun /* Used by some plat-nomadik code */ 191*4882a593Smuzhiyun #define io_p2v(n) __io_address(n) 192*4882a593Smuzhiyun 193*4882a593Smuzhiyun #define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x) 194*4882a593Smuzhiyun 195*4882a593Smuzhiyun #endif 196