blob: 40df89142608d09b510286b6c157e3cb79ee18c9 [file] [log] [blame]
Vikas Manocha1b51c932016-02-11 15:47:20 -08001/*
Patrice Chotard789ee0e2017-10-23 09:53:58 +02002 * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
3 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manocha1b51c932016-02-11 15:47:20 -08004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _ASM_ARCH_HARDWARE_H
9#define _ASM_ARCH_HARDWARE_H
10
11/* STM32F746 */
12#define ITCM_FLASH_BASE 0x00200000UL
13#define AXIM_FLASH_BASE 0x08000000UL
14
15#define ITCM_SRAM_BASE 0x00000000UL
16#define DTCM_SRAM_BASE 0x20000000UL
17#define SRAM1_BASE 0x20010000UL
18#define SRAM2_BASE 0x2004C000UL
19
20#define PERIPH_BASE 0x40000000UL
21
22#define APB1_PERIPH_BASE (PERIPH_BASE + 0x00000000)
23#define APB2_PERIPH_BASE (PERIPH_BASE + 0x00010000)
24#define AHB1_PERIPH_BASE (PERIPH_BASE + 0x00020000)
25#define AHB2_PERIPH_BASE (PERIPH_BASE + 0x10000000)
26#define AHB3_PERIPH_BASE (PERIPH_BASE + 0x20000000)
27
Vikas Manocha1b51c932016-02-11 15:47:20 -080028#define USART2_BASE (APB1_PERIPH_BASE + 0x4400)
29#define USART3_BASE (APB1_PERIPH_BASE + 0x4800)
30#define PWR_BASE (APB1_PERIPH_BASE + 0x7000)
31
32#define USART1_BASE (APB2_PERIPH_BASE + 0x1000)
33#define USART6_BASE (APB2_PERIPH_BASE + 0x1400)
Michael Kurzc204fb72017-01-22 16:04:24 +010034#define STM32_SYSCFG_BASE (APB2_PERIPH_BASE + 0x3800)
Vikas Manocha1b51c932016-02-11 15:47:20 -080035
36#define STM32_GPIOA_BASE (AHB1_PERIPH_BASE + 0x0000)
37#define STM32_GPIOB_BASE (AHB1_PERIPH_BASE + 0x0400)
38#define STM32_GPIOC_BASE (AHB1_PERIPH_BASE + 0x0800)
39#define STM32_GPIOD_BASE (AHB1_PERIPH_BASE + 0x0C00)
40#define STM32_GPIOE_BASE (AHB1_PERIPH_BASE + 0x1000)
41#define STM32_GPIOF_BASE (AHB1_PERIPH_BASE + 0x1400)
42#define STM32_GPIOG_BASE (AHB1_PERIPH_BASE + 0x1800)
43#define STM32_GPIOH_BASE (AHB1_PERIPH_BASE + 0x1C00)
44#define STM32_GPIOI_BASE (AHB1_PERIPH_BASE + 0x2000)
45#define STM32_GPIOJ_BASE (AHB1_PERIPH_BASE + 0x2400)
46#define STM32_GPIOK_BASE (AHB1_PERIPH_BASE + 0x2800)
Vikas Manocha1b51c932016-02-11 15:47:20 -080047#define FLASH_CNTL_BASE (AHB1_PERIPH_BASE + 0x3C00)
48
49
Michael Kurz115cb822017-01-22 16:04:25 +010050#define SDRAM_FMC_BASE (AHB3_PERIPH_BASE + 0x40000140)
Vikas Manocha1b51c932016-02-11 15:47:20 -080051
Vikas Manocha49408022016-03-09 15:18:14 -080052static const u32 sect_sz_kb[CONFIG_SYS_MAX_FLASH_SECT] = {
53 [0 ... 3] = 32 * 1024,
54 [4] = 128 * 1024,
55 [5 ... 7] = 256 * 1024
56};
57
Michael Kurzc204fb72017-01-22 16:04:24 +010058#define STM32_BUS_MASK GENMASK(31, 16)
Vikas Manocha1b51c932016-02-11 15:47:20 -080059
Toshifumi NISHINAGA65bfb9c2016-07-08 01:02:24 +090060void stm32_flash_latency_cfg(int latency);
Vikas Manocha1b51c932016-02-11 15:47:20 -080061
62#endif /* _ASM_ARCH_HARDWARE_H */