Skip to content

Commit e48c907

Browse files
committed
doc: remove more occurances of Nios II
Remove all occurances of Nios II from docs and code. Signed-off-by: Anas Nashif <[email protected]>
1 parent 11c61c6 commit e48c907

File tree

9 files changed

+8
-13
lines changed

9 files changed

+8
-13
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource-constrained systems: from simple embedded environmental sensors and
2424
LED wearables to sophisticated smart watches and IoT wireless gateways.
2525

2626
The Zephyr kernel supports multiple architectures, including ARM (Cortex-A,
27-
Cortex-R, Cortex-M), Intel x86, ARC, Nios II, Tensilica Xtensa, and RISC-V,
27+
Cortex-R, Cortex-M), Intel x86, ARC, Tensilica Xtensa, and RISC-V,
2828
SPARC, MIPS, and a large number of `supported boards`_.
2929

3030
.. below included in doc/introduction/introduction.rst

doc/_extensions/zephyr/domain/templates/board-catalog.html

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<div class="select-container">
1818
<select id="arch">
1919
<option value="" disabled selected>Select an architecture</option>
20-
<option value="nios2">Altera Nios II</option>
2120
<option value="arm">ARM</option>
2221
<option value="arm64">ARM 64</option>
2322
<option value="mips">MIPS</option>

doc/develop/getting_started/installation_linux.rst

-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ The Zephyr SDK supports the following target architectures:
219219
* ARC (32-bit and 64-bit; ARCv1, ARCv2, ARCv3)
220220
* ARM (32-bit and 64-bit; ARMv6, ARMv7, ARMv8; A/R/M Profiles)
221221
* MIPS (32-bit and 64-bit)
222-
* Nios II
223222
* RISC-V (32-bit and 64-bit; RV32I, RV32E, RV64I)
224223
* x86 (32-bit and 64-bit)
225224
* Xtensa

doc/develop/toolchains/zephyr_sdk.rst

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ The Zephyr SDK supports the following target architectures:
1818
* ARC (32-bit and 64-bit; ARCv1, ARCv2, ARCv3)
1919
* ARM (32-bit and 64-bit; ARMv6, ARMv7, ARMv8; A/R/M Profiles)
2020
* MIPS (32-bit and 64-bit)
21-
* Nios II
2221
* RISC-V (32-bit and 64-bit; RV32I, RV32E, RV64I)
2322
* x86 (32-bit and 64-bit)
2423
* Xtensa

doc/kernel/services/interrupts.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -548,10 +548,9 @@ for IRQ line n, and the function pointers are:
548548
spurious IRQ handler will be placed here. The spurious IRQ handler
549549
causes a system fatal error if encountered.
550550

551-
Some architectures (such as the Nios II internal interrupt controller) have a
552-
common entry point for all interrupts and do not support a vector table, in
553-
which case the :kconfig:option:`CONFIG_GEN_IRQ_VECTOR_TABLE` option should be
554-
disabled.
551+
Some architectures have a common entry point for all interrupts and do not
552+
support a vector table, in which case the
553+
:kconfig:option:`CONFIG_GEN_IRQ_VECTOR_TABLE` option should be disabled.
555554

556555
Some architectures may reserve some initial vectors for system exceptions
557556
and declare this in a table elsewhere, in which case

drivers/serial/Kconfig.altera_jtag

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config UART_ALTERA_JTAG
5-
bool "Nios II/NiosV JTAG UART driver"
5+
bool "NiosV JTAG UART driver"
66
default y
77
depends on DT_HAS_ALTR_JTAG_UART_ENABLED
88
select SERIAL_HAS_DRIVER
99
help
10-
Enable the Altera JTAG UART driver, built in to many Nios II/NiosV CPU
10+
Enable the Altera JTAG UART driver, built in to many NiosV CPU
1111
designs.
1212

1313
config UART_ALTERA_JTAG_SUPPORT_INTERRUPT

subsys/testsuite/include/zephyr/interrupt_util.h

-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ static inline void trigger_irq(int irq)
222222
}
223223

224224
#else
225-
/* So far, Nios II does not support this */
226225
#define NO_TRIGGER_FROM_SW
227226
#endif
228227

tests/kernel/context/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ extern const int32_t z_sys_timer_irq_for_test;
7272

7373
#endif
7474

75-
/* Cortex-M1 and Nios II do have a power saving instruction, so k_cpu_idle()
75+
/* Cortex-M1 does have a power saving instruction, so k_cpu_idle()
7676
* returns immediately
7777
*/
7878
#if !defined(CONFIG_CPU_CORTEX_M1)

tests/net/npf/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static const char dummy_data[] =
4646
"LED wearables to sophisticated smart watches and IoT wireless gateways.\n"
4747
"\n"
4848
"The Zephyr kernel supports multiple architectures, including ARM Cortex-M,\n"
49-
"Intel x86, ARC, Nios II, Tensilica Xtensa, and RISC-V, and a large number of\n"
49+
"Intel x86, ARC, Tensilica Xtensa, and RISC-V, and a large number of\n"
5050
"`supported boards`_.\n";
5151

5252

0 commit comments

Comments
 (0)