cpudata_64.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* cpudata.h: Per-cpu parameters.
  2. *
  3. * Copyright (C) 2003, 2005, 2006 David S. Miller (davem@davemloft.net)
  4. */
  5. #ifndef _SPARC64_CPUDATA_H
  6. #define _SPARC64_CPUDATA_H
  7. #ifndef __ASSEMBLY__
  8. typedef struct {
  9. /* Dcache line 1 */
  10. unsigned int __softirq_pending; /* must be 1st, see rtrap.S */
  11. unsigned int __nmi_count;
  12. unsigned long clock_tick; /* %tick's per second */
  13. unsigned long __pad;
  14. unsigned int irq0_irqs;
  15. unsigned int __pad2;
  16. /* Dcache line 2, rarely used */
  17. unsigned int dcache_size;
  18. unsigned int dcache_line_size;
  19. unsigned int icache_size;
  20. unsigned int icache_line_size;
  21. unsigned int ecache_size;
  22. unsigned int ecache_line_size;
  23. unsigned short sock_id; /* physical package */
  24. unsigned short core_id;
  25. unsigned short max_cache_id; /* groupings of highest shared cache */
  26. unsigned short proc_id; /* strand (aka HW thread) id */
  27. } cpuinfo_sparc;
  28. DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
  29. #define cpu_data(__cpu) per_cpu(__cpu_data, (__cpu))
  30. #define local_cpu_data() (*this_cpu_ptr(&__cpu_data))
  31. #endif /* !(__ASSEMBLY__) */
  32. #include <asm/trap_block.h>
  33. #endif /* _SPARC64_CPUDATA_H */