/arch/arm/mach-netx/include/mach/ |
D | pfifo.h | 24 static inline int pfifo_push(int no, unsigned int pointer) in pfifo_push() argument 26 writel(pointer, NETX_PFIFO_BASE(no)); in pfifo_push() 30 static inline unsigned int pfifo_pop(int no) in pfifo_pop() argument 32 return readl(NETX_PFIFO_BASE(no)); in pfifo_pop() 35 static inline int pfifo_fill_level(int no) in pfifo_fill_level() argument 38 return readl(NETX_PFIFO_FILL_LEVEL(no)); in pfifo_fill_level() 41 static inline int pfifo_full(int no) in pfifo_full() argument 43 return readl(NETX_PFIFO_FULL) & (1<<no) ? 1 : 0; in pfifo_full() 46 static inline int pfifo_empty(int no) in pfifo_empty() argument 48 return readl(NETX_PFIFO_EMPTY) & (1<<no) ? 1 : 0; in pfifo_empty()
|
D | netx-regs.h | 44 #define NETX_OFS_XMAC(no) (0x60000 + (no) * 0x1000) argument 50 #define NETX_OFS_XPEC(no) (0x70000 + (no) * 0x4000) argument 74 #define NETX_PA_XMAC(no) (NETX_IO_PHYS + NETX_OFS_XMAC(no)) argument 80 #define NETX_PA_XPEC(no) (NETX_IO_PHYS + NETX_OFS_XPEC(no)) argument 104 #define NETX_VA_XMAC(no) (NETX_IO_VIRT + NETX_OFS_XMAC(no)) argument 110 #define NETX_VA_XPEC(no) (NETX_IO_VIRT + NETX_OFS_XPEC(no)) argument
|
D | hardware.h | 30 #define SRAM_INTERNAL_PHYS(no) ((no) * 0x8000) argument
|
/arch/sh/kernel/cpu/sh2a/ |
D | ex.S | 19 ! exception no 0 to 255 21 no = 0 define 25 mov #no,r1 26 no = no + 1 define 38 ! exception no 256 to 511 40 no = 0 define 44 mov #no,r1 45 no = no + 1 define
|
/arch/cris/arch-v10/mm/ |
D | tlb.c | 51 *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no ) | in flush_tlb_all() 52 IO_STATE(R_TLB_LO, valid, no ) | in flush_tlb_all() 53 IO_STATE(R_TLB_LO, kernel,no ) | in flush_tlb_all() 54 IO_STATE(R_TLB_LO, we, no ) | in flush_tlb_all() 87 *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no ) | in flush_tlb_mm() 88 IO_STATE(R_TLB_LO, valid, no ) | in flush_tlb_mm() 89 IO_STATE(R_TLB_LO, kernel,no ) | in flush_tlb_mm() 90 IO_STATE(R_TLB_LO, we, no ) | in flush_tlb_mm() 127 *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no ) | in flush_tlb_page() 128 IO_STATE(R_TLB_LO, valid, no ) | in flush_tlb_page() [all …]
|
/arch/sh/kernel/cpu/sh2/ |
D | ex.S | 19 no = 0 define 23 mov #no,r1 24 no = no + 1 define
|
/arch/arm/plat-samsung/ |
D | init.c | 111 struct s3c2410_uartcfg *cfg, int no) in s3c24xx_init_uartdevs() argument 119 memcpy(cfgptr, cfg, sizeof(struct s3c2410_uartcfg) * no); in s3c24xx_init_uartdevs() 121 for (uart = 0; uart < no; uart++, cfg++, cfgptr++) { in s3c24xx_init_uartdevs() 135 nr_uarts = no; in s3c24xx_init_uartdevs() 139 void __init s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no) in s3c24xx_init_uarts() argument 147 (cpu->init_uarts)(cfg, no); in s3c24xx_init_uarts()
|
/arch/arm/mach-s3c24xx/ |
D | common.h | 23 extern void s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no); 37 extern void s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no); 51 extern void s3c2416_init_uarts(struct s3c2410_uartcfg *cfg, int no); 66 extern void s3c244x_init_uarts(struct s3c2410_uartcfg *cfg, int no); 94 extern void s3c2443_init_uarts(struct s3c2410_uartcfg *cfg, int no);
|
D | s3c2443.c | 82 void __init s3c2443_init_uarts(struct s3c2410_uartcfg *cfg, int no) in s3c2443_init_uarts() argument 84 s3c24xx_init_uartdevs("s3c2440-uart", s3c2410_uart_resources, cfg, no); in s3c2443_init_uarts()
|
D | s3c2416.c | 110 void __init s3c2416_init_uarts(struct s3c2410_uartcfg *cfg, int no) in s3c2416_init_uarts() argument 112 s3c24xx_init_uartdevs("s3c2440-uart", s3c2410_uart_resources, cfg, no); in s3c2416_init_uarts()
|
D | s3c2410.c | 64 void __init s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no) in s3c2410_init_uarts() argument 66 s3c24xx_init_uartdevs("s3c2410-uart", s3c2410_uart_resources, cfg, no); in s3c2410_init_uarts()
|
D | s3c244x.c | 57 void __init s3c244x_init_uarts(struct s3c2410_uartcfg *cfg, int no) in s3c244x_init_uarts() argument 59 s3c24xx_init_uartdevs("s3c2440-uart", s3c2410_uart_resources, cfg, no); in s3c244x_init_uarts()
|
/arch/arm/mach-netx/ |
D | xc.c | 85 if (adr >= NETX_PA_XMAC(x->no) && in xc_check_ptr() 86 adr + size < NETX_PA_XMAC(x->no) + XMAC_MEM_SIZE) in xc_check_ptr() 89 if (adr >= NETX_PA_XPEC(x->no) && in xc_check_ptr() 90 adr + size < NETX_PA_XPEC(x->no) + XPEC_MEM_SIZE) in xc_check_ptr() 126 sprintf(name, "xc%d.bin", x->no); in xc_request_firmware() 215 x->no = xcno; in request_xc() 238 int xcno = x->no; in free_xc() 246 xc_in_use &= ~(1 << x->no); in free_xc()
|
/arch/mips/boot/dts/brcm/ |
D | bcm7435.dtsi | 176 no-big-frame-no; 195 no-big-frame-no; 214 no-big-frame-no; 233 no-big-frame-no;
|
D | bcm7425.dtsi | 162 no-big-frame-no; 181 no-big-frame-no; 200 no-big-frame-no; 219 no-big-frame-no;
|
/arch/arm/mach-s3c64xx/ |
D | dev-backlight.c | 36 ret = gpio_request(bl_gpio_info->no, "Backlight"); in samsung_bl_init() 43 s3c_gpio_cfgpin(bl_gpio_info->no, bl_gpio_info->func); in samsung_bl_init() 55 s3c_gpio_cfgpin(bl_gpio_info->no, S3C_GPIO_OUTPUT); in samsung_bl_exit() 56 gpio_free(bl_gpio_info->no); in samsung_bl_exit()
|
/arch/xtensa/kernel/ |
D | mxhead.S | 30 .begin no-absolute-literals 62 .end no-absolute-literals
|
/arch/x86/kernel/ |
D | kdebugfs.c | 78 create_setup_data_node(struct dentry *parent, int no, in create_setup_data_node() argument 84 sprintf(buf, "%d", no); in create_setup_data_node() 114 int no = 0; in create_setup_data_nodes() local 143 error = create_setup_data_node(d, no, node); in create_setup_data_nodes() 150 no++; in create_setup_data_nodes()
|
/arch/arm/lib/ |
D | findbit.S | 37 3: mov r0, r1 @ no free bits 56 orr r2, r2, #7 @ if zero, then no bits here 78 3: mov r0, r1 @ no free bits 96 orr r2, r2, #7 @ if zero, then no bits here 116 3: mov r0, r1 @ no free bits 132 orr r2, r2, #7 @ if zero, then no bits here 150 3: mov r0, r1 @ no free bits 165 orr r2, r2, #7 @ if zero, then no bits here
|
/arch/x86/mm/ |
D | pf_in.c | 252 static unsigned char *get_reg_w8(int no, int rex, struct pt_regs *regs) in get_reg_w8() argument 256 switch (no) { in get_reg_w8() 307 switch (no) { in get_reg_w8() 324 switch (no) { in get_reg_w8() 343 printk(KERN_ERR "mmiotrace: Error reg no# %d\n", no); in get_reg_w8() 348 static unsigned long *get_reg_w32(int no, struct pt_regs *regs) in get_reg_w32() argument 352 switch (no) { in get_reg_w32() 404 printk(KERN_ERR "mmiotrace: Error reg no# %d\n", no); in get_reg_w32()
|
/arch/unicore32/lib/ |
D | findbit.S | 30 3: mov r0, r1 @ no free bits 48 or r2, r2, #7 @ if zero, then no bits here 68 3: mov r0, r1 @ no free bits 85 or r2, r2, #7 @ if zero, then no bits here
|
/arch/arm64/kernel/ |
D | sys_compat.c | 69 unsigned int no = regs->regs[7]; in compat_arm_syscall() local 71 switch (no) { in compat_arm_syscall()
|
/arch/arm/plat-samsung/include/plat/ |
D | cpu.h | 102 void (*init_uarts)(struct s3c2410_uartcfg *cfg, int no); 119 extern void s3c24xx_init_uarts(struct s3c2410_uartcfg *cfg, int no); 125 struct s3c2410_uartcfg *cfg, int no);
|
/arch/xtensa/boot/boot-elf/ |
D | bootstrap.S | 33 .begin no-absolute-literals 65 .end no-absolute-literals
|
/arch/arm/mm/ |
D | abort-lv4t.S | 24 mov r0, #0 @ clear r0, r1 (no FSR/FAR) 59 beq do_DataAbort @ no writeback -> no fixup 71 and r6, r6, #15 @ r6 = no. of registers to transfer. 82 beq do_DataAbort @ No writeback -> no fixup 100 beq do_DataAbort @ no writeback -> no fixup 103 beq do_DataAbort @ zero -> no fixup 114 beq do_DataAbort @ no writeback -> no fixup
|