I might have identified the root cause of this issue.
When I made a question, I used startup_JN5189.cpp (not .c) which does not have any interrupt handlers definition regarding 15.4 MAC. Now I replaced it by startup_JN5189.c at SDK2_6_4, it works fine. And also it should not to be with AddBuildNond.ld but it could be with Managed Linker Script as well.
If Managed Linker Script is used, the file (linkscripts/user_memory.ldt) should be added and (maybe) RAM should configured to start from 0x4000400. (But I can't see any changes in memory starting from 0x4000000.)
__mac_buffer_base = 0x04000000;
Anyway, the project wizard will introduce startup_JN5189.cpp, however this file should be replaced by startup_JN5189.c in {SDKROOT}/devices/JN5189/gcc/.
Thanks for many comments and help!