Ondrej Kosta
20a004f141
fix(esp_eth): fixes EMAC MDC out of the range issue
...
Closes https://github.com/espressif/esp-idf/issues/17984
2025-12-16 14:12:17 +01:00
Song Ruo Jing
62899cbba6
refactor(gpio): split GPIO HAL into separate component
...
cleaned up some includes in GPIO peripheral files
2025-12-08 14:33:26 +08:00
Ondrej Kosta
643b7c93c1
feat(ci): updated Ethernet tests to align with new runners
2025-11-26 13:24:32 +01:00
Euripedes Rocha
ec0ef59535
Merge branch 'chore/update-protocol-eth-connect_v6.0' into 'release/v6.0'
...
feat(protocol_examples_common): Use Ethernet Init component (v6.0)
See merge request espressif/esp-idf!43554
2025-11-21 08:22:17 +01:00
armando
714b022a43
ci(p4): disable p4 rev3 invalid tests temporarily
2025-11-21 02:48:05 +00:00
glmfe
e187d3b259
feat(protocol_examples_common): Use Ethernet Init component
...
- Refactored protocol_examples_common to use ethernet_init component
2025-11-20 18:57:03 +08:00
Ondrej Kosta
30919c13ec
fix(esp_eth): maked esp_eth_test_l2 more robust
2025-11-18 10:13:04 +01:00
Jiang Jiang Jian
ba8aecc01b
Merge branch 'fix/eth_connect_v6.0' into 'release/v6.0'
...
fix(esp_eth): made LAN8720 test write register function more robust (v6.0)
See merge request espressif/esp-idf!42930
2025-11-18 12:24:50 +08:00
Frantisek Hrbata
7eb762611f
fix(esp_eth/cmake): avoid using BUILD_COMPONENTS build property for IDF_BUILD_V2
...
IDF_BUILD_V2 does not have BUILD_COMPONENTS build property. Therefore,
when IDF_BUILD_V2 is defined, use a generator expressions instead.
The inclusion of esp_eth_netif_glue.c, which relies on the presence of
the esp_netif component, should ideally be managed by a configuration
option. The same applies to the requirements for esp_eth. Currently,
only a basic adjustment has been made to enable the inclusion of esp_eth
in cmakev2.
Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com >
2025-11-04 07:48:13 +01:00
Ondrej Kosta
eeadc96949
fix(esp_eth): made LAN8720 test write register function more robust
2025-11-04 04:18:44 +01:00
wuzhenghui
065dd70056
change(esp_hw_support): move ESP_SLEEP_POWER_DOWN_CPU to Kconfig
2025-10-14 16:33:30 +08:00
Ondrej Kosta
d622d4d9ac
feat(esp_eth): removed SPI Ethernet and PHY drivers from IDF
2025-09-28 16:19:42 +02:00
Marius Vikhammer
484d2c5c2f
fix(system): fixed issues with unused variable warnings when compiling with NDEBUG
2025-09-19 15:42:07 +08:00
Ondrej Kosta
bc421db41b
Merge branch 'feat/kconfig_clk_rm' into 'master'
...
feat(esp_eth): removed RMII CLK Kconfig option
Closes IDF-9724
See merge request espressif/esp-idf!41853
2025-09-19 15:35:50 +08:00
Ondrej Kosta
5c5eb99eab
Merge branch 'fix/emac_test_tmo' into 'master'
...
fix(ci): increased timeout for ethernet_int_emac_test
Closes IDFCI-3118
See merge request espressif/esp-idf!41909
2025-09-17 20:20:32 +08:00
Ondrej Kosta
5aa97623c1
feat(esp_eth): removed RMII CLK Kconfig option
2025-09-17 11:46:06 +02:00
Ondrej Kosta
2ed090ba3d
feat(esp_eth): changed ETH PHY API of esp_eth_phy_802_3_reset_hw
2025-09-16 17:54:35 +08:00
Ondrej Kosta
f7c4178103
fix(ci): increased timeout for ethernet_int_emac_test
2025-09-15 13:55:25 +02:00
Marek Fiala
9d35d63651
feat(cmake): Update minimum cmake version to 3.22 (whole repository)
2025-08-19 14:44:32 +02:00
Ondrej Kosta
b3e2f89f49
feat(esp_eth): added EMAC sleep retention for ESP32P4
2025-08-11 12:53:24 +02:00
Marius Vikhammer
bf84ab652a
change(test_utils): moved test_utils component to tools/test_apps/components/
2025-07-21 14:05:50 +08:00
nilesh.kale
5cc874068d
feat(esp_http_client): added event HTTP_EVENT_ON_STATUS_CODE
...
This commit added event HTTP_EVENT_ON_STATUS_CODE and
acquire response status code before header or data.
2025-07-08 17:45:18 +05:30
Aditya Patwardhan
f4e8813d45
Merge branch 'contrib/github_pr_15972' into 'master'
...
feat(esp_http_client): Event to signal last header downloaded (GitHub PR)
See merge request espressif/esp-idf!39309
2025-06-10 13:08:10 +05:30
Ondrej Kosta
48b37dd56e
Merge branch 'contrib/github_pr_16016' into 'master'
...
Enable Timestamping for Non-PTP Ethernet frames (GitHub PR)
Closes IDFGH-15359
See merge request espressif/esp-idf!39581
2025-06-09 16:58:07 +08:00
Frangen, Leon
eae1f3c302
feat(esp_eth): Enable rx/tx timestamp for non-PTP frames via ioctl
2025-06-06 11:35:10 +02:00
Richard Allen
30758d9beb
feat(esp_http_client): Event to signal last header download
...
When parsing ND-JSON streams, this is needed to indicate the
point when the ND-JSON stream is considered open, which
occurs just after the last HTTP_EVENT_ON_HEADER.
ND-JSON stream clients cannot rely on the first HTTP_EVENT_ON_DATA,
since that is only triggered by an event, which are optional and
may never be sent, or only sent well after the last HTTP_EVENT_ON_HEADER.
Closes #15952
2025-05-28 08:50:28 -05:00
wuzhenghui
65b7e70564
feat(driver): support acquire/release clock source dependency for all drivers
2025-05-27 21:21:38 +08:00
Ondrej Kosta
eba9549bbc
Merge branch 'feat/eth_mac_filter' into 'master'
...
feat(esp_eth): added option to set MAC filter for mcast
Closes IDF-12503 and IDFGH-14897
See merge request espressif/esp-idf!36944
2025-04-30 19:38:02 +08:00
Shen Meng Jing
62d4115e08
docs: Fix some typos
2025-04-30 18:35:39 +08:00
Ondrej Kosta
e941910c0f
feat(esp_eth): Added destination MAC address filter configuration interface
2025-04-29 13:54:56 +02:00
Jonathan Swoboda
f468b1e9e3
fix(esp_eth): Fix order of fields in ETH_ESP32_EMAC_DEFAULT_CONFIG on P4
2025-03-23 20:22:25 -04:00
Ondrej Kosta
f3a3988649
fix(esp_eth): fixed ESP32P4 EMAC REF RMII CLK output mode
...
fixed units returned and used by periph_rtc_mpll_freq_set function
2025-03-12 09:29:17 +00:00
igor.udot
daf2d31008
test: format all test scripts
2025-03-05 12:08:48 +08:00
Song Ruo Jing
53d8b70e8b
fix(gpio): fix IO output enable control
...
oen_sel and oen_inv_sel fields from func_out_sel_cfg register
2025-02-20 19:49:28 +08:00
Song Ruo Jing
3a8d065908
refactor(gpio): improve gpio_iomux_in/out API
2025-02-10 21:44:07 +08:00
David Cermak
a591e48b97
fix(esp_eth): Fix test code to unregister event correctly
2025-02-04 12:29:43 +01:00
Ondrej Kosta
e188afdacf
Merge branch 'docs/eth_memory_consideration' into 'master'
...
Non-functional Ethernet updates
Closes IDFGH-13346 and IDF-11736
See merge request espressif/esp-idf!36219
2025-01-27 19:24:34 +08:00
Ondrej Kosta
5429cc1057
ci(esp_eth): added ESP32P4 as target for ETH tests
2025-01-15 22:53:33 +08:00
Ondrej Kosta
83fecdd5d3
change(esp_eth): new gpio init strategy
2025-01-15 22:53:33 +08:00
Ondrej Kosta
5c9da4a13b
fix(esp_eth): removed deadcode from emac
2025-01-07 17:01:36 +01:00
Ivan Grokhotkov
6d06f5fe44
fix(esp_eth): fix openeth driver to consider MAC address set in QEMU
...
Openeth driver did not consider the possibility that the MAC address
was specified when launching QEMU, and would always overwrite that
address with the address obtained from esp_read_mac.
When running QEMU, setting the MAC address via QEMU arguments is more
convenient than crafting an eFuse file with the correct MAC address.
This change modifies openeth driver to first check if an address has
been set in QEMU and uses it if so. Otherwise it falls back to the
address obtained from esp_read_mac.
As part of this change, also removed the unnecessary variable
emac_opencores_t::addr, the address is only kept in the registers of
the emulated peripheral now.
For full effect this also requires changes in QEMU, see
https://github.com/espressif/qemu/issues/107 for background. Without
changes in QEMU, this commit keeps the same behavior.
2024-12-10 12:29:10 +01:00
Ondrej Kosta
d2b1202d5a
feat(esp_eth): added HW Time Stamping support for ESP32P4
...
Added mechanism to L2 TAP to retreive time stamp
Added PTP time synchronization example
2024-11-07 15:01:24 +08:00
Ondrej Kosta
0738314308
feat(esp_eth): added new generic PHY driver
2024-10-11 10:14:53 +02:00
Ondrej Kosta
50704ffa70
docs(esp_eth): added warning to not use ESP32 as ETH CLK source with WiFi
2024-08-27 20:01:23 +08:00
Ondrej Kosta
ad9cdcd11a
Merge branch 'contrib/github_pr_14276' into 'master'
...
fix(esp_eth): fix C++ invalid type conversion error (GitHub PR)
Closes IDFGH-13363
See merge request espressif/esp-idf!32706
2024-08-12 18:48:08 +08:00
David Roman
b9924df4be
fix(esp_eth): fix C++ invalid type conversion error
...
Closes https://github.com/espressif/esp-idf/issues/14265
2024-08-09 18:54:43 +08:00
Tian Sen Wen
61e05bddc9
fix(esp_eth): Fix DM9051 abnormal operation when SPI clock is too high
...
Simplified buffer allocation for DM9051
2024-08-08 20:53:48 +08:00
Ivan Grokhotkov
728136a91d
fix(esp_eth): fix variable declarations inside switch for clang
2024-07-12 12:14:32 +02:00
morris
96e1fe5029
test(emac): register are not read/write by half-word
2024-06-19 22:39:50 +08:00
Ivan Grokhotkov
aad9ab02e8
feat(esp_eth): enable openeth in QEMU for ESP32-S3
2024-06-12 10:50:13 +02:00