Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 boards/renesas/ek_ra8d1/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ The below features are currently supported on Zephyr OS for EK-RA8D1 board:
+--------------+------------+------------------+
| PWM | on-chip | pwm |
+--------------+------------+------------------+
| COUNTER | on-chip | counter |
+--------------+------------+------------------+

Other hardware features are currently not supported by the port.

Expand Down
2 changes: 2 additions & 0 deletions boards/renesas/ek_ra8m1/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ The below features are currently supported on Zephyr OS for EK-RA8M1 board:
+-----------+------------+----------------------+
| PWM | on-chip | pwm |
+-----------+------------+----------------------+
| COUNTER | on-chip | counter |
+-----------+------------+----------------------+

Other hardware features are currently not supported by the port.

Expand Down
2 changes: 2 additions & 0 deletions boards/renesas/mck_ra8t1/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ The below features are currently supported on Zephyr OS for MCB-RA8T1 board:
+--------------+------------+----------------------+
| PWM | on-chip | pwm |
+--------------+------------+----------------------+
| COUNTER | on-chip | counter |
+--------------+------------+----------------------+

Other hardware features are currently not supported by the port.

Expand Down
1 change: 1 addition & 0 deletions drivers/counter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ zephyr_library_sources_ifdef(CONFIG_COUNTER_SHELL counter_timer_sh
zephyr_library_sources_ifdef(CONFIG_COUNTER_TIMER_RPI_PICO counter_rpi_pico_timer.c)
zephyr_library_sources_ifdef(CONFIG_COUNTER_TIMER_MAX32 counter_max32_timer.c)
zephyr_library_sources_ifdef(CONFIG_COUNTER_NXP_MRT counter_nxp_mrt.c)
zephyr_library_sources_ifdef(CONFIG_COUNTER_RA_AGT counter_renesas_ra_agt.c)
2 changes: 2 additions & 0 deletions drivers/counter/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,6 @@ source "drivers/counter/Kconfig.max32_timer"

source "drivers/counter/Kconfig.nxp_mrt"

source "drivers/counter/Kconfig.renesas_ra"

endif # COUNTER
11 changes: 11 additions & 0 deletions drivers/counter/Kconfig.renesas_ra
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Renesas RA Family

# Copyright (c) 2024 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

config COUNTER_RA_AGT
bool "Renesas RA AGT driver"
default y
depends on DT_HAS_RENESAS_RA_AGT_COUNTER_ENABLED
help
Enable support for Renesas Low Power Asynchronous General Purpose Timer (AGT) driver.
Loading
Loading