mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 01:30:54 +07:00
sh: sh7757lcr evt2irq migration.
Migrate sh7757lcr to evt2irq() backed hwirq lookups. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
7b56934ce2
commit
a7734e5107
@ -19,6 +19,7 @@
|
|||||||
#include <linux/mmc/sh_mmcif.h>
|
#include <linux/mmc/sh_mmcif.h>
|
||||||
#include <linux/mmc/sh_mobile_sdhi.h>
|
#include <linux/mmc/sh_mobile_sdhi.h>
|
||||||
#include <linux/sh_eth.h>
|
#include <linux/sh_eth.h>
|
||||||
|
#include <linux/sh_intc.h>
|
||||||
#include <linux/usb/renesas_usbhs.h>
|
#include <linux/usb/renesas_usbhs.h>
|
||||||
#include <cpu/sh7757.h>
|
#include <cpu/sh7757.h>
|
||||||
#include <asm/heartbeat.h>
|
#include <asm/heartbeat.h>
|
||||||
@ -65,8 +66,8 @@ static struct resource sh_eth0_resources[] = {
|
|||||||
.end = 0xfef001ff,
|
.end = 0xfef001ff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = 84,
|
.start = evt2irq(0xc80),
|
||||||
.end = 84,
|
.end = evt2irq(0xc80),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -94,8 +95,8 @@ static struct resource sh_eth1_resources[] = {
|
|||||||
.end = 0xfef009ff,
|
.end = 0xfef009ff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = 84,
|
.start = evt2irq(0xc80),
|
||||||
.end = 84,
|
.end = evt2irq(0xc80),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -139,8 +140,8 @@ static struct resource sh_eth_giga0_resources[] = {
|
|||||||
.end = 0xfee01fff,
|
.end = 0xfee01fff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = 315,
|
.start = evt2irq(0x2960),
|
||||||
.end = 315,
|
.end = evt2irq(0x2960),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -174,8 +175,8 @@ static struct resource sh_eth_giga1_resources[] = {
|
|||||||
.end = 0xfee01fff,
|
.end = 0xfee01fff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = 316,
|
.start = evt2irq(0x2980),
|
||||||
.end = 316,
|
.end = evt2irq(0x2980),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -206,11 +207,11 @@ static struct resource sh_mmcif_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = 211,
|
.start = evt2irq(0x1c60),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
[2] = {
|
[2] = {
|
||||||
.start = 212,
|
.start = evt2irq(0x1c80),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -248,7 +249,7 @@ static struct resource sdhi_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = 20,
|
.start = evt2irq(0x480),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@ -284,8 +285,8 @@ static struct resource usb0_resources[] = {
|
|||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
[1] = {
|
[1] = {
|
||||||
.start = 50,
|
.start = evt2irq(0x840),
|
||||||
.end = 50,
|
.end = evt2irq(0x840),
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user