Home
last modified time | relevance | path

Searched refs:dword (Results 1 – 25 of 41) sorted by relevance

12

/openbmc/u-boot/drivers/net/
H A Dsmc91111.h46 typedef unsigned long int dword; typedef
71 #define SMC_inl(a,r) (*((volatile dword *)((a)->iobase+((r)<<1))))
80 #define SMC_inl(a,r) (*((volatile dword *)((a)->iobase+(r))))
91 #define SMC_outl(a,d,r) (*((volatile dword *)((a)->iobase+(r<<1))) = d)
94 #define SMC_outl(a,d,r) (*((volatile dword *)((a)->iobase+(r))) = d)
106 dword *__b2; \
107 __b2 = (dword *) b; \
122 dword *__b2; \
123 __b2 = (dword *) b; \
153 ({ dword _x = (_x_); \
[all …]
H A Dlan91c96.h40 typedef unsigned long int dword; typedef
64 #define SMC_inl(edev, r) (*((volatile dword *)SMCREG(edev, r)))
73 #define SMC_outl(edev, d, r) (*((volatile dword *)SMCREG(edev, r)) = d)
83 dword *__b2; \
84 __b2 = (dword *) b; \
101 dword *__b2; \
102 __b2 = (dword *) b; \
H A Dsmc91111.c169 static inline word SMC_inw(struct eth_device *dev, dword offset) in SMC_inw()
177 static inline void SMC_outw(struct eth_device *dev, word value, dword offset) in SMC_outw()
183 static inline byte SMC_inb(struct eth_device *dev, dword offset) in SMC_inb()
187 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_inb()
191 static inline void SMC_outb(struct eth_device *dev, byte value, dword offset) in SMC_outb()
195 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_outb()
197 *((volatile word*)(dev->iobase + (offset & ~((dword)1)))) = in SMC_outb()
204 static inline void SMC_insw(struct eth_device *dev, dword offset, in SMC_insw()
205 volatile uchar* buf, dword len) in SMC_insw()
216 static inline void SMC_outsw(struct eth_device *dev, dword offset, in SMC_outsw()
[all …]
H A Dlan91c96.c523 dword stat_len; in smc_rcv()
578 dword leftover = SMC_inl(dev, LAN91C96_DATA_HIGH); in smc_rcv()
/openbmc/u-boot/arch/x86/cpu/broadwell/
H A Dme.c14 u32 dword; in me_read_dword_ptr() local
16 dm_pci_read_config32(dev, offset, &dword); in me_read_dword_ptr()
17 memcpy(ptr, &dword, sizeof(dword)); in me_read_dword_ptr()
/openbmc/qemu/replay/
H A Dreplay-internal.c69 void replay_put_dword(uint32_t dword) in replay_put_dword() argument
71 replay_put_word(dword >> 16); in replay_put_dword()
72 replay_put_word(dword); in replay_put_dword()
117 uint32_t dword = 0; in replay_get_dword() local
119 dword = replay_get_word(); in replay_get_dword()
120 dword = (dword << 16) + replay_get_word(); in replay_get_dword()
123 return dword; in replay_get_dword()
H A Dreplay-internal.h112 void replay_put_dword(uint32_t dword);
/openbmc/u-boot/arch/x86/include/asm/
H A Dme_common.h358 u32 dword; in pci_read_dword_ptr() local
360 dm_pci_read_config32(me_dev, offset, &dword); in pci_read_dword_ptr()
361 memcpy(ptr, &dword, sizeof(dword)); in pci_read_dword_ptr()
367 u32 dword = 0; in pci_write_dword_ptr() local
369 memcpy(&dword, ptr, sizeof(dword)); in pci_write_dword_ptr()
370 dm_pci_write_config32(me_dev, offset, dword); in pci_write_dword_ptr()
/openbmc/u-boot/arch/x86/lib/
H A Dbios_interrupts.c112 u32 dword; in int1a_handler() local
185 dm_pci_read_config32(dev, reg, &dword); in int1a_handler()
186 M.x86.R_ECX = dword; in int1a_handler()
197 dword = M.x86.R_ECX; in int1a_handler()
198 dm_pci_write_config32(dev, reg, dword); in int1a_handler()
/openbmc/u-boot/drivers/pci/
H A Dpci_compat.c26 PCI_HOSE_OP(read, dword, 32, u32 *)
29 PCI_HOSE_OP(write, dword, 32, u32)
H A Dpci_indirect.c52 INDIRECT_PCI_OP(read, dword, u32 *, in_le32, 0)
55 INDIRECT_PCI_OP(write, dword, u32, out_le32, 0)
H A Dpci.c37 PCI_HOSE_OP(read, dword, u32 *)
40 PCI_HOSE_OP(write, dword, u32)
58 PCI_OP(read, dword, u32 *, *value = 0xffffffff)
61 PCI_OP(write, dword, u32, )
/openbmc/u-boot/board/micronas/vct/
H A Dsmc_eeprom.c68 #define HIWORD(dword) ((u16)(((u32)(dword)) >> 16)) argument
69 #define LOWORD(dword) ((u16)(((u32)(dword)) & 0x0000FFFFUL)) argument
/openbmc/u-boot/board/qualcomm/dragonboard410c/
H A Dlowlevel_init.S12 .dword 0x0
/openbmc/u-boot/arch/arm/mach-tegra/tegra186/
H A Dnvtboot_ll.S14 .dword 0
/openbmc/u-boot/board/raspberrypi/rpi/
H A Dlowlevel_init.S13 .dword 0x0
/openbmc/qemu/tests/tcg/riscv64/
H A Dtest-noc.S30 .dword pass
/openbmc/u-boot/arch/m68k/cpu/mcf5445x/
H A Dpci.c39 PCI_OP(read, dword, u32 *, in_le32, 0)
42 PCI_OP(write, dword, u32, out_le32, 0)
/openbmc/qemu/hw/vfio/
H A Dregion.c45 uint32_t dword; in vfio_region_write() member
58 buf.dword = cpu_to_le32(data); in vfio_region_write()
98 uint32_t dword; in vfio_region_read() member
119 data = le32_to_cpu(buf.dword); in vfio_region_read()
/openbmc/u-boot/arch/mips/include/asm/
H A Dasm.h343 #define LONG .dword
397 #define PTR .dword
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/
H A Dpcie.c101 PCIE_OP(read, dword, u32 *, in_le32) in PCIE_OP()
104 PCIE_OP(write, dword, u32, out_le32) in PCIE_OP()
/openbmc/u-boot/arch/arm/dts/
H A Dimx6sl.dtsi769 tx-burst-size-dword = <0x10>;
770 rx-burst-size-dword = <0x10>;
782 tx-burst-size-dword = <0x10>;
783 rx-burst-size-dword = <0x10>;
795 tx-burst-size-dword = <0x10>;
796 rx-burst-size-dword = <0x10>;
H A Dimx6qdl.dtsi960 tx-burst-size-dword = <0x10>;
961 rx-burst-size-dword = <0x10>;
974 tx-burst-size-dword = <0x10>;
975 rx-burst-size-dword = <0x10>;
987 tx-burst-size-dword = <0x10>;
988 rx-burst-size-dword = <0x10>;
1000 tx-burst-size-dword = <0x10>;
1001 rx-burst-size-dword = <0x10>;
/openbmc/u-boot/arch/m68k/cpu/mcf547x_8x/
H A Dpci.c43 PCI_OP(write, dword, u32, out_le32, 0)
/openbmc/u-boot/arch/x86/include/asm/acpi/
H A Ddebug.asl92 /* DBGD - Send a hex dword */

12