Searched refs:address (Results 1 - 25 of 884) sorted by relevance

1234567891011>>

/arch/x86/include/asm/
H A Dbios_ebda.h7 * Returns physical address of EBDA. Returns 0 if there is no EBDA.
15 unsigned int address = *(unsigned short *)phys_to_virt(0x40E); local
16 address <<= 4;
17 return address; /* 0 means none */
25 unsigned int address; local
28 address = get_bios_ebda();
29 if (!address)
33 length = *(unsigned char *)phys_to_virt(address);
37 length = min_t(unsigned int, (640 * 1024) - address, length);
/arch/mips/include/asm/octeon/
H A Dcvmx-scratch.h47 * @address: byte address to read from
51 static inline uint8_t cvmx_scratch_read8(uint64_t address) argument
53 return *CASTPTR(volatile uint8_t, CVMX_SCRATCH_BASE + address);
59 * @address: byte address to read from
63 static inline uint16_t cvmx_scratch_read16(uint64_t address) argument
65 return *CASTPTR(volatile uint16_t, CVMX_SCRATCH_BASE + address);
71 * @address: byte address t
75 cvmx_scratch_read32(uint64_t address) argument
87 cvmx_scratch_read64(uint64_t address) argument
98 cvmx_scratch_write8(uint64_t address, uint64_t value) argument
110 cvmx_scratch_write16(uint64_t address, uint64_t value) argument
122 cvmx_scratch_write32(uint64_t address, uint64_t value) argument
134 cvmx_scratch_write64(uint64_t address, uint64_t value) argument
[all...]
H A Dcvmx-asm.h93 #define CVMX_PREPARE_FOR_STORE(address, offset) \
95 [rbase] "d" (address))
101 #define CVMX_DONT_WRITE_BACK(address, offset) \
103 [rbase] "d" (address))
117 #define CVMX_CACHE(op, address, offset) \
119 : : [rbase] "d" (address) )
121 #define CVMX_CACHE_LCKL2(address, offset) CVMX_CACHE(31, address, offset)
123 #define CVMX_CACHE_WBIL2(address, offset) CVMX_CACHE(23, address, offse
[all...]
/arch/h8300/include/asm/
H A Dtraps.h20 #define VECTOR(address) ((JMP_OP)|((unsigned long)address))
21 #define REDIRECT(address) ((JSR_OP)|((unsigned long)address))
/arch/s390/include/asm/
H A Dio.h24 static inline unsigned long virt_to_phys(volatile void * address) argument
32 : "=a" (real_address) : "a" (address) : "cc");
36 static inline void * phys_to_virt(unsigned long address) argument
38 return (void *) address;
/arch/mips/mm/
H A Dioremap.c19 static inline void remap_area_pte(pte_t * pte, unsigned long address, argument
27 address &= ~PMD_MASK;
28 end = address + size;
31 BUG_ON(address >= end);
39 address += PAGE_SIZE;
42 } while (address && (address < end));
45 static inline int remap_area_pmd(pmd_t * pmd, unsigned long address, argument
50 address &= ~PGDIR_MASK;
51 end = address
67 remap_area_pages(unsigned long address, phys_t phys_addr, phys_t size, unsigned long flags) argument
[all...]
/arch/arm/boot/dts/
H A Dskeleton.dtsi8 #address-cells = <1>;
/arch/sh/include/asm/
H A Dstacktrace.h13 void (*address)(void *data, unsigned long address, int reliable); member in struct:stacktrace_ops
/arch/x86/um/
H A Dfault.c18 int arch_fixup(unsigned long address, struct uml_pt_regs *regs) argument
22 fixup = search_exception_tables(address);
/arch/x86/mm/kmemcheck/
H A Dpte.h8 pte_t *kmemcheck_pte_lookup(unsigned long address);
H A Dshadow.c12 * Return the shadow address for the given address. Returns NULL if the
13 * address is not tracked.
16 * because this function can be called for *any* possible address.
18 void *kmemcheck_shadow_lookup(unsigned long address) argument
23 if (!virt_addr_valid(address))
26 pte = kmemcheck_pte_lookup(address);
30 page = virt_to_page(address);
33 return page->shadow + (address & (PAGE_SIZE - 1));
36 static void mark_shadow(void *address, unsigne argument
77 kmemcheck_mark_unallocated(void *address, unsigned int n) argument
82 kmemcheck_mark_uninitialized(void *address, unsigned int n) argument
91 kmemcheck_mark_initialized(void *address, unsigned int n) argument
97 kmemcheck_mark_freed(void *address, unsigned int n) argument
[all...]
/arch/sh/mm/
H A Dfault_32.c38 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) argument
40 unsigned index = pgd_index(address);
51 pud = pud_offset(pgd, address);
52 pud_k = pud_offset(pgd_k, address);
59 pmd = pmd_offset(pud, address);
60 pmd_k = pmd_offset(pud_k, address);
82 static noinline int vmalloc_fault(unsigned long address) argument
89 if (!(address >= P3SEG && address < P3_ADDR_MAX))
100 pmd_k = vmalloc_sync_one(pgd_k, address);
111 fault_in_kernel_space(unsigned long address) argument
121 do_page_fault(struct pt_regs *regs, unsigned long writeaccess, unsigned long address) argument
319 handle_tlbmiss(struct pt_regs *regs, unsigned long writeaccess, unsigned long address) argument
[all...]
H A Dfault_64.c44 inline void __do_tlb_refill(unsigned long address, argument
58 pteh = neff_sign_extend(address & MMU_VPN_MASK);
83 unsigned long address)
91 dir = pgd_offset_k(address);
93 pud = pud_offset(dir, address);
97 pmd = pmd_offset(pud, address);
101 pte = pte_offset_kernel(pmd, address);
109 __do_tlb_refill(address, textaccess, pte);
117 unsigned long address)
126 page table tree stored for the top half of the address spac
80 handle_vmalloc_fault(struct mm_struct *mm, unsigned long protection_flags, unsigned long long textaccess, unsigned long address) argument
114 handle_tlbmiss(struct mm_struct *mm, unsigned long long protection_flags, unsigned long long textaccess, unsigned long address) argument
207 do_fast_page_fault(unsigned long long ssr_md, unsigned long long expevt, unsigned long address) argument
[all...]
/arch/x86/math-emu/
H A Dget_address.c4 | Get the effective address from an FPU instruction. |
122 static unsigned long vm86_segment(u_char segment, struct address *addr)
137 struct address *addr, long offset)
140 unsigned long base_address, limit, address, seg_top; local
163 address = base_address + offset;
178 (address <= limit) || (address >= seg_top) ? 0 :
179 ((seg_top - address) >= 255 ? 255 : seg_top - address);
182 (address > limi
214 int address = 0; /* Initialized just to stop compiler warnings. */ local
298 int address = 0; /* Default used for mod == 0 */ local
[all...]
/arch/powerpc/boot/dts/fsl/
H A Dpq3-etsec1-0.dtsi36 #address-cells = <1>;
45 local-mac-address = [ 00 00 00 00 00 00 ];
50 #address-cells = <1>;
H A Dpq3-etsec1-1.dtsi36 #address-cells = <1>;
45 local-mac-address = [ 00 00 00 00 00 00 ];
50 #address-cells = <1>;
H A Dpq3-etsec1-2.dtsi36 #address-cells = <1>;
45 local-mac-address = [ 00 00 00 00 00 00 ];
50 #address-cells = <1>;
H A Dpq3-etsec1-3.dtsi36 #address-cells = <1>;
45 local-mac-address = [ 00 00 00 00 00 00 ];
50 #address-cells = <1>;
H A Dqoriq-i2c-0.dtsi36 #address-cells = <1>;
46 #address-cells = <1>;
H A Dqoriq-i2c-1.dtsi36 #address-cells = <1>;
46 #address-cells = <1>;
/arch/h8300/mm/
H A Dfault.c33 asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address, argument
37 printk ("regs->sr=%#x, regs->pc=%#lx, address=%#lx, %ld\n",
38 regs->sr, regs->pc, address, error_code);
45 if ((unsigned long) address < PAGE_SIZE) {
49 printk(" at virtual address %08lx\n",address);
/arch/m68k/include/asm/
H A Dvirtconvert.h18 static inline unsigned long virt_to_phys(void *address) argument
20 return __pa(address);
23 static inline void *phys_to_virt(unsigned long address) argument
25 return __va(address);
28 /* Permanent address of a page. */
41 * IO bus memory addresses are 1:1 with the physical address,
/arch/um/include/shared/
H A Darch.h12 extern int arch_fixup(unsigned long address, struct uml_pt_regs *regs);
/arch/xtensa/mm/
H A Dfault.c30 * This routine handles page faults. It determines the address,
42 unsigned int address = regs->excvaddr; local
53 if (address >= TASK_SIZE && !user_mode(regs))
60 bad_page_fault(regs, address, SIGSEGV);
71 address, exccause, regs->pc, is_write? "w":"", is_exec? "x":"");
75 vma = find_vma(mm, address);
79 if (vma->vm_start <= address)
83 if (expand_stack(vma, address))
107 fault = handle_mm_fault(mm, vma, address, is_write ? FAULT_FLAG_WRITE : 0);
129 current->thread.bad_vaddr = address;
211 bad_page_fault(struct pt_regs *regs, unsigned long address, int sig) argument
[all...]
/arch/x86/mm/
H A Dfault.c165 force_sig_info_fault(int si_signo, int si_code, unsigned long address, argument
174 info.si_addr = (void __user *)address;
188 static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) argument
190 unsigned index = pgd_index(address);
206 pud = pud_offset(pgd, address);
207 pud_k = pud_offset(pgd_k, address);
211 pmd = pmd_offset(pud, address);
212 pmd_k = pmd_offset(pud_k, address);
226 unsigned long address; local
231 for (address
260 vmalloc_fault(unsigned long address) argument
295 check_v8086_mode(struct pt_regs *regs, unsigned long address, struct task_struct *tsk) argument
313 dump_pagetable(unsigned long address) argument
357 vmalloc_fault(unsigned long address) argument
436 check_v8086_mode(struct pt_regs *regs, unsigned long address, struct task_struct *tsk) argument
448 dump_pagetable(unsigned long address) argument
508 is_errata93(struct pt_regs *regs, unsigned long address) argument
540 is_errata100(struct pt_regs *regs, unsigned long address) argument
549 is_f00f_bug(struct pt_regs *regs, unsigned long address) argument
573 show_fault_oops(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
602 pgtable_bad(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
628 no_context(struct pt_regs *regs, unsigned long error_code, unsigned long address, int signal, int si_code) argument
697 show_signal_msg(struct pt_regs *regs, unsigned long error_code, unsigned long address, struct task_struct *tsk) argument
717 __bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, unsigned long address, int si_code) argument
771 bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
778 __bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address, int si_code) argument
793 bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
799 bad_area_access_error(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
807 out_of_memory(struct pt_regs *regs, unsigned long error_code, unsigned long address) argument
820 do_sigbus(struct pt_regs *regs, unsigned long error_code, unsigned long address, unsigned int fault) argument
855 mm_fault_error(struct pt_regs *regs, unsigned long error_code, unsigned long address, unsigned int fault) argument
916 spurious_fault(unsigned long error_code, unsigned long address) argument
993 fault_in_kernel_space(unsigned long address) argument
1008 unsigned long address; local
[all...]

Completed in 689 milliseconds

1234567891011>>