Home
last modified time | relevance | path

Searched refs:of_irq (Results 1 – 16 of 16) sorted by relevance

/openbmc/linux/drivers/clocksource/
H A Dtimer-of.c24 struct timer_of *to = container_of(of_irq, struct timer_of, of_irq); in timer_of_irq_exit()
28 free_irq(of_irq->irq, clkevt); in timer_of_irq_exit()
48 struct timer_of *to = container_of(of_irq, struct timer_of, of_irq); in timer_of_irq_init()
51 if (of_irq->name) { in timer_of_irq_init()
52 of_irq->irq = ret = of_irq_get_byname(np, of_irq->name); in timer_of_irq_init()
55 of_irq->name, np); in timer_of_irq_init()
59 of_irq->irq = irq_of_parse_and_map(np, of_irq->index); in timer_of_irq_init()
61 if (!of_irq->irq) { in timer_of_irq_init()
66 ret = request_irq(of_irq->irq, of_irq->handler, in timer_of_irq_init()
67 of_irq->flags ? of_irq->flags : IRQF_TIMER, in timer_of_irq_init()
[all …]
H A Dtimer-of.h38 struct of_timer_irq of_irq; member
55 return to->of_irq.irq; in timer_of_irq()
H A Dtimer-mediatek.c279 .of_irq = {
293 to.of_irq.handler = mtk_syst_handler; in mtk_syst_init()
317 to.of_irq.handler = mtk_gpt_interrupt; in mtk_gpt_init()
H A Drenesas-ostm.c186 to->of_irq.flags = IRQF_TIMER | IRQF_IRQPOLL; in ostm_init()
187 to->of_irq.handler = ostm_timer_interrupt; in ostm_init()
H A Dtimer-msc313e.c179 to->of_irq.handler = msc313e_timer_clkevt_irq; in msc313e_clkevt_init()
191 msc313e_clkevt.irq = to->of_irq.irq; in msc313e_clkevt_init()
H A Dtimer-imx-sysctr.c111 .of_irq = {
H A Dtimer-gx6605s.c88 .of_irq = {
H A Dtimer-rda.c149 .of_irq = {
H A Dtimer-imx-tpm.c146 .of_irq = {
H A Dtimer-milbeaut.c157 .of_irq = {
H A Dtimer-sprd.c138 .of_irq = {
H A Dtimer-npcm7xx.c149 .of_irq = {
H A Dtimer-loongson1-pwm.c147 .of_irq = {
H A Dtimer-sun4i.c157 .of_irq = {
H A Dtimer-stm32.c299 to->of_irq.handler = stm32_clock_event_handler; in stm32_timer_init()
/openbmc/linux/drivers/net/wireless/silabs/wfx/
H A Dbus_sdio.c49 int of_irq; member
131 if (!bus->of_irq) { in wfx_sdio_irq_subscribe()
138 flags = irq_get_trigger_type(bus->of_irq); in wfx_sdio_irq_subscribe()
142 ret = devm_request_threaded_irq(&bus->func->dev, bus->of_irq, NULL, in wfx_sdio_irq_subscribe()
160 if (bus->of_irq) in wfx_sdio_irq_unsubscribe()
161 devm_free_irq(&bus->func->dev, bus->of_irq, bus); in wfx_sdio_irq_unsubscribe()
217 bus->of_irq = irq_of_parse_and_map(np, 0); in wfx_sdio_probe()