]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/Common/drivers/LuminaryMicro/hw_memmap.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / Common / drivers / LuminaryMicro / hw_memmap.h
1 //*****************************************************************************\r
2 //\r
3 // hw_memmap.h - Macros defining the memory map of Stellaris.\r
4 //\r
5 // Copyright (c) 2005-2008 Luminary Micro, Inc.  All rights reserved.\r
6 // \r
7 // Software License Agreement\r
8 // \r
9 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and\r
10 // exclusively on LMI's microcontroller products.\r
11 // \r
12 // The software is owned by LMI and/or its suppliers, and is protected under\r
13 // applicable copyright laws.  All rights are reserved.  You may not combine\r
14 // this software with "viral" open-source software in order to form a larger\r
15 // program.  Any use in violation of the foregoing restrictions may subject\r
16 // the user to criminal sanctions under applicable laws, as well as to civil\r
17 // liability for the breach of the terms and conditions of this license.\r
18 // \r
19 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
20 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
22 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
23 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
24 // \r
25 // This is part of revision 2523 of the Stellaris Peripheral Driver Library.\r
26 //\r
27 //*****************************************************************************\r
28 \r
29 #ifndef __HW_MEMMAP_H__\r
30 #define __HW_MEMMAP_H__\r
31 \r
32 //*****************************************************************************\r
33 //\r
34 // The following are defines for the base address of the memories and\r
35 // peripherals.\r
36 //\r
37 //*****************************************************************************\r
38 #define FLASH_BASE              0x00000000  // FLASH memory\r
39 #define SRAM_BASE               0x20000000  // SRAM memory\r
40 #define WATCHDOG_BASE           0x40000000  // Watchdog\r
41 #define GPIO_PORTA_BASE         0x40004000  // GPIO Port A\r
42 #define GPIO_PORTB_BASE         0x40005000  // GPIO Port B\r
43 #define GPIO_PORTC_BASE         0x40006000  // GPIO Port C\r
44 #define GPIO_PORTD_BASE         0x40007000  // GPIO Port D\r
45 #define SSI0_BASE               0x40008000  // SSI0\r
46 #define SSI1_BASE               0x40009000  // SSI1\r
47 #define UART0_BASE              0x4000C000  // UART0\r
48 #define UART1_BASE              0x4000D000  // UART1\r
49 #define UART2_BASE              0x4000E000  // UART2\r
50 #define I2C0_MASTER_BASE        0x40020000  // I2C0 Master\r
51 #define I2C0_SLAVE_BASE         0x40020800  // I2C0 Slave\r
52 #define I2C1_MASTER_BASE        0x40021000  // I2C1 Master\r
53 #define I2C1_SLAVE_BASE         0x40021800  // I2C1 Slave\r
54 #define GPIO_PORTE_BASE         0x40024000  // GPIO Port E\r
55 #define GPIO_PORTF_BASE         0x40025000  // GPIO Port F\r
56 #define GPIO_PORTG_BASE         0x40026000  // GPIO Port G\r
57 #define GPIO_PORTH_BASE         0x40027000  // GPIO Port H\r
58 #define PWM_BASE                0x40028000  // PWM\r
59 #define QEI0_BASE               0x4002C000  // QEI0\r
60 #define QEI1_BASE               0x4002D000  // QEI1\r
61 #define TIMER0_BASE             0x40030000  // Timer0\r
62 #define TIMER1_BASE             0x40031000  // Timer1\r
63 #define TIMER2_BASE             0x40032000  // Timer2\r
64 #define TIMER3_BASE             0x40033000  // Timer3\r
65 #define ADC_BASE                0x40038000  // ADC\r
66 #define COMP_BASE               0x4003C000  // Analog comparators\r
67 #define CAN0_BASE               0x40040000  // CAN0\r
68 #define CAN1_BASE               0x40041000  // CAN1\r
69 #define CAN2_BASE               0x40042000  // CAN2\r
70 #define ETH_BASE                0x40048000  // Ethernet\r
71 #define MAC_BASE                0x40048000  // Ethernet\r
72 #define USB0_BASE               0x40050000  // USB 0 Controller\r
73 #define GPIO_PORTA_AHB_BASE     0x40058000  // GPIO Port A (high speed)\r
74 #define GPIO_PORTB_AHB_BASE     0x40059000  // GPIO Port B (high speed)\r
75 #define GPIO_PORTC_AHB_BASE     0x4005A000  // GPIO Port C (high speed)\r
76 #define GPIO_PORTD_AHB_BASE     0x4005B000  // GPIO Port D (high speed)\r
77 #define GPIO_PORTE_AHB_BASE     0x4005C000  // GPIO Port E (high speed)\r
78 #define GPIO_PORTF_AHB_BASE     0x4005D000  // GPIO Port F (high speed)\r
79 #define GPIO_PORTG_AHB_BASE     0x4005E000  // GPIO Port G (high speed)\r
80 #define GPIO_PORTH_AHB_BASE     0x4005F000  // GPIO Port H (high speed)\r
81 #define HIB_BASE                0x400FC000  // Hibernation Module\r
82 #define FLASH_CTRL_BASE         0x400FD000  // FLASH Controller\r
83 #define SYSCTL_BASE             0x400FE000  // System Control\r
84 #define UDMA_BASE               0x400FF000  // uDMA Controller\r
85 #define ITM_BASE                0xE0000000  // Instrumentation Trace Macrocell\r
86 #define DWT_BASE                0xE0001000  // Data Watchpoint and Trace\r
87 #define FPB_BASE                0xE0002000  // FLASH Patch and Breakpoint\r
88 #define NVIC_BASE               0xE000E000  // Nested Vectored Interrupt Ctrl\r
89 #define TPIU_BASE               0xE0040000  // Trace Port Interface Unit\r
90 \r
91 //*****************************************************************************\r
92 //\r
93 // The following definitions are deprecated.\r
94 //\r
95 //*****************************************************************************\r
96 #ifndef DEPRECATED\r
97 \r
98 //*****************************************************************************\r
99 //\r
100 // The following are deprecated defines for the base address of the memories\r
101 // and peripherals.\r
102 //\r
103 //*****************************************************************************\r
104 #define SSI_BASE                0x40008000  // SSI\r
105 #define I2C_MASTER_BASE         0x40020000  // I2C Master\r
106 #define I2C_SLAVE_BASE          0x40020800  // I2C Slave\r
107 #define QEI_BASE                0x4002C000  // QEI\r
108 \r
109 #endif\r
110 \r
111 #endif // __HW_MEMMAP_H__\r