-
Notifications
You must be signed in to change notification settings - Fork 644
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf fromtree] soc: arm: nordic_nrf: nrf91: add nRF9151 LACA
This patch adds definitions for the nRF9151, which is software-compatible with nRF9161. Signed-off-by: Maximilian Deubel <[email protected]> (cherry picked from commit efa030b32c874ea6840d509b1a80002497239bc7)
- Loading branch information
1 parent
47a6777
commit 1f96744
Showing
4 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright (c) 2023 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#include <mem.h> | ||
#include <nordic/nrf91.dtsi> | ||
|
||
&flash0 { | ||
reg = <0x00000000 DT_SIZE_K(1024)>; | ||
}; | ||
|
||
&sram0 { | ||
reg = <0x20000000 DT_SIZE_K(256)>; | ||
}; | ||
|
||
/ { | ||
soc { | ||
compatible = "nordic,nrf9151-laca", "nordic,nrf9120", | ||
"nordic,nrf91", "simple-bus"; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright (c) 2023 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#include <mem.h> | ||
#include <nordic/nrf91ns.dtsi> | ||
|
||
&flash0 { | ||
reg = <0x00000000 DT_SIZE_K(1024)>; | ||
}; | ||
|
||
&sram0 { | ||
reg = <0x20000000 DT_SIZE_K(256)>; | ||
}; | ||
|
||
/ { | ||
soc { | ||
compatible = "nordic,nrf9151-laca", "nordic,nrf9120", | ||
"nordic,nrf91", "simple-bus"; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Nordic Semiconductor nRF9151 MCU | ||
|
||
# Copyright (c) 2023 Nordic Semiconductor ASA | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if SOC_NRF9151_LACA | ||
|
||
config SOC | ||
default "nRF9151_LACA" | ||
|
||
config NUM_IRQS | ||
default 65 | ||
|
||
endif # SOC_NRF9151_LACA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters