• Home
  • Raw
  • Download

Lines Matching +full:7 +full:b

82  * to the high 7 bits of the EISA address.  This is also needed
120 __EXTERN_INLINE void jensen_local_outb(u8 b, unsigned long addr) in jensen_local_outb() argument
122 *(vuip)((addr << 9) + EISA_VL82C106) = b; in jensen_local_outb()
131 result = *(volatile int *)((addr << 7) + EISA_IO + 0x00); in jensen_bus_inb()
135 __EXTERN_INLINE void jensen_bus_outb(u8 b, unsigned long addr) in jensen_bus_outb() argument
138 *(vuip)((addr << 7) + EISA_IO + 0x00) = b * 0x01010101; in jensen_bus_outb()
163 __EXTERN_INLINE void jensen_outb(u8 b, unsigned long addr) in jensen_outb() argument
166 jensen_local_outb(b, addr); in jensen_outb()
168 jensen_bus_outb(b, addr); in jensen_outb()
176 result = *(volatile int *) ((addr << 7) + EISA_IO + 0x20); in jensen_inw()
184 return *(vuip) ((addr << 7) + EISA_IO + 0x60); in jensen_inl()
190 return *(vulp) ((addr << 7) + EISA_IO + 0x60); in jensen_inq()
193 __EXTERN_INLINE void jensen_outw(u16 b, unsigned long addr) in jensen_outw() argument
196 *(vuip) ((addr << 7) + EISA_IO + 0x20) = b * 0x00010001; in jensen_outw()
200 __EXTERN_INLINE void jensen_outl(u32 b, unsigned long addr) in jensen_outl() argument
203 *(vuip) ((addr << 7) + EISA_IO + 0x60) = b; in jensen_outl()
207 __EXTERN_INLINE void jensen_outq(u64 b, unsigned long addr) in jensen_outq() argument
210 *(vulp) ((addr << 7) + EISA_IO + 0x60) = b; in jensen_outq()
225 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x00); in jensen_readb()
237 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x20); in jensen_readw()
247 return *(vuip) ((addr << 7) + EISA_MEM + 0x60); in jensen_readl()
257 addr = (addr << 7) + EISA_MEM + 0x60; in jensen_readq()
259 r1 = *(vuip) (addr + (4 << 7)); in jensen_readq()
263 __EXTERN_INLINE void jensen_writeb(u8 b, volatile void __iomem *xaddr) in jensen_writeb() argument
268 *(vuip) ((addr << 7) + EISA_MEM + 0x00) = b * 0x01010101; in jensen_writeb()
271 __EXTERN_INLINE void jensen_writew(u16 b, volatile void __iomem *xaddr) in jensen_writew() argument
276 *(vuip) ((addr << 7) + EISA_MEM + 0x20) = b * 0x00010001; in jensen_writew()
279 __EXTERN_INLINE void jensen_writel(u32 b, volatile void __iomem *xaddr) in jensen_writel() argument
284 *(vuip) ((addr << 7) + EISA_MEM + 0x60) = b; in jensen_writel()
287 __EXTERN_INLINE void jensen_writeq(u64 b, volatile void __iomem *xaddr) in jensen_writeq() argument
292 addr = (addr << 7) + EISA_MEM + 0x60; in jensen_writeq()
293 *(vuip) (addr) = b; in jensen_writeq()
294 *(vuip) (addr + (4 << 7)) = b >> 32; in jensen_writeq()
329 __EXTERN_INLINE void jensen_iowrite##NS(u##NS b, void __iomem *xaddr) \
332 jensen_write##OS(b, xaddr - 0x100000000ul); \
334 jensen_out##OS(b, (unsigned long)xaddr); \
337 IOPORT(b, 8)