~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/include/asm-alpha/core_tsunami.h

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #ifndef __ALPHA_TSUNAMI__H__
  2 #define __ALPHA_TSUNAMI__H__
  3 
  4 #include <linux/types.h>
  5 #include <asm/compiler.h>
  6 
  7 /*
  8  * TSUNAMI/TYPHOON are the internal names for the core logic chipset which
  9  * provides memory controller and PCI access for the 21264 based systems.
 10  *
 11  * This file is based on:
 12  *
 13  * Tsunami System Programmers Manual
 14  * Preliminary, Chapters 2-5
 15  *
 16  */
 17 
 18 /* XXX: Do we need to conditionalize on this?  */
 19 #ifdef USE_48_BIT_KSEG
 20 #define TS_BIAS 0x80000000000UL
 21 #else
 22 #define TS_BIAS 0x10000000000UL
 23 #endif
 24 
 25 /*
 26  * CChip, DChip, and PChip registers
 27  */
 28 
 29 typedef struct {
 30         volatile unsigned long csr __attribute__((aligned(64)));
 31 } tsunami_64;
 32 
 33 typedef struct {
 34         tsunami_64      csc;
 35         tsunami_64      mtr;
 36         tsunami_64      misc;
 37         tsunami_64      mpd;
 38         tsunami_64      aar0;
 39         tsunami_64      aar1;
 40         tsunami_64      aar2;
 41         tsunami_64      aar3;
 42         tsunami_64      dim0;
 43         tsunami_64      dim1;
 44         tsunami_64      dir0;
 45         tsunami_64      dir1;
 46         tsunami_64      drir;
 47         tsunami_64      prben;
 48         tsunami_64      iic;    /* a.k.a. iic0 */
 49         tsunami_64      wdr;    /* a.k.a. iic1 */
 50         tsunami_64      mpr0;
 51         tsunami_64      mpr1;
 52         tsunami_64      mpr2;
 53         tsunami_64      mpr3;
 54         tsunami_64      mctl;
 55         tsunami_64      __pad1;
 56         tsunami_64      ttr;
 57         tsunami_64      tdr;
 58         tsunami_64      dim2;
 59         tsunami_64      dim3;
 60         tsunami_64      dir2;
 61         tsunami_64      dir3;
 62         tsunami_64      iic2;
 63         tsunami_64      iic3;
 64 } tsunami_cchip;
 65 
 66 typedef struct {
 67         tsunami_64      dsc;
 68         tsunami_64      str;
 69         tsunami_64      drev;
 70 } tsunami_dchip;
 71 
 72 typedef struct {
 73         tsunami_64      wsba[4];
 74         tsunami_64      wsm[4];
 75         tsunami_64      tba[4];
 76         tsunami_64      pctl;
 77         tsunami_64      plat;
 78         tsunami_64      reserved;
 79         tsunami_64      perror;
 80         tsunami_64      perrmask;
 81         tsunami_64      perrset;
 82         tsunami_64      tlbiv;
 83         tsunami_64      tlbia;
 84         tsunami_64      pmonctl;
 85         tsunami_64      pmoncnt;
 86 } tsunami_pchip;
 87 
 88 #define TSUNAMI_cchip  ((tsunami_cchip *)(IDENT_ADDR+TS_BIAS+0x1A0000000UL))
 89 #define TSUNAMI_dchip  ((tsunami_dchip *)(IDENT_ADDR+TS_BIAS+0x1B0000800UL))
 90 #define TSUNAMI_pchip0 ((tsunami_pchip *)(IDENT_ADDR+TS_BIAS+0x180000000UL))
 91 #define TSUNAMI_pchip1 ((tsunami_pchip *)(IDENT_ADDR+TS_BIAS+0x380000000UL))
 92 extern int TSUNAMI_bootcpu;
 93 
 94 /*
 95  * TSUNAMI Pchip Error register.
 96  */
 97 
 98 #define perror_m_lost 0x1
 99 #define perror_m_serr 0x2
100 #define perror_m_perr 0x4
101 #define perror_m_dcrto 0x8
102 #define perror_m_sge 0x10
103 #define perror_m_ape 0x20
104 #define perror_m_ta 0x40
105 #define perror_m_rdpe 0x80
106 #define perror_m_nds 0x100
107 #define perror_m_rto 0x200
108 #define perror_m_uecc 0x400
109 #define perror_m_cre 0x800
110 #define perror_m_addrl 0xFFFFFFFF0000UL
111 #define perror_m_addrh 0x7000000000000UL
112 #define perror_m_cmd 0xF0000000000000UL
113 #define perror_m_syn 0xFF00000000000000UL
114 union TPchipPERROR {   
115         struct  {
116                 unsigned int perror_v_lost : 1;
117                 unsigned perror_v_serr : 1;
118                 unsigned perror_v_perr : 1;
119                 unsigned perror_v_dcrto : 1;
120                 unsigned perror_v_sge : 1;
121                 unsigned perror_v_ape : 1;
122                 unsigned perror_v_ta : 1;
123                 unsigned perror_v_rdpe : 1;
124                 unsigned perror_v_nds : 1;
125                 unsigned perror_v_rto : 1;
126                 unsigned perror_v_uecc : 1;
127                 unsigned perror_v_cre : 1;                 
128                 unsigned perror_v_rsvd1 : 4;
129                 unsigned perror_v_addrl : 32;
130                 unsigned perror_v_addrh : 3;
131                 unsigned perror_v_rsvd2 : 1;
132                 unsigned perror_v_cmd : 4;
133                 unsigned perror_v_syn : 8;
134         } perror_r_bits;
135         int perror_q_whole [2];
136 };                       
137 
138 /*
139  * TSUNAMI Pchip Window Space Base Address register.
140  */
141 #define wsba_m_ena 0x1                
142 #define wsba_m_sg 0x2
143 #define wsba_m_ptp 0x4
144 #define wsba_m_addr 0xFFF00000  
145 #define wmask_k_sz1gb 0x3FF00000                   
146 union TPchipWSBA {
147         struct  {
148                 unsigned wsba_v_ena : 1;
149                 unsigned wsba_v_sg : 1;
150                 unsigned wsba_v_ptp : 1;
151                 unsigned wsba_v_rsvd1 : 17;
152                 unsigned wsba_v_addr : 12;
153                 unsigned wsba_v_rsvd2 : 32;
154         } wsba_r_bits;
155         int wsba_q_whole [2];
156 };
157 
158 /*
159  * TSUNAMI Pchip Control Register
160  */
161 #define pctl_m_fdsc 0x1
162 #define pctl_m_fbtb 0x2
163 #define pctl_m_thdis 0x4
164 #define pctl_m_chaindis 0x8
165 #define pctl_m_tgtlat 0x10
166 #define pctl_m_hole 0x20
167 #define pctl_m_mwin 0x40
168 #define pctl_m_arbena 0x80
169 #define pctl_m_prigrp 0x7F00
170 #define pctl_m_ppri 0x8000
171 #define pctl_m_rsvd1 0x30000
172 #define pctl_m_eccen 0x40000
173 #define pctl_m_padm 0x80000
174 #define pctl_m_cdqmax 0xF00000
175 #define pctl_m_rev 0xFF000000
176 #define pctl_m_crqmax 0xF00000000UL
177 #define pctl_m_ptpmax 0xF000000000UL
178 #define pctl_m_pclkx 0x30000000000UL
179 #define pctl_m_fdsdis 0x40000000000UL
180 #define pctl_m_fdwdis 0x80000000000UL
181 #define pctl_m_ptevrfy 0x100000000000UL
182 #define pctl_m_rpp 0x200000000000UL
183 #define pctl_m_pid 0xC00000000000UL
184 #define pctl_m_rsvd2 0xFFFF000000000000UL
185 
186 union TPchipPCTL {
187         struct {
188                 unsigned pctl_v_fdsc : 1;
189                 unsigned pctl_v_fbtb : 1;
190                 unsigned pctl_v_thdis : 1;
191                 unsigned pctl_v_chaindis : 1;
192                 unsigned pctl_v_tgtlat : 1;
193                 unsigned pctl_v_hole : 1;
194                 unsigned pctl_v_mwin : 1;
195                 unsigned pctl_v_arbena : 1;
196                 unsigned pctl_v_prigrp : 7;
197                 unsigned pctl_v_ppri : 1;
198                 unsigned pctl_v_rsvd1 : 2;
199                 unsigned pctl_v_eccen : 1;
200                 unsigned pctl_v_padm : 1;
201                 unsigned pctl_v_cdqmax : 4;
202                 unsigned pctl_v_rev : 8;
203                 unsigned pctl_v_crqmax : 4;
204                 unsigned pctl_v_ptpmax : 4;
205                 unsigned pctl_v_pclkx : 2;
206                 unsigned pctl_v_fdsdis : 1;
207                 unsigned pctl_v_fdwdis : 1;
208                 unsigned pctl_v_ptevrfy : 1;
209                 unsigned pctl_v_rpp : 1;
210                 unsigned pctl_v_pid : 2;
211                 unsigned pctl_v_rsvd2 : 16;
212         } pctl_r_bits;
213         int pctl_q_whole [2];
214 };
215 
216 /*
217  * TSUNAMI Pchip Error Mask Register.
218  */
219 #define perrmask_m_lost 0x1
220 #define perrmask_m_serr 0x2
221 #define perrmask_m_perr 0x4
222 #define perrmask_m_dcrto 0x8
223 #define perrmask_m_sge 0x10
224 #define perrmask_m_ape 0x20
225 #define perrmask_m_ta 0x40
226 #define perrmask_m_rdpe 0x80
227 #define perrmask_m_nds 0x100
228 #define perrmask_m_rto 0x200
229 #define perrmask_m_uecc 0x400
230 #define perrmask_m_cre 0x800
231 #define perrmask_m_rsvd 0xFFFFFFFFFFFFF000UL
232 union TPchipPERRMASK {   
233         struct  {
234                 unsigned int perrmask_v_lost : 1;
235                 unsigned perrmask_v_serr : 1;
236                 unsigned perrmask_v_perr : 1;
237                 unsigned perrmask_v_dcrto : 1;
238                 unsigned perrmask_v_sge : 1;
239                 unsigned perrmask_v_ape : 1;
240                 unsigned perrmask_v_ta : 1;
241                 unsigned perrmask_v_rdpe : 1;
242                 unsigned perrmask_v_nds : 1;
243                 unsigned perrmask_v_rto : 1;
244                 unsigned perrmask_v_uecc : 1;
245                 unsigned perrmask_v_cre : 1;                 
246                 unsigned perrmask_v_rsvd1 : 20;
247                 unsigned perrmask_v_rsvd2 : 32;
248         } perrmask_r_bits;
249         int perrmask_q_whole [2];
250 };                       
251 
252 /*
253  * Memory spaces:
254  */
255 #define TSUNAMI_HOSE(h)         (((unsigned long)(h)) << 33)
256 #define TSUNAMI_BASE            (IDENT_ADDR + TS_BIAS)
257 
258 #define TSUNAMI_MEM(h)          (TSUNAMI_BASE+TSUNAMI_HOSE(h) + 0x000000000UL)
259 #define _TSUNAMI_IACK_SC(h)     (TSUNAMI_BASE+TSUNAMI_HOSE(h) + 0x1F8000000UL)
260 #define TSUNAMI_IO(h)           (TSUNAMI_BASE+TSUNAMI_HOSE(h) + 0x1FC000000UL)
261 #define TSUNAMI_CONF(h)         (TSUNAMI_BASE+TSUNAMI_HOSE(h) + 0x1FE000000UL)
262 
263 #define TSUNAMI_IACK_SC         _TSUNAMI_IACK_SC(0) /* hack! */
264 
265 
266 /* 
267  * The canonical non-remaped I/O and MEM addresses have these values
268  * subtracted out.  This is arranged so that folks manipulating ISA
269  * devices can use their familiar numbers and have them map to bus 0.
270  */
271 
272 #define TSUNAMI_IO_BIAS          TSUNAMI_IO(0)
273 #define TSUNAMI_MEM_BIAS         TSUNAMI_MEM(0)
274 
275 /* The IO address space is larger than 0xffff */
276 #define TSUNAMI_IO_SPACE        (TSUNAMI_CONF(0) - TSUNAMI_IO(0))
277 
278 /*
279  * Data structure for handling TSUNAMI machine checks:
280  */
281 struct el_TSUNAMI_sysdata_mcheck {
282 };
283 
284 
285 #ifdef __KERNEL__
286 
287 #ifndef __EXTERN_INLINE
288 #define __EXTERN_INLINE extern inline
289 #define __IO_EXTERN_INLINE
290 #endif
291 
292 /*
293  * I/O functions:
294  *
295  * TSUNAMI, the 21??? PCI/memory support chipset for the EV6 (21264)
296  * can only use linear accesses to get at PCI memory and I/O spaces.
297  */
298 
299 #define vucp    volatile unsigned char *
300 #define vusp    volatile unsigned short *
301 #define vuip    volatile unsigned int *
302 #define vulp    volatile unsigned long *
303 
304 __EXTERN_INLINE unsigned int tsunami_inb(unsigned long addr)
305 {
306         /* ??? I wish I could get rid of this.  But there's no ioremap
307            equivalent for I/O space.  PCI I/O can be forced into the
308            correct hose's I/O region, but that doesn't take care of
309            legacy ISA crap.  */
310 
311         addr += TSUNAMI_IO_BIAS;
312         return __kernel_ldbu(*(vucp)addr);
313 }
314 
315 __EXTERN_INLINE void tsunami_outb(unsigned char b, unsigned long addr)
316 {
317         addr += TSUNAMI_IO_BIAS;
318         __kernel_stb(b, *(vucp)addr);
319         mb();
320 }
321 
322 __EXTERN_INLINE unsigned int tsunami_inw(unsigned long addr)
323 {
324         addr += TSUNAMI_IO_BIAS;
325         return __kernel_ldwu(*(vusp)addr);
326 }
327 
328 __EXTERN_INLINE void tsunami_outw(unsigned short b, unsigned long addr)
329 {
330         addr += TSUNAMI_IO_BIAS;
331         __kernel_stw(b, *(vusp)addr);
332         mb();
333 }
334 
335 __EXTERN_INLINE unsigned int tsunami_inl(unsigned long addr)
336 {
337         addr += TSUNAMI_IO_BIAS;
338         return *(vuip)addr;
339 }
340 
341 __EXTERN_INLINE void tsunami_outl(unsigned int b, unsigned long addr)
342 {
343         addr += TSUNAMI_IO_BIAS;
344         *(vuip)addr = b;
345         mb();
346 }
347 
348 /*
349  * Memory functions.  all accesses are done through linear space.
350  */
351 
352 __EXTERN_INLINE unsigned long tsunami_ioremap(unsigned long addr)
353 {
354         return addr + TSUNAMI_MEM_BIAS;
355 }
356 
357 __EXTERN_INLINE int tsunami_is_ioaddr(unsigned long addr)
358 {
359         return addr >= TSUNAMI_BASE;
360 }
361 
362 __EXTERN_INLINE unsigned long tsunami_readb(unsigned long addr)
363 {
364         return __kernel_ldbu(*(vucp)addr);
365 }
366 
367 __EXTERN_INLINE unsigned long tsunami_readw(unsigned long addr)
368 {
369         return __kernel_ldwu(*(vusp)addr);
370 }
371 
372 __EXTERN_INLINE unsigned long tsunami_readl(unsigned long addr)
373 {
374         return *(vuip)addr;
375 }
376 
377 __EXTERN_INLINE unsigned long tsunami_readq(unsigned long addr)
378 {
379         return *(vulp)addr;
380 }
381 
382 __EXTERN_INLINE void tsunami_writeb(unsigned char b, unsigned long addr)
383 {
384         __kernel_stb(b, *(vucp)addr);
385 }
386 
387 __EXTERN_INLINE void tsunami_writew(unsigned short b, unsigned long addr)
388 {
389         __kernel_stw(b, *(vusp)addr);
390 }
391 
392 __EXTERN_INLINE void tsunami_writel(unsigned int b, unsigned long addr)
393 {
394         *(vuip)addr = b;
395 }
396 
397 __EXTERN_INLINE void tsunami_writeq(unsigned long b, unsigned long addr)
398 {
399         *(vulp)addr = b;
400 }
401 
402 #undef vucp
403 #undef vusp
404 #undef vuip
405 #undef vulp
406 
407 #ifdef __WANT_IO_DEF
408 
409 #define __inb(p)                tsunami_inb((unsigned long)(p))
410 #define __inw(p)                tsunami_inw((unsigned long)(p))
411 #define __inl(p)                tsunami_inl((unsigned long)(p))
412 #define __outb(x,p)             tsunami_outb((x),(unsigned long)(p))
413 #define __outw(x,p)             tsunami_outw((x),(unsigned long)(p))
414 #define __outl(x,p)             tsunami_outl((x),(unsigned long)(p))
415 #define __readb(a)              tsunami_readb((unsigned long)(a))
416 #define __readw(a)              tsunami_readw((unsigned long)(a))
417 #define __readl(a)              tsunami_readl((unsigned long)(a))
418 #define __readq(a)              tsunami_readq((unsigned long)(a))
419 #define __writeb(x,a)           tsunami_writeb((x),(unsigned long)(a))
420 #define __writew(x,a)           tsunami_writew((x),(unsigned long)(a))
421 #define __writel(x,a)           tsunami_writel((x),(unsigned long)(a))
422 #define __writeq(x,a)           tsunami_writeq((x),(unsigned long)(a))
423 #define __ioremap(a)            tsunami_ioremap((unsigned long)(a))
424 #define __is_ioaddr(a)          tsunami_is_ioaddr((unsigned long)(a))
425 
426 #define inb(p)                  __inb(p)
427 #define inw(p)                  __inw(p)
428 #define inl(p)                  __inl(p)
429 #define outb(x,p)               __outb((x),(p))
430 #define outw(x,p)               __outw((x),(p))
431 #define outl(x,p)               __outl((x),(p))
432 #define __raw_readb(a)          __readb(a)
433 #define __raw_readw(a)          __readw(a)
434 #define __raw_readl(a)          __readl(a)
435 #define __raw_readq(a)          __readq(a)
436 #define __raw_writeb(v,a)       __writeb((v),(a))
437 #define __raw_writew(v,a)       __writew((v),(a))
438 #define __raw_writel(v,a)       __writel((v),(a))
439 #define __raw_writeq(v,a)       __writeq((v),(a))
440 
441 #endif /* __WANT_IO_DEF */
442 
443 #ifdef __IO_EXTERN_INLINE
444 #undef __EXTERN_INLINE
445 #undef __IO_EXTERN_INLINE
446 #endif
447 
448 #endif /* __KERNEL__ */
449 
450 #endif /* __ALPHA_TSUNAMI__H__ */
451 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.