Changeset e10dec0 in rtems
- Timestamp:
- 04/30/21 13:47:10 (3 years ago)
- Branches:
- master
- Children:
- 2df9541
- Parents:
- a84bf96
- git-author:
- Sebastian Huber <sebastian.huber@…> (04/30/21 13:47:10)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/02/21 16:41:21)
- Location:
- bsps
- Files:
-
- 62 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/arm/include/bsp/arm-cp15-start.h
ra84bf96 re10dec0 79 79 .flags = ARMV7_MMU_DATA_READ_WRITE_CACHED \ 80 80 }, { \ 81 .begin = (uint32_t) bsp_section_noinit_begin, \ 82 .end = (uint32_t) bsp_section_noinit_end, \ 83 .flags = ARMV7_MMU_DATA_READ_WRITE_CACHED \ 84 }, { \ 81 85 .begin = (uint32_t) bsp_section_work_begin, \ 82 86 .end = (uint32_t) bsp_section_work_end, \ … … 100 104 } 101 105 102 #define ARMV7_CP15_START_WORKSPACE_ENTRY_INDEX 9106 #define ARMV7_CP15_START_WORKSPACE_ENTRY_INDEX 10 103 107 104 108 BSP_START_DATA_SECTION extern const arm_cp15_start_section_config -
bsps/arm/include/bsp/linker-symbols.h
ra84bf96 re10dec0 97 97 LINKER_SYMBOL(bsp_section_rtemsstack_size) 98 98 99 LINKER_SYMBOL(bsp_section_noinit_begin) 100 LINKER_SYMBOL(bsp_section_noinit_end) 101 LINKER_SYMBOL(bsp_section_noinit_size) 102 99 103 LINKER_SYMBOL(bsp_section_work_begin) 100 104 LINKER_SYMBOL(bsp_section_work_end) -
bsps/arm/shared/start/linkcmds.base
ra84bf96 re10dec0 338 338 } > REGION_WORK AT > REGION_WORK 339 339 bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin; 340 341 .noinit (NOLOAD) : ALIGN_WITH_INPUT { 342 bsp_section_noinit_begin = .; 343 *(.noinit*) 344 bsp_section_noinit_end = .; 345 } > REGION_WORK AT > REGION_WORK 346 bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin; 340 347 341 348 .work : ALIGN_WITH_INPUT { -
bsps/bfin/TLL6527M/start/linkcmds
ra84bf96 re10dec0 129 129 } > sdram 130 130 131 .noinit (NOLOAD) : { 132 *(.noinit*) 133 } > sdram 134 131 135 .rtemsstack (NOLOAD) : { 132 136 *(SORT(.rtemsstack.*)) -
bsps/bfin/bf537Stamp/start/linkcmds
ra84bf96 re10dec0 137 137 } > sdram 138 138 139 .noinit (NOLOAD) : { 140 *(.noinit*) 141 } > sdram 142 139 143 .rtemsstack (NOLOAD) : { 140 144 *(SORT(.rtemsstack.*)) -
bsps/bfin/eZKit533/start/linkcmds
ra84bf96 re10dec0 126 126 } > sdram 127 127 128 .noinit (NOLOAD) : { 129 *(.noinit*) 130 } > sdram 131 128 132 .rtemsstack (NOLOAD) : { 129 133 *(SORT(.rtemsstack.*)) -
bsps/i386/pc386/start/linkcmds
ra84bf96 re10dec0 206 206 . = ALIGN(32 / 8); 207 207 _end = .; PROVIDE (end = .); 208 .noinit (NOLOAD) : { 209 *(.noinit*) 210 } 208 211 .rtemsstack (NOLOAD) : { 209 212 *(SORT(.rtemsstack.*)) -
bsps/lm32/lm32_evr/start/linkcmds
ra84bf96 re10dec0 252 252 _clear_end = .; 253 253 254 } > sdram 255 256 .noinit (NOLOAD) : { 257 *(.noinit*) 254 258 } > sdram 255 259 -
bsps/lm32/milkymist/start/linkcmds
ra84bf96 re10dec0 250 250 . = ALIGN (16); 251 251 _clear_end = .; 252 } > sdram 253 254 .noinit (NOLOAD) : { 255 *(.noinit*) 252 256 } > sdram 253 257 -
bsps/m68k/av5282/start/linkcmds
ra84bf96 re10dec0 184 184 } >ram 185 185 186 .noinit (NOLOAD) : { 187 *(.noinit*) 188 } >ram 189 186 190 .rtemsstack (NOLOAD) : { 187 191 *(SORT(.rtemsstack.*)) -
bsps/m68k/av5282/start/linkcmdsflash
ra84bf96 re10dec0 184 184 } 185 185 186 .noinit (NOLOAD) : { 187 *(.noinit*) 188 } 189 186 190 .rtemsstack (NOLOAD) : { 187 191 *(SORT(.rtemsstack.*)) -
bsps/m68k/av5282/start/linkcmdsram
ra84bf96 re10dec0 183 183 } >ram 184 184 185 .noinit (NOLOAD) : { 186 *(.noinit*) 187 } >ram 188 185 189 .rtemsstack (NOLOAD) : { 186 190 *(SORT(.rtemsstack.*)) -
bsps/m68k/csb360/start/linkcmds
ra84bf96 re10dec0 159 159 } > ram 160 160 161 .noinit (NOLOAD) : { 162 *(.noinit*) 163 } >ram 164 161 165 .rtemsstack (NOLOAD) : { 162 166 *(SORT(.rtemsstack.*)) -
bsps/m68k/gen68340/start/linkcmds
ra84bf96 re10dec0 190 190 } >ram 191 191 192 .noinit (NOLOAD) : { 193 *(.noinit*) 194 } >ram 195 192 196 .rtemsstack (NOLOAD) : { 193 197 *(SORT(.rtemsstack.*)) -
bsps/m68k/gen68360/start/linkcmds
ra84bf96 re10dec0 154 154 } >ram 155 155 156 .noinit (NOLOAD) : { 157 *(.noinit*) 158 } > ram 159 156 160 .rtemsstack (NOLOAD) : { 157 161 *(SORT(.rtemsstack.*)) -
bsps/m68k/gen68360/start/linkcmds.bootp
ra84bf96 re10dec0 156 156 } >myram 157 157 158 .noinit (NOLOAD) : { 159 *(.noinit*) 160 } >mvram 161 158 162 .rtemsstack (NOLOAD) : { 159 163 *(SORT(.rtemsstack.*)) -
bsps/m68k/gen68360/start/linkcmds.prom
ra84bf96 re10dec0 154 154 } >ram 155 155 156 .noinit (NOLOAD) : { 157 *(.noinit*) 158 } > ram 159 156 160 .rtemsstack (NOLOAD) : { 157 161 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5206elite/start/linkcmds
ra84bf96 re10dec0 192 192 } > ram 193 193 194 .noinit (NOLOAD) : { 195 *(.noinit*) 196 } >ram 197 194 198 .rtemsstack (NOLOAD) : { 195 199 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5206elite/start/linkcmds.flash
ra84bf96 re10dec0 191 191 } > ram 192 192 193 .noinit (NOLOAD) : { 194 *(.noinit*) 195 } >ram 196 193 197 .rtemsstack (NOLOAD) : { 194 198 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf52235/start/linkcmds
ra84bf96 re10dec0 172 172 } >sram 173 173 174 .noinit (NOLOAD) : { 175 *(.noinit*) 176 } >sram 177 174 178 .rtemsstack (NOLOAD) : { 175 179 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5225x/start/linkcmds
ra84bf96 re10dec0 172 172 } >sram 173 173 174 .noinit (NOLOAD) : { 175 *(.noinit*) 176 } >sram 177 174 178 .rtemsstack (NOLOAD) : { 175 179 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5235/start/linkcmds
ra84bf96 re10dec0 191 191 } > dram 192 192 193 .noinit (NOLOAD) : { 194 *(.noinit*) 195 } > dram 196 193 197 .rtemsstack (NOLOAD) : { 194 198 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5235/start/linkcmdsflash
ra84bf96 re10dec0 196 196 } >ram 197 197 198 .noinit (NOLOAD) : { 199 *(.noinit*) 200 } > ram 201 198 202 .rtemsstack (NOLOAD) : { 199 203 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5235/start/linkcmdsram
ra84bf96 re10dec0 191 191 } >ram 192 192 193 .noinit (NOLOAD) : { 194 *(.noinit*) 195 } > ram 196 193 197 .rtemsstack (NOLOAD) : { 194 198 *(SORT(.rtemsstack.*)) -
bsps/m68k/mcf5329/start/linkcmds
ra84bf96 re10dec0 180 180 PROVIDE (_end = .); 181 181 _clear_end = .; 182 } > dram 183 184 .noinit (NOLOAD) : { 185 *(.noinit*) 182 186 WorkAreaBase = .; 183 187 } > dram -
bsps/m68k/mcf5329/start/linkcmdsflash
ra84bf96 re10dec0 176 176 PROVIDE (_end = .); 177 177 _clear_end = .; 178 } > dram 179 180 .noinit (NOLOAD) : { 181 *(.noinit*) 178 182 WorkAreaBase = .; 179 183 } > dram -
bsps/m68k/mrm332/start/linkcmds
ra84bf96 re10dec0 195 195 _clear_end = .; 196 196 } > ram 197 .noinit (NOLOAD) : { 198 *(.noinit*) 199 } > ram 197 200 .rtemsstack (NOLOAD) : { 198 201 *(SORT(.rtemsstack.*)) -
bsps/m68k/shared/start/linkcmds.base
ra84bf96 re10dec0 249 249 } > REGION_DATA AT > REGION_DATA 250 250 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_begin; 251 252 .noinit (NOLOAD) : ALIGN_WITH_INPUT { 253 bsp_section_noinit_begin = .; 254 *(.noinit*) 255 bsp_section_noinit_end = .; 256 } > REGION_DATA AT > REGION_DATA 257 bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin; 251 258 252 259 .rtemsstack (NOLOAD) : ALIGN_WITH_INPUT { -
bsps/m68k/uC5282/start/linkcmds
ra84bf96 re10dec0 200 200 } >ram 201 201 202 .noinit (NOLOAD) : { 203 *(.noinit*) 204 } >ram 205 202 206 .rtemsstack (NOLOAD) : { 203 207 *(SORT(.rtemsstack.*)) -
bsps/mips/csb350/start/linkcmds
ra84bf96 re10dec0 193 193 } >ram 194 194 195 .noinit (NOLOAD) : { 196 *(.noinit*) 197 } >ram 198 195 199 .rtemsstack (NOLOAD) : { 196 200 *(SORT(.rtemsstack.*)) -
bsps/mips/hurricane/start/linkcmds
ra84bf96 re10dec0 171 171 } 172 172 173 .noinit (NOLOAD) : { 174 *(.noinit*) 175 } 176 173 177 .rtemsstack (NOLOAD) : { 174 178 *(SORT(.rtemsstack.*)) -
bsps/mips/jmr3904/start/linkcmds
ra84bf96 re10dec0 168 168 } 169 169 170 .noinit (NOLOAD) : { 171 *(.noinit*) 172 } 173 170 174 .rtemsstack (NOLOAD) : { 171 175 *(SORT(.rtemsstack.*)) -
bsps/mips/malta/start/linkcmds
ra84bf96 re10dec0 169 169 } 170 170 171 .noinit (NOLOAD) : { 172 *(.noinit*) 173 } 174 171 175 .rtemsstack (NOLOAD) : { 172 176 *(SORT(.rtemsstack.*)) -
bsps/mips/rbtx4925/start/linkcmds
ra84bf96 re10dec0 171 171 } 172 172 173 .noinit (NOLOAD) : { 174 *(.noinit*) 175 } 176 173 177 .rtemsstack (NOLOAD) : { 174 178 *(SORT(.rtemsstack.*)) -
bsps/mips/rbtx4938/start/linkcmds
ra84bf96 re10dec0 171 171 } 172 172 173 .noinit (NOLOAD) : { 174 *(.noinit*) 175 } 176 173 177 .rtemsstack (NOLOAD) : { 174 178 *(SORT(.rtemsstack.*)) -
bsps/moxie/moxiesim/start/linkcmds
ra84bf96 re10dec0 231 231 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; 232 232 PROVIDE (end = .); 233 .noinit (NOLOAD) : { 234 *(.noinit*) 235 } 233 236 .rtemsstack (NOLOAD) : { 234 237 *(SORT(.rtemsstack.*)) -
bsps/nios2/nios2_iss/start/linkcmds
ra84bf96 re10dec0 268 268 } > onchip_memory_0 269 269 270 .noinit (NOLOAD) : { 271 *(.noinit*) 272 } > onchip_memory_0 273 270 274 .rtemsstack (NOLOAD) : { 271 275 _stack_low = ABSOLUTE(.); -
bsps/or1k/shared/start/linkcmds.base
ra84bf96 re10dec0 286 286 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_begin; 287 287 288 .noinit (NOLOAD) : ALIGN_WITH_INPUT { 289 bsp_section_noinit_begin = .; 290 *(.noinit*) 291 bsp_section_noinit_end = .; 292 } > REGION_BSS AT > REGION_BSS 293 bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin; 294 288 295 .rtemsstack (NOLOAD) : ALIGN_WITH_INPUT{ 289 296 *(SORT(.rtemsstack.*)) -
bsps/powerpc/gen5200/start/linkcmds.gen5200_base
ra84bf96 re10dec0 295 295 bsp_section_data_size = bsp_section_data_end - bsp_section_data_start; 296 296 bsp_section_bss_size = bsp_section_bss_end - bsp_section_bss_start; 297 298 .noinit (NOLOAD) : { 299 *(.noinit*) 300 } > RAM 297 301 298 302 .rtemsstack (NOLOAD) : { -
bsps/powerpc/haleakala/start/linkcmds
ra84bf96 re10dec0 251 251 sbss.size = sbss.end - sbss.start; 252 252 253 .noinit (NOLOAD) : { 254 *(.noinit*) 255 } >RAM 256 253 257 .rtemsstack (NOLOAD) : { 254 258 *(SORT(.rtemsstack.*)) -
bsps/powerpc/include/bsp/linker-symbols.h
ra84bf96 re10dec0 94 94 LINKER_SYMBOL(bsp_section_rtemsstack_size) 95 95 96 LINKER_SYMBOL(bsp_section_noinit_begin) 97 LINKER_SYMBOL(bsp_section_noinit_end) 98 LINKER_SYMBOL(bsp_section_noinit_size) 99 96 100 LINKER_SYMBOL(bsp_section_work_begin) 97 101 LINKER_SYMBOL(bsp_section_work_end) -
bsps/powerpc/mpc8260ads/start/linkcmds
ra84bf96 re10dec0 290 290 clear_end = .; 291 291 292 .noinit (NOLOAD) : { 293 *(.noinit*) 294 } >ram 295 292 296 .rtemsstack (NOLOAD) : { 293 297 *(SORT(.rtemsstack.*)) -
bsps/powerpc/qoriq/start/mmu-config.c
ra84bf96 re10dec0 134 134 ENTRY_RW(bsp_section_bss_begin, bsp_section_bss_size), 135 135 ENTRY_RW(bsp_section_rtemsstack_begin, bsp_section_rtemsstack_size), 136 ENTRY_RW(bsp_section_noinit_begin, bsp_section_noinit_size), 136 137 ENTRY_RW(bsp_section_stack_begin, bsp_section_stack_size), 137 138 ENTRY_IO(bsp_section_nocache_begin, bsp_section_nocache_size), -
bsps/powerpc/shared/start/linkcmds.base
ra84bf96 re10dec0 343 343 } > REGION_RTEMSSTACK AT > REGION_RTEMSSTACK 344 344 bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin; 345 346 .noinit (NOLOAD) : ALIGN_WITH_INPUT { 347 bsp_section_noinit_begin = .; 348 *(.noinit*) 349 bsp_section_noinit_end = .; 350 } > REGION_WORK AT > REGION_WORK 351 bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin; 345 352 346 353 .work : ALIGN_WITH_INPUT { -
bsps/powerpc/shared/start/linkcmds.share
ra84bf96 re10dec0 253 253 . = ALIGN(16); 254 254 PROVIDE (__bss_end = .); 255 } > CODE 256 .noinit (NOLOAD) : { 257 *(.noinit*) 255 258 } > CODE 256 259 .rtemsstack (NOLOAD) : { -
bsps/powerpc/ss555/start/linkcmds
ra84bf96 re10dec0 234 234 PROVIDE(_end = bss.end); 235 235 236 .noinit (NOLOAD) : { 237 *(.noinit*) 238 } 239 236 240 .rtemsstack (NOLOAD) : { 237 241 *(SORT(.rtemsstack.*)) -
bsps/powerpc/virtex4/start/linkcmds
ra84bf96 re10dec0 253 253 PROVIDE(__bsp_ram_start = .); 254 254 255 .noinit (NOLOAD) : { 256 *(.noinit*) 257 } >RAM 258 255 259 .rtemsstack (NOLOAD) : { 256 260 *(SORT(.rtemsstack.*)) -
bsps/powerpc/virtex5/start/linkcmds
ra84bf96 re10dec0 253 253 PROVIDE(__bsp_ram_start = .); 254 254 255 .noinit (NOLOAD) : { 256 *(.noinit*) 257 } >RAM 258 255 259 .rtemsstack (NOLOAD) : { 256 260 *(SORT(.rtemsstack.*)) -
bsps/riscv/include/bsp/linker-symbols.h
ra84bf96 re10dec0 64 64 LINKER_SYMBOL(bsp_section_rtemsstack_size) 65 65 66 LINKER_SYMBOL(bsp_section_noinit_begin) 67 LINKER_SYMBOL(bsp_section_noinit_end) 68 LINKER_SYMBOL(bsp_section_noinit_size) 69 66 70 LINKER_SYMBOL(bsp_section_work_begin) 67 71 LINKER_SYMBOL(bsp_section_work_end) -
bsps/riscv/shared/start/linkcmds.base.in
ra84bf96 re10dec0 314 314 } > REGION_RTEMSSTACK AT > REGION_RTEMSSTACK 315 315 bsp_section_rtemsstack_size = bsp_section_rtemsstack_end - bsp_section_rtemsstack_begin; 316 317 .noinit (NOLOAD) : @RISCV_LINKER_ALIGN_DIRECTIVE@ { 318 bsp_section_noinit_begin = .; 319 *(.noinit*) 320 bsp_section_noinit_end = .; 321 } > REGION_WORK AT > REGION_WORK 322 bsp_section_noinit_size = bsp_section_noinit_end - bsp_section_noinit_begin; 316 323 317 324 .work (NOLOAD) : @RISCV_LINKER_ALIGN_DIRECTIVE@ { -
bsps/sh/gensh1/start/linkcmds
ra84bf96 re10dec0 188 188 PROVIDE (end = .); 189 189 190 .noinit (NOLOAD) : { 191 *(.noinit*) 192 } > ram 193 190 194 .rtemsstackidle (NOLOAD) : { 191 195 *(SORT(.rtemsstack.idle*)) -
bsps/sh/gensh2/start/linkcmds
ra84bf96 re10dec0 199 199 PROVIDE (end = .); 200 200 201 .noinit (NOLOAD) : { 202 *(.noinit*) 203 } > ram 204 201 205 .rtemsstackidle (NOLOAD) : { 202 206 *(SORT(.rtemsstack.idle*)) -
bsps/sh/gensh2/start/linkcmds.ram
ra84bf96 re10dec0 201 201 PROVIDE (end = .); 202 202 203 .noinit (NOLOAD) : { 204 *(.noinit*) 205 } > ram 206 203 207 .rtemsstackidle (NOLOAD) : { 204 208 *(SORT(.rtemsstack.idle*)) -
bsps/sh/gensh2/start/linkcmds.rom
ra84bf96 re10dec0 202 202 PROVIDE (end = .); 203 203 204 .noinit (NOLOAD) : { 205 *(.noinit*) 206 } > ram 207 204 208 .rtemsstackidle (NOLOAD) : { 205 209 *(SORT(.rtemsstack.idle*)) -
bsps/sh/gensh4/start/linkcmds
ra84bf96 re10dec0 146 146 } > ram 147 147 148 .noinit (NOLOAD) : { 149 *(.noinit*) 150 } > ram 151 148 152 .rtemsstack (NOLOAD) : { 149 153 *(SORT(.rtemsstack.*)) -
bsps/sh/gensh4/start/linkcmds.rom
ra84bf96 re10dec0 187 187 . = ALIGN(32 / 8); 188 188 __bss_end = .; 189 } > ram 190 191 .noinit (NOLOAD) : { 192 *(.noinit*) 189 193 } > ram 190 194 -
bsps/sh/gensh4/start/linkcmds.rom2ram
ra84bf96 re10dec0 192 192 *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) 193 193 } >ram 194 195 .noinit (NOLOAD) : { 196 *(.noinit*) 197 } > ram 194 198 195 199 .rtemsstack (NOLOAD) : { -
bsps/sh/shsim/start/linkcmds
ra84bf96 re10dec0 204 204 PROVIDE (end = .); 205 205 206 .noinit (NOLOAD) : { 207 *(.noinit*) 208 } > ram 209 206 210 .rtemsstack (NOLOAD) : { 207 211 *(SORT(.rtemsstack.*)) -
bsps/sparc/shared/start/linkcmds.base
ra84bf96 re10dec0 155 155 *(.rela.rtemsrwset*) 156 156 } >ram 157 .noinit (NOLOAD) : { 158 *(.noinit*) 159 } > ram 157 160 .rtemsstack (NOLOAD) : { 158 161 *(SORT(.rtemsstack.*)) -
bsps/sparc64/shared/start/linkcmds
ra84bf96 re10dec0 180 180 } > ram 181 181 182 .noinit (NOLOAD) : { 183 *(.noinit*) 184 } > ram 185 182 186 .rtemsstack (NOLOAD) : { 183 187 *(SORT(.rtemsstack.*)) -
bsps/v850/gdbv850sim/start/linkcmds
ra84bf96 re10dec0 192 192 *(.bss) 193 193 *(COMMON) 194 } 195 .noinit (NOLOAD) : { 196 *(.noinit*) 194 197 } 195 198 .rtemsstack (NOLOAD) : { -
bsps/x86_64/amd64/start/linkcmds
ra84bf96 re10dec0 11 11 * - Added HeapSize, RamBase, RamSize, WorkBase 12 12 * - rtemssroset section 13 * - noinit section 13 14 * - rtemsstack section 14 15 */ … … 232 233 . = ALIGN(64 / 8); 233 234 _end = .; PROVIDE (end = .); 235 .noinit (NOLOAD) : 236 { 237 *(.noinit*) 238 } 234 239 .rtemsstack (NOLOAD) : 235 240 {
Note: See TracChangeset
for help on using the changeset viewer.