/openbmc/linux/arch/arm/mach-omap2/ |
H A D | sram243x.S | 117 .word OMAP2430_CM_REGADDR(PLL_MOD, CM_CLKSEL2) 119 .word OMAP243X_SDRC_REGADDR(SDRC_DLLA_CTRL) 121 .word OMAP2430_PRCM_VOLTCTRL 123 .word 0xFFFF3FFC 125 .word OMAP2_L4_IO_ADDRESS(OMAP2430_32KSYNCT_BASE + 0x010) 127 .word . - omap243x_sram_ddr_init 212 .word OMAP2430_CM_REGADDR(PLL_MOD, CM_CLKSEL2) 214 .word OMAP243X_SDRC_REGADDR(SDRC_DLLA_CTRL) 216 .word OMAP243X_SDRC_REGADDR(SDRC_RFR_CTRL_0) 218 .word OMAP2430_PRCM_VOLTCTRL [all …]
|
H A D | sram242x.S | 117 .word OMAP2420_CM_REGADDR(PLL_MOD, CM_CLKSEL2) 119 .word OMAP242X_SDRC_REGADDR(SDRC_DLLA_CTRL) 121 .word OMAP2420_PRCM_VOLTCTRL 123 .word 0xFFFF3FFC 125 .word OMAP2_L4_IO_ADDRESS(OMAP2420_32KSYNCT_BASE + 0x010) 127 .word . - omap242x_sram_ddr_init 212 .word OMAP2420_CM_REGADDR(PLL_MOD, CM_CLKSEL2) 214 .word OMAP242X_SDRC_REGADDR(SDRC_DLLA_CTRL) 216 .word OMAP242X_SDRC_REGADDR(SDRC_RFR_CTRL_0) 218 .word OMAP2420_PRCM_VOLTCTRL [all …]
|
/openbmc/linux/arch/alpha/lib/ |
H A D | ev6-stxcpy.S | 59 mskqh t2, a1, t2 # U : detection in the src word (stall) 63 mskql t0, a1, t0 # U : assemble the first output word 129 ldq_u t1, 0(a1) # L : load first src word 130 and a0, 7, t0 # E : take care not to load a word ... 178 stq_u t1, 0(a0) # L : store first output word 180 extql t2, a1, t0 # U : position ho-bits of lo word 181 ldq_u t2, 8(a1) # U : read next high-order source word 203 extqh t2, a1, t1 # U : extract high bits for current word 208 or t0, t1, t1 # E : current dst word now complete 209 ldq_u t2, 0(a1) # L : Latency=3 load high word for next time [all …]
|
/openbmc/u-boot/drivers/ddr/marvell/a38x/ |
H A D | ddr3_training_db.c | 576 u32 word; in pattern_table_get_isi_word() local 579 word = ((i1 == 5) | (i1 == 7)) ? 0xffffffff : 0x0; in pattern_table_get_isi_word() 581 word = (i1 == 6) ? 0xffffffff : 0x0; in pattern_table_get_isi_word() 583 word = ((i0 % 16) > 7) ? ~word : word; in pattern_table_get_isi_word() 585 return word; in pattern_table_get_isi_word() 612 u32 word; in pattern_table_get_isi_word16() local 615 word = (i1 > 1) ? 0x0000ffff : 0x0; in pattern_table_get_isi_word16() 617 word = (i1 == 3) ? 0xffff0000 : 0x0; in pattern_table_get_isi_word16() 619 word = ((i0 % 8) > 3) ? ~word : word; in pattern_table_get_isi_word16() 621 return word; in pattern_table_get_isi_word16()
|
/openbmc/u-boot/tools/ |
H A D | atmelimage.c | 155 static void atmel_print_pmecc_header(const uint32_t word) in atmel_print_pmecc_header() argument 163 val = (word >> 18) & 0x1ff; in atmel_print_pmecc_header() 166 val = (((word >> 16) & 0x3) == 0) ? 512 : 1024; in atmel_print_pmecc_header() 169 if (((word >> 13) & 0x7) <= 2) in atmel_print_pmecc_header() 170 val = (2 << ((word >> 13) & 0x7)); in atmel_print_pmecc_header() 172 val = (12 << (((word >> 13) & 0x7) - 3)); in atmel_print_pmecc_header() 175 val = (word >> 4) & 0x1ff; in atmel_print_pmecc_header() 178 val = (1 << ((word >> 1) & 0x3)); in atmel_print_pmecc_header() 181 printf("\t\tusePmecc: %10i\n", word & 0x1); in atmel_print_pmecc_header()
|
/openbmc/qemu/replay/ |
H A D | replay-internal.c | 63 void replay_put_word(uint16_t word) in replay_put_word() argument 65 replay_put_byte(word >> 8); in replay_put_word() 66 replay_put_byte(word); in replay_put_word() 106 uint16_t word = 0; in replay_get_word() local 108 word = replay_get_byte(); in replay_get_word() 109 word = (word << 8) + replay_get_byte(); in replay_get_word() 112 return word; in replay_get_word()
|
/openbmc/u-boot/arch/x86/include/asm/ |
H A D | bitops.h | 330 static __inline__ unsigned long ffz(unsigned long word) in ffz() argument 333 :"=r" (word) in ffz() 334 :"r" (~word)); in ffz() 335 return word; in ffz() 346 static inline unsigned long __ffs(unsigned long word) in __ffs() argument 349 : "=r" (word) in __ffs() 350 : "rm" (word)); in __ffs() 351 return word; in __ffs()
|
/openbmc/linux/drivers/gpu/ipu-v3/ |
H A D | ipu-cpmem.c | 19 struct ipu_cpmem_word word[2]; member 30 #define IPU_CPMEM_WORD(word, ofs, size) ((((word) * 160 + (ofs)) << 8) | (size)) argument 105 u32 word = (wbs >> 8) / 160; in ipu_ch_param_write_field() local 111 pr_debug("%s %d %d %d\n", __func__, word, bit , size); in ipu_ch_param_write_field() 113 val = readl(&base->word[word].data[i]); in ipu_ch_param_write_field() 116 writel(val, &base->word[word].data[i]); in ipu_ch_param_write_field() 119 val = readl(&base->word[word].data[i + 1]); in ipu_ch_param_write_field() 122 writel(val, &base->word[word].data[i + 1]); in ipu_ch_param_write_field() 131 u32 word = (wbs >> 8) / 160; in ipu_ch_param_read_field() local 137 pr_debug("%s %d %d %d\n", __func__, word, bit , size); in ipu_ch_param_read_field() [all …]
|
/openbmc/linux/arch/mips/vdso/ |
H A D | elf.S | 59 .word 0 /* isa_ext */ 60 .word 0 /* ases */ 61 .word 0 /* flags1 */ 62 .word 0 /* flags2 */
|
/openbmc/linux/fs/jfs/ |
H A D | jfs_dmap.c | 88 static int dbFindBits(u32 word, int l2nb); 99 static int cnttz(u32 word); 453 int word, nbits, nwords; in dbUpdatePMap() local 503 word = dbitno >> L2DBWORD; in dbUpdatePMap() 529 dp->pmap[word] &= in dbUpdatePMap() 532 dp->pmap[word] |= in dbUpdatePMap() 535 word += 1; in dbUpdatePMap() 548 memset(&dp->pmap[word], 0, in dbUpdatePMap() 551 memset(&dp->pmap[word], (int) ONES, in dbUpdatePMap() 554 word += nwords; in dbUpdatePMap() [all …]
|
/openbmc/u-boot/include/ |
H A D | fuse.h | 22 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/arch/arm/boot/compressed/ |
H A D | head.S | 215 .word _magic_sig @ Magic numbers to help the loader 216 .word _magic_start @ absolute load/run zImage address 217 .word _magic_end @ zImage end address 218 .word 0x04030201 @ endianness flag 219 .word 0x45454545 @ another magic number to indicate 220 .word _magic_table @ additional data table 660 LC0: .word LC0 @ r1 661 .word __bss_start @ r2 662 .word _end @ r3 663 .word _got_start @ r11 [all …]
|
/openbmc/u-boot/drivers/fpga/ |
H A D | zynqmppl.c | 51 u32 word = 0; in load_word() local 57 word <<= 8; in load_word() 58 word |= bitc[p]; in load_word() 62 word <<= 8; in load_word() 63 word |= bitc[p]; in load_word() 67 return word; in load_word() 105 u32 word, p = 0; /* possition */ in check_data() local 109 word = load_word(&buf[p], SWAP_NO); in check_data() 110 debug("%s: word %x %x/%px\n", __func__, word, p, &buf[p]); in check_data() 113 if (word == DUMMY_WORD) { in check_data()
|
/openbmc/linux/drivers/pci/ |
H A D | syscall.c | 20 u16 word; in SYSCALL_DEFINE5() local 39 cfg_ret = pci_user_read_config_word(dev, off, &word); in SYSCALL_DEFINE5() 58 err = put_user(word, (u16 __user *)buf); in SYSCALL_DEFINE5() 91 u16 word; in SYSCALL_DEFINE5() local 114 err = get_user(word, (u16 __user *)buf); in SYSCALL_DEFINE5() 117 err = pci_user_write_config_word(dev, off, word); in SYSCALL_DEFINE5()
|
/openbmc/qemu/tests/tcg/hexagon/ |
H A D | dual_stores.c | 41 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()
|
/openbmc/u-boot/doc/imx/common/ |
H A D | imx6.txt | 9 1.1 MAC Address: It is stored in fuse bank 4, with the 32 lsbs in word 2 and the 10 16 msbs in word 3[15:0]. 12 is stored in fuse bank 4, with the 16 lsb in word 3[31:16] and the 32 msbs in 13 word 4. 25 In order to use the fuse API, we need to pass the bank and word values, which 38 word = 2 59 word = 3 74 - The 'bank' and 'word' numbers can be easily obtained from the mx6 Reference
|
/openbmc/linux/drivers/spi/ |
H A D | spi-sh-sci.c | 79 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode0() argument 82 return bitbang_txrx_be_cpha0(spi, nsecs, 0, flags, word, bits); in sh_sci_spi_txrx_mode0() 86 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode1() argument 89 return bitbang_txrx_be_cpha1(spi, nsecs, 0, flags, word, bits); in sh_sci_spi_txrx_mode1() 93 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode2() argument 96 return bitbang_txrx_be_cpha0(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode2() 100 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode3() argument 103 return bitbang_txrx_be_cpha1(spi, nsecs, 1, flags, word, bits); in sh_sci_spi_txrx_mode3()
|
/openbmc/linux/arch/sh/boot/compressed/ |
H A D | head_32.S | 111 .word 0 113 .word 0x0202 ! header version number (>= 0x0105) 115 .word 0 ! default_switch 116 .word 0 ! SETUPSEG 117 .word 0x1000 118 .word 0 ! pointing to kernel version string 123 .word 0x8000 ! size to move, when setup is not
|
/openbmc/u-boot/board/nokia/rx51/ |
H A D | lowlevel_init.S | 10 .word . /* address of section (calculated at compile time) */ 13 .word CONFIG_SYS_TEXT_BASE 16 .word KERNEL_ADDRESS 19 .word KERNEL_MAXSIZE 22 .word KERNEL_OFFSET 25 .word IMAGE_MAXSIZE 28 .word 0x56190527
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | etrap_64.S | 44 .word 661b 45 .word 0x85880000 ! allclean 98 .word 661b 105 .word 661b 116 .word 661b 117 .word 0x87880000 ! otherw 126 .word 661b 140 .word 661b 172 .word 661b 177 .word 661b [all …]
|
/openbmc/linux/arch/powerpc/kernel/ptrace/ |
H A D | ptrace-altivec.c | 48 u32 word; in vr_get() member 61 vrsave.word = target->thread.vrsave; in vr_get() 100 u32 word; in vr_set() member 104 vrsave.word = target->thread.vrsave; in vr_set() 111 target->thread.vrsave = vrsave.word; in vr_set()
|
/openbmc/u-boot/arch/arm/mach-aspeed/ast2500/ |
H A D | platform.S | 176 .word 0x53503C37 @ 0x010 177 .word 0xF858D47F @ 0x014 178 .word 0x00010000 @ 0x018 179 .word 0x00000000 @ 0x020 180 .word 0x00000000 @ 0x024 181 .word 0x02101C60 @ 0x02C 182 .word 0x00000040 @ 0x030 183 .word 0x00000020 @ 0x214 184 .word 0x02001000 @ 0x2E0 185 .word 0x0C000085 @ 0x2E4 [all …]
|
/openbmc/u-boot/post/ |
H A D | post.c | 100 unsigned long word = post_word_load(); in post_bootmode_get() local 103 if ((word & 0xFFFF0000) != BOOTMODE_MAGIC) in post_bootmode_get() 106 bootmode = word & 0x7F; in post_bootmode_get() 109 *last_test = (word >> 8) & 0xFF; in post_bootmode_get() 145 unsigned long word = post_word_load(); in post_bootmode_test_on() local 147 word |= POST_POWERTEST; in post_bootmode_test_on() 149 word |= (last_test & 0xFF) << 8; in post_bootmode_test_on() 151 post_word_store(word); in post_bootmode_test_on() 156 unsigned long word = post_word_load(); in post_bootmode_test_off() local 158 word &= ~POST_POWERTEST; in post_bootmode_test_off() [all …]
|
/openbmc/linux/lib/ |
H A D | sbitmap.c | 85 return (READ_ONCE(map->word) & word_mask) != word_mask; in sbitmap_deferred_clear() 96 atomic_long_andnot(mask, (atomic_long_t *)&map->word); in sbitmap_deferred_clear() 97 BUILD_BUG_ON(sizeof(atomic_long_t) != sizeof(map->word)); in sbitmap_deferred_clear() 158 static int __sbitmap_get_word(unsigned long *word, unsigned long depth, in __sbitmap_get_word() argument 167 nr = find_next_zero_bit(word, depth, hint); in __sbitmap_get_word() 181 if (!test_and_set_bit_lock(nr, word)) in __sbitmap_get_word() 200 nr = __sbitmap_get_word(&map->word, depth, in sbitmap_find_bit_in_word() 312 if (sb->map[i].word & ~sb->map[i].cleared) in sbitmap_any_bit_set() 324 const struct sbitmap_word *word = &sb->map[i]; in __sbitmap_weight() local 328 weight += bitmap_weight(&word->word, word_depth); in __sbitmap_weight() [all …]
|
/openbmc/linux/drivers/net/wireless/ralink/rt2x00/ |
H A D | rt2x00queue.h | 638 static inline __le32 _rt2x00_desc_read(__le32 *desc, const u8 word) in _rt2x00_desc_read() argument 640 return desc[word]; in _rt2x00_desc_read() 649 static inline u32 rt2x00_desc_read(__le32 *desc, const u8 word) in rt2x00_desc_read() argument 651 return le32_to_cpu(_rt2x00_desc_read(desc, word)); in rt2x00_desc_read() 661 static inline void _rt2x00_desc_write(__le32 *desc, const u8 word, __le32 value) in _rt2x00_desc_write() argument 663 desc[word] = value; in _rt2x00_desc_write() 672 static inline void rt2x00_desc_write(__le32 *desc, const u8 word, u32 value) in rt2x00_desc_write() argument 674 _rt2x00_desc_write(desc, word, cpu_to_le32(value)); in rt2x00_desc_write()
|