diff mbox series

[1/1] iommu: Add M1 Pro/Max support to Apple DART driver

Message ID 20220208212749.9624-1-j@jannau.net
State Accepted
Commit d15e1926ff0d71a57e0d607bc05d8c37358802ca
Delegated to: Tom Rini
Headers show
Series [1/1] iommu: Add M1 Pro/Max support to Apple DART driver | expand

Commit Message

Janne Grunau Feb. 8, 2022, 9:27 p.m. UTC
For the purpose of this driver (activating bypass mode) t6000-dart
and t8103-dart are fully compatible.

Signed-off-by: Janne Grunau <j@jannau.net>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
---
 drivers/iommu/apple_dart.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Tom Rini Feb. 21, 2022, 4:39 p.m. UTC | #1
On Tue, Feb 08, 2022 at 10:27:49PM +0100, Janne Grunau wrote:

> For the purpose of this driver (activating bypass mode) t6000-dart
> and t8103-dart are fully compatible.
> 
> Signed-off-by: Janne Grunau <j@jannau.net>
> Reviewed-by: Mark Kettenis <kettenis@openbsd.org>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/drivers/iommu/apple_dart.c b/drivers/iommu/apple_dart.c
index ff8c5fa62c..f2e1700960 100644
--- a/drivers/iommu/apple_dart.c
+++ b/drivers/iommu/apple_dart.c
@@ -48,6 +48,7 @@  static int apple_dart_probe(struct udevice *dev)
 
 static const struct udevice_id apple_dart_ids[] = {
 	{ .compatible = "apple,t8103-dart" },
+	{ .compatible = "apple,t6000-dart" },
 	{ /* sentinel */ }
 };