summaryrefslogtreecommitdiff
path: root/zephyr/linker/iram_text.ld
blob: 3ea3f4db7efd541c3c097e90bdcd0dd6c211f7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef CONFIG_ARCH_POSIX

/* This code taken from core/cortex-m/ec.lds.S */

#if defined(CONFIG_PLATFORM_EC_MPU)
/* MPU regions must be aligned to a 32-byte boundary */
#define _IRAM_ALIGN	32
#else
#define _IRAM_ALIGN	4
#endif

	. = ALIGN(_IRAM_ALIGN);
	__iram_text_start = .;
	*(.iram.text)
	. = ALIGN(_IRAM_ALIGN);
	__iram_text_end = .;

#endif /* CONFIG_ARCH_POSIX */