git: 8c12f9dea14f - stable/13 - mvebu_gpio: fix interrupt cause register configuration
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Jan 2022 10:24:07 UTC
The branch stable/13 has been updated by mmel: URL: https://cgit.FreeBSD.org/src/commit/?id=8c12f9dea14f6e5acc14a05a96426889981c0e1f commit 8c12f9dea14f6e5acc14a05a96426889981c0e1f Author: Marcin Wojtas <mw@FreeBSD.org> AuthorDate: 2021-02-24 17:02:40 +0000 Commit: Michal Meloun <mmel@FreeBSD.org> CommitDate: 2022-01-20 10:21:42 +0000 mvebu_gpio: fix interrupt cause register configuration According to Armada 8k documentation, the interrupt cause register (at offset 0x14) is RW0C. Update the configuration in attach and the mvebu_gpio_isrc_eoi() to follow the description. Reviewed by: mmel Obtained from: Semihalf Sponsored by: Marvell Differential Revision: https://reviews.freebsd.org/D29013 (cherry picked from commit 819760b35f3196227a1d90089fb98ee115e7ed0d) --- sys/arm/mv/mvebu_gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arm/mv/mvebu_gpio.c b/sys/arm/mv/mvebu_gpio.c index afc3f177ade3..f0471b8d019c 100644 --- a/sys/arm/mv/mvebu_gpio.c +++ b/sys/arm/mv/mvebu_gpio.c @@ -333,7 +333,7 @@ mvebu_gpio_isrc_eoi(struct mvebu_gpio_softc *sc, { if (!mgi->is_level) - intr_modify(sc, GPIO_INT_CAUSE, mgi, 1, 1); + intr_modify(sc, GPIO_INT_CAUSE, mgi, 0, 1); } static int @@ -778,7 +778,7 @@ mvebu_gpio_attach(device_t dev) /* Init HW */ gpio_write(sc, GPIO_INT_MASK, pin, 0); gpio_write(sc, GPIO_INT_LEVEL_MASK, pin, 0); - gpio_write(sc, GPIO_INT_CAUSE, pin, 1); + gpio_write(sc, GPIO_INT_CAUSE, pin, 0); gpio_write(sc, GPIO_DATA_IN_POL, pin, 1); gpio_write(sc, GPIO_BLINK_ENA, pin, 0); }