1 #ifndef __ALPHA_JENSEN_H
2 #define __ALPHA_JENSEN_H
4 #include <asm/compiler.h>
7 * Defines for the AlphaPC EISA IO and memory address space.
10 /* The Jensen is strange */
14 * NOTE! The memory operations do not set any memory barriers, as it's
15 * not needed for cases like a frame buffer that is essentially memory-like.
16 * You need to do them by hand if the operations depend on ordering.
18 * Similarly, the port IO operations do a "mb" only after a write operation:
19 * if an mb is needed before (as in the case of doing memory mapped IO
20 * first, and then a port IO operation to the same device), it needs to be
23 * After the above has bitten me 100 times, I'll give up and just do the
24 * mb all the time, but right now I'm hoping this will work out. Avoiding
25 * mb's may potentially be a noticeable speed improvement, but I can't
26 * honestly say I've tested it.
28 * Handling interrupts that need to do mb's to synchronize to non-interrupts
29 * is another fun race area. Don't do it (because if you do, I'll have to
30 * do *everything* with interrupts disabled, ugh).
34 * EISA Interrupt Acknowledge address
36 #define EISA_INTA (IDENT_ADDR + 0x100000000UL)
41 #define EISA_FEPROM0 (IDENT_ADDR + 0x180000000UL)
42 #define EISA_FEPROM1 (IDENT_ADDR + 0x1A0000000UL)
45 * VL82C106 base address
47 #define EISA_VL82C106 (IDENT_ADDR + 0x1C0000000UL)
50 * EISA "Host Address Extension" address (bits 25-31 of the EISA address)
52 #define EISA_HAE (IDENT_ADDR + 0x1D0000000UL)
55 * "SYSCTL" register address
57 #define EISA_SYSCTL (IDENT_ADDR + 0x1E0000000UL)
60 * "spare" register address
62 #define EISA_SPARE (IDENT_ADDR + 0x1F0000000UL)
65 * EISA memory address offset
67 #define EISA_MEM (IDENT_ADDR + 0x200000000UL)
70 * EISA IO address offset
72 #define EISA_IO (IDENT_ADDR + 0x300000000UL)
77 #ifndef __EXTERN_INLINE
78 #define __EXTERN_INLINE extern inline
79 #define __IO_EXTERN_INLINE
83 * Change virtual addresses to bus addresses and vv.
85 * NOTE! On the Jensen, the physical address is the same
86 * as the bus address, but this is not necessarily true on
87 * other alpha hardware.
89 __EXTERN_INLINE
unsigned long jensen_virt_to_bus(void * address
)
91 return virt_to_phys(address
);
94 __EXTERN_INLINE
void * jensen_bus_to_virt(unsigned long address
)
96 return phys_to_virt(address
);
101 * Handle the "host address register". This needs to be set
102 * to the high 7 bits of the EISA address. This is also needed
103 * for EISA IO addresses, which are only 16 bits wide (the
104 * hae needs to be set to 0).
106 * HAE isn't needed for the local IO operations, though.
109 #define JENSEN_HAE_ADDRESS EISA_HAE
110 #define JENSEN_HAE_MASK 0x1ffffff
112 __EXTERN_INLINE
void jensen_set_hae(unsigned long addr
)
114 /* hae on the Jensen is bits 31:25 shifted right */
116 if (addr
!= alpha_mv
.hae_cache
)
120 #define vuip volatile unsigned int *
125 * The "local" functions are those that don't go out to the EISA bus,
126 * but instead act on the VL82C106 chip directly.. This is mainly the
127 * keyboard, RTC, printer and first two serial lines..
129 * The local stuff makes for some complications, but it seems to be
130 * gone in the PCI version. I hope I can get DEC suckered^H^H^H^H^H^H^H^H
131 * convinced that I need one of the newer machines.
134 static inline unsigned int jensen_local_inb(unsigned long addr
)
136 return 0xff & *(vuip
)((addr
<< 9) + EISA_VL82C106
);
139 static inline void jensen_local_outb(unsigned char b
, unsigned long addr
)
141 *(vuip
)((addr
<< 9) + EISA_VL82C106
) = b
;
145 static inline unsigned int jensen_bus_inb(unsigned long addr
)
150 result
= *(volatile int *)((addr
<< 7) + EISA_IO
+ 0x00);
151 return __kernel_extbl(result
, addr
& 3);
154 static inline void jensen_bus_outb(unsigned char b
, unsigned long addr
)
157 *(vuip
)((addr
<< 7) + EISA_IO
+ 0x00) = b
* 0x01010101;
162 * It seems gcc is not very good at optimizing away logical
163 * operations that result in operations across inline functions.
164 * Which is why this is a macro.
167 #define jensen_is_local(addr) ( \
168 /* keyboard */ (addr == 0x60 || addr == 0x64) || \
169 /* RTC */ (addr == 0x170 || addr == 0x171) || \
170 /* mb COM2 */ (addr >= 0x2f8 && addr <= 0x2ff) || \
171 /* mb LPT1 */ (addr >= 0x3bc && addr <= 0x3be) || \
172 /* mb COM2 */ (addr >= 0x3f8 && addr <= 0x3ff))
174 __EXTERN_INLINE
unsigned int jensen_inb(unsigned long addr
)
176 if (jensen_is_local(addr
))
177 return jensen_local_inb(addr
);
179 return jensen_bus_inb(addr
);
182 __EXTERN_INLINE
void jensen_outb(unsigned char b
, unsigned long addr
)
184 if (jensen_is_local(addr
))
185 jensen_local_outb(b
, addr
);
187 jensen_bus_outb(b
, addr
);
190 __EXTERN_INLINE
unsigned int jensen_inw(unsigned long addr
)
195 result
= *(volatile int *) ((addr
<< 7) + EISA_IO
+ 0x20);
196 result
>>= (addr
& 3) * 8;
197 return 0xffffUL
& result
;
200 __EXTERN_INLINE
unsigned int jensen_inl(unsigned long addr
)
203 return *(vuip
) ((addr
<< 7) + EISA_IO
+ 0x60);
206 __EXTERN_INLINE
void jensen_outw(unsigned short b
, unsigned long addr
)
209 *(vuip
) ((addr
<< 7) + EISA_IO
+ 0x20) = b
* 0x00010001;
213 __EXTERN_INLINE
void jensen_outl(unsigned int b
, unsigned long addr
)
216 *(vuip
) ((addr
<< 7) + EISA_IO
+ 0x60) = b
;
224 __EXTERN_INLINE
unsigned long jensen_readb(unsigned long addr
)
228 jensen_set_hae(addr
);
229 addr
&= JENSEN_HAE_MASK
;
230 result
= *(volatile int *) ((addr
<< 7) + EISA_MEM
+ 0x00);
231 result
>>= (addr
& 3) * 8;
232 return 0xffUL
& result
;
235 __EXTERN_INLINE
unsigned long jensen_readw(unsigned long addr
)
239 jensen_set_hae(addr
);
240 addr
&= JENSEN_HAE_MASK
;
241 result
= *(volatile int *) ((addr
<< 7) + EISA_MEM
+ 0x20);
242 result
>>= (addr
& 3) * 8;
243 return 0xffffUL
& result
;
246 __EXTERN_INLINE
unsigned long jensen_readl(unsigned long addr
)
248 jensen_set_hae(addr
);
249 addr
&= JENSEN_HAE_MASK
;
250 return *(vuip
) ((addr
<< 7) + EISA_MEM
+ 0x60);
253 __EXTERN_INLINE
unsigned long jensen_readq(unsigned long addr
)
255 unsigned long r0
, r1
;
257 jensen_set_hae(addr
);
258 addr
&= JENSEN_HAE_MASK
;
259 addr
= (addr
<< 7) + EISA_MEM
+ 0x60;
261 r1
= *(vuip
) (addr
+ (4 << 7));
262 return r1
<< 32 | r0
;
265 __EXTERN_INLINE
void jensen_writeb(unsigned char b
, unsigned long addr
)
267 jensen_set_hae(addr
);
268 addr
&= JENSEN_HAE_MASK
;
269 *(vuip
) ((addr
<< 7) + EISA_MEM
+ 0x00) = b
* 0x01010101;
272 __EXTERN_INLINE
void jensen_writew(unsigned short b
, unsigned long addr
)
274 jensen_set_hae(addr
);
275 addr
&= JENSEN_HAE_MASK
;
276 *(vuip
) ((addr
<< 7) + EISA_MEM
+ 0x20) = b
* 0x00010001;
279 __EXTERN_INLINE
void jensen_writel(unsigned int b
, unsigned long addr
)
281 jensen_set_hae(addr
);
282 addr
&= JENSEN_HAE_MASK
;
283 *(vuip
) ((addr
<< 7) + EISA_MEM
+ 0x60) = b
;
286 __EXTERN_INLINE
void jensen_writeq(unsigned long b
, unsigned long addr
)
288 jensen_set_hae(addr
);
289 addr
&= JENSEN_HAE_MASK
;
290 addr
= (addr
<< 7) + EISA_MEM
+ 0x60;
292 *(vuip
) (addr
+ (4 << 7)) = b
>> 32;
295 /* Find the DENSE memory area for a given bus address.
296 Whee, there is none. */
298 __EXTERN_INLINE
unsigned long jensen_dense_mem(unsigned long addr
)
307 #define virt_to_bus jensen_virt_to_bus
308 #define bus_to_virt jensen_bus_to_virt
309 #define __inb jensen_inb
310 #define __inw jensen_inw
311 #define __inl jensen_inl
312 #define __outb jensen_outb
313 #define __outw jensen_outw
314 #define __outl jensen_outl
315 #define __readb jensen_readb
316 #define __readw jensen_readw
317 #define __writeb jensen_writeb
318 #define __writew jensen_writew
319 #define __readl jensen_readl
320 #define __readq jensen_readq
321 #define __writel jensen_writel
322 #define __writeq jensen_writeq
323 #define dense_mem jensen_dense_mem
326 * The above have so much overhead that it probably doesn't make
327 * sense to have them inlined (better icache behaviour).
330 (__builtin_constant_p((port))?__inb(port):_inb(port))
332 #define outb(x, port) \
333 (__builtin_constant_p((port))?__outb((x),(port)):_outb((x),(port)))
335 #endif /* __WANT_IO_DEF */
337 #ifdef __IO_EXTERN_INLINE
338 #undef __EXTERN_INLINE
339 #undef __IO_EXTERN_INLINE
342 #endif /* __KERNEL__ */
344 #endif /* __ALPHA_JENSEN_H */