-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modules: tfm: Update Zephyr and TF-M to support UART pinctrl config
Update TF-M to support UART pin config from pinctrl. Change out-of-tree support to use the device tree information and pass it to the TF-M UART driver. Update TF-M tests to define hw-flow-control, and alternate pin setup in devicetree instead of kconfig Update Zephyr to include: - nRF5340 DK flow control pins. - Revert noup commits to take upstream commits for generic NS board support - Include nrf9160 flash layout fixes and BL2 logging fixes. Signed-off-by: Joakim Andersson <[email protected]>
- Loading branch information
1 parent
147d941
commit e684409
Showing
7 changed files
with
66 additions
and
173 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
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
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
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,19 @@ | ||
/* | ||
* Copyright (c) 2023 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
&uart0 { | ||
compatible = "nordic,nrf-uarte"; | ||
current-speed = <115200>; | ||
status = "okay"; | ||
hw-flow-control; | ||
}; | ||
|
||
&uart1 { | ||
compatible = "nordic,nrf-uarte"; | ||
current-speed = <115200>; | ||
/* Set to disabled in application, since TF-M will be using it. */ | ||
status = "disabled"; | ||
hw-flow-control; | ||
}; |
9 changes: 0 additions & 9 deletions
9
tests/tfm/tfm_regression_test/boards/nrf5340dk_nrf5340_cpuapp_ns.conf
This file was deleted.
Oops, something went wrong.
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
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