blob: e9f3aabb6fcb00c62cfd4782e87becc6b112412e [file] [log] [blame]
rev13@wp.plfec465a2015-03-01 12:44:40 +01001/*
2 * (C) Copyright 2011
3 * Yuri Tikhonov, Emcraft Systems, yur@emcraft.com
4 *
5 * (C) Copyright 2015
Kamil Lulko75d48a62015-12-01 09:08:19 +01006 * Kamil Lulko, <kamil.lulko@gmail.com>
rev13@wp.plfec465a2015-03-01 12:44:40 +01007 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#ifndef _MACH_STM32_H_
12#define _MACH_STM32_H_
13
14/*
15 * Peripheral memory map
16 */
Antonio Borneo989e8b22015-07-19 22:19:46 +080017#define STM32_SYSMEM_BASE 0x1FFF0000
rev13@wp.plfec465a2015-03-01 12:44:40 +010018#define STM32_PERIPH_BASE 0x40000000
19#define STM32_APB1PERIPH_BASE (STM32_PERIPH_BASE + 0x00000000)
20#define STM32_APB2PERIPH_BASE (STM32_PERIPH_BASE + 0x00010000)
21#define STM32_AHB1PERIPH_BASE (STM32_PERIPH_BASE + 0x00020000)
22#define STM32_AHB2PERIPH_BASE (STM32_PERIPH_BASE + 0x10000000)
23
24#define STM32_BUS_MASK 0xFFFF0000
25
Vikas Manocha08bce2b2016-02-11 15:47:18 -080026#define STM32_GPIOA_BASE (STM32_AHB1PERIPH_BASE + 0x0000)
27#define STM32_GPIOB_BASE (STM32_AHB1PERIPH_BASE + 0x0400)
28#define STM32_GPIOC_BASE (STM32_AHB1PERIPH_BASE + 0x0800)
29#define STM32_GPIOD_BASE (STM32_AHB1PERIPH_BASE + 0x0C00)
30#define STM32_GPIOE_BASE (STM32_AHB1PERIPH_BASE + 0x1000)
31#define STM32_GPIOF_BASE (STM32_AHB1PERIPH_BASE + 0x1400)
32#define STM32_GPIOG_BASE (STM32_AHB1PERIPH_BASE + 0x1800)
33#define STM32_GPIOH_BASE (STM32_AHB1PERIPH_BASE + 0x1C00)
34#define STM32_GPIOI_BASE (STM32_AHB1PERIPH_BASE + 0x2000)
35
rev13@wp.plfec465a2015-03-01 12:44:40 +010036/*
37 * Register maps
38 */
Antonio Borneo989e8b22015-07-19 22:19:46 +080039struct stm32_u_id_regs {
40 u32 u_id_low;
41 u32 u_id_mid;
42 u32 u_id_high;
43};
44
rev13@wp.plfec465a2015-03-01 12:44:40 +010045struct stm32_pwr_regs {
46 u32 cr;
47 u32 csr;
48};
49
rev13@wp.plfec465a2015-03-01 12:44:40 +010050/*
51 * Registers access macros
52 */
Antonio Borneo989e8b22015-07-19 22:19:46 +080053#define STM32_U_ID_BASE (STM32_SYSMEM_BASE + 0x7A10)
54#define STM32_U_ID ((struct stm32_u_id_regs *)STM32_U_ID_BASE)
55
rev13@wp.plfec465a2015-03-01 12:44:40 +010056#define STM32_RCC_BASE (STM32_AHB1PERIPH_BASE + 0x3800)
57#define STM32_RCC ((struct stm32_rcc_regs *)STM32_RCC_BASE)
58
59#define STM32_PWR_BASE (STM32_APB1PERIPH_BASE + 0x7000)
60#define STM32_PWR ((struct stm32_pwr_regs *)STM32_PWR_BASE)
61
Kamil Lulko75d48a62015-12-01 09:08:19 +010062/*
63 * Peripheral base addresses
64 */
65#define STM32_USART1_BASE (STM32_APB2PERIPH_BASE + 0x1000)
66#define STM32_USART2_BASE (STM32_APB1PERIPH_BASE + 0x4400)
67#define STM32_USART3_BASE (STM32_APB1PERIPH_BASE + 0x4800)
68#define STM32_USART6_BASE (STM32_APB2PERIPH_BASE + 0x1400)
69
Vikas Manochae750d562016-03-09 15:18:13 -080070#define FLASH_CNTL_BASE (STM32_AHB1PERIPH_BASE + 0x3C00)
71
72static const u32 sect_sz_kb[CONFIG_SYS_MAX_FLASH_SECT] = {
73 [0 ... 3] = 16 * 1024,
74 [4] = 64 * 1024,
75 [5 ... 11] = 128 * 1024
76};
77
rev13@wp.plfec465a2015-03-01 12:44:40 +010078enum clock {
79 CLOCK_CORE,
80 CLOCK_AHB,
81 CLOCK_APB1,
82 CLOCK_APB2
83};
84
85int configure_clocks(void);
86unsigned long clock_get(enum clock clck);
Vikas Manochae750d562016-03-09 15:18:13 -080087void stm32_flash_latency_cfg(int latency);
rev13@wp.plfec465a2015-03-01 12:44:40 +010088
89#endif /* _MACH_STM32_H_ */