Skip to content

Commit 9e9c466

Browse files
Sergey MatsievskiyKAGA-KOKO
authored andcommitted
irqchip/ocelot: Fix trigger register address
Controllers, supported by this driver, have two sets of registers: * (main) interrupt registers control peripheral interrupt sources. * device interrupt registers configure per-device (network interface) interrupts and act as an extra stage before the main interrupt registers. In the driver unmask code, device trigger registers are used in the mask calculation of the main interrupt sticky register, mixing two kinds of registers. Use the main interrupt trigger register instead. Signed-off-by: Sergey Matsievskiy <matsievskiysv@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/20240925184416.54204-2-matsievskiysv@gmail.com
1 parent 5fd7e1e commit 9e9c466

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/irqchip/irq-mscc-ocelot.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static struct chip_props ocelot_props = {
3737
.reg_off_ena_clr = 0x1c,
3838
.reg_off_ena_set = 0x20,
3939
.reg_off_ident = 0x38,
40-
.reg_off_trigger = 0x5c,
40+
.reg_off_trigger = 0x4,
4141
.n_irq = 24,
4242
};
4343

@@ -70,7 +70,7 @@ static struct chip_props jaguar2_props = {
7070
.reg_off_ena_clr = 0x1c,
7171
.reg_off_ena_set = 0x20,
7272
.reg_off_ident = 0x38,
73-
.reg_off_trigger = 0x5c,
73+
.reg_off_trigger = 0x4,
7474
.n_irq = 29,
7575
};
7676

0 commit comments

Comments
 (0)