diff mbox series

timer: sifive_clint: Support the official clint DT bindings

Message ID 20210327115735.27743-1-bmeng.cn@gmail.com
State Accepted
Commit 9c02e50fa10982a9500503a0075307179d481388
Delegated to: Andes
Headers show
Series timer: sifive_clint: Support the official clint DT bindings | expand

Commit Message

Bin Meng March 27, 2021, 11:57 a.m. UTC
Linux kernel commit a2770b57d083 ("dt-bindings: timer: Add CLINT bindings")
adds the official DT bindings for CLINT, which uses "sifive,clint0"
as the compatible string. "riscv,clint0" is now legacy and has to
be kept for backward compatibility of legacy systems.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 drivers/timer/sifive_clint_timer.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Bin Meng April 2, 2021, 1:54 a.m. UTC | #1
On Sat, Mar 27, 2021 at 7:57 PM Bin Meng <bmeng.cn@gmail.com> wrote:
>
> Linux kernel commit a2770b57d083 ("dt-bindings: timer: Add CLINT bindings")
> adds the official DT bindings for CLINT, which uses "sifive,clint0"
> as the compatible string. "riscv,clint0" is now legacy and has to
> be kept for backward compatibility of legacy systems.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  drivers/timer/sifive_clint_timer.c | 1 +
>  1 file changed, 1 insertion(+)
>

Ping?
Leo Yu-Chi Liang April 6, 2021, 7:58 a.m. UTC | #2
On Sat, Mar 27, 2021 at 07:57:35PM +0800, Bin Meng wrote:
> Linux kernel commit a2770b57d083 ("dt-bindings: timer: Add CLINT bindings")
> adds the official DT bindings for CLINT, which uses "sifive,clint0"
> as the compatible string. "riscv,clint0" is now legacy and has to
> be kept for backward compatibility of legacy systems.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
> 
>  drivers/timer/sifive_clint_timer.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/timer/sifive_clint_timer.c b/drivers/timer/sifive_clint_timer.c
> index de7b4b95c9..939b99d937 100644
> --- a/drivers/timer/sifive_clint_timer.c
> +++ b/drivers/timer/sifive_clint_timer.c
> @@ -54,6 +54,7 @@ static int sifive_clint_probe(struct udevice *dev)
>  
>  static const struct udevice_id sifive_clint_ids[] = {
>  	{ .compatible = "riscv,clint0" },
> +	{ .compatible = "sifive,clint0" },
>  	{ }
>  };
>  
> -- 
> 2.25.1
> 

Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
diff mbox series

Patch

diff --git a/drivers/timer/sifive_clint_timer.c b/drivers/timer/sifive_clint_timer.c
index de7b4b95c9..939b99d937 100644
--- a/drivers/timer/sifive_clint_timer.c
+++ b/drivers/timer/sifive_clint_timer.c
@@ -54,6 +54,7 @@  static int sifive_clint_probe(struct udevice *dev)
 
 static const struct udevice_id sifive_clint_ids[] = {
 	{ .compatible = "riscv,clint0" },
+	{ .compatible = "sifive,clint0" },
 	{ }
 };