libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
lm3s/memorymap.h
Go to the documentation of this file.
1/*
2 * This file is part of the libopencm3 project.
3 *
4 * Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
5 *
6 * This library is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this library. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LM3S_MEMORYMAP_H
21#define LM3S_MEMORYMAP_H
22
24
25/* --- LM3S specific peripheral definitions ----------------------------- */
26
27#define GPIOA_APB_BASE (0x40004000U)
28#define GPIOB_APB_BASE (0x40005000U)
29#define GPIOC_APB_BASE (0x40006000U)
30#define GPIOD_APB_BASE (0x40007000U)
31#define GPIOE_APB_BASE (0x40024000U)
32#define GPIOF_APB_BASE (0x40025000U)
33#define GPIOG_APB_BASE (0x40026000U)
34#define GPIOH_APB_BASE (0x40027000U)
35
36#define GPIOA_BASE (0x40058000U)
37#define GPIOB_BASE (0x40059000U)
38#define GPIOC_BASE (0x4005A000U)
39#define GPIOD_BASE (0x4005B000U)
40#define GPIOE_BASE (0x4005C000U)
41#define GPIOF_BASE (0x4005D000U)
42#define GPIOG_BASE (0x4005E000U)
43#define GPIOH_BASE (0x4005F000U)
44
45#define SYSTEMCONTROL_BASE (0x400FE000U)
46
47#endif