Searched refs:PCI_OP (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/arch/m68k/cpu/mcf5445x/ |
D | pci.c | 24 #define PCI_OP(rw, size, type, op, mask) \ macro 37 PCI_OP(read, byte, u8 *, in_8, 3) 38 PCI_OP(read, word, u16 *, in_le16, 2) 39 PCI_OP(read, dword, u32 *, in_le32, 0) 40 PCI_OP(write, byte, u8, out_8, 3) 41 PCI_OP(write, word, u16, out_le16, 2) 42 PCI_OP(write, dword, u32, out_le32, 0)
|
/external/u-boot/arch/m68k/cpu/mcf547x_8x/ |
D | pci.c | 24 #define PCI_OP(rw, size, type, op, mask) \ macro 39 PCI_OP(read, byte, u8 *, in_8, 3) 40 PCI_OP(read, word, u16 *, in_le16, 2) 41 PCI_OP(write, byte, u8, out_8, 3) 42 PCI_OP(write, word, u16, out_le16, 2) 43 PCI_OP(write, dword, u32, out_le32, 0)
|
/external/u-boot/drivers/pci/ |
D | pci.c | 42 #define PCI_OP(rw, size, type, error_code) \ macro 56 PCI_OP(read, byte, u8 *, *value = 0xff) 57 PCI_OP(read, word, u16 *, *value = 0xffff) 58 PCI_OP(read, dword, u32 *, *value = 0xffffffff) 59 PCI_OP(write, byte, u8, ) 60 PCI_OP(write, word, u16, ) 61 PCI_OP(write, dword, u32, )
|