Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Feb 2021 19:18:35 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 796faf365c0e - stable/13 - arm64: rpi4: gpio: Add brcm, bcm2711-gpio compatible
Message-ID:  <202102201918.11KJIZQx040310@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=796faf365c0ea0f50f5138ff8fa62fe48ff3ef71

commit 796faf365c0ea0f50f5138ff8fa62fe48ff3ef71
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2021-02-17 12:12:45 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2021-02-20 19:17:44 +0000

    arm64: rpi4: gpio: Add brcm,bcm2711-gpio compatible
    
    Looks like we never enabled the main gpio controller on the RPI4 board.
    Now gpio are usable.
    
    MFC after:      3 days
    
    (cherry picked from commit 2551d928501fb613dba09b7ffe7e383dba276ca6)
---
 sys/arm/broadcom/bcm2835/bcm2835_gpio.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/arm/broadcom/bcm2835/bcm2835_gpio.c b/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
index 61513df9c008..70b69eb154e8 100644
--- a/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
+++ b/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
@@ -157,6 +157,7 @@ enum bcm_gpio_pud {
 static struct ofw_compat_data compat_data[] = {
 	{"broadcom,bcm2835-gpio",	1},
 	{"brcm,bcm2835-gpio",		1},
+	{"brcm,bcm2711-gpio",		1},
 	{NULL,				0}
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102201918.11KJIZQx040310>