Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nuvoton: Support new target NUMAKER_IOT_M467 #15337

Merged
merged 27 commits into from
Nov 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
df77485
Support Nuvoton target NUMAKER_IOT_M467
ccli8 Jan 19, 2022
8da2e31
M467: Fix Greentea reset_reason test failure
ccli8 Feb 22, 2022
0494866
M467: Support HyperRAM
ccli8 Feb 17, 2022
501aa00
Config for M460 EMAC
cyliangtw Mar 7, 2022
877541d
Add M460 EMAC driver
cyliangtw Mar 7, 2022
679c747
Adjust M460 EMAC RX/TX buffer
cyliangtw Mar 7, 2022
ec2c155
M467: Fix EMAC compile error with IAR
ccli8 Mar 8, 2022
24b0feb
M467: Support Crypto SHA/ECC H/W
ccli8 Mar 24, 2022
627a0b4
M467 H/W AES self-test pass
cyliangtw Apr 25, 2022
9dc7cd2
M467 Support crypto GCM H/W
cyliangtw May 3, 2022
9f01968
M467: GCM support one simple mode instead of using composite GHASH & …
cyliangtw May 5, 2022
655ec90
Update M467 AES-GCM to pass AWS-IoT test
cyliangtw May 16, 2022
3fe95b2
Update M467 AES-GCM for H/W gcm in-buffer creteria
cyliangtw May 17, 2022
d92d75e
M467: Improve Crypto H/W wait helper routine
ccli8 Apr 29, 2022
21970e3
M467: Seed PRNG with TRNG for SCAP
ccli8 Apr 28, 2022
88a5291
M467: Support Crypto RSA H/W
ccli8 Apr 15, 2022
a430d70
M467 Support crypto AES-CCM H/W with one-shot & cascade mode
cyliangtw May 26, 2022
087daea
M467: Support Crypto ECC H/W in full-module replacement
ccli8 Apr 25, 2022
196d106
M467: Disable SCAP in RSA H/W
ccli8 Jun 1, 2022
2f8b60d
M467: support fullspeed usb device
cyliangtw Jul 1, 2022
1dd9546
M467: Fix mbedtls_ecp_point_cmp() call with null argument
ccli8 Jul 26, 2022
e8dd9f4
M467: Make mbedtls H/W port removable
ccli8 Aug 8, 2022
42cfb84
M467: I2C: Fix potential role switch failure
ccli8 Sep 22, 2022
a0a5086
M467: Exclude UNO SPI pins from FPGA CI Test Shield test
ccli8 Sep 1, 2022
eaaec1c
M467: Adjust UART pinmap to pass FPGA CI Test Shield test
ccli8 Sep 19, 2022
5ba8afb
M467: Support NuMaker-IoT-M467 board
ccli8 Sep 1, 2022
733512d
M467: Remove invalid UTF-8 byte sequence
ccli8 Oct 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions connectivity/drivers/emac/TARGET_NUVOTON_EMAC/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ if("M480" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(TARGET_M480)
elseif("NUC472" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(TARGET_NUC472)
elseif("M460" IN_LIST MBED_TARGET_LABELS)
add_subdirectory(TARGET_M460)
endif()

target_include_directories(mbed-emac
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

target_include_directories(mbed-emac
INTERFACE
.
)

target_sources(mbed-emac
INTERFACE
m460_eth.c
synopGMAC_Dev.c
synopGMAC_network_interface.c
)
Loading