powerpc: Fix some bugs in the new merged time code
[linux-2.6] / include / asm-powerpc / machdep.h
1 #ifndef _PPC64_MACHDEP_H
2 #define _PPC64_MACHDEP_H
3 #ifdef __KERNEL__
4
5 /*
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11
12 #include <linux/config.h>
13 #include <linux/seq_file.h>
14 #include <linux/init.h>
15 #include <linux/dma-mapping.h>
16
17 #include <asm/setup.h>
18
19 /* We export this macro for external modules like Alsa to know if
20  * ppc_md.feature_call is implemented or not
21  */
22 #define CONFIG_PPC_HAS_FEATURE_CALLS
23
24 struct pt_regs;
25 struct pci_bus; 
26 struct device_node;
27 struct iommu_table;
28 struct rtc_time;
29 struct file;
30
31 #ifdef CONFIG_SMP
32 struct smp_ops_t {
33         void  (*message_pass)(int target, int msg);
34         int   (*probe)(void);
35         void  (*kick_cpu)(int nr);
36         void  (*setup_cpu)(int nr);
37         void  (*take_timebase)(void);
38         void  (*give_timebase)(void);
39         int   (*cpu_enable)(unsigned int nr);
40         int   (*cpu_disable)(void);
41         void  (*cpu_die)(unsigned int nr);
42         int   (*cpu_bootable)(unsigned int nr);
43 };
44 #endif
45
46 struct machdep_calls {
47 #ifdef CONFIG_PPC64
48         void            (*hpte_invalidate)(unsigned long slot,
49                                            unsigned long va,
50                                            int large,
51                                            int local);
52         long            (*hpte_updatepp)(unsigned long slot, 
53                                          unsigned long newpp, 
54                                          unsigned long va,
55                                          int large,
56                                          int local);
57         void            (*hpte_updateboltedpp)(unsigned long newpp, 
58                                                unsigned long ea);
59         long            (*hpte_insert)(unsigned long hpte_group,
60                                        unsigned long va,
61                                        unsigned long prpn,
62                                        unsigned long vflags,
63                                        unsigned long rflags);
64         long            (*hpte_remove)(unsigned long hpte_group);
65         void            (*flush_hash_range)(unsigned long number, int local);
66
67         /* special for kexec, to be called in real mode, linar mapping is
68          * destroyed as well */
69         void            (*hpte_clear_all)(void);
70
71         void            (*tce_build)(struct iommu_table * tbl,
72                                      long index,
73                                      long npages,
74                                      unsigned long uaddr,
75                                      enum dma_data_direction direction);
76         void            (*tce_free)(struct iommu_table *tbl,
77                                     long index,
78                                     long npages);
79         void            (*tce_flush)(struct iommu_table *tbl);
80         void            (*iommu_dev_setup)(struct pci_dev *dev);
81         void            (*iommu_bus_setup)(struct pci_bus *bus);
82         void            (*irq_bus_setup)(struct pci_bus *bus);
83 #endif
84
85         int             (*probe)(int platform);
86         void            (*setup_arch)(void);
87         void            (*init_early)(void);
88         /* Optional, may be NULL. */
89         void            (*show_cpuinfo)(struct seq_file *m);
90         void            (*show_percpuinfo)(struct seq_file *m, int i);
91
92         void            (*init_IRQ)(void);
93         int             (*get_irq)(struct pt_regs *);
94         void            (*cpu_irq_down)(int secondary);
95
96         /* PCI stuff */
97         /* Called after scanning the bus, before allocating resources */
98         void            (*pcibios_fixup)(void);
99         int             (*pci_probe_mode)(struct pci_bus *);
100
101         void            (*restart)(char *cmd);
102         void            (*power_off)(void);
103         void            (*halt)(void);
104         void            (*panic)(char *str);
105         void            (*cpu_die)(void);
106
107         long            (*time_init)(void); /* Optional, may be NULL */
108
109         int             (*set_rtc_time)(struct rtc_time *);
110         void            (*get_rtc_time)(struct rtc_time *);
111         unsigned long   (*get_boot_time)(void);
112         unsigned char   (*rtc_read_val)(int addr);
113         void            (*rtc_write_val)(int addr, unsigned char val);
114
115         void            (*calibrate_decr)(void);
116
117         void            (*progress)(char *, unsigned short);
118
119         /* Interface for platform error logging */
120         void            (*log_error)(char *buf, unsigned int err_type, int fatal);
121
122         ssize_t         (*nvram_write)(char *buf, size_t count, loff_t *index);
123         ssize_t         (*nvram_read)(char *buf, size_t count, loff_t *index);  
124         ssize_t         (*nvram_size)(void);            
125         void            (*nvram_sync)(void);
126
127         /* Exception handlers */
128         void            (*system_reset_exception)(struct pt_regs *regs);
129         int             (*machine_check_exception)(struct pt_regs *regs);
130
131         /* Motherboard/chipset features. This is a kind of general purpose
132          * hook used to control some machine specific features (like reset
133          * lines, chip power control, etc...).
134          */
135         long            (*feature_call)(unsigned int feature, ...);
136
137         /* Check availability of legacy devices like i8042 */
138         int             (*check_legacy_ioport)(unsigned int baseport);
139
140         /* Get legacy PCI/IDE interrupt mapping */ 
141         int             (*pci_get_legacy_ide_irq)(struct pci_dev *dev, int channel);
142         
143         /* Get access protection for /dev/mem */
144         pgprot_t        (*phys_mem_access_prot)(struct file *file,
145                                                 unsigned long offset,
146                                                 unsigned long size,
147                                                 pgprot_t vma_prot);
148
149         /* Idle loop for this platform, leave empty for default idle loop */
150         void            (*idle_loop)(void);
151
152         /* Function to enable performance monitor counters for this
153            platform, called once per cpu. */
154         void            (*enable_pmcs)(void);
155
156 #ifdef CONFIG_PPC32     /* XXX for now */
157         /* A general init function, called by ppc_init in init/main.c.
158            May be NULL. */
159         void            (*init)(void);
160
161         void            (*idle)(void);
162         void            (*power_save)(void);
163
164         void            (*heartbeat)(void);
165         unsigned long   heartbeat_reset;
166         unsigned long   heartbeat_count;
167
168         unsigned long   (*find_end_of_memory)(void);
169         void            (*setup_io_mappings)(void);
170
171         void            (*early_serial_map)(void);
172         void            (*kgdb_map_scc)(void);
173
174         unsigned char   (*nvram_read_val)(int addr);
175         void            (*nvram_write_val)(int addr, unsigned char val);
176
177         /*
178          * optional PCI "hooks"
179          */
180
181         /* Called after PPC generic resource fixup to perform
182            machine specific fixups */
183         void (*pcibios_fixup_resources)(struct pci_dev *);
184
185         /* Called for each PCI bus in the system when it's probed */
186         void (*pcibios_fixup_bus)(struct pci_bus *);
187
188         /* Called when pci_enable_device() is called (initial=0) or
189          * when a device with no assigned resource is found (initial=1).
190          * Returns 0 to allow assignment/enabling of the device. */
191         int  (*pcibios_enable_device_hook)(struct pci_dev *, int initial);
192
193         /* For interrupt routing */
194         unsigned char (*pci_swizzle)(struct pci_dev *, unsigned char *);
195         int (*pci_map_irq)(struct pci_dev *, unsigned char, unsigned char);
196
197         /* Called in indirect_* to avoid touching devices */
198         int (*pci_exclude_device)(unsigned char, unsigned char);
199
200         /* Called at then very end of pcibios_init() */
201         void (*pcibios_after_init)(void);
202
203         /* this is for modules, since _machine can be a define -- Cort */
204         int ppc_machine;
205
206 #ifdef CONFIG_KEXEC
207         /* Called to shutdown machine specific hardware not already controlled
208          * by other drivers.
209          * XXX Should we move this one out of kexec scope?
210          */
211         void (*machine_shutdown)(void);
212
213         /* Called to do the minimal shutdown needed to run a kexec'd kernel
214          * to run successfully.
215          * XXX Should we move this one out of kexec scope?
216          */
217         void (*machine_crash_shutdown)(void);
218
219         /* Called to do what every setup is needed on image and the
220          * reboot code buffer. Returns 0 on success.
221          * Provide your own (maybe dummy) implementation if your platform
222          * claims to support kexec.
223          */
224         int (*machine_kexec_prepare)(struct kimage *image);
225
226         /* Called to handle any machine specific cleanup on image */
227         void (*machine_kexec_cleanup)(struct kimage *image);
228
229         /* Called to perform the _real_ kexec.
230          * Do NOT allocate memory or fail here. We are past the point of
231          * no return.
232          */
233         void (*machine_kexec)(struct kimage *image);
234 #endif /* CONFIG_KEXEC */
235 #endif /* CONFIG_PPC32 */
236 };
237
238 extern void default_idle(void);
239 extern void native_idle(void);
240
241 extern struct machdep_calls ppc_md;
242 extern char cmd_line[COMMAND_LINE_SIZE];
243
244 #ifdef CONFIG_PPC_PMAC
245 /*
246  * Power macintoshes have either a CUDA, PMU or SMU controlling
247  * system reset, power, NVRAM, RTC.
248  */
249 typedef enum sys_ctrler_kind {
250         SYS_CTRLER_UNKNOWN = 0,
251         SYS_CTRLER_CUDA = 1,
252         SYS_CTRLER_PMU = 2,
253         SYS_CTRLER_SMU = 3,
254 } sys_ctrler_t;
255 extern sys_ctrler_t sys_ctrler;
256
257 #endif /* CONFIG_PPC_PMAC */
258
259 extern void setup_pci_ptrs(void);
260
261 #ifdef CONFIG_SMP
262 /* Poor default implementations */
263 extern void __devinit smp_generic_give_timebase(void);
264 extern void __devinit smp_generic_take_timebase(void);
265 #endif /* CONFIG_SMP */
266
267
268 /* Functions to produce codes on the leds.
269  * The SRC code should be unique for the message category and should
270  * be limited to the lower 24 bits (the upper 8 are set by these funcs),
271  * and (for boot & dump) should be sorted numerically in the order
272  * the events occur.
273  */
274 /* Print a boot progress message. */
275 void ppc64_boot_msg(unsigned int src, const char *msg);
276 /* Print a termination message (print only -- does not stop the kernel) */
277 void ppc64_terminate_msg(unsigned int src, const char *msg);
278
279 static inline void log_error(char *buf, unsigned int err_type, int fatal)
280 {
281         if (ppc_md.log_error)
282                 ppc_md.log_error(buf, err_type, fatal);
283 }
284
285 #endif /* __KERNEL__ */
286 #endif /* _PPC64_MACHDEP_H */