git: 5e51e670cc3b - main - aw_cir: Add H616 compat string
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 09 Feb 2026 10:23:34 UTC
The branch main has been updated by thj:
URL: https://cgit.FreeBSD.org/src/commit/?id=5e51e670cc3bf670240a0d9b919b92f9bccb955e
commit 5e51e670cc3bf670240a0d9b919b92f9bccb955e
Author: Tom Jones <thj@FreeBSD.org>
AuthorDate: 2026-02-09 10:05:19 +0000
Commit: Tom Jones <thj@FreeBSD.org>
CommitDate: 2026-02-09 10:22:19 +0000
aw_cir: Add H616 compat string
Reviewed by: manu
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D54910
---
sys/arm/allwinner/aw_cir.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/arm/allwinner/aw_cir.c b/sys/arm/allwinner/aw_cir.c
index 5ebb57f48040..4d5ad004a7c3 100644
--- a/sys/arm/allwinner/aw_cir.c
+++ b/sys/arm/allwinner/aw_cir.c
@@ -137,6 +137,7 @@ enum {
A10_IR = 1,
A13_IR,
A31_IR,
+ H616_IR,
};
#define AW_IR_RAW_BUF_SIZE 128
@@ -168,6 +169,7 @@ static struct ofw_compat_data compat_data[] = {
{ "allwinner,sun4i-a10-ir", A10_IR },
{ "allwinner,sun5i-a13-ir", A13_IR },
{ "allwinner,sun6i-a31-ir", A31_IR },
+ { "allwinner,sun6i-h616-ir", H616_IR },
{ NULL, 0 }
};
@@ -427,6 +429,7 @@ aw_ir_attach(device_t dev)
break;
case A13_IR:
case A31_IR:
+ case H616_IR:
sc->fifo_size = 64;
break;
}