cpm2: Implement GPIO LIB API on CPM2 Freescale SoC.
[linux-2.6/kvm.git] / include / asm-ia64 / paravirt.h
blob1b4df129f579138c8f1f2f44c5c2bb74d324bd78
1 /******************************************************************************
2 * include/asm-ia64/paravirt.h
4 * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
5 * VA Linux Systems Japan K.K.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef __ASM_PARAVIRT_H
25 #define __ASM_PARAVIRT_H
27 #ifdef CONFIG_PARAVIRT_GUEST
29 #define PARAVIRT_HYPERVISOR_TYPE_DEFAULT 0
30 #define PARAVIRT_HYPERVISOR_TYPE_XEN 1
32 #ifndef __ASSEMBLY__
34 #include <asm/hw_irq.h>
35 #include <asm/meminit.h>
37 /******************************************************************************
38 * general info
40 struct pv_info {
41 unsigned int kernel_rpl;
42 int paravirt_enabled;
43 const char *name;
46 extern struct pv_info pv_info;
48 static inline int paravirt_enabled(void)
50 return pv_info.paravirt_enabled;
53 static inline unsigned int get_kernel_rpl(void)
55 return pv_info.kernel_rpl;
58 /******************************************************************************
59 * initialization hooks.
61 struct rsvd_region;
63 struct pv_init_ops {
64 void (*banner)(void);
66 int (*reserve_memory)(struct rsvd_region *region);
68 void (*arch_setup_early)(void);
69 void (*arch_setup_console)(char **cmdline_p);
70 int (*arch_setup_nomca)(void);
72 void (*post_smp_prepare_boot_cpu)(void);
75 extern struct pv_init_ops pv_init_ops;
77 static inline void paravirt_banner(void)
79 if (pv_init_ops.banner)
80 pv_init_ops.banner();
83 static inline int paravirt_reserve_memory(struct rsvd_region *region)
85 if (pv_init_ops.reserve_memory)
86 return pv_init_ops.reserve_memory(region);
87 return 0;
90 static inline void paravirt_arch_setup_early(void)
92 if (pv_init_ops.arch_setup_early)
93 pv_init_ops.arch_setup_early();
96 static inline void paravirt_arch_setup_console(char **cmdline_p)
98 if (pv_init_ops.arch_setup_console)
99 pv_init_ops.arch_setup_console(cmdline_p);
102 static inline int paravirt_arch_setup_nomca(void)
104 if (pv_init_ops.arch_setup_nomca)
105 return pv_init_ops.arch_setup_nomca();
106 return 0;
109 static inline void paravirt_post_smp_prepare_boot_cpu(void)
111 if (pv_init_ops.post_smp_prepare_boot_cpu)
112 pv_init_ops.post_smp_prepare_boot_cpu();
115 /******************************************************************************
116 * replacement of iosapic operations.
119 struct pv_iosapic_ops {
120 void (*pcat_compat_init)(void);
122 struct irq_chip *(*get_irq_chip)(unsigned long trigger);
124 unsigned int (*__read)(char __iomem *iosapic, unsigned int reg);
125 void (*__write)(char __iomem *iosapic, unsigned int reg, u32 val);
128 extern struct pv_iosapic_ops pv_iosapic_ops;
130 static inline void
131 iosapic_pcat_compat_init(void)
133 if (pv_iosapic_ops.pcat_compat_init)
134 pv_iosapic_ops.pcat_compat_init();
137 static inline struct irq_chip*
138 iosapic_get_irq_chip(unsigned long trigger)
140 return pv_iosapic_ops.get_irq_chip(trigger);
143 static inline unsigned int
144 __iosapic_read(char __iomem *iosapic, unsigned int reg)
146 return pv_iosapic_ops.__read(iosapic, reg);
149 static inline void
150 __iosapic_write(char __iomem *iosapic, unsigned int reg, u32 val)
152 return pv_iosapic_ops.__write(iosapic, reg, val);
155 /******************************************************************************
156 * replacement of irq operations.
159 struct pv_irq_ops {
160 void (*register_ipi)(void);
162 int (*assign_irq_vector)(int irq);
163 void (*free_irq_vector)(int vector);
165 void (*register_percpu_irq)(ia64_vector vec,
166 struct irqaction *action);
168 void (*resend_irq)(unsigned int vector);
171 extern struct pv_irq_ops pv_irq_ops;
173 static inline void
174 ia64_register_ipi(void)
176 pv_irq_ops.register_ipi();
179 static inline int
180 assign_irq_vector(int irq)
182 return pv_irq_ops.assign_irq_vector(irq);
185 static inline void
186 free_irq_vector(int vector)
188 return pv_irq_ops.free_irq_vector(vector);
191 static inline void
192 register_percpu_irq(ia64_vector vec, struct irqaction *action)
194 pv_irq_ops.register_percpu_irq(vec, action);
197 static inline void
198 ia64_resend_irq(unsigned int vector)
200 pv_irq_ops.resend_irq(vector);
203 /******************************************************************************
204 * replacement of time operations.
207 extern struct itc_jitter_data_t itc_jitter_data;
208 extern volatile int time_keeper_id;
210 struct pv_time_ops {
211 void (*init_missing_ticks_accounting)(int cpu);
212 int (*do_steal_accounting)(unsigned long *new_itm);
214 void (*clocksource_resume)(void);
217 extern struct pv_time_ops pv_time_ops;
219 static inline void
220 paravirt_init_missing_ticks_accounting(int cpu)
222 if (pv_time_ops.init_missing_ticks_accounting)
223 pv_time_ops.init_missing_ticks_accounting(cpu);
226 static inline int
227 paravirt_do_steal_accounting(unsigned long *new_itm)
229 return pv_time_ops.do_steal_accounting(new_itm);
232 #endif /* !__ASSEMBLY__ */
234 #else
235 /* fallback for native case */
237 #ifndef __ASSEMBLY__
239 #define paravirt_banner() do { } while (0)
240 #define paravirt_reserve_memory(region) 0
242 #define paravirt_arch_setup_early() do { } while (0)
243 #define paravirt_arch_setup_console(cmdline_p) do { } while (0)
244 #define paravirt_arch_setup_nomca() 0
245 #define paravirt_post_smp_prepare_boot_cpu() do { } while (0)
247 #define paravirt_init_missing_ticks_accounting(cpu) do { } while (0)
248 #define paravirt_do_steal_accounting(new_itm) 0
250 #endif /* __ASSEMBLY__ */
253 #endif /* CONFIG_PARAVIRT_GUEST */
255 #endif /* __ASM_PARAVIRT_H */