Home
last modified time | relevance | path

Searched refs:word (Results 101 – 125 of 1260) sorted by relevance

12345678910>>...51

/openbmc/linux/arch/arm/mach-omap2/
H A Dsleep33xx.S202 .word . - am33xx_do_wfi
233 .word v7_flush_dcache_all
235 .word AM33XX_CM_MPU_MPU_CLKCTRL
237 .word AM33XX_CM_PER_EMIF_CLKCTRL
248 .word am33xx_do_wfi
249 .word am33xx_do_wfi_sz
250 .word am33xx_resume_offset
251 .word am33xx_emif_sram_table
252 .word am33xx_pm_ro_sram_data
255 .word cpu_resume - PAGE_OFFSET + 0x80000000
[all …]
H A Dsleep34xx.S318 .word SDRC_POWER_V
326 .word SDRC_DLLA_CTRL_V
496 .word CONTROL_STAT
505 .word 0
510 .word 0x1, 0x00
556 .word SDRC_MR_0_P
558 .word SDRC_EMR2_0_P
560 .word SDRC_MANUAL_0_P
562 .word SDRC_MR_1_P
564 .word SDRC_EMR2_1_P
[all …]
/openbmc/linux/drivers/irqchip/
H A Dirq-bcm6345-l1.c91 unsigned int word) in reg_enable() argument
94 return (1 * intc->n_words - word - 1) * sizeof(u32); in reg_enable()
96 return (0 * intc->n_words + word) * sizeof(u32); in reg_enable()
101 unsigned int word) in reg_status() argument
104 return (2 * intc->n_words - word - 1) * sizeof(u32); in reg_status()
106 return (1 * intc->n_words + word) * sizeof(u32); in reg_status()
145 u32 word = d->hwirq / IRQS_PER_WORD; in __bcm6345_l1_unmask() local
149 intc->cpus[cpu_idx]->enable_cache[word] |= mask; in __bcm6345_l1_unmask()
157 u32 word = d->hwirq / IRQS_PER_WORD; in __bcm6345_l1_mask() local
161 intc->cpus[cpu_idx]->enable_cache[word] &= ~mask; in __bcm6345_l1_mask()
[all …]
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_rtbitmap.c129 b = &bufp[word]; in xfs_rtfind_back()
178 b = &bufp[word]; in xfs_rtfind_back()
224 b = &bufp[word]; in xfs_rtfind_back()
304 b = &bufp[word]; in xfs_rtfind_forw()
351 word = 0; in xfs_rtfind_forw()
396 word = 0; in xfs_rtfind_forw()
609 word = 0; in xfs_rtmodify_range()
649 word = 0; in xfs_rtmodify_range()
802 b = &bufp[word]; in xfs_rtcheck_range()
849 word = 0; in xfs_rtcheck_range()
[all …]
/openbmc/linux/arch/mips/include/asm/octeon/
H A Dcvmx-spinlock.h161 static inline void cvmx_spinlock_bit_lock(uint32_t *word) in cvmx_spinlock_bit_lock() argument
177 [val] "+m"(*word), [tmp] "=&r"(tmp), [sav] "=&r"(sav) in cvmx_spinlock_bit_lock()
193 static inline unsigned int cvmx_spinlock_bit_trylock(uint32_t *word) in cvmx_spinlock_bit_trylock() argument
210 [val] "+m"(*word), [tmp] "=&r"(tmp) in cvmx_spinlock_bit_trylock()
225 static inline void cvmx_spinlock_bit_unlock(uint32_t *word) in cvmx_spinlock_bit_unlock() argument
228 *word &= ~(1UL << 31); in cvmx_spinlock_bit_unlock()
/openbmc/u-boot/arch/arm/mach-mvebu/
H A Defuse.c197 int fuse_read(u32 bank, u32 word, u32 *val) in fuse_read() argument
202 if (bank < EFUSE_LINE_MIN || bank > EFUSE_LINE_MAX || word > 2) in fuse_read()
209 if (word < 2) in fuse_read()
210 *val = fuse_line.dwords.d[word]; in fuse_read()
217 int fuse_sense(u32 bank, u32 word, u32 *val) in fuse_sense() argument
223 int fuse_prog(u32 bank, u32 word, u32 val) in fuse_prog() argument
239 if (bank < EFUSE_LINE_MIN || bank > EFUSE_LINE_MAX || word > 2) in fuse_prog()
242 if (word < 2) { in fuse_prog()
243 prog_val.dwords.d[word] = val; in fuse_prog()
244 valid_prog_words |= (1 << word); in fuse_prog()
[all …]
/openbmc/u-boot/drivers/net/
H A Dsmc91111.c171 word v; in SMC_inw()
185 word _w; in SMC_inb()
193 word _w; in SMC_outb()
207 volatile word *p = (volatile word *)buf; in SMC_insw()
219 volatile word *p = (volatile word *)buf; in SMC_outsw()
668 word status; in smc_rcv()
785 word regval;
887 word mii_reg; in smc_read_phy_register()
891 word phydata; in smc_read_phy_register()
1000 word phydata) in smc_write_phy_register()
[all …]
/openbmc/linux/arch/arm/boot/bootp/
H A Dinit.S76 data: .word initrd_start @ source initrd address
77 .word initrd_phys @ destination initrd address
78 .word initrd_size @ initrd size
80 .word 0x54410001 @ r5 = ATAG_CORE
81 .word 0x54420005 @ r6 = ATAG_INITRD2
82 .word initrd_phys @ r7
83 .word initrd_size @ r8
84 .word params_phys @ r9
/openbmc/u-boot/drivers/misc/
H A Dmxs_ocotp.c273 static int mxs_ocotp_valid(u32 bank, u32 word) in mxs_ocotp_valid() argument
277 if (word > 7) in mxs_ocotp_valid()
285 int fuse_read(u32 bank, u32 word, u32 *val) in fuse_read() argument
289 ret = mxs_ocotp_valid(bank, word); in fuse_read()
293 return mxs_ocotp_read_fuse((bank << 3) | word, val); in fuse_read()
296 int fuse_prog(u32 bank, u32 word, u32 val) in fuse_prog() argument
300 ret = mxs_ocotp_valid(bank, word); in fuse_prog()
304 return mxs_ocotp_write_fuse((bank << 3) | word, val); in fuse_prog()
307 int fuse_sense(u32 bank, u32 word, u32 *val) in fuse_sense() argument
313 int fuse_override(u32 bank, u32 word, u32 val) in fuse_override() argument
/openbmc/u-boot/arch/arm/mach-imx/mx5/
H A Dlowlevel_init.S407 .word DP_MFD_864
408 .word DP_MFN_864
412 .word DP_MFD_800
413 .word DP_MFN_800
417 .word DP_MFD_665
418 .word DP_MFN_665
421 .word DP_MFD_216
422 .word DP_MFN_216
424 .word DP_MFD_400
425 .word DP_MFN_400
[all …]
/openbmc/linux/arch/x86/realmode/rm/
H A Dwakeup_asm.S157 .word 3*8-1 /* Self-descriptor */
159 .word 0
161 .word 0xffff /* 16-bit code segment @ real_mode_base */
163 .word 0x008f /* big real mode */
165 .word 0xffff /* 16-bit data segment @ real_mode_base */
167 .word 0x008f /* big real mode */
176 .word 0xffff /* limit */
178 .word 0
/openbmc/u-boot/board/ms7750se/
H A Dlowlevel_init.S105 .word 0x0e1a /* 12:3:3 */
108 .word 0x00e13 /* 6:2:1 */
110 .word 0x00e23 /* 6:1:1 */
126 RTCSR_D: .word 0xA518 /* RTCSR Write Code A5h Data 18h */
129 RTCNT_D: .word 0xA500 /* RTCNT Write Code A5h Data 00h */
132 RTCOR_D: .word RTCOR_D_VALUE /* Set refresh time (about 15us) */
140 RFCR_D: .word 0xA400 /* RFCR Write Code A4h Data 00h */
/openbmc/linux/drivers/hwmon/pmbus/
H A Dstpddc60.c64 static u16 stpddc60_adjust_linear(u16 word, s16 fixed) in stpddc60_adjust_linear() argument
68 e = ((s16)word) >> 11; in stpddc60_adjust_linear()
69 m = ((s16)((word & 0x7ff) << 5)) >> 5; in stpddc60_adjust_linear()
146 int reg, u16 word) in stpddc60_write_word_data() argument
160 offset = stpddc60_get_offset(ret, word, true); in stpddc60_write_word_data()
170 offset = stpddc60_get_offset(ret, word, false); in stpddc60_write_word_data()
185 word = stpddc60_adjust_linear(word, ret >> 11); in stpddc60_write_word_data()
186 ret = pmbus_write_word_data(client, page, reg, word); in stpddc60_write_word_data()
/openbmc/linux/arch/alpha/lib/
H A Dev6-stxncpy.S71 mskql t0, a1, t0 # U : assemble the first output word
167 ldq_u t1, 0(a1) # L : load first src word
214 stq_u t0, 0(a0) # L : store first output word
224 extql t2, a1, t1 # U : position hi-bits of lo word
250 or t0, t1, t0 # E : current dst word now complete
251 subq a2, 1, a2 # E : decrement word count
255 stq_u t0, -8(a0) # U : save the current word
261 cmpbge zero, t2, t8 # E : test new word for eos
323 ldq_u t2, 8(a1) # L : load final src word
331 $u_eocfin: # end-of-count, final word
[all …]
H A Dstxcpy.S48 mskqh t2, a1, t2 # e0 : detection in the src word
51 mskql t0, a1, t0 # e0 : assemble the first output word
109 ldq_u t1, 0(a1) # e0 : load first src word
110 and a0, 7, t0 # .. e1 : take care not to load a word ...
155 stq_u t1, 0(a0) # e0 : store first output word
157 extql t2, a1, t0 # e0 : position ho-bits of lo word
183 or t0, t1, t1 # e0 : current dst word now complete
184 ldq_u t2, 0(a1) # .. e1 : load high word for next time
185 stq_u t1, -8(a0) # e0 : save the current word
187 cmpbge zero, t2, t8 # e0 : test new word for eos
[all …]
/openbmc/u-boot/arch/arc/include/asm/
H A Darc-bcr.h26 unsigned int word; member
37 unsigned int word; member
48 unsigned int word; member
59 unsigned int word; member
73 unsigned int word; member
/openbmc/linux/arch/arm/mach-tegra/
H A Dsleep-tegra20.S400 .word TEGRA_APB_MISC_BASE + APB_MISC_XM2CFGCPADCTRL
401 .word TEGRA_APB_MISC_BASE + APB_MISC_XM2CFGDPADCTRL
412 .word 0x8
413 .word 0x8
414 .word 0x0
415 .word 0x8
416 .word 0x5500
417 .word 0x08080040
418 .word 0x0
421 .word 0x0
[all …]
/openbmc/u-boot/arch/arm/lib/
H A Dvectors.S86 .word CONFIG_SYS_DV_NOR_BOOT_CFG
111 _reset: .word reset
113 _undefined_instruction: .word undefined_instruction
114 _software_interrupt: .word software_interrupt
115 _prefetch_abort: .word prefetch_abort
116 _data_abort: .word data_abort
117 _not_used: .word not_used
118 _irq: .word irq
119 _fiq: .word fiq
152 .word IRAM_BASE_ADDR + 0x20
[all …]
/openbmc/linux/arch/mips/vdso/
H A Delf.S59 .word 0 /* isa_ext */
60 .word 0 /* ases */
61 .word 0 /* flags1 */
62 .word 0 /* flags2 */
/openbmc/u-boot/include/
H A Dfuse.h22 int fuse_read(u32 bank, u32 word, u32 *val);
23 int fuse_sense(u32 bank, u32 word, u32 *val);
24 int fuse_prog(u32 bank, u32 word, u32 val);
25 int fuse_override(u32 bank, u32 word, u32 val);
/openbmc/linux/Documentation/locking/
H A Drobust-futex-ABI.rst55 The first word in the memory structure at 'head' contains a
62 be called the 'lock word', from that 'lock entry'. The 'lock word'
77 word, is one 'lock word'.
105 long as the 'offset' to the 'lock word' is the same for all
131 TID in the lower 30 bits of the 'lock word'.
146 4) clear the 'list_op_pending' word.
154 4) clear the 'lock_op_pending' word.
165 2) atomically set bit 30 (0x40000000) in the 'lock word'.
175 is not a valid address of a user space word
176 2) the calculated location of the 'lock word' (address plus
[all …]
/openbmc/u-boot/arch/x86/cpu/intel_common/
H A Dcar.S224 .word 0x250, 0x258, 0x259
225 .word 0x268, 0x269, 0x26A
226 .word 0x26B, 0x26C, 0x26D
227 .word 0x26E, 0x26F
229 .word 0x200, 0x201, 0x202, 0x203
230 .word 0x204, 0x205, 0x206, 0x207
231 .word 0x208, 0x209, 0x20A, 0x20B
232 .word 0x20C, 0x20D, 0x20E, 0x20F
233 .word 0x210, 0x211, 0x212, 0x213
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/
H A Dwarmboot_avp.c61 osc_ctrl.word = readl(&clkrst->crc_osc_ctrl); in wb_start()
64 writel(osc_ctrl.word, &clkrst->crc_osc_ctrl); in wb_start()
144 pllx_base.word = 0; in wb_start()
145 pllx_misc.word = 0; in wb_start()
146 scratch3.word = readl(&pmc->pmc_scratch3); in wb_start()
187 writel(pllx_misc.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_misc); in wb_start()
188 writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base); in wb_start()
191 writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base); in wb_start()
193 writel(pllx_base.word, &clkrst->crc_pll_simple[SIMPLE_PLLX].pll_base); in wb_start()
/openbmc/linux/drivers/mtd/maps/
H A Desb2rom.c156 u16 word; in esb2rom_init_one() local
191 if ((word & FWH_8MiB) == FWH_8MiB) in esb2rom_init_one()
193 else if ((word & FWH_7MiB) == FWH_7MiB) in esb2rom_init_one()
195 else if ((word & FWH_6MiB) == FWH_6MiB) in esb2rom_init_one()
197 else if ((word & FWH_5MiB) == FWH_5MiB) in esb2rom_init_one()
199 else if ((word & FWH_4MiB) == FWH_4MiB) in esb2rom_init_one()
201 else if ((word & FWH_3_5MiB) == FWH_3_5MiB) in esb2rom_init_one()
203 else if ((word & FWH_3MiB) == FWH_3MiB) in esb2rom_init_one()
205 else if ((word & FWH_2_5MiB) == FWH_2_5MiB) in esb2rom_init_one()
207 else if ((word & FWH_2MiB) == FWH_2MiB) in esb2rom_init_one()
[all …]
/openbmc/qemu/tests/tcg/hexagon/
H A Ddual_stores.c41 int32_t word; member
49 d.word = ~0; in main()
50 dual_stores(&d.word, &d.byte, 0x12345678, 0xff); in main()
51 check32(d.word, 0x123456ff); in main()

12345678910>>...51