instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'include/asm-generic/ticket_spinlock' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * 'Generic' ticket-lock implementation. * * It relies on atomic_fetch_add() having well defined forward progress * guarantees under contention. If your architecture cannot provide this, stick * to a test-and-set lock. * * It also relies on atomic_fetch_add() being ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/pgtable-nop4d' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PGTABLE_NOP4D_H #define _PGTABLE_NOP4D_H #ifndef __ASSEMBLY__ #define __PAGETABLE_P4D_FOLDED 1 typedef struct { pgd_t pgd; } p4d_t; #define P4D_SHIFT PGDIR_SHIFT #define PTRS_PER_P4D 1 #define P4D_SIZE (1UL << P4D_SHIFT) #define P4D_MASK (~(P4D_SIZE-1)) /* ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/syscall' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Access to user system call parameters and results * * Copyright (C) 2008-2009 Red Hat, Inc. All rights reserved. * * This file is a stub providing documentation for what functions * arch/ARCH/include/asm/syscall.h files need to define. Most arch definitions ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/percpu' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_PERCPU_H_ #define _ASM_GENERIC_PERCPU_H_ #ifndef __ASSEMBLER__ #include <linux/compiler.h> #include <linux/threads.h> #include <linux/percpu-defs.h> /* * __percpu_qual is the qualifier for the percpu named address space. * * Most arches use generic ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/cache' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_CACHE_H #define __ASM_GENERIC_CACHE_H /* * 32 bytes appears to be the most common cache line size, * so make that the default here. Architectures with larger * cache lines need to provide their own cache.h. */ #define L1_CACHE_SHIFT 5 #define L1_CA...
Linux işletim sistemi çekirdeği için 'include/asm-generic/early_ioremap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_EARLY_IOREMAP_H_ #define _ASM_EARLY_IOREMAP_H_ #include <linux/types.h> /* * early_ioremap() and early_iounmap() are for temporary early boot-time * mappings, before the real ioremap() is functional. */ extern void __iomem *early_ioremap(resource_size_t phys...
Linux işletim sistemi çekirdeği için 'include/asm-generic/ring_buffer' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic arch dependent ring_buffer macros. */ #ifndef __ASM_GENERIC_RING_BUFFER_H__ #define __ASM_GENERIC_RING_BUFFER_H__ #include <linux/cacheflush.h> /* Flush cache on ring buffer range if needed. Do nothing by default. */ #define arch_ring_buffer_flush_range(...
Linux işletim sistemi çekirdeği için 'include/asm-generic/kmap_size' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_KMAP_SIZE_H #define _ASM_GENERIC_KMAP_SIZE_H /* For debug this provides guard pages between the maps */ #ifdef CONFIG_DEBUG_KMAP_LOCAL # define KM_MAX_IDX 33 #else # define KM_MAX_IDX 16 #endif #endif ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/timex' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_TIMEX_H #define __ASM_GENERIC_TIMEX_H /* * If you have a cycle counter, return the value here. */ typedef unsigned long cycles_t; #ifndef get_cycles static inline cycles_t get_cycles(void) { return 0; } #endif /* * Architectures are encouraged to i...
Linux işletim sistemi çekirdeği için 'include/asm-generic/checksum' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_CHECKSUM_H #define __ASM_GENERIC_CHECKSUM_H #include <linux/bitops.h> /* * computes the checksum of a memory block at buff, length len, * and adds in "sum" (32-bit) * * returns a 32-bit number suitable for feeding into itself * or csum_tcpudp_magi...
Linux işletim sistemi çekirdeği için 'include/asm-generic/mmu_context' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_MMU_CONTEXT_H #define __ASM_GENERIC_MMU_CONTEXT_H /* * Generic hooks to implement no-op functionality. */ struct task_struct; struct mm_struct; /* * enter_lazy_tlb - Called when "tsk" is about to enter lazy TLB mode. * * @mm: the currently activ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/kvm_types' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_KVM_TYPES_H #define _ASM_GENERIC_KVM_TYPES_H #endif ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/string' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __ASM_GENERIC_STRING_H #define __ASM_GENERIC_STRING_H /* * The kernel provides all required functions in lib/string.c * * Architectures probably want to provide at least their own optimized * memcpy and memset functions though. */ #endif /* __ASM_GENERIC_STRING_H */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/pgtable-nopud' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PGTABLE_NOPUD_H #define _PGTABLE_NOPUD_H #ifndef __ASSEMBLY__ #include <asm-generic/pgtable-nop4d.h> #define __PAGETABLE_PUD_FOLDED 1 /* * Having the pud type consist of a p4d gets the size right, and allows * us to conceptually access the p4d entry that this p...
Linux işletim sistemi çekirdeği için 'include/asm-generic/getorder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_GETORDER_H #define __ASM_GENERIC_GETORDER_H #ifndef __ASSEMBLY__ #include <linux/compiler.h> #include <linux/log2.h> /** * get_order - Determine the allocation order of a memory size * @size: The size for which to get the order * * Determine the a...
Linux işletim sistemi çekirdeği için 'include/asm-generic/extable' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_EXTABLE_H #define __ASM_GENERIC_EXTABLE_H /* * The exception table consists of pairs of addresses: the first is the * address of an instruction that is allowed to fault, and the second is * the address at which the program should continue. No regist...
Linux işletim sistemi çekirdeği için 'include/asm-generic/local' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_LOCAL_H #define _ASM_GENERIC_LOCAL_H #include <linux/percpu.h> #include <linux/atomic.h> #include <asm/types.h> /* * A signed long type for operations which are atomic for a single CPU. * Usually used in combination with per-cpu variables. * * This ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/iomap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __GENERIC_IO_H #define __GENERIC_IO_H #include <linux/linkage.h> #include <asm/byteorder.h> /* * These are the "generic" interfaces for doing new-style * memory-mapped or PIO accesses. Architectures may do * their own arch-optimized versions, these just act as *...
Linux işletim sistemi çekirdeği için 'include/asm-generic/asm-prototypes' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #include <linux/bitops.h> #undef __memset extern void *__memset(void *, int, __kernel_size_t); #undef __memcpy extern void *__memcpy(void *, const void *, __kernel_size_t); #undef __memmove extern void *__memmove(void *, const void *, __kernel_size_t); #undef memset extern vo...
Linux işletim sistemi çekirdeği için 'include/asm-generic/cmpxchg' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Generic UP xchg and cmpxchg using interrupt disablement. Does not * support SMP. */ #ifndef __ASM_GENERIC_CMPXCHG_H #define __ASM_GENERIC_CMPXCHG_H #ifdef CONFIG_SMP #error "Cannot use generic cmpxchg on SMP" #endif #include <linux/types.h> #include <linux/irqflag...
Linux işletim sistemi çekirdeği için 'include/asm-generic/local64' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_LOCAL64_H #define _ASM_GENERIC_LOCAL64_H #include <linux/percpu.h> #include <asm/types.h> /* * A signed long type for operations which are atomic for a single CPU. * Usually used in combination with per-cpu variables. * * This is the default impleme...
Linux işletim sistemi çekirdeği için 'include/asm-generic/atomic64' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Generic implementation of 64-bit atomics using spinlocks, * useful on processors that don't have 64-bit atomic instructions. * * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com> */ #ifndef _ASM_GENERIC_ATOMIC64_H #define _ASM_GENERIC_ATOMIC64...
Linux işletim sistemi çekirdeği için 'include/asm-generic/pci_iomap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0+ */ /* Generic I/O port emulation. * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) */ #ifndef __ASM_GENERIC_PCI_IOMAP_H #define __ASM_GENERIC_PCI_IOMAP_H struct pci_dev; #ifdef CONFIG_PCI /* Create a virtual mapping...
Linux işletim sistemi çekirdeği için 'include/asm-generic/mm_hooks' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Define generic no-op hooks for arch_dup_mmap and arch_exit_mmap * to be included in asm-FOO/mmu_context.h for any arch FOO which * doesn't need to hook these. */ #ifndef _ASM_GENERIC_MM_HOOKS_H #define _ASM_GENERIC_MM_HOOKS_H static inline int arch_dup_mmap(struct m...
Linux işletim sistemi çekirdeği için 'include/asm-generic/archrandom' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_ARCHRANDOM_H__ #define __ASM_GENERIC_ARCHRANDOM_H__ static inline size_t __must_check arch_get_random_longs(unsigned long *v, size_t max_longs) { return 0; } static inline size_t __must_check arch_get_random_seed_longs(unsigned long *v, size_t max_lon...
Linux işletim sistemi çekirdeği için 'include/asm-generic/kprobes' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_KPROBES_H #define _ASM_GENERIC_KPROBES_H #if defined(__KERNEL__) && !defined(__ASSEMBLY__) #ifdef CONFIG_KPROBES /* * Blacklist ganerating macro. Specify functions which is not probed * by using this macro. */ # define __NOKPROBE_SYMBOL(fname) \ st...
Linux işletim sistemi çekirdeği için 'include/asm-generic/fprobe' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic arch dependent fprobe macros. */ #ifndef __ASM_GENERIC_FPROBE_H__ #define __ASM_GENERIC_FPROBE_H__ #include <linux/bits.h> #ifdef CONFIG_64BIT /* * Encoding the size and the address of fprobe into one 64bit entry. * The 32bit architectures should use 2...
Linux işletim sistemi çekirdeği için 'include/asm-generic/video' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_VIDEO_H_ #define __ASM_GENERIC_VIDEO_H_ /* * Only include this header file from your architecture's <asm/fb.h>. */ #include <linux/io.h> #include <linux/mm_types.h> #include <linux/pgtable.h> #include <linux/types.h> struct device; #ifndef pgprot_...
Linux işletim sistemi çekirdeği için 'include/asm-generic/statfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _GENERIC_STATFS_H #define _GENERIC_STATFS_H #include <uapi/asm-generic/statfs.h> typedef __kernel_fsid_t fsid_t; #endif ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/cfi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_CFI_H #define __ASM_GENERIC_CFI_H #endif /* __ASM_GENERIC_CFI_H */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/memory_model' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_MEMORY_MODEL_H #define __ASM_MEMORY_MODEL_H #include <linux/pfn.h> #ifndef __ASSEMBLY__ /* * supports 3 memory models. */ #if defined(CONFIG_FLATMEM) #ifndef ARCH_PFN_OFFSET #define ARCH_PFN_OFFSET (0UL) #endif #define __pfn_to_page(pfn) (mem_map + ((pfn...
Linux işletim sistemi çekirdeği için 'include/asm-generic/hardirq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_HARDIRQ_H #define __ASM_GENERIC_HARDIRQ_H #include <linux/cache.h> #include <linux/threads.h> typedef struct { unsigned int __softirq_pending; #ifdef ARCH_WANTS_NMI_IRQSTAT unsigned int __nmi_count; #endif } ____cacheline_aligned irq_cpustat_t; DECL...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitsperlong' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_BITS_PER_LONG #define __ASM_GENERIC_BITS_PER_LONG #include <uapi/asm-generic/bitsperlong.h> #ifdef CONFIG_64BIT #define BITS_PER_LONG 64 #else #define BITS_PER_LONG 32 #endif /* CONFIG_64BIT */ /* * FIXME: The check currently breaks x86-64 build, so...
Linux işletim sistemi çekirdeği için 'include/asm-generic/pgalloc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_PGALLOC_H #define __ASM_GENERIC_PGALLOC_H #ifdef CONFIG_MMU #define GFP_PGTABLE_KERNEL (GFP_KERNEL | __GFP_ZERO) #define GFP_PGTABLE_USER (GFP_PGTABLE_KERNEL | __GFP_ACCOUNT) /** * __pte_alloc_one_kernel - allocate memory for a PTE-level kernel page ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/compat' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_COMPAT_H #define __ASM_GENERIC_COMPAT_H #ifndef COMPAT_USER_HZ #define COMPAT_USER_HZ 100 #endif #ifndef COMPAT_RLIM_INFINITY #define COMPAT_RLIM_INFINITY 0xffffffff #endif #ifndef COMPAT_OFF_T_MAX #define COMPAT_OFF_T_MAX 0x7fffffff #endif #ifndef ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/delay' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_DELAY_H #define __ASM_GENERIC_DELAY_H #include <linux/math.h> #include <vdso/time64.h> /* Undefined functions to get compile-time errors */ extern void __bad_udelay(void); extern void __bad_ndelay(void); extern void __udelay(unsigned long usecs); exte...
Linux işletim sistemi çekirdeği için 'include/asm-generic/access_ok' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_ACCESS_OK_H__ #define __ASM_GENERIC_ACCESS_OK_H__ /* * Checking whether a pointer is valid for user space access. * These definitions work on most architectures, but overrides can * be used where necessary. */ /* * architectures with compat tasks ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/error-injection' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_ERROR_INJECTION_H #define _ASM_GENERIC_ERROR_INJECTION_H #if defined(__KERNEL__) && !defined(__ASSEMBLY__) enum { EI_ETYPE_NULL, /* Return NULL if failure */ EI_ETYPE_ERRNO, /* Return -ERRNO if failure */ EI_ETYPE_ERRNO_NULL, /* Return -ERRNO or NUL...
Linux işletim sistemi çekirdeği için 'include/asm-generic/ftrace' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/include/asm-generic/ftrace.h */ #ifndef __ASM_GENERIC_FTRACE_H__ #define __ASM_GENERIC_FTRACE_H__ /* * Not all architectures need their own ftrace.h, the most * common definitions are already in linux/ftrace.h. */ #endif /* __ASM_GENERIC_FTRACE_H__ */ ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/kdebug' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_KDEBUG_H #define _ASM_GENERIC_KDEBUG_H enum die_val { DIE_UNUSED, DIE_OOPS = 1, }; #endif /* _ASM_GENERIC_KDEBUG_H */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/pci' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __ASM_GENERIC_PCI_H #define __ASM_GENERIC_PCI_H #ifndef PCIBIOS_MIN_IO #define PCIBIOS_MIN_IO 0 #endif #ifndef PCIBIOS_MIN_MEM #define PCIBIOS_MIN_MEM 0 #endif #ifndef pcibios_assign_all_busses /* For bootloaders that do not initialize the PCI bus */ #defin...
Linux işletim sistemi çekirdeği için 'include/asm-generic/irq_regs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* Fallback per-CPU frame pointer holder * * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) */ #ifndef _ASM_GENERIC_IRQ_REGS_H #define _ASM_GENERIC_IRQ_REGS_H #include <linux/percpu.h> /* * Per-cpu curre...
Linux işletim sistemi çekirdeği için 'include/asm-generic/runtime-const' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_RUNTIME_CONST_H #define _ASM_RUNTIME_CONST_H /* * This is the fallback for when the architecture doesn't * support the runtime const operations. * * We just use the actual symbols as-is. */ #define runtime_const_ptr(sym) (sym) #define runtime_const_shift_ri...
Linux işletim sistemi çekirdeği için 'include/asm-generic/current' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_CURRENT_H #define __ASM_GENERIC_CURRENT_H #ifndef __ASSEMBLY__ #include <linux/thread_info.h> #define get_current() (current_thread_info()->task) #define current get_current() #endif #endif /* __ASM_GENERIC_CURRENT_H */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/bug' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BUG_H #define _ASM_GENERIC_BUG_H #include <linux/compiler.h> #include <linux/instrumentation.h> #include <linux/once_lite.h> #define CUT_HERE "------------[ cut here ]------------\n" #ifdef CONFIG_GENERIC_BUG #define BUGFLAG_WARNING (1 << 0) #define ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/linkage' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __ASM_GENERIC_LINKAGE_H #define __ASM_GENERIC_LINKAGE_H /* * linux/linkage.h provides reasonable defaults. * an architecture can override them by providing its own version. */ #endif /* __ASM_GENERIC_LINKAGE_H */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/mmiowb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_MMIOWB_H #define __ASM_GENERIC_MMIOWB_H /* * Generic implementation of mmiowb() tracking for spinlocks. * * If your architecture doesn't ensure that writes to an I/O peripheral * within two spinlocked sections on two different CPUs are seen by the ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/vdso/vsyscall' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_VSYSCALL_H #define __ASM_GENERIC_VSYSCALL_H #ifndef __ASSEMBLY__ #ifndef __arch_get_vdso_u_time_data static __always_inline const struct vdso_time_data *__arch_get_vdso_u_time_data(void) { return &vdso_u_time_data; } #endif #ifndef __arch_get_vdso_u_...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/lock' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_LOCK_H_ #define _ASM_GENERIC_BITOPS_LOCK_H_ #include <linux/atomic.h> #include <linux/compiler.h> #include <asm/barrier.h> /** * arch_test_and_set_bit_lock - Set a bit and return its old value, for lock * @nr: Bit to set * @addr: Address to co...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/instrumented-non-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file provides wrappers with sanitizer instrumentation for non-atomic * bit operations. * * To use this functionality, an arch's bitops.h file needs to define each of * the below bit operations with an arch_ prefix (e.g. arch_set_bit(), * arch___set_bit(), etc...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/builtin-__ffs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_BUILTIN___FFS_H_ #define _ASM_GENERIC_BITOPS_BUILTIN___FFS_H_ /** * __ffs - find first bit in word. * @word: The word to search * * Undefined if no bit exists, so code should check against 0 first. */ static __always_inline __attribute_const_...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/instrumented-lock' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file provides wrappers with sanitizer instrumentation for bit * locking operations. * * To use this functionality, an arch's bitops.h file needs to define each of * the below bit operations with an arch_ prefix (e.g. arch_set_bit(), * arch___set_bit(), etc.)....
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/hweight' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_HWEIGHT_H_ #define _ASM_GENERIC_BITOPS_HWEIGHT_H_ #include <asm-generic/bitops/arch_hweight.h> #include <asm-generic/bitops/const_hweight.h> #endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */ ```
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/ext2-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_H_ #define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_H_ /* * Spinlock based version of ext2 atomic bitops */ #define ext2_set_bit_atomic(lock, nr, addr) \ ({ \ int ret; \ spin_lock(lock); \ ret = __test_and_set_bit_le(nr, ad...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/ffs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_FFS_H_ #define _ASM_GENERIC_BITOPS_FFS_H_ /** * generic_ffs - find first bit set * @x: the word to search * * This is defined the same way as * the libc and compiler builtin ffs routines, therefore * differs in spirit from ffz (man ffs). */...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/generic-non-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __ASM_GENERIC_BITOPS_GENERIC_NON_ATOMIC_H #define __ASM_GENERIC_BITOPS_GENERIC_NON_ATOMIC_H #include <linux/bits.h> #include <asm/barrier.h> #ifndef _LINUX_BITOPS_H #error only <linux/bitops.h> can be included directly #endif /* * Generic definitions for bit...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/fls64' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_FLS64_H_ #define _ASM_GENERIC_BITOPS_FLS64_H_ #include <asm/types.h> /** * fls64 - find last set bit in a 64-bit word * @x: the word to search * * This is defined in a similar way as the libc and compiler builtin * ffsll, but returns the pos...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/builtin-ffs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_ #define _ASM_GENERIC_BITOPS_BUILTIN_FFS_H_ /** * ffs - find first bit set * @x: the word to search * * This is defined the same way as * the libc and compiler builtin ffs routines, therefore * differs in spirit from ffz (man f...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/instrumented-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file provides wrappers with sanitizer instrumentation for atomic bit * operations. * * To use this functionality, an arch's bitops.h file needs to define each of * the below bit operations with an arch_ prefix (e.g. arch_set_bit(), * arch___set_bit(), etc.). ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_ATOMIC_H_ #define _ASM_GENERIC_BITOPS_ATOMIC_H_ #include <linux/atomic.h> #include <linux/compiler.h> #include <asm/barrier.h> /* * Implementation of atomic bitops using atomic-fetch ops. * See Documentation/atomic_bitops.txt for details. */ ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/sched' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_SCHED_H_ #define _ASM_GENERIC_BITOPS_SCHED_H_ #include <linux/compiler.h> /* unlikely() */ #include <asm/types.h> /* * Every architecture must define this function. It's the fastest * way of searching a 100-bit bitmap. It's guaranteed that at ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/fls' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_FLS_H_ #define _ASM_GENERIC_BITOPS_FLS_H_ /** * generic_fls - find last (most-significant) bit set * @x: the word to search * * This is defined the same way as ffs. * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. */ static __always_inl...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/arch_hweight' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_ #define _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_ #include <asm/types.h> static inline unsigned int __arch_hweight32(unsigned int w) { return __sw_hweight32(w); } static inline unsigned int __arch_hweight16(unsigned int w) { return _...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/const_hweight' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_CONST_HWEIGHT_H_ #define _ASM_GENERIC_BITOPS_CONST_HWEIGHT_H_ /* * Compile time versions of __arch_hweightN() */ #define __const_hweight8(w) \ ((unsigned int) \ ((!!((w) & (1ULL << 0))) + \ (!!((w) & (1ULL << 1))) + \ (!!((w) & (1ULL...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/le' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_LE_H_ #define _ASM_GENERIC_BITOPS_LE_H_ #include <asm/types.h> #include <asm/byteorder.h> #if defined(__LITTLE_ENDIAN) #define BITOP_LE_SWIZZLE 0 #elif defined(__BIG_ENDIAN) #define BITOP_LE_SWIZZLE ((BITS_PER_LONG-1) & ~0x7) #endif static ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/non-instrumented-non-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_GENERIC_BITOPS_NON_INSTRUMENTED_NON_ATOMIC_H #define __ASM_GENERIC_BITOPS_NON_INSTRUMENTED_NON_ATOMIC_H #define ___set_bit arch___set_bit #define ___clear_bit arch___clear_bit #define ___change_bit arch___change_bit #define ___test_and_set_bit arch___test_...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/__fls' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS___FLS_H_ #define _ASM_GENERIC_BITOPS___FLS_H_ #include <asm/types.h> /** * generic___fls - find last (most-significant) set bit in a long word * @word: the word to search * * Undefined if no set bit exists, so code should check against 0 firs...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/builtin-__fls' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_BUILTIN___FLS_H_ #define _ASM_GENERIC_BITOPS_BUILTIN___FLS_H_ /** * __fls - find last (most-significant) set bit in a long word * @word: the word to search * * Undefined if no set bit exists, so code should check against 0 first. */ static __...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/non-atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ #define _ASM_GENERIC_BITOPS_NON_ATOMIC_H_ #include <asm-generic/bitops/generic-non-atomic.h> #define arch___set_bit generic___set_bit #define arch___clear_bit generic___clear_bit #define arch___change_bit generic___change_bit #defi...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/ffz' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_FFZ_H_ #define _ASM_GENERIC_BITOPS_FFZ_H_ /* * ffz - find first zero in word. * @word: The word to search * * Undefined if no zero exists, so code should check against ~0UL first. */ #define ffz(x) __ffs(~(x)) #endif /* _ASM_GENERIC_BITOPS_...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/ext2-atomic-setbit' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_ #define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_ /* * Atomic bitops based version of ext2 atomic bitops */ #define ext2_set_bit_atomic(l, nr, addr) test_and_set_bit_le(nr, addr) #define ext2_clear_bit_atomic(l, nr, addr) ...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/__ffs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS___FFS_H_ #define _ASM_GENERIC_BITOPS___FFS_H_ #include <asm/types.h> /** * generic___ffs - find first bit in word. * @word: The word to search * * Undefined if no bit exists, so code should check against 0 first. */ static __always_inline __...
Linux işletim sistemi çekirdeği için 'include/asm-generic/bitops/builtin-fls' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_GENERIC_BITOPS_BUILTIN_FLS_H_ #define _ASM_GENERIC_BITOPS_BUILTIN_FLS_H_ /** * fls - find last (most-significant) bit set * @x: the word to search * * This is defined the same way as ffs. * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32. */ static __alw...
Linux işletim sistemi çekirdeği için 'include/soc/mediatek/smi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2015-2016 MediaTek Inc. * Author: Yong Wu <yong.wu@mediatek.com> */ #ifndef MTK_IOMMU_SMI_H #define MTK_IOMMU_SMI_H #include <linux/bitops.h> #include <linux/device.h> #if IS_ENABLED(CONFIG_MTK_SMI) enum iommu_atf_cmd { IOMMU_ATF_CMD_CONFIG_SMI_...
Linux işletim sistemi çekirdeği için 'include/soc/at91/at91sam9_ddrsdr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Header file for the Atmel DDR/SDR SDRAM Controller * * Copyright (C) 2010 Atmel Corporation * Nicolas Ferre <nicolas.ferre@atmel.com> */ #ifndef AT91SAM9_DDRSDR_H #define AT91SAM9_DDRSDR_H #define AT91_DDRSDRC_MR 0x00 /* Mode Register */ #define AT91_DDR...
Linux işletim sistemi çekirdeği için 'include/soc/at91/atmel_tcb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * Timer/Counter Unit (TC) registers. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef __SOC_...
Linux işletim sistemi çekirdeği için 'include/soc/at91/at91sam9_sdramc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * arch/arm/mach-at91/include/mach/at91sam9_sdramc.h * * Copyright (C) 2007 Andrew Victor * Copyright (C) 2007 Atmel Corporation. * * SDRAM Controllers (SDRAMC) - System peripherals registers. * Based on AT91SAM9261 datasheet revision D. */ #ifndef AT91SAM...
Linux işletim sistemi çekirdeği için 'include/soc/at91/atmel-sfr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Atmel SFR (Special Function Registers) register offsets and bit definitions. * * Copyright (C) 2016 Atmel * * Author: Ludovic Desroches <ludovic.desroches@atmel.com> */ #ifndef _LINUX_MFD_SYSCON_ATMEL_SFR_H #define _LINUX_MFD_SYSCON_ATMEL_SFR_H #define AT91_...
Linux işletim sistemi çekirdeği için 'include/soc/at91/sama7-sfrbu' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Microchip SAMA7 SFRBU registers offsets and bit definitions. * * Copyright (C) [2020] Microchip Technology Inc. and its subsidiaries * * Author: Claudu Beznea <claudiu.beznea@microchip.com> */ #ifndef __SAMA7_SFRBU_H__ #define __SAMA7_SFRBU_H__ #ifdef CONFIG...
Linux işletim sistemi çekirdeği için 'include/soc/at91/sama7-ddr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Microchip SAMA7 UDDR Controller and DDR3 PHY Controller registers offsets * and bit definitions. * * Copyright (C) [2020] Microchip Technology Inc. and its subsidiaries * * Author: Claudu Beznea <claudiu.beznea@microchip.com> */ #ifndef __SAMA7_DDR_H__ #defi...
Linux işletim sistemi çekirdeği için 'include/soc/at91/atmel-secumod' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Atmel Security Module register offsets and bit definitions. * * Copyright (C) 2016 Atmel * * Author: Alexandre Belloni <alexandre.belloni@free-electrons.com> */ #ifndef _LINUX_SOC_AT91_ATMEL_SECUMOD_H #define _LINUX_SOC_AT91_ATMEL_SECUMOD_H #define AT91_SECU...
Linux işletim sistemi çekirdeği için 'include/soc/imx/revision' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2015 Linaro Ltd. */ #ifndef __SOC_IMX_REVISION_H__ #define __SOC_IMX_REVISION_H__ #define IMX_CHIP_REVISION_1_0 0x10 #define IMX_CHIP_REVISION_1_1 0x11 #define IMX_CHIP_REVISION_1_2 0x12 #define IMX_CHIP_REVISION_1_3 0x13 #define IMX_CHIP_REVISION_...
Linux işletim sistemi çekirdeği için 'include/soc/imx/cpuidle' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2016 Pengutronix, <kernel@pengutronix.de> */ #ifndef __SOC_IMX_CPUIDLE_H__ #define __SOC_IMX_CPUIDLE_H__ #if defined(CONFIG_CPU_IDLE) && defined(CONFIG_SOC_IMX6Q) void imx6q_cpuidle_fec_irqs_used(void); void imx6q_cpuidle_fec_irqs_unused(void); #else s...
Linux işletim sistemi çekirdeği için 'include/soc/imx/cpu' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __IMX_CPU_H__ #define __IMX_CPU_H__ #define MXC_CPU_MX1 1 #define MXC_CPU_MX21 21 #define MXC_CPU_MX25 25 #define MXC_CPU_MX27 27 #define MXC_CPU_MX31 31 #define MXC_CPU_MX35 35 #define MXC_CPU_MX50 50 #define MXC_CPU_MX51 51 #define MXC_CPU_MX53 5...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/bpmp-abi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 OR MIT */ /* * Copyright (c) 2014-2025, NVIDIA CORPORATION. All rights reserved. */ #ifndef ABI_BPMP_ABI_H #define ABI_BPMP_ABI_H #if defined(LK) || defined(BPMP_ABI_HAVE_STDC) #include <stddef.h> #include <stdint.h> #endif #ifndef BPMP_ABI_PACKED #ifdef __ABI_PACKED #defi...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/tegra-cbb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved */ #ifndef TEGRA_CBB_H #define TEGRA_CBB_H #include <linux/list.h> struct tegra_cbb_error { const char *code; const char *source; const char *desc; }; struct tegra_cbb { struct device *dev; const...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/pmc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2010 Google, Inc * Copyright (c) 2014 NVIDIA Corporation * * Author: * Colin Cross <ccross@google.com> */ #ifndef __SOC_TEGRA_PMC_H__ #define __SOC_TEGRA_PMC_H__ #include <linux/reboot.h> #include <soc/tegra/pm.h> struct clk; struct reset_con...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/ivc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. */ #ifndef __TEGRA_IVC_H #define __TEGRA_IVC_H #include <linux/device.h> #include <linux/dma-mapping.h> #include <linux/iosys-map.h> #include <linux/types.h> struct tegra_ivc_header; struct tegra_iv...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/flowctrl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Functions and macros to control the flowcontroller * * Copyright (c) 2010-2012, NVIDIA Corporation. All rights reserved. */ #ifndef __SOC_TEGRA_FLOWCTRL_H__ #define __SOC_TEGRA_FLOWCTRL_H__ #define FLOW_CTRL_HALT_CPU0_EVENTS 0x0 #define FLOW_CTRL_WAITEVENT (2...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/irq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2012, NVIDIA Corporation. All rights reserved. */ #ifndef __SOC_TEGRA_IRQ_H #define __SOC_TEGRA_IRQ_H #include <linux/types.h> #if defined(CONFIG_ARM) && defined(CONFIG_ARCH_TEGRA) bool tegra_pending_sgi(void); #else static inline bool tegra_pendi...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/fuse' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2012-2023, NVIDIA CORPORATION. All rights reserved. */ #ifndef __SOC_TEGRA_FUSE_H__ #define __SOC_TEGRA_FUSE_H__ #include <linux/types.h> #define TEGRA20 0x20 #define TEGRA30 0x30 #define TEGRA114 0x35 #define TEGRA124 0x40 #define TEGRA132 0x1...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/pm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014 NVIDIA Corporation */ #ifndef __SOC_TEGRA_PM_H__ #define __SOC_TEGRA_PM_H__ #include <linux/errno.h> enum tegra_suspend_mode { TEGRA_SUSPEND_NONE = 0, TEGRA_SUSPEND_LP2, /* CPU voltage off */ TEGRA_SUSPEND_LP1, /* CPU voltage off, DRAM sel...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/bpmp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. */ #ifndef __SOC_TEGRA_BPMP_H #define __SOC_TEGRA_BPMP_H #include <linux/iosys-map.h> #include <linux/mailbox_client.h> #include <linux/pm_domain.h> #include <linux/reset-controller.h> #include <linux...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/ahb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. */ #ifndef __SOC_TEGRA_AHB_H__ #define __SOC_TEGRA_AHB_H__ extern int tegra_ahb_enable_smmu(struct device_node *ahb); #endif /* __SOC_TEGRA_AHB_H__ */ ```
Linux işletim sistemi çekirdeği için 'include/soc/tegra/cpuidle' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved. */ #ifndef __SOC_TEGRA_CPUIDLE_H__ #define __SOC_TEGRA_CPUIDLE_H__ #ifdef CONFIG_ARM_TEGRA_CPUIDLE void tegra_cpuidle_pcie_irqs_in_use(void); #else static inline void tegra_cpuidle_pcie_irqs_in_use(vo...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014 NVIDIA Corporation */ #ifndef __SOC_TEGRA_COMMON_H__ #define __SOC_TEGRA_COMMON_H__ #include <linux/errno.h> #include <linux/types.h> struct device; /** * Tegra SoC core device OPP table configuration * * @init_state: pre-initialize OPP s...
Linux işletim sistemi çekirdeği için 'include/soc/tegra/mc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014-2026 NVIDIA Corporation */ #ifndef __SOC_TEGRA_MC_H__ #define __SOC_TEGRA_MC_H__ #include <linux/bits.h> #include <linux/debugfs.h> #include <linux/err.h> #include <linux/interconnect-provider.h> #include <linux/interrupt.h> #include <linux/ir...
Linux işletim sistemi çekirdeği için 'include/soc/fsl/caam-blob' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2020 Pengutronix, Ahmad Fatoum <kernel@pengutronix.de> * Copyright 2024-2025 NXP */ #ifndef __CAAM_BLOB_GEN #define __CAAM_BLOB_GEN #include <linux/types.h> #include <linux/errno.h> #define CAAM_BLOB_KEYMOD_LENGTH 16 #define CAAM_BLOB_OVERHEAD ...
Linux işletim sistemi çekirdeği için 'include/soc/fsl/cpm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CPM_H #define __CPM_H #include <linux/compiler.h> #include <linux/types.h> #include <linux/errno.h> #include <linux/of.h> #include <soc/fsl/qe/qe.h> /* * SPI Parameter RAM common to QE and CPM. */ struct spi_pram { __be16 rbase; /* Rx Buffer descriptor base add...
Linux işletim sistemi çekirdeği için 'include/soc/fsl/dcp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2021 sigma star gmbh * * Specifies paes key slot handles for NXP's DCP (Data Co-Processor) to be used * with the crypto_skcipher_setkey(). */ #ifndef MXS_DCP_H #define MXS_DCP_H #define DCP_PAES_KEYSIZE 1 #define DCP_PAES_KEY_SLOT0 0x00 #define ...