1eaaa4f7eSrev13@wp.pl /* 2eaaa4f7eSrev13@wp.pl * (C) Copyright 2011 3eaaa4f7eSrev13@wp.pl * Yuri Tikhonov, Emcraft Systems, yur@emcraft.com 4eaaa4f7eSrev13@wp.pl * 5eaaa4f7eSrev13@wp.pl * (C) Copyright 2015 666562414SKamil Lulko * Kamil Lulko, <kamil.lulko@gmail.com> 7eaaa4f7eSrev13@wp.pl * 8eaaa4f7eSrev13@wp.pl * SPDX-License-Identifier: GPL-2.0+ 9eaaa4f7eSrev13@wp.pl */ 10eaaa4f7eSrev13@wp.pl 11eaaa4f7eSrev13@wp.pl #ifndef _MACH_STM32_H_ 12eaaa4f7eSrev13@wp.pl #define _MACH_STM32_H_ 13eaaa4f7eSrev13@wp.pl 14*e336fd76SPatrice Chotard #include <asm/arch-stm32/stm32f.h> 15*e336fd76SPatrice Chotard 16eaaa4f7eSrev13@wp.pl /* 17eaaa4f7eSrev13@wp.pl * Peripheral memory map 18eaaa4f7eSrev13@wp.pl */ 19089fddfdSAntonio Borneo #define STM32_SYSMEM_BASE 0x1FFF0000 20eaaa4f7eSrev13@wp.pl 2109959ba3SVikas Manocha #define STM32_GPIOA_BASE (STM32_AHB1PERIPH_BASE + 0x0000) 2209959ba3SVikas Manocha #define STM32_GPIOB_BASE (STM32_AHB1PERIPH_BASE + 0x0400) 2309959ba3SVikas Manocha #define STM32_GPIOC_BASE (STM32_AHB1PERIPH_BASE + 0x0800) 2409959ba3SVikas Manocha #define STM32_GPIOD_BASE (STM32_AHB1PERIPH_BASE + 0x0C00) 2509959ba3SVikas Manocha #define STM32_GPIOE_BASE (STM32_AHB1PERIPH_BASE + 0x1000) 2609959ba3SVikas Manocha #define STM32_GPIOF_BASE (STM32_AHB1PERIPH_BASE + 0x1400) 2709959ba3SVikas Manocha #define STM32_GPIOG_BASE (STM32_AHB1PERIPH_BASE + 0x1800) 2809959ba3SVikas Manocha #define STM32_GPIOH_BASE (STM32_AHB1PERIPH_BASE + 0x1C00) 2909959ba3SVikas Manocha #define STM32_GPIOI_BASE (STM32_AHB1PERIPH_BASE + 0x2000) 3009959ba3SVikas Manocha 31eaaa4f7eSrev13@wp.pl /* 32eaaa4f7eSrev13@wp.pl * Register maps 33eaaa4f7eSrev13@wp.pl */ 34089fddfdSAntonio Borneo struct stm32_u_id_regs { 35089fddfdSAntonio Borneo u32 u_id_low; 36089fddfdSAntonio Borneo u32 u_id_mid; 37089fddfdSAntonio Borneo u32 u_id_high; 38089fddfdSAntonio Borneo }; 39089fddfdSAntonio Borneo 40eaaa4f7eSrev13@wp.pl struct stm32_rcc_regs { 41eaaa4f7eSrev13@wp.pl u32 cr; /* RCC clock control */ 42eaaa4f7eSrev13@wp.pl u32 pllcfgr; /* RCC PLL configuration */ 43eaaa4f7eSrev13@wp.pl u32 cfgr; /* RCC clock configuration */ 44eaaa4f7eSrev13@wp.pl u32 cir; /* RCC clock interrupt */ 45eaaa4f7eSrev13@wp.pl u32 ahb1rstr; /* RCC AHB1 peripheral reset */ 46eaaa4f7eSrev13@wp.pl u32 ahb2rstr; /* RCC AHB2 peripheral reset */ 47eaaa4f7eSrev13@wp.pl u32 ahb3rstr; /* RCC AHB3 peripheral reset */ 48eaaa4f7eSrev13@wp.pl u32 rsv0; 49eaaa4f7eSrev13@wp.pl u32 apb1rstr; /* RCC APB1 peripheral reset */ 50eaaa4f7eSrev13@wp.pl u32 apb2rstr; /* RCC APB2 peripheral reset */ 51eaaa4f7eSrev13@wp.pl u32 rsv1[2]; 52eaaa4f7eSrev13@wp.pl u32 ahb1enr; /* RCC AHB1 peripheral clock enable */ 53eaaa4f7eSrev13@wp.pl u32 ahb2enr; /* RCC AHB2 peripheral clock enable */ 54eaaa4f7eSrev13@wp.pl u32 ahb3enr; /* RCC AHB3 peripheral clock enable */ 55eaaa4f7eSrev13@wp.pl u32 rsv2; 56eaaa4f7eSrev13@wp.pl u32 apb1enr; /* RCC APB1 peripheral clock enable */ 57eaaa4f7eSrev13@wp.pl u32 apb2enr; /* RCC APB2 peripheral clock enable */ 58eaaa4f7eSrev13@wp.pl u32 rsv3[2]; 59eaaa4f7eSrev13@wp.pl u32 ahb1lpenr; /* RCC AHB1 periph clk enable in low pwr mode */ 60eaaa4f7eSrev13@wp.pl u32 ahb2lpenr; /* RCC AHB2 periph clk enable in low pwr mode */ 61eaaa4f7eSrev13@wp.pl u32 ahb3lpenr; /* RCC AHB3 periph clk enable in low pwr mode */ 62eaaa4f7eSrev13@wp.pl u32 rsv4; 63eaaa4f7eSrev13@wp.pl u32 apb1lpenr; /* RCC APB1 periph clk enable in low pwr mode */ 64eaaa4f7eSrev13@wp.pl u32 apb2lpenr; /* RCC APB2 periph clk enable in low pwr mode */ 65eaaa4f7eSrev13@wp.pl u32 rsv5[2]; 66eaaa4f7eSrev13@wp.pl u32 bdcr; /* RCC Backup domain control */ 67eaaa4f7eSrev13@wp.pl u32 csr; /* RCC clock control & status */ 68eaaa4f7eSrev13@wp.pl u32 rsv6[2]; 69eaaa4f7eSrev13@wp.pl u32 sscgr; /* RCC spread spectrum clock generation */ 70eaaa4f7eSrev13@wp.pl u32 plli2scfgr; /* RCC PLLI2S configuration */ 71eaaa4f7eSrev13@wp.pl u32 pllsaicfgr; 72eaaa4f7eSrev13@wp.pl u32 dckcfgr; 73eaaa4f7eSrev13@wp.pl }; 74eaaa4f7eSrev13@wp.pl 75eaaa4f7eSrev13@wp.pl struct stm32_pwr_regs { 76eaaa4f7eSrev13@wp.pl u32 cr; 77eaaa4f7eSrev13@wp.pl u32 csr; 78eaaa4f7eSrev13@wp.pl }; 79eaaa4f7eSrev13@wp.pl 80eaaa4f7eSrev13@wp.pl /* 81eaaa4f7eSrev13@wp.pl * Registers access macros 82eaaa4f7eSrev13@wp.pl */ 83089fddfdSAntonio Borneo #define STM32_U_ID_BASE (STM32_SYSMEM_BASE + 0x7A10) 84089fddfdSAntonio Borneo #define STM32_U_ID ((struct stm32_u_id_regs *)STM32_U_ID_BASE) 859ecb0c41SVikas Manocha static const u32 sect_sz_kb[CONFIG_SYS_MAX_FLASH_SECT] = { 869ecb0c41SVikas Manocha [0 ... 3] = 16 * 1024, 879ecb0c41SVikas Manocha [4] = 64 * 1024, 889ecb0c41SVikas Manocha [5 ... 11] = 128 * 1024 899ecb0c41SVikas Manocha }; 909ecb0c41SVikas Manocha 91*e336fd76SPatrice Chotard #endif /* _MACH_STM31_H_ */ 92