1/* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* For RW612, fw_cpu1 is used for wifi firmware. 8 * Place the wifi and ble firmwares in rodata section. If both binaries 9 * are placed next to each other, the firmware loader will detect the 10 * second binary as part of the first one, leading to initialization 11 * issue, so add a padding of one word */ 12#if defined(CONFIG_NXP_MONOLITHIC_WIFI) 13. = ALIGN(4); 14KEEP(*(.fw_cpu1)) 15. += 4; 16#endif 17 18#if defined(CONFIG_NXP_MONOLITHIC_NBU) 19. = ALIGN(4); 20KEEP(*(.fw_cpu2)) 21#endif 22