Lines Matching +full:0 +full:x60

34 #define EISA_INTA		(IDENT_ADDR + 0x100000000UL)
39 #define EISA_FEPROM0 (IDENT_ADDR + 0x180000000UL)
40 #define EISA_FEPROM1 (IDENT_ADDR + 0x1A0000000UL)
45 #define EISA_VL82C106 (IDENT_ADDR + 0x1C0000000UL)
50 #define EISA_HAE (IDENT_ADDR + 0x1D0000000UL)
55 #define EISA_SYSCTL (IDENT_ADDR + 0x1E0000000UL)
60 #define EISA_SPARE (IDENT_ADDR + 0x1F0000000UL)
65 #define EISA_MEM (IDENT_ADDR + 0x200000000UL)
70 #define EISA_IO (IDENT_ADDR + 0x300000000UL)
84 * hae needs to be set to 0).
90 #define JENSEN_HAE_MASK 0x1ffffff
117 return 0xff & *(vuip)((addr << 9) + EISA_VL82C106); in jensen_local_inb()
130 jensen_set_hae(0); in jensen_bus_inb()
131 result = *(volatile int *)((addr << 7) + EISA_IO + 0x00); in jensen_bus_inb()
137 jensen_set_hae(0); in jensen_bus_outb()
138 *(vuip)((addr << 7) + EISA_IO + 0x00) = b * 0x01010101; in jensen_bus_outb()
149 /* keyboard */ (addr == 0x60 || addr == 0x64) || \
150 /* RTC */ (addr == 0x170 || addr == 0x171) || \
151 /* mb COM2 */ (addr >= 0x2f8 && addr <= 0x2ff) || \
152 /* mb LPT1 */ (addr >= 0x3bc && addr <= 0x3be) || \
153 /* mb COM2 */ (addr >= 0x3f8 && addr <= 0x3ff))
175 jensen_set_hae(0); in jensen_inw()
176 result = *(volatile int *) ((addr << 7) + EISA_IO + 0x20); in jensen_inw()
178 return 0xffffUL & result; in jensen_inw()
183 jensen_set_hae(0); in jensen_inl()
184 return *(vuip) ((addr << 7) + EISA_IO + 0x60); in jensen_inl()
189 jensen_set_hae(0); in jensen_inq()
190 return *(vulp) ((addr << 7) + EISA_IO + 0x60); in jensen_inq()
195 jensen_set_hae(0); in jensen_outw()
196 *(vuip) ((addr << 7) + EISA_IO + 0x20) = b * 0x00010001; in jensen_outw()
202 jensen_set_hae(0); in jensen_outl()
203 *(vuip) ((addr << 7) + EISA_IO + 0x60) = b; in jensen_outl()
209 jensen_set_hae(0); in jensen_outq()
210 *(vulp) ((addr << 7) + EISA_IO + 0x60) = b; in jensen_outq()
225 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x00); in jensen_readb()
227 return 0xffUL & result; in jensen_readb()
237 result = *(volatile int *) ((addr << 7) + EISA_MEM + 0x20); in jensen_readw()
239 return 0xffffUL & result; in jensen_readw()
247 return *(vuip) ((addr << 7) + EISA_MEM + 0x60); in jensen_readl()
257 addr = (addr << 7) + EISA_MEM + 0x60; in jensen_readq()
268 *(vuip) ((addr << 7) + EISA_MEM + 0x00) = b * 0x01010101; in jensen_writeb()
276 *(vuip) ((addr << 7) + EISA_MEM + 0x20) = b * 0x00010001; in jensen_writew()
284 *(vuip) ((addr << 7) + EISA_MEM + 0x60) = b; in jensen_writel()
292 addr = (addr << 7) + EISA_MEM + 0x60; in jensen_writeq()
305 return (void __iomem *)(addr + 0x100000000ul); in jensen_ioremap()
310 return (long)addr >= 0; in jensen_is_ioaddr()
315 return (unsigned long)addr >= 0x100000000ul; in jensen_is_mmio()
325 return jensen_read##OS(xaddr - 0x100000000ul); \
332 jensen_write##OS(b, xaddr - 0x100000000ul); \
349 #define jensen_trivial_rw_bw 0
350 #define jensen_trivial_rw_lq 0
351 #define jensen_trivial_io_bw 0
352 #define jensen_trivial_io_lq 0