instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux kernel'inin 'drivers/vhost/test' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright (C) 2009 Red Hat, Inc. * Author: Michael S. Tsirkin <mst@redhat.com> * * test virtio server in host kernel. */ #include <linux/compat.h> #include <linux/eventfd.h> #include <linux/vhost.h> #include <linux/miscdevice.h> #include <linux/module.h> #include <l...
Linux işletim sistemi çekirdeği için 'drivers/vhost/vhost' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _VHOST_H #define _VHOST_H #include <linux/eventfd.h> #include <linux/vhost.h> #include <linux/mm.h> #include <linux/mutex.h> #include <linux/poll.h> #include <linux/file.h> #include <linux/uio.h> #include <linux/virtio_config.h> #include <linux/virtio_ring.h> #includ...
Linux kernel'inin 'drivers/vhost/vdpa' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2018-2020 Intel Corporation. * Copyright (C) 2020 Red Hat, Inc. * * Author: Tiwei Bie <tiwei.bie@intel.com> * Jason Wang <jasowang@redhat.com> * * Thanks Michael S. Tsirkin for the valuable comments and * suggestions. And thanks to Cunming Lia...
Linux kernel'inin 'drivers/irqchip/irq-starfive-jh8100-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * StarFive JH8100 External Interrupt Controller driver * * Copyright (C) 2023 StarFive Technology Co., Ltd. * * Author: Changhuang Liang <changhuang.liang@starfivetech.com> */ #define pr_fmt(fmt) "irq-starfive-jh8100: " fmt #include <linux/bitops.h> #include <linux/cl...
Linux kernel'inin 'drivers/irqchip/irq-mips-gic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2008 Ralf Baechle (ralf@linux-mips.org) * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved. */ #defin...
Linux kernel'inin 'drivers/irqchip/irq-mips-cpu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright 2001 MontaVista Software Inc. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net * * Copyright (C) 2001 Ralf Baechle * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved. * Author: Maciej W. Rozycki <macro@mips.com> * * This file d...
Linux kernel'inin 'drivers/irqchip/irq-loongson-htvec' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2020, Jiaxun Yang <jiaxun.yang@flygoat.com> * Loongson HyperTransport Interrupt Vector support */ #define pr_fmt(fmt) "htvec: " fmt #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <lin...
Linux kernel'inin 'drivers/irqchip/irq-sg2042-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * SG2042 MSI Controller * * Copyright (C) 2024 Sophgo Technology Inc. * Copyright (C) 2024 Chen Wang <unicorn_wang@outlook.com> */ #include <linux/cleanup.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqdomain.h> #include <linux/kernel.h> #include <li...
Linux kernel'inin 'drivers/irqchip/irq-renesas-intc-irqpin' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Renesas INTC External IRQ Pin Driver * * Copyright (C) 2013 Magnus Damm */ #include <linux/init.h> #include <linux/of.h> #include <linux/platform_device.h> #include <linux/spinlock.h> #include <linux/interrupt.h> #include <linux/ioport.h> #include <linux/io.h> #includ...
Linux kernel'inin 'drivers/irqchip/irq-digicolor' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Conexant Digicolor SoCs IRQ chip driver * * Author: Baruch Siach <baruch@tkos.co.il> * * Copyright (C) 2014 Paradox Innovation Ltd. * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether ex...
Linux kernel'inin 'drivers/irqchip/irq-mmp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * linux/arch/arm/mach-mmp/irq.c * * Generic IRQ handling, GPIO IRQ demultiplexing, etc. * Copyright (C) 2008 - 2012 Marvell Technology Group Ltd. * * Author: Bin Yang <bin.yang@marvell.com> * Haojian Zhuang <haojian.zhuang@gmail.com> */ #include...
Linux kernel'inin 'drivers/irqchip/irq-renesas-rza1' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Renesas RZ/A1 IRQC Driver * * Copyright (C) 2019 Glider bvba */ #include <linux/err.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irqdomain.h> #include <linux/irq.h> #include <linux/module.h> #include <linux/of_irq.h> #in...
Linux kernel'inin 'drivers/irqchip/irq-ingenic-tcu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * JZ47xx SoCs TCU IRQ driver * Copyright (C) 2019 Paul Cercueil <paul@crapouillou.net> */ #include <linux/clk.h> #include <linux/interrupt.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/mfd/ingenic-tcu.h> #include <linux/mfd/syscon.h>...
Linux kernel'inin 'drivers/irqchip/irqchip' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Copyright (C) 2012 Thomas Petazzoni * * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/...
Linux kernel'inin 'drivers/irqchip/irq-mtk-cirq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2016 MediaTek Inc. * Author: Youlin.Pei <youlin.pei@mediatek.com> */ #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/of.h> #include <linux/of_irq.h> #inc...
Linux işletim sistemi çekirdeği için 'drivers/irqchip/irq-loongson' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2024 Loongson Technology Corporation Limited */ #ifndef _DRIVERS_IRQCHIP_IRQ_LOONGSON_H #define _DRIVERS_IRQCHIP_IRQ_LOONGSON_H int find_pch_pic(u32 gsi); int liointc_acpi_init(struct irq_domain *parent, struct acpi_madt_lio_pic *acpi_liointc); in...
Linux kernel'inin 'drivers/irqchip/irq-nvic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * drivers/irq/irq-nvic.c * * Copyright (C) 2008 ARM Limited, All Rights Reserved. * Copyright (C) 2013 Pengutronix * * Support for the Nested Vectored Interrupt Controller found on the * ARMv7-M CPUs (Cortex-M3/M4) */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt ...
Linux kernel'inin 'drivers/irqchip/irq-gic-its-msi-parent' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright (C) 2013-2015 ARM Limited, All Rights Reserved. // Author: Marc Zyngier <marc.zyngier@arm.com> // Copyright (C) 2022 Linutronix GmbH // Copyright (C) 2022 Intel #include <linux/acpi_iort.h> #include <linux/of_address.h> #include <linux/pci.h> #include "irq-gi...
Linux kernel'inin 'drivers/irqchip/irq-riscv-rpmi-sysmsi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (C) 2025 Ventana Micro Systems Inc. */ #include <linux/acpi.h> #include <linux/bits.h> #include <linux/bug.h> #include <linux/device.h> #include <linux/device/devres.h> #include <linux/dev_printk.h> #include <linux/errno.h> #include <linux/irq.h> #include <linux/ir...
Linux kernel'inin 'drivers/irqchip/irq-xilinx-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu> * Copyright (C) 2012-2013 Xilinx, Inc. * Copyright (C) 2007-2009 PetaLogix * Copyright (C) 2006 Atmark Techno, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main direct...
Linux kernel'inin 'drivers/irqchip/irq-mxs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2009-2010 Freescale Semiconductor, Inc. All Rights Reserved. * Copyright (C) 2014 Oleksij Rempel <linux@rempel-privat.de> * Add Alphascale ASM9260 support. */ #include <linux/kernel.h> #include <linux/init.h> #include <linux/irq.h> #include <linu...
Linux kernel'inin 'drivers/irqchip/irq-gic-common' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2002 ARM Limited, All Rights Reserved. */ #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip/arm-gic.h> #include <linux/kernel.h> #include "irq-gic-common.h" static DEFINE_RAW_SPINLOCK(irq_controller_loc...
Linux kernel'inin 'drivers/irqchip/irq-loongson-pch-lpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Loongson LPC Interrupt Controller support * * Copyright (C) 2020-2022 Loongson Technology Corporation Limited */ #define pr_fmt(fmt) "lpc: " fmt #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #incl...
Linux kernel'inin 'drivers/irqchip/irq-gic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2002 ARM Limited, All Rights Reserved. * * Interrupt architecture for the GIC: * * o There is one Interrupt Distributor, which receives interrupts * from system devices and sends them to the Interrupt Controllers. * * o There is one CPU Interfa...
Linux kernel'inin 'drivers/irqchip/irq-ls-extirq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) "irq-ls-extirq: " fmt #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/slab.h> #include <dt-bindings/interrupt-controller/arm-gic.h> #define MAXIRQ 12 #defin...
Linux kernel'inin 'drivers/irqchip/irq-mvebu-icu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Copyright (C) 2017 Marvell * * Hanna Hawa <hannah@marvell.com> * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or impli...
Linux kernel'inin 'drivers/irqchip/irq-bcm7120-l2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Broadcom BCM7120 style Level 2 interrupt controller driver * * Copyright (C) 2014 Broadcom Corporation */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/init.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/kernel.h> #include <lin...
Linux kernel'inin 'drivers/irqchip/irq-crossbar' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * drivers/irqchip/irq-crossbar.c * * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com * Author: Sricharan R <r.sricharan@ti.com> */ #include <linux/err.h> #include <linux/io.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include ...
Linux kernel'inin 'drivers/irqchip/irq-mst-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) /* * Copyright (c) 2020 MediaTek Inc. * Author Mark-PK Tsai <mark-pk.tsai@mediatek.com> */ #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/of.h> #include <linux...
Linux kernel'inin 'drivers/irqchip/irq-loongson-pch-pic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2020, Jiaxun Yang <jiaxun.yang@flygoat.com> * Loongson PCH PIC support */ #define pr_fmt(fmt) "pch-pic: " fmt #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/kernel.h> #include ...
Linux kernel'inin 'drivers/irqchip/irq-gic-v3-its' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved. * Author: Marc Zyngier <marc.zyngier@arm.com> */ #include <linux/acpi.h> #include <linux/acpi_iort.h> #include <linux/bitfield.h> #include <linux/bitmap.h> #include <linux/cpu.h> #include <linux/crash_dump.h...
Linux kernel'inin 'drivers/irqchip/irq-gic-v3-its-fsl-mc-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Freescale Management Complex (MC) bus driver MSI support * * Copyright (C) 2015-2016 Freescale Semiconductor, Inc. * Author: German Rivera <German.Rivera@freescale.com> * */ #include <linux/acpi.h> #include <linux/acpi_iort.h> #include <linux/irq.h> #include <linux/m...
Linux kernel'inin 'drivers/irqchip/irq-mvebu-odmi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Copyright (C) 2016 Marvell * * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "GIC-...
Linux kernel'inin 'drivers/irqchip/irq-imgpdc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * IMG PowerDown Controller (PDC) * * Copyright 2010-2013 Imagination Technologies Ltd. * * Exposes the syswake and PDC peripheral wake interrupts to the system. * */ #include <linux/bitops.h> #include <linux/interrupt.h> #include <linux/irqdomain.h> #include <linux/io...
Linux kernel'inin 'drivers/irqchip/irq-xtensa-pic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Xtensa built-in interrupt controller * * Copyright (C) 2002 - 2013 Tensilica, Inc. * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more d...
Linux kernel'inin 'drivers/irqchip/irq-aspeed-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Aspeed Interrupt Controller. * * Copyright (C) 2023 ASPEED Technology Inc. */ #include <linux/bitops.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/irqdomain.h> #include <linux/of_address.h> #include <...
Linux kernel'inin 'drivers/irqchip/irq-imx-irqsteer' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2017 NXP * Copyright (C) 2018 Pengutronix, Lucas Stach <kernel@pengutronix.de> */ #include <linux/clk.h> #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip/chained_irq.h> #include <linux/irqdomain.h> #include <linux/kernel.h> #include...
Linux kernel'inin 'drivers/irqchip/irq-tb10x' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Abilis Systems interrupt controller driver * * Copyright (C) Abilis Systems 2012 * * Author: Christian Ruppert <christian.ruppert@abilis.com> */ #include <linux/interrupt.h> #include <linux/irqdomain.h> #include <linux/irq.h> #include <linux/irqchip.h> #include ...
Linux kernel'inin 'drivers/irqchip/irq-or1k-pic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se> * Copyright (C) 2014 Stefan Kristansson <stefan.kristiansson@saunalahti.fi> */ #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/of.h> #include <linux/of_irq.h> #include <linux/of_address.h...
Linux kernel'inin 'drivers/irqchip/irq-stm32-exti' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) Maxime Coquelin 2015 * Copyright (C) STMicroelectronics 2017-2024 * Author: Maxime Coquelin <mcoquelin.stm32@gmail.com> */ #include <linux/bitops.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip.h> #inc...
Linux kernel'inin 'drivers/irqchip/irq-lpc32xx' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright 2015-2016 Vladimir Zapolskiy <vz@mleia.com> */ #define pr_fmt(fmt) "%s: " fmt, __func__ #include <linux/io.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/of_address.h> #include <linux/of_irq.h> #include <linux/of_...
Linux kernel'inin 'drivers/irqchip/exynos-combiner' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. * http://www.samsung.com * * Combiner irqchip for EXYNOS */ #include <linux/err.h> #include <linux/export.h> #include <linux/init.h> #include <linux/io.h> #include <linux/slab.h> #include <linux/syscore_ops.h>...
Linux kernel'inin 'drivers/irqchip/irq-hip04' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * HiSilicon HiP04 INTC * * Copyright (C) 2002-2014 ARM Limited. * Copyright (c) 2013-2014 HiSilicon Ltd. * Copyright (c) 2013-2014 Linaro Ltd. * * Interrupt architecture for the HIP04 INTC: * * o There is one Interrupt Distributor, which receives interrupts * ...
Linux kernel'inin 'drivers/irqchip/irq-imx-gpcv2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2015 Freescale Semiconductor, Inc. */ #include <linux/of_address.h> #include <linux/of_irq.h> #include <linux/slab.h> #include <linux/irqchip.h> #include <linux/syscore_ops.h> #define IMR_NUM 4 #define GPC_MAX_IRQS (IMR_NUM * 32) #define...
Linux kernel'inin 'drivers/irqchip/irq-meson-gpio' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2015 Endless Mobile, Inc. * Author: Carlo Caione <carlo@endlessm.com> * Copyright (c) 2016 BayLibre, SAS. * Author: Jerome Brunet <jbrunet@baylibre.com> */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/io.h> #include <linux/module.h> ...
Linux kernel'inin 'drivers/irqchip/irq-owl-sirq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Actions Semi Owl SoCs SIRQ interrupt controller driver * * Copyright (C) 2014 Actions Semi Inc. * David Liu <liuwei@actions-semi.com> * * Author: Parthiban Nallathambi <pn@denx.de> * Author: Saravanan Sekar <sravanhome@gmail.com> * Author: Cristian Ciocaltea <crist...
Linux işletim sistemi çekirdeği için 'drivers/irqchip/alphascale_asm9260-icoll' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2014 Oleksij Rempel <linux@rempel-privat.de> */ #ifndef _ALPHASCALE_ASM9260_ICOLL_H #define _ALPHASCALE_ASM9260_ICOLL_H #define ASM9260_NUM_IRQS 64 /* * this device provide 4 offsets for each register: * 0x0 - plain read write mode * 0x4 - ...
Linux kernel'inin 'drivers/irqchip/irq-vt8500' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * arch/arm/mach-vt8500/irq.c * * Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz> * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> */ /* * This file is copied and modified from the original irq.c provided by * Alexey Charkov. Minor changes have...
Linux kernel'inin 'drivers/irqchip/irq-st' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 STMicroelectronics – All Rights Reserved * * Author: Lee Jones <lee.jones@linaro.org> * * This is a re-write of Christophe Kerello's PMU driver. */ #include <dt-bindings/interrupt-controller/irq-st.h> #include <linux/err.h> #include <linux/...
Linux kernel'inin 'drivers/irqchip/irq-sifive-plic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2017 SiFive * Copyright (C) 2018 Christoph Hellwig */ #define pr_fmt(fmt) "riscv-plic: " fmt #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/...
Linux kernel'inin 'drivers/irqchip/irq-bcm2712-mip' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2024 Raspberry Pi Ltd., All Rights Reserved. * Copyright (c) 2024 SUSE */ #include <linux/bitmap.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/msi.h> #include <linux/of_address.h> #include <linux/of_platform.h> #include <...
Linux kernel'inin 'drivers/irqchip/irq-sl28cpld' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * sl28cpld interrupt controller driver * * Copyright 2020 Kontron Europe GmbH */ #include <linux/interrupt.h> #include <linux/kernel.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/platform_device.h> #include <linux/property.h> #inclu...
Linux kernel'inin 'drivers/irqchip/irq-loongson-pch-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2020, Jiaxun Yang <jiaxun.yang@flygoat.com> * Loongson PCH MSI support */ #define pr_fmt(fmt) "pch-msi: " fmt #include <linux/irqchip.h> #include <linux/msi.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/of_irq.h> #include <linux...
Linux kernel'inin 'drivers/irqchip/irq-uniphier-aidet' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for UniPhier AIDET (ARM Interrupt Detector) * * Copyright (C) 2017 Socionext Inc. * Author: Masahiro Yamada <yamada.masahiro@socionext.com> */ #include <linux/bitops.h> #include <linux/init.h> #include <linux/irq.h> #include <linux/irqdomain.h> #include ...
Linux kernel'inin 'drivers/irqchip/irq-renesas-rzt2h' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/bitfield.h> #include <linux/err.h> #include <linux/io.h> #include <linux/irqchip.h> #include <linux/irqchip/irq-renesas-rzt2h.h> #include <linux/irqdomain.h> #include <linux/of_platform.h> #include <linux/pm_runtime.h> #include <linux/reset.h> #include <linux/sp...
Linux kernel'inin 'drivers/irqchip/irq-ts4800' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Multiplexed-IRQs driver for TS-4800's FPGA * * Copyright (c) 2015 - Savoir-faire Linux * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/interrupt...
Linux kernel'inin 'drivers/irqchip/irq-gic-v2m' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ARM GIC v2m MSI(-X) support * Support for Message Signaled Interrupts for systems that * implement ARM Generic Interrupt Controller: GICv2m. * * Copyright (C) 2014 Advanced Micro Devices, Inc. * Authors: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> * ...
Linux kernel'inin 'drivers/irqchip/irq-pruss-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * PRU-ICSS INTC IRQChip driver for various TI SoCs * * Copyright (C) 2016-2020 Texas Instruments Incorporated - http://www.ti.com/ * * Author(s): * Andrew F. Davis <afd@ti.com> * Suman Anna <s-anna@ti.com> * Grzegorz Jaszczyk <grzegorz.jaszczyk@linaro.org> for Te...
Linux kernel'inin 'drivers/irqchip/irq-xtensa-mx' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Xtensa MX interrupt distributor * * Copyright (C) 2002 - 2013 Tensilica, Inc. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ #include <linux/interrupt.h> #include <linux/irq...
Linux kernel'inin 'drivers/irqchip/irq-aspeed-i2c-ic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Aspeed 24XX/25XX I2C Interrupt Controller. * * Copyright (C) 2012-2017 ASPEED Technology Inc. * Copyright 2017 IBM Corporation * Copyright 2017 Google, Inc. */ #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include ...
Linux kernel'inin 'drivers/irqchip/irq-brcmstb-l2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Generic Broadcom Set Top Box Level 2 Interrupt controller driver * * Copyright (C) 2014-2024 Broadcom */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/init.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/platform_device.h> #incl...
Linux kernel'inin 'drivers/irqchip/irq-ti-sci-intr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Texas Instruments' K3 Interrupt Router irqchip driver * * Copyright (C) 2018-2019 Texas Instruments Incorporated - https://www.ti.com/ * Lokesh Vutla <lokeshvutla@ti.com> */ #include <linux/err.h> #include <linux/module.h> #include <linux/moduleparam.h> #include <linu...
Linux kernel'inin 'drivers/irqchip/irq-atmel-aic-common' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Atmel AT91 common AIC (Advanced Interrupt Controller) code shared by * irq-atmel-aic and irq-atmel-aic5 drivers * * Copyright (C) 2004 SAN People * Copyright (C) 2004 ATMEL * Copyright (C) Rick Bronson * Copyright (C) 2014 Free Electrons * * Author: Boris BREZILLON <boris.brezillon@free-electron...
Linux kernel'inin 'drivers/irqchip/irq-armada-370-xp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell Armada 370 and Armada XP SoC IRQ handling * * Copyright (C) 2012 Marvell * * Lior Amsalem <alior@marvell.com> * Gregory CLEMENT <gregory.clement@free-electrons.com> * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * Ben Dooks <ben.dooks@codethin...
Linux kernel'inin 'drivers/irqchip/irq-gic-v3' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2013-2017 ARM Limited, All Rights Reserved. * Author: Marc Zyngier <marc.zyngier@arm.com> */ #define pr_fmt(fmt) "GICv3: " fmt #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/cpu_pm.h> #include <linux/delay.h> #include <linux/interrupt...
Linux kernel'inin 'drivers/irqchip/irq-versatile-fpga' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Support for Versatile FPGA-based IRQ controllers */ #include <linux/bitops.h> #include <linux/irq.h> #include <linux/io.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/irqdomain.h> #include <linux/module.h> #include <linux/of.h> #incl...
Linux kernel'inin 'drivers/irqchip/irq-sa11x0' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2015 Dmitry Eremin-Solenikov * Copyright (C) 1999-2001 Nicolas Pitre * * Generic IRQ handling for the SA11x0. */ #include <linux/init.h> #include <linux/module.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irq.h> #include <lin...
Linux kernel'inin 'drivers/irqchip/irq-riscv-aplic-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2021 Western Digital Corporation or its affiliates. * Copyright (C) 2022 Ventana Micro Systems Inc. */ #include <linux/bitfield.h> #include <linux/bitops.h> #include <linux/cpu.h> #include <linux/interrupt.h> #include <linux/irqchip.h> #include <linux/irqc...
Linux kernel'inin 'drivers/irqchip/irq-msi-lib' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright (C) 2022 Linutronix GmbH // Copyright (C) 2022 Intel #include <linux/export.h> #include <linux/irqchip/irq-msi-lib.h> /** * msi_lib_init_dev_msi_info - Domain info setup for MSI domains * @dev: The device for which the domain is created for * @domain: T...
Linux kernel'inin 'drivers/irqchip/irq-sni-exiu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for Socionext External Interrupt Unit (EXIU) * * Copyright (c) 2017-2019 Linaro, Ltd. <ard.biesheuvel@linaro.org> * * Based on irq-tegra.c: * Copyright (C) 2011 Google, Inc. * Copyright (C) 2010,2013, NVIDIA Corporation */ #include <linux/interrupt....
Linux kernel'inin 'drivers/irqchip/irq-sp7021-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* * Copyright (C) Sunplus Technology Co., Ltd. * All rights reserved. */ #include <linux/irq.h> #include <linux/irqdomain.h> #include <linux/io.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/of_address.h> #in...
Linux kernel'inin 'drivers/irqchip/irq-alpine-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Annapurna Labs MSIX support services * * Copyright (C) 2016, Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Antoine Tenart <antoine.tenart@free-electrons.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without...
Linux kernel'inin 'drivers/irqchip/irq-aspeed-scu-ic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Aspeed AST24XX, AST25XX, AST26XX, and AST27XX SCU Interrupt Controller * Copyright 2019 IBM Corporation * * Eddie James <eajames@linux.ibm.com> */ #include <linux/bitops.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linu...
Linux kernel'inin 'drivers/irqchip/irq-vic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * linux/arch/arm/common/vic.c * * Copyright (C) 1999 - 2003 ARM Limited * Copyright (C) 2000 Deep Blue Solutions Ltd */ #include <linux/export.h> #include <linux/init.h> #include <linux/list.h> #include <linux/io.h> #include <linux/irq.h> #include <linux/irq...
Linux kernel'inin 'drivers/irqchip/irq-ls-scfg-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Freescale SCFG MSI(-X) support * * Copyright (C) 2016 Freescale Semiconductor. * * Author: Minghuan Lian <Minghuan.Lian@nxp.com> */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/msi.h> #include <linux/interrupt.h> #include <linux/iommu.h> #...
Linux kernel'inin 'drivers/irqchip/irq-lan966x-oic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Driver for the Microchip LAN966x outbound interrupt controller * * Copyright (c) 2024 Technology Inc. and its subsidiaries. * * Authors: * Horatiu Vultur <horatiu.vultur@microchip.com> * Clément Léger <clement.leger@bootlin.com> * Herve Codina <herve.codina@bootlin....
Linux kernel'inin 'drivers/irqchip/irq-renesas-rzg2l' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Renesas RZ/G2L IRQC Driver * * Copyright (C) 2022 Renesas Electronics Corporation. * * Author: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> */ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/err.h> #include <linux/io.h> #include <linux/i...
Linux işletim sistemi çekirdeği için 'drivers/irqchip/irq-atmel-aic-common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * Atmel AT91 common AIC (Advanced Interrupt Controller) header file * * Copyright (C) 2004 SAN People * Copyright (C) 2004 ATMEL * Copyright (C) Rick Bronson * Copyright (C) 2014 Free Electrons * * Author: Boris BREZILLON <boris.brezillon@free-electrons.com> * * This file is licensed under the te...
Linux kernel'inin 'drivers/irqchip/irq-gic-v3-mbi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2018 ARM Limited, All Rights Reserved. * Author: Marc Zyngier <marc.zyngier@arm.com> */ #define pr_fmt(fmt) "GICv3: " fmt #include <linux/iommu.h> #include <linux/irq.h> #include <linux/irqdomain.h> #include <linux/kernel.h> #include <linux/msi.h> #includ...
Linux kernel'inin 'drivers/irqchip/irq-pic32-evic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Cristian Birsan <cristian.birsan@microchip.com> * Joshua Henderson <joshua.henderson@microchip.com> * Copyright (C) 2016 Microchip Technology Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/interrupt.h> #include...
Linux kernel'inin 'drivers/irqchip/irq-qcom-mpm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2021, Linaro Limited * Copyright (c) 2010-2020, The Linux Foundation. All rights reserved. */ #include <linux/delay.h> #include <linux/err.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/io.h> #include <linux/irqchip.h> #includ...
Linux kernel'inin 'drivers/irqchip/irq-riscv-imsic-early' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2021 Western Digital Corporation or its affiliates. * Copyright (C) 2022 Ventana Micro Systems Inc. */ #define pr_fmt(fmt) "riscv-imsic: " fmt #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/cpu_pm.h> #include <linux/export.h> #include <linu...
Linux kernel'inin 'drivers/irqchip/irq-riscv-aplic-main' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2021 Western Digital Corporation or its affiliates. * Copyright (C) 2022 Ventana Micro Systems Inc. */ #include <linux/acpi.h> #include <linux/bitfield.h> #include <linux/irqchip/riscv-aplic.h> #include <linux/irqchip/riscv-imsic.h> #include <linux/module....
Linux kernel'inin 'drivers/irqchip/irq-mvebu-sei' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) "mvebu-sei: " fmt #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/irqdomain.h> #include <linux/kernel.h> #include <linux/msi.h> #include <linux/platform_device.h> #include...
Linux işletim sistemi çekirdeği için 'drivers/irqchip/irq-gic-common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2002 ARM Limited, All Rights Reserved. */ #ifndef _IRQ_GIC_COMMON_H #define _IRQ_GIC_COMMON_H #include <linux/of.h> #include <linux/irqdomain.h> #include <linux/msi.h> #include <linux/irqchip/arm-gic-common.h> struct gic_quirk { const char *desc;...
Linux kernel'inin 'drivers/irqchip/irq-apple-aic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright The Asahi Linux Contributors * * Based on irq-lpc32xx: * Copyright 2015-2016 Vladimir Zapolskiy <vz@mleia.com> * Based on irq-bcm2836: * Copyright 2015 Broadcom */ /* * AIC is a fairly simple interrupt controller with the following features: ...
Linux kernel'inin 'drivers/irqchip/irq-csky-apb-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. #include <linux/kernel.h> #include <linux/init.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/module.h> #include <linux/irqdomain.h> #include <linux/irqchip.h> #include <linux/irq.h> #include <li...
Linux kernel'inin 'drivers/irqchip/irq-mtk-sysirq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2014 MediaTek Inc. * Author: Joe.C <yingjoe.chen@mediatek.com> */ #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqdomain.h> #include <linux/of.h> #include <linux/of_irq.h> #include <linux/of_address.h> #include <linux/io.h> #inclu...
Linux kernel'inin 'drivers/irqchip/irq-atmel-aic5' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Atmel AT91 AIC5 (Advanced Interrupt Controller) driver * * Copyright (C) 2004 SAN People * Copyright (C) 2004 ATMEL * Copyright (C) Rick Bronson * Copyright (C) 2014 Free Electrons * * Author: Boris BREZILLON <boris.brezillon@free-electrons.com> * * This file is licensed under the terms of the ...
Linux kernel'inin 'drivers/irqchip/irq-gic-v5-irs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2024-2025 ARM Limited, All Rights Reserved. */ #define pr_fmt(fmt) "GICv5 IRS: " fmt #include <linux/acpi.h> #include <linux/kmemleak.h> #include <linux/log2.h> #include <linux/of.h> #include <linux/of_address.h> #include <linux/irqchip.h> #include <...
Linux kernel'inin 'drivers/irqchip/irq-al-fic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. */ #include <linux/bitfield.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchip/chained_irq.h> #include <linux/irqdomain.h> #include <linux/module.h> #include <linux/of.h> #i...
Linux kernel'inin 'drivers/irqchip/irq-aspeed-vic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2015 - Ben Herrenschmidt, IBM Corp. * * Driver for Aspeed "new" VIC as found in SoC generation 3 and later * * Based on irq-vic.c: * * Copyright (C) 1999 - 2003 ARM Limited * Copyright (C) 2000 Deep Blue Solutions Ltd */ #include <linux...
Linux kernel'inin 'drivers/irqchip/irq-ath79-cpu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Atheros AR71xx/AR724x/AR913x specific interrupt handling * * Copyright (C) 2015 Alban Bedel <albeu@free.fr> * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com> * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> * Copyright (C) 2008...
Linux işletim sistemi çekirdeği için 'drivers/irqchip/irq-riscv-imsic-state' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2021 Western Digital Corporation or its affiliates. * Copyright (C) 2022 Ventana Micro Systems Inc. */ #ifndef _IRQ_RISCV_IMSIC_STATE_H #define _IRQ_RISCV_IMSIC_STATE_H #include <linux/irqchip/riscv-imsic.h> #include <linux/irqdomain.h> #include <...
Linux kernel'inin 'drivers/irqchip/irq-omap-intc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * linux/arch/arm/mach-omap2/irq.c * * Interrupt handler for OMAP2 boards. * * Copyright (C) 2005 Nokia Corporation * Author: Paul Mundt <paul.mundt@nokia.com> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this a...
Linux kernel'inin 'drivers/irqchip/irq-imx-mu-msi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Freescale MU used as MSI controller * * Copyright (c) 2018 Pengutronix, Oleksij Rempel <o.rempel@pengutronix.de> * Copyright 2022 NXP * Frank Li <Frank.Li@nxp.com> * Peng Fan <peng.fan@nxp.com> * * Based on drivers/mailbox/imx-mailbox.c */ #include <linux/clk...
Linux kernel'inin 'drivers/irqchip/irq-goldfish-pic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for MIPS Goldfish Programmable Interrupt Controller. * * Author: Miodrag Dinic <miodrag.dinic@mips.com> */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> #include <linux/irqchi...
Linux kernel'inin 'drivers/irqchip/irq-dw-apb-ictl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Synopsys DW APB ICTL irqchip driver. * * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> * * based on GPL'ed 2.6 kernel sources * (c) Marvell International Ltd. * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without ...
Linux kernel'inin 'drivers/irqchip/irq-gic-v5-its' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2024-2025 ARM Limited, All Rights Reserved. */ #define pr_fmt(fmt) "GICv5 ITS: " fmt #include <linux/acpi.h> #include <linux/acpi_iort.h> #include <linux/bitmap.h> #include <linux/iommu.h> #include <linux/init.h> #include <linux/kernel.h> #include <li...
Linux kernel'inin 'drivers/irqchip/irq-vf610-mscm-ir' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014-2015 Toradex AG * Author: Stefan Agner <stefan@agner.ch> * * IRQ chip driver for MSCM interrupt router available on Vybrid SoC's. * The interrupt router is between the CPU's interrupt controller and the * peripheral. The router allows to route ...