apic.h 3.2 KB
Newer Older
Y
Yinghai Lu 已提交
1 2
#ifndef __ASM_MACH_APIC_H
#define __ASM_MACH_APIC_H
3

4
#define xapic_phys_to_log_apicid(cpu) (per_cpu(x86_bios_cpu_apicid, cpu))
L
Linus Torvalds 已提交
5 6
#define esr_disable (1)

7
static inline int bigsmp_apic_id_registered(void)
L
Linus Torvalds 已提交
8
{
9
	return 1;
L
Linus Torvalds 已提交
10 11
}

12
static inline const cpumask_t *target_cpus(void)
Y
Yinghai Lu 已提交
13
{
14
#ifdef CONFIG_SMP
15
	return &cpu_online_map;
16
#else
17
	return &cpumask_of_cpu(0);
18
#endif
L
Linus Torvalds 已提交
19 20
}

21
#undef APIC_DEST_LOGICAL
Y
Yinghai Lu 已提交
22
#define APIC_DEST_LOGICAL	0
23 24
#define APIC_DFR_VALUE		(APIC_DFR_FLAT)
#define NO_BALANCE_IRQ		(0)
L
Linus Torvalds 已提交
25 26 27

static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid)
{
28
	return (0);
L
Linus Torvalds 已提交
29 30
}

31
static inline unsigned long check_apicid_present(int bit)
L
Linus Torvalds 已提交
32
{
33
	return (1);
L
Linus Torvalds 已提交
34 35
}

36
static inline unsigned long calculate_ldr(int cpu)
L
Linus Torvalds 已提交
37
{
38 39 40 41 42
	unsigned long val, id;
	val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
	id = xapic_phys_to_log_apicid(cpu);
	val |= SET_APIC_LOGICAL_ID(id);
	return val;
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50 51 52 53 54
}

/*
 * Set up the logical destination ID.
 *
 * Intel recommends to set DFR, LDR and TPR before enabling
 * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
 * document number 292116).  So here it goes...
 */
static inline void init_apic_ldr(void)
{
	unsigned long val;
55
	int cpu = smp_processor_id();
L
Linus Torvalds 已提交
56

57
	apic_write(APIC_DFR, APIC_DFR_VALUE);
58
	val = calculate_ldr(cpu);
59
	apic_write(APIC_LDR, val);
L
Linus Torvalds 已提交
60 61
}

62
static inline void setup_apic_routing(void)
L
Linus Torvalds 已提交
63 64
{
	printk("Enabling APIC mode:  %s.  Using %d I/O APICs\n",
65
		"Physflat", nr_ioapics);
L
Linus Torvalds 已提交
66 67 68 69
}

static inline int multi_timer_check(int apic, int irq)
{
70
	return (0);
L
Linus Torvalds 已提交
71 72 73 74
}

static inline int apicid_to_node(int logical_apicid)
{
75
	return apicid_2_node[hard_smp_processor_id()];
L
Linus Torvalds 已提交
76 77 78 79
}

static inline int cpu_present_to_apicid(int mps_cpu)
{
80
	if (mps_cpu < nr_cpu_ids)
81
		return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu);
82 83

	return BAD_APICID;
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92 93 94
}

static inline physid_mask_t apicid_to_cpu_present(int phys_apicid)
{
	return physid_mask_of_physid(phys_apicid);
}

extern u8 cpu_2_logical_apicid[];
/* Mapping from cpu number to logical apicid */
static inline int cpu_to_logical_apicid(int cpu)
{
95
	if (cpu >= nr_cpu_ids)
96 97 98
		return BAD_APICID;
	return cpu_physical_id(cpu);
}
L
Linus Torvalds 已提交
99 100 101 102

static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map)
{
	/* For clustered we don't have a good way to do this yet - hack */
103
	return physids_promote(0xFFL);
L
Linus Torvalds 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
}

static inline void setup_portio_remap(void)
{
}

static inline void enable_apic_mode(void)
{
}

static inline int check_phys_apicid_present(int boot_cpu_physical_apicid)
{
	return (1);
}

/* As we are using single CPU as destination, pick only one CPU here */
120
static inline unsigned int cpu_mask_to_apicid(const cpumask_t *cpumask)
L
Linus Torvalds 已提交
121 122 123 124
{
	int cpu;
	int apicid;	

125
	cpu = first_cpu(*cpumask);
L
Linus Torvalds 已提交
126 127 128 129
	apicid = cpu_to_logical_apicid(cpu);
	return apicid;
}

130 131
static inline unsigned int cpu_mask_to_apicid_and(const struct cpumask *cpumask,
						  const struct cpumask *andmask)
M
Mike Travis 已提交
132 133 134 135 136 137 138
{
	int cpu;

	/*
	 * We're using fixed IRQ delivery, can only return one phys APIC ID.
	 * May as well be the first.
	 */
139 140 141
	for_each_cpu_and(cpu, cpumask, andmask)
		if (cpumask_test_cpu(cpu, cpu_online_mask))
			break;
142 143
	if (cpu < nr_cpu_ids)
		return cpu_to_logical_apicid(cpu);
M
Mike Travis 已提交
144 145 146 147

	return BAD_APICID;
}

L
Linus Torvalds 已提交
148 149 150 151 152
static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb)
{
	return cpuid_apic >> index_msb;
}

Y
Yinghai Lu 已提交
153
#endif /* __ASM_MACH_APIC_H */