smp.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* smp.h: Sparc64 specific SMP stuff.
  2.  *
  3.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #ifndef _SPARC64_SMP_H
  6. #define _SPARC64_SMP_H
  7. #include <linux/config.h>
  8. #include <linux/threads.h>
  9. #include <linux/cache.h>
  10. #include <asm/asi.h>
  11. #include <asm/starfire.h>
  12. #include <asm/spitfire.h>
  13. #ifndef __ASSEMBLY__
  14. /* PROM provided per-processor information we need
  15.  * to start them all up.
  16.  */
  17. struct prom_cpuinfo {
  18. int prom_node;
  19. int mid;
  20. };
  21. extern int linux_num_cpus; /* number of CPUs probed  */
  22. extern struct prom_cpuinfo linux_cpus[64];
  23. #endif /* !(__ASSEMBLY__) */
  24. #ifdef CONFIG_SMP
  25. #ifndef __ASSEMBLY__
  26. /* Per processor Sparc parameters we need. */
  27. /* Keep this a multiple of 64-bytes for cache reasons. */
  28. typedef struct {
  29. /* Dcache line 1 */
  30. unsigned int __pad0; /* bh_count moved to irq_stat for consistency. KAO */
  31. unsigned int multiplier;
  32. unsigned int counter;
  33. unsigned int idle_volume;
  34. unsigned long clock_tick; /* %tick's per second */
  35. unsigned long udelay_val;
  36. /* Dcache line 2 */
  37. unsigned int pgcache_size;
  38. unsigned int pgdcache_size;
  39. unsigned long *pte_cache[2];
  40. unsigned long *pgd_cache;
  41. /* Dcache lines 3 and 4 */
  42. unsigned int irq_worklists[16];
  43. } ____cacheline_aligned cpuinfo_sparc;
  44. extern cpuinfo_sparc cpu_data[NR_CPUS];
  45. /*
  46.  * Private routines/data
  47.  */
  48.  
  49. extern unsigned char boot_cpu_id;
  50. extern unsigned long cpu_present_map;
  51. #define cpu_online_map cpu_present_map
  52. /*
  53.  * General functions that each host system must provide.
  54.  */
  55. extern void smp_callin(void);
  56. extern void smp_boot_cpus(void);
  57. extern void smp_store_cpu_info(int id);
  58. extern __volatile__ int __cpu_number_map[NR_CPUS];
  59. extern __volatile__ int __cpu_logical_map[NR_CPUS];
  60. extern __inline__ int cpu_logical_map(int cpu)
  61. {
  62. return __cpu_logical_map[cpu];
  63. }
  64. extern __inline__ int cpu_number_map(int cpu)
  65. {
  66. return __cpu_number_map[cpu];
  67. }
  68. extern __inline__ int hard_smp_processor_id(void)
  69. {
  70. if (tlb_type == cheetah) {
  71. unsigned long safari_config;
  72. __asm__ __volatile__("ldxa [%%g0] %1, %0"
  73.      : "=r" (safari_config)
  74.      : "i" (ASI_SAFARI_CONFIG));
  75. return ((safari_config >> 17) & 0x3ff);
  76. } else if (this_is_starfire != 0) {
  77. return starfire_hard_smp_processor_id();
  78. } else {
  79. unsigned long upaconfig;
  80. __asm__ __volatile__("ldxa [%%g0] %1, %0"
  81.      : "=r" (upaconfig)
  82.      : "i" (ASI_UPA_CONFIG));
  83. return ((upaconfig >> 17) & 0x1f);
  84. }
  85. }
  86. #define smp_processor_id() (current->processor)
  87. /* This needn't do anything as we do not sleep the cpu
  88.  * inside of the idler task, so an interrupt is not needed
  89.  * to get a clean fast response.
  90.  *
  91.  * Addendum: We do want it to do something for the signal
  92.  *           delivery case, we detect that by just seeing
  93.  *           if we are trying to send this to an idler or not.
  94.  */
  95. extern __inline__ void smp_send_reschedule(int cpu)
  96. {
  97. extern void smp_receive_signal(int);
  98. if(cpu_data[cpu].idle_volume == 0)
  99. smp_receive_signal(cpu);
  100. }
  101. /* This is a nop as well because we capture all other cpus
  102.  * anyways when making the PROM active.
  103.  */
  104. extern __inline__ void smp_send_stop(void) { }
  105. #endif /* !(__ASSEMBLY__) */
  106. #define PROC_CHANGE_PENALTY 20
  107. #endif /* !(CONFIG_SMP) */
  108. #define NO_PROC_ID 0xFF
  109. #endif /* !(_SPARC64_SMP_H) */