Skip to content

Commit cdd8fc2

Browse files
Evan Greenandy-shev
authored andcommitted
pinctrl: jasperlake: Fix HOSTSW_OWN offset
GPIOs that attempt to use interrupts get thwarted with a message like: "pin 161 cannot be used as IRQ" (for instance with SD_CD). This is because the HOSTSW_OWN offset is incorrect, so every GPIO looks like it's owned by ACPI. Fixes: e278dcb ("pinctrl: intel: Add Intel Jasper Lake pin controller support") Cc: stable@vger.kernel.org Signed-off-by: Evan Green <evgreen@chromium.org> Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
1 parent 59024c9 commit cdd8fc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/pinctrl/intel/pinctrl-jasperlake.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#define JSL_PAD_OWN 0x020
1818
#define JSL_PADCFGLOCK 0x080
19-
#define JSL_HOSTSW_OWN 0x0b0
19+
#define JSL_HOSTSW_OWN 0x0c0
2020
#define JSL_GPI_IS 0x100
2121
#define JSL_GPI_IE 0x120
2222

0 commit comments

Comments
 (0)